Sharkey/src/web/app/common/define-widget.ts
2018-02-17 18:14:23 +09:00

54 lines
966 B
TypeScript

import Vue from 'vue';
export default function<T extends object>(data: {
name: string;
props?: T;
}) {
return Vue.extend({
props: {
wid: {
type: String,
required: true
},
wplace: {
type: String,
required: true
},
wprops: {
type: Object,
required: false
}
},
computed: {
id(): string {
return this.wid;
}
},
data() {
return {
props: data.props || {} as T
};
},
watch: {
props(newProps, oldProps) {
if (JSON.stringify(newProps) == JSON.stringify(oldProps)) return;
this.$root.$data.os.api('i/update_home', {
id: this.id,
data: newProps
}).then(() => {
this.$root.$data.os.i.client_settings.home.find(w => w.id == this.id).data = newProps;
});
}
},
created() {
if (this.props) {
Object.keys(this.props).forEach(prop => {
if (this.wprops.hasOwnProperty(prop)) {
this.props[prop] = this.wprops[prop];
}
});
}
}
});
}