summaryrefslogtreecommitdiff
path: root/src/web/app/common/define-widget.ts
blob: fd13a3395b18315a610b347069c64cb638463a05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import Vue from 'vue';

export default function<T extends object>(data: {
	name: string;
	props?: () => T;
}) {
	return Vue.extend({
		props: {
			widget: {
				type: Object
			}
		},
		computed: {
			id(): string {
				return this.widget.id;
			}
		},
		data() {
			return {
				props: data.props ? data.props() : {} as T
			};
		},
		created() {
			if (this.props) {
				Object.keys(this.props).forEach(prop => {
					if (this.widget.data.hasOwnProperty(prop)) {
						this.props[prop] = this.widget.data[prop];
					}
				});
			}

			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
			});
		}
	});
}