87 lines
1.9 KiB
Vue
87 lines
1.9 KiB
Vue
<template lang="html">
|
|
<dialog-base
|
|
:override-back-button="() => $emit('back')"
|
|
:color="model.color"
|
|
>
|
|
<template slot="toolbar">
|
|
<v-toolbar-title>
|
|
Add {{ propertyName }}
|
|
</v-toolbar-title>
|
|
<v-spacer />
|
|
<color-picker
|
|
:value="model.color"
|
|
@input="value => change({path: ['color'], value})"
|
|
/>
|
|
</template>
|
|
<component
|
|
:is="type"
|
|
v-if="type"
|
|
class="library-node-form"
|
|
:model="model"
|
|
:errors="errors"
|
|
@change="change"
|
|
@push="push"
|
|
@pull="pull"
|
|
/>
|
|
<div
|
|
slot="actions"
|
|
class="layout justify-end"
|
|
>
|
|
<v-btn
|
|
text
|
|
:disabled="!valid"
|
|
@click="$store.dispatch('popDialogStack', model)"
|
|
>
|
|
Insert
|
|
</v-btn>
|
|
</div>
|
|
</dialog-base>
|
|
</template>
|
|
|
|
<script lang="js">
|
|
import DialogBase from '/imports/ui/dialogStack/DialogBase.vue';
|
|
import propertyFormIndex from '/imports/ui/properties/forms/shared/propertyFormIndex.js';
|
|
import schemaFormMixin from '/imports/ui/properties/forms/shared/schemaFormMixin.js';
|
|
import ColorPicker from '/imports/ui/components/ColorPicker.vue';
|
|
import propertySchemasIndex from '/imports/api/properties/propertySchemasIndex.js';
|
|
|
|
export default {
|
|
components: {
|
|
...propertyFormIndex,
|
|
DialogBase,
|
|
ColorPicker,
|
|
},
|
|
mixins: [schemaFormMixin],
|
|
props: {
|
|
propertyName: String,
|
|
type: String,
|
|
},
|
|
reactiveProvide: {
|
|
name: 'context',
|
|
include: ['debounceTime', 'isLibraryForm'],
|
|
},
|
|
data(){return {
|
|
model: {
|
|
type: this.type,
|
|
},
|
|
schema: undefined,
|
|
validationContext: undefined,
|
|
debounceTime: 0,
|
|
isLibraryForm: true,
|
|
};},
|
|
watch: {
|
|
type(newType){
|
|
if (!newType) return;
|
|
this.schema = propertySchemasIndex[newType];
|
|
this.validationContext = this.schema.newContext();
|
|
let model = this.schema.clean({});
|
|
model.type = newType;
|
|
this.model = model;
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="css" scoped>
|
|
</style>
|