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