egirlskey/src/web/app/common/define-widget.ts

45 lines
843 B
TypeScript
Raw Normal View History

2018-02-14 16:07:09 +00:00
import Vue from 'vue';
2018-02-14 16:41:31 +00:00
export default function<T extends object>(data: {
2018-02-14 16:07:09 +00:00
name: string;
2018-02-15 03:36:42 +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-14 16:07:09 +00:00
}
},
computed: {
id(): string {
2018-02-18 14:51:41 +00:00
return this.widget.id;
2018-02-14 16:07:09 +00:00
}
},
data() {
return {
2018-02-17 09:14:23 +00:00
props: data.props || {} as T
2018-02-14 16:07:09 +00:00
};
},
watch: {
props(newProps, oldProps) {
if (JSON.stringify(newProps) == JSON.stringify(oldProps)) return;
2018-02-18 14:51:41 +00:00
(this as any).api('i/update_home', {
2018-02-14 16:07:09 +00:00
id: this.id,
data: newProps
}).then(() => {
2018-02-18 14:51:41 +00:00
(this as any).os.i.client_settings.home.find(w => w.id == this.id).data = newProps;
2018-02-14 16:07:09 +00:00
});
}
},
created() {
if (this.props) {
2018-02-14 16:41:31 +00:00
Object.keys(this.props).forEach(prop => {
2018-02-18 14:51:41 +00:00
if (this.widget.data.hasOwnProperty(prop)) {
this.props[prop] = this.widget.data[prop];
2018-02-14 16:41:31 +00:00
}
2018-02-14 16:07:09 +00:00
});
}
}
});
}