blob: 4e83e37c6e75d9f9d0c77ec369b5491c4cf3f696 (
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
45
46
47
48
49
50
51
52
53
|
import Vue from 'vue';
export default function<T extends object>(data: {
name: string;
props?: T;
}) {
return Vue.extend({
props: {
wid: {
type: String,
required: true
},
wplace: {
type: String,
required: true
},
wprops: {
type: Object,
required: false
}
},
computed: {
id(): string {
return this.wid;
}
},
data() {
return {
props: data.props || {} as T
};
},
watch: {
props(newProps, oldProps) {
if (JSON.stringify(newProps) == JSON.stringify(oldProps)) return;
this.$root.$data.os.api('i/update_home', {
id: this.id,
data: newProps
}).then(() => {
this.$root.$data.os.i.client_settings.home.find(w => w.id == this.id).data = newProps;
});
}
},
created() {
if (this.props) {
Object.keys(this.props).forEach(prop => {
if (this.wprops.hasOwnProperty(prop)) {
this.props[prop] = this.wprops[prop];
}
});
}
}
});
}
|