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-21 07:30:03 +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-21 07:30:03 +01:00
|
|
|
props: data.props ? data.props() : {} as T
|
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
|
|
|
});
|
|
|
|
}
|
2018-02-21 07:30:03 +01:00
|
|
|
|
|
|
|
this.$watch('props', newProps => {
|
|
|
|
(this as any).api('i/update_home', {
|
|
|
|
id: this.id,
|
|
|
|
data: newProps
|
|
|
|
}).then(() => {
|
|
|
|
(this as any).os.i.client_settings.home.find(w => w.id == this.id).data = newProps;
|
|
|
|
});
|
|
|
|
}, {
|
|
|
|
deep: true
|
|
|
|
});
|
2018-02-14 17:07:09 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|