2018-02-14 17:07:09 +01:00
|
|
|
import Vue from 'vue';
|
2020-07-11 03:13:11 +02:00
|
|
|
import { Form } from '../scripts/form';
|
2018-02-14 17:07:09 +01:00
|
|
|
|
2020-07-11 03:13:11 +02:00
|
|
|
export default function <T extends Form>(data: {
|
2018-02-14 17:07:09 +01:00
|
|
|
name: string;
|
2018-02-21 07:30:03 +01:00
|
|
|
props?: () => T;
|
2018-02-14 17:07:09 +01:00
|
|
|
}) {
|
|
|
|
return Vue.extend({
|
|
|
|
props: {
|
2018-02-18 15:51:41 +01:00
|
|
|
widget: {
|
|
|
|
type: Object
|
2018-02-23 18:46:09 +01:00
|
|
|
},
|
2018-02-25 14:50:26 +01:00
|
|
|
isCustomizeMode: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
2018-02-14 17:07:09 +01:00
|
|
|
}
|
|
|
|
},
|
2018-04-29 10:17:15 +02:00
|
|
|
|
2020-07-11 03:13:11 +02:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
bakedOldProps: null
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2018-02-14 17:07:09 +01:00
|
|
|
computed: {
|
|
|
|
id(): string {
|
2018-02-18 15:51:41 +01:00
|
|
|
return this.widget.id;
|
2018-04-29 10:17:15 +02:00
|
|
|
},
|
|
|
|
|
2020-07-11 03:13:11 +02:00
|
|
|
props(): Record<string, any> {
|
2018-04-29 10:17:15 +02:00
|
|
|
return this.widget.data;
|
2018-02-14 17:07:09 +01:00
|
|
|
}
|
|
|
|
},
|
2018-04-29 10:17:15 +02:00
|
|
|
|
2018-02-14 17:07:09 +01:00
|
|
|
created() {
|
2018-04-29 10:17:15 +02:00
|
|
|
this.mergeProps();
|
|
|
|
|
|
|
|
this.$watch('props', () => {
|
|
|
|
this.mergeProps();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
mergeProps() {
|
|
|
|
if (data.props) {
|
|
|
|
const defaultProps = data.props();
|
2018-12-11 12:36:55 +01:00
|
|
|
for (const prop of Object.keys(defaultProps)) {
|
|
|
|
if (this.props.hasOwnProperty(prop)) continue;
|
2020-07-11 03:13:11 +02:00
|
|
|
Vue.set(this.props, prop, defaultProps[prop].default);
|
2018-12-11 12:36:55 +01:00
|
|
|
}
|
2018-02-23 23:49:03 +01:00
|
|
|
}
|
2018-04-29 10:17:15 +02:00
|
|
|
},
|
|
|
|
|
2020-07-11 03:13:11 +02:00
|
|
|
async setting() {
|
|
|
|
const form = data.props();
|
|
|
|
for (const item of Object.keys(form)) {
|
|
|
|
form[item].default = this.props[item];
|
|
|
|
}
|
|
|
|
const { canceled, result } = await this.$root.form(data.name, form);
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
for (const key of Object.keys(result)) {
|
|
|
|
Vue.set(this.props, key, result[key]);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.save();
|
|
|
|
},
|
|
|
|
|
2018-04-29 10:17:15 +02:00
|
|
|
save() {
|
2020-02-09 23:23:43 +01:00
|
|
|
this.$store.commit('deviceUser/updateWidget', this.widget);
|
2018-02-23 23:49:03 +01:00
|
|
|
}
|
2018-02-14 17:07:09 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|