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

58 lines
1.1 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-14 18:07:09 +02:00
}
},
computed: {
id(): string {
2018-02-18 16:51:41 +02:00
return this.widget.id;
2018-02-14 18:07:09 +02:00
}
},
data() {
return {
2018-02-21 08:30:03 +02:00
props: data.props ? data.props() : {} as T
2018-02-14 18:07:09 +02:00
};
},
created() {
if (this.props) {
2018-02-14 18:41:31 +02:00
Object.keys(this.props).forEach(prop => {
2018-02-18 16:51:41 +02:00
if (this.widget.data.hasOwnProperty(prop)) {
this.props[prop] = this.widget.data[prop];
2018-02-14 18:41:31 +02:00
}
2018-02-14 18:07:09 +02:00
});
}
2018-02-21 08:30:03 +02:00
this.$watch('props', newProps => {
2018-02-23 19:46:09 +02:00
if (this.isMobile) {
(this as any).api('i/update_mobile_home', {
id: this.id,
data: newProps
}).then(() => {
(this as any).os.i.client_settings.mobile_home.find(w => w.id == this.id).data = newProps;
});
} else {
(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;
});
}
2018-02-21 08:30:03 +02:00
}, {
deep: true
});
2018-02-14 18:07:09 +02:00
}
});
}