Sharkey/src/client/app/common/define-widget.ts

84 lines
1.3 KiB
TypeScript
Raw Normal View History

2018-02-14 18:07:09 +02:00
import Vue from 'vue';
2018-02-14 18:41:31 +02:00
export default function<T extends object>(data: {
2018-02-14 18:07:09 +02:00
name: string;
2018-02-21 08:30:03 +02:00
props?: () => T;
2018-02-14 18:07:09 +02:00
}) {
return Vue.extend({
props: {
2018-02-18 16:51:41 +02:00
widget: {
type: Object
2018-02-23 19:46:09 +02:00
},
isMobile: {
type: Boolean,
default: false
2018-02-25 15:50:26 +02:00
},
isCustomizeMode: {
type: Boolean,
default: false
2018-02-14 18:07:09 +02:00
}
},
2018-04-29 11:17:15 +03:00
2018-02-14 18:07:09 +02:00
computed: {
id(): string {
2018-02-18 16:51:41 +02:00
return this.widget.id;
2018-04-29 11:17:15 +03:00
},
props(): T {
return this.widget.data;
2018-02-14 18:07:09 +02:00
}
},
2018-04-29 11:17:15 +03:00
2018-02-14 18:07:09 +02:00
data() {
return {
2018-04-29 11:17:15 +03:00
bakedOldProps: null
2018-02-14 18:07:09 +02:00
};
},
2018-04-29 11:17:15 +03:00
2018-02-14 18:07:09 +02:00
created() {
2018-04-29 11:17:15 +03:00
this.mergeProps();
this.$watch('props', () => {
this.mergeProps();
});
2018-02-21 08:30:03 +02:00
2018-02-24 00:49:03 +02:00
this.bakeProps();
2018-04-29 11:17:15 +03:00
},
methods: {
bakeProps() {
this.bakedOldProps = JSON.stringify(this.props);
},
2018-02-24 00:49:03 +02:00
2018-04-29 11:17:15 +03:00
mergeProps() {
if (data.props) {
const defaultProps = data.props();
Object.keys(defaultProps).forEach(prop => {
if (!this.props.hasOwnProperty(prop)) {
Vue.set(this.props, prop, defaultProps[prop]);
}
});
2018-02-24 00:49:03 +02:00
}
2018-04-29 11:17:15 +03:00
},
save() {
if (this.bakedOldProps == JSON.stringify(this.props)) return;
2018-02-24 00:49:03 +02:00
this.bakeProps();
2018-02-23 19:46:09 +02:00
if (this.isMobile) {
(this as any).api('i/update_mobile_home', {
id: this.id,
2018-04-29 11:17:15 +03:00
data: this.props
2018-02-23 19:46:09 +02:00
});
} else {
(this as any).api('i/update_home', {
id: this.id,
2018-04-29 11:17:15 +03:00
data: this.props
2018-02-23 19:46:09 +02:00
});
}
2018-02-24 00:49:03 +02:00
}
2018-02-14 18:07:09 +02:00
}
});
}