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-23 18:46:09 +01:00
|
|
|
},
|
|
|
|
isMobile: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
2018-02-25 14:50:26 +01:00
|
|
|
},
|
|
|
|
isCustomizeMode: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
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-23 23:49:03 +01:00
|
|
|
props: data.props ? data.props() : {} as T,
|
|
|
|
bakedOldProps: null,
|
|
|
|
preventSave: false
|
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
|
|
|
|
2018-02-23 23:49:03 +01:00
|
|
|
this.bakeProps();
|
|
|
|
|
2018-02-21 07:30:03 +01:00
|
|
|
this.$watch('props', newProps => {
|
2018-02-23 23:49:03 +01:00
|
|
|
if (this.preventSave) {
|
|
|
|
this.preventSave = false;
|
2018-02-24 04:32:49 +01:00
|
|
|
this.bakeProps();
|
2018-02-23 23:49:03 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (this.bakedOldProps == JSON.stringify(newProps)) return;
|
|
|
|
|
|
|
|
this.bakeProps();
|
|
|
|
|
2018-02-23 18:46:09 +01:00
|
|
|
if (this.isMobile) {
|
|
|
|
(this as any).api('i/update_mobile_home', {
|
|
|
|
id: this.id,
|
|
|
|
data: newProps
|
|
|
|
}).then(() => {
|
2018-03-30 14:31:51 +02:00
|
|
|
(this as any).os.i.account.clientSettings.mobileHome.find(w => w.id == this.id).data = newProps;
|
2018-02-23 18:46:09 +01:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
(this as any).api('i/update_home', {
|
|
|
|
id: this.id,
|
|
|
|
data: newProps
|
|
|
|
}).then(() => {
|
2018-03-29 07:48:47 +02:00
|
|
|
(this as any).os.i.account.clientSettings.home.find(w => w.id == this.id).data = newProps;
|
2018-02-23 18:46:09 +01:00
|
|
|
});
|
|
|
|
}
|
2018-02-21 07:30:03 +01:00
|
|
|
}, {
|
|
|
|
deep: true
|
|
|
|
});
|
2018-02-23 23:49:03 +01:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
bakeProps() {
|
|
|
|
this.bakedOldProps = JSON.stringify(this.props);
|
|
|
|
}
|
2018-02-14 17:07:09 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|