2
0
mirror of https://github.com/frappe/books.git synced 2025-01-10 18:24:40 +00:00
books/src/pages/QuickEditForm.vue

227 lines
5.7 KiB
Vue
Raw Normal View History

2019-10-04 20:18:10 +00:00
<template>
<div class="border-l h-full">
<div class="flex items-center justify-between px-4 pt-4">
<div class="flex items-center">
<Button :icon="true" @click="routeToPrevious">
<feather-icon name="x" class="w-4 h-4" />
</Button>
<span v-if="statusText" class="ml-2 text-base text-gray-600">{{
statusText
}}</span>
</div>
<div class="flex items-stretch">
<DropdownWithActions :actions="actions" />
<StatusBadge :status="status" />
<Button
:icon="true"
@click="insertDoc"
type="primary"
v-if="doc && doc._notInserted"
class="ml-2 text-white text-xs"
>
{{ t('Save') }}
</Button>
<Button
:icon="true"
@click="submitDoc"
type="primary"
v-if="
meta &&
meta.isSubmittable &&
doc &&
!doc.submitted &&
!doc._notInserted &&
!(doc.cancelled || false)
"
class="ml-2 text-white text-xs"
>
{{ t('Submit') }}
</Button>
</div>
2019-10-04 20:18:10 +00:00
</div>
2019-12-11 09:09:16 +00:00
<div class="px-4 pt-2 pb-4 flex-center" v-if="doc">
<div class="flex flex-col items-center">
<FormControl
v-if="imageField"
:df="imageField"
:value="doc[imageField.fieldname]"
@change="(value) => valueChange(imageField, value)"
size="small"
class="mb-1"
:letter-placeholder="
2019-12-04 18:40:46 +00:00
// for AttachImage field
doc[titleField.fieldname] ? doc[titleField.fieldname][0] : null
"
/>
<FormControl
input-class="text-center"
ref="titleControl"
v-if="titleField"
:df="titleField"
:value="doc[titleField.fieldname]"
@change="(value) => valueChange(titleField, value)"
@input="setTitleSize"
/>
</div>
2019-10-04 20:18:10 +00:00
</div>
<TwoColumnForm
ref="form"
v-if="doc"
:doc="doc"
:fields="fields"
:autosave="true"
:column-ratio="[1.1, 2]"
/>
2019-12-26 13:45:41 +00:00
<component v-if="doc && quickEditWidget" :is="quickEditWidget" />
2019-10-04 20:18:10 +00:00
</div>
</template>
<script>
import frappe from 'frappe';
import { t } from 'frappe';
2019-10-04 20:18:10 +00:00
import Button from '@/components/Button';
import StatusBadge from '@/components/StatusBadge';
import FormControl from '@/components/Controls/FormControl';
import TwoColumnForm from '@/components/TwoColumnForm';
import DropdownWithActions from '@/components/DropdownWithActions';
import {
openQuickEdit,
getActionsForDocument,
} from '@/utils';
2019-10-04 20:18:10 +00:00
export default {
name: 'QuickEditForm',
props: ['doctype', 'name', 'values', 'hideFields'],
2019-10-04 20:18:10 +00:00
components: {
Button,
FormControl,
StatusBadge,
TwoColumnForm,
DropdownWithActions,
2019-10-04 20:18:10 +00:00
},
2019-10-06 12:33:21 +00:00
provide() {
let vm = this;
2019-10-06 12:33:21 +00:00
return {
doctype: this.doctype,
name: this.name,
get doc() {
return vm.doc;
},
};
2019-10-06 12:33:21 +00:00
},
2019-10-04 20:18:10 +00:00
data() {
return {
doc: null,
titleField: null,
imageField: null,
statusText: null,
2019-10-04 20:18:10 +00:00
};
},
async created() {
await this.fetchMetaAndDoc();
},
computed: {
meta() {
return frappe.getMeta(this.doctype);
},
status() {
if (this.doc && this.doc._notInserted) {
return "Draft";
}
return "";
},
fields() {
return this.meta
.getQuickEditFields()
.filter((df) => !(this.hideFields || []).includes(df.fieldname));
},
actions() {
return getActionsForDocument(this.doc);
2019-12-26 13:45:41 +00:00
},
quickEditWidget() {
if (!this.meta.quickEditWidget) {
return null;
}
return this.meta.quickEditWidget(this.doc);
},
},
methods: {
async fetchMetaAndDoc() {
this.titleField = this.meta.getField(this.meta.titleField);
this.imageField = this.meta.getField('image');
await this.fetchDoc();
// setup the title field
2021-12-02 10:16:46 +00:00
if (this.doc && this.doc.isNew() && this.doc[this.titleField.fieldname]) {
2019-12-03 13:32:34 +00:00
if (!this.titleField.readOnly) {
this.doc.set(this.titleField.fieldname, '');
setTimeout(() => {
this.$refs.titleControl.focus();
}, 300);
} else {
this.doc.set(this.titleField.fieldname, 'New ' + this.doc.doctype);
}
}
// set default values
if (this.values) {
this.doc.set(this.values);
}
// set title size
this.setTitleSize();
},
async fetchDoc() {
try {
this.doc = await frappe.getDoc(this.doctype, this.name);
this.doc.once('afterRename', () => {
openQuickEdit({
doctype: this.doctype,
name: this.doc.name,
});
});
this.doc.on('beforeUpdate', () => {
this.statusText = t('Saving...');
});
this.doc.on('afterUpdate', () => {
setTimeout(() => {
this.statusText = null;
}, 500);
});
} catch (e) {
this.$router.back();
}
},
2019-12-04 18:40:46 +00:00
valueChange(df, value) {
this.$refs.form.onChange(df, value);
},
insertDoc() {
2019-12-04 18:40:46 +00:00
this.$refs.form.insert();
},
async submitDoc() {
try {
await this.$refs.form.submit();
} catch (e) {
this.statusText = null;
console.error(e)
}
2019-11-08 19:58:58 +00:00
},
routeToPrevious() {
this.$router.back();
},
setTitleSize() {
if (this.$refs.titleControl) {
let input = this.$refs.titleControl.getInput();
let value = input.value;
2019-12-03 13:32:34 +00:00
let valueLength = (value || '').length + 1;
if (valueLength < 7) {
valueLength = 7;
}
input.size = valueLength;
}
},
},
2019-10-04 20:18:10 +00:00
};
</script>