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