2018-02-14 10:07:09 -06:00
|
|
|
import Vue from 'vue';
|
|
|
|
|
2018-12-11 05:36:55 -06:00
|
|
|
export default function <T extends object>(data: {
|
2018-02-14 10:07:09 -06:00
|
|
|
name: string;
|
2018-02-21 00:30:03 -06:00
|
|
|
props?: () => T;
|
2018-02-14 10:07:09 -06:00
|
|
|
}) {
|
|
|
|
return Vue.extend({
|
|
|
|
props: {
|
2018-02-18 08:51:41 -06:00
|
|
|
widget: {
|
|
|
|
type: Object
|
2018-02-23 11:46:09 -06:00
|
|
|
},
|
2019-02-25 04:45:00 -06:00
|
|
|
column: {
|
|
|
|
type: Object,
|
|
|
|
default: null
|
|
|
|
},
|
2018-06-06 05:22:45 -05:00
|
|
|
platform: {
|
|
|
|
type: String,
|
|
|
|
required: true
|
2018-02-25 07:50:26 -06:00
|
|
|
},
|
|
|
|
isCustomizeMode: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
2018-02-14 10:07:09 -06:00
|
|
|
}
|
|
|
|
},
|
2018-04-29 03:17:15 -05:00
|
|
|
|
2018-02-14 10:07:09 -06:00
|
|
|
computed: {
|
|
|
|
id(): string {
|
2018-02-18 08:51:41 -06:00
|
|
|
return this.widget.id;
|
2018-04-29 03:17:15 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
props(): T {
|
|
|
|
return this.widget.data;
|
2018-02-14 10:07:09 -06:00
|
|
|
}
|
|
|
|
},
|
2018-04-29 03:17:15 -05:00
|
|
|
|
2018-02-14 10:07:09 -06:00
|
|
|
data() {
|
|
|
|
return {
|
2018-04-29 03:17:15 -05:00
|
|
|
bakedOldProps: null
|
2018-02-14 10:07:09 -06:00
|
|
|
};
|
|
|
|
},
|
2018-04-29 03:17:15 -05:00
|
|
|
|
2018-02-14 10:07:09 -06:00
|
|
|
created() {
|
2018-04-29 03:17:15 -05:00
|
|
|
this.mergeProps();
|
|
|
|
|
|
|
|
this.$watch('props', () => {
|
|
|
|
this.mergeProps();
|
|
|
|
});
|
2018-02-21 00:30:03 -06:00
|
|
|
|
2018-02-23 16:49:03 -06:00
|
|
|
this.bakeProps();
|
2018-04-29 03:17:15 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
bakeProps() {
|
|
|
|
this.bakedOldProps = JSON.stringify(this.props);
|
|
|
|
},
|
2018-02-23 16:49:03 -06:00
|
|
|
|
2018-04-29 03:17:15 -05:00
|
|
|
mergeProps() {
|
|
|
|
if (data.props) {
|
|
|
|
const defaultProps = data.props();
|
2018-12-11 05:36:55 -06:00
|
|
|
for (const prop of Object.keys(defaultProps)) {
|
|
|
|
if (this.props.hasOwnProperty(prop)) continue;
|
|
|
|
Vue.set(this.props, prop, defaultProps[prop]);
|
|
|
|
}
|
2018-02-23 16:49:03 -06:00
|
|
|
}
|
2018-04-29 03:17:15 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
save() {
|
|
|
|
if (this.bakedOldProps == JSON.stringify(this.props)) return;
|
2018-02-23 16:49:03 -06:00
|
|
|
|
|
|
|
this.bakeProps();
|
|
|
|
|
2019-02-25 04:45:00 -06:00
|
|
|
if (this.platform == 'deck') {
|
|
|
|
this.$store.commit('device/updateDeckColumn', this.column);
|
|
|
|
} else {
|
|
|
|
this.$root.api('i/update_widget', {
|
|
|
|
id: this.id,
|
|
|
|
data: this.props
|
|
|
|
});
|
|
|
|
}
|
2018-02-23 16:49:03 -06:00
|
|
|
}
|
2018-02-14 10:07:09 -06:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|