mirror of
https://github.com/frappe/books.git
synced 2024-11-10 15:50:56 +00:00
edc04e7522
- defaultValues prop to set initial values in a form
123 lines
2.8 KiB
Vue
123 lines
2.8 KiB
Vue
<template>
|
|
<div class="frappe-form">
|
|
<form-actions
|
|
v-if="shouldRenderForm"
|
|
:doctype="doctype"
|
|
:name="name"
|
|
:title="formTitle"
|
|
:isDirty="isDirty"
|
|
@save="save"
|
|
/>
|
|
<div class="p-3">
|
|
<form-layout
|
|
v-if="shouldRenderForm"
|
|
:doc="doc"
|
|
:fields="meta.fields"
|
|
:layout="meta.layout"
|
|
:invalid="invalid"
|
|
/>
|
|
</div>
|
|
<not-found v-if="notFound" />
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import frappe from 'frappejs';
|
|
import FormLayout from './FormLayout';
|
|
import FormActions from './FormActions';
|
|
import { _ } from 'frappejs/utils';
|
|
|
|
export default {
|
|
name: 'Form',
|
|
props: ['doctype', 'name', 'defaultValues'],
|
|
components: {
|
|
FormActions,
|
|
FormLayout
|
|
},
|
|
data() {
|
|
return {
|
|
docLoaded: false,
|
|
notFound: false,
|
|
invalid: false,
|
|
isDirty: false,
|
|
invalidFields: []
|
|
}
|
|
},
|
|
computed: {
|
|
meta() {
|
|
return frappe.getMeta(this.doctype);
|
|
},
|
|
shouldRenderForm() {
|
|
return this.name && this.docLoaded;
|
|
},
|
|
formTitle() {
|
|
if (this.doc._notInserted) {
|
|
return _('New {0}', _(this.doctype));
|
|
}
|
|
return this.doc[this.meta.titleField];
|
|
}
|
|
},
|
|
async created() {
|
|
if (!this.name) return;
|
|
try {
|
|
this.doc = await frappe.getDoc(this.doctype, this.name);
|
|
this.doc.on('change', () => {
|
|
this.isDirty = this.doc._dirty;
|
|
});
|
|
|
|
if (this.doc._notInserted && this.meta.fields.map(df => df.fieldname).includes('name')) {
|
|
// For a user editable name field,
|
|
// it should be unset since it is autogenerated
|
|
this.doc.set('name', '');
|
|
}
|
|
|
|
if (this.defaultValues) {
|
|
for (let fieldname in this.defaultValues) {
|
|
const value = this.defaultValues[fieldname];
|
|
this.doc.set(fieldname, value);
|
|
}
|
|
}
|
|
|
|
this.docLoaded = true;
|
|
} catch(e) {
|
|
this.notFound = true;
|
|
}
|
|
},
|
|
methods: {
|
|
async save() {
|
|
this.setValidity();
|
|
if (this.invalid) return;
|
|
|
|
try {
|
|
if (this.doc._notInserted) {
|
|
await this.doc.insert();
|
|
} else {
|
|
await this.doc.update();
|
|
}
|
|
|
|
this.$emit('save', this.doc);
|
|
|
|
} catch (e) {
|
|
console.error(e);
|
|
return;
|
|
}
|
|
},
|
|
|
|
onValidate(fieldname, isValid) {
|
|
if (!isValid && !this.invalidFields.includes(fieldname)) {
|
|
this.invalidFields.push(fieldname);
|
|
} else if (isValid) {
|
|
this.invalidFields = this.invalidFields.filter(invalidField => invalidField !== fieldname)
|
|
}
|
|
},
|
|
|
|
setValidity() {
|
|
const form = this.$el.querySelector('form');
|
|
let validity = form.checkValidity();
|
|
this.invalid = !validity;
|
|
},
|
|
}
|
|
};
|
|
</script>
|
|
<style>
|
|
</style>
|