homey-api 3.18.0 → 3.18.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -62,35 +62,39 @@ class Item extends EventEmitter {
|
|
|
62
62
|
writable: true,
|
|
63
63
|
});
|
|
64
64
|
|
|
65
|
-
this
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
65
|
+
Object.defineProperty(this, '__realtimeConsumer', {
|
|
66
|
+
value: new RealtimeConsumer({
|
|
67
|
+
subscribe: (uri, handlers) => this.homey.subscribe(uri, handlers),
|
|
68
|
+
getUri: () => this.uri,
|
|
69
|
+
debug: (...props) => this.__debug(...props),
|
|
70
|
+
setConnected: (connected) => {
|
|
71
|
+
this.__connected = connected;
|
|
72
|
+
},
|
|
73
|
+
onConnect: () => {
|
|
74
|
+
this.onConnect();
|
|
75
|
+
},
|
|
76
|
+
onDisconnect: () => {
|
|
77
|
+
this.onDisconnect();
|
|
78
|
+
},
|
|
79
|
+
onReconnect: () => {
|
|
80
|
+
this.onReconnect();
|
|
81
|
+
},
|
|
82
|
+
onEvent: (event, data) => {
|
|
83
|
+
if (event === 'update') {
|
|
84
|
+
this.__update(this.constructor.transformGet({ ...data }));
|
|
85
|
+
return;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
if (event === 'delete') {
|
|
89
|
+
this.__delete();
|
|
90
|
+
return;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
this.emit(event, data);
|
|
94
|
+
},
|
|
95
|
+
}),
|
|
96
|
+
enumerable: false,
|
|
97
|
+
writable: false,
|
|
94
98
|
});
|
|
95
99
|
|
|
96
100
|
// Set Properties
|
|
@@ -87,69 +87,73 @@ class Manager extends EventEmitter {
|
|
|
87
87
|
writable: false,
|
|
88
88
|
});
|
|
89
89
|
|
|
90
|
-
this
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
this.emit(event, item);
|
|
117
|
-
return;
|
|
118
|
-
}
|
|
119
|
-
case 'update': {
|
|
120
|
-
const props = ItemClass.transformGet(data);
|
|
90
|
+
Object.defineProperty(this, '__realtimeConsumer', {
|
|
91
|
+
value: new RealtimeConsumer({
|
|
92
|
+
subscribe: (uri, handlers) => this.homey.subscribe(uri, handlers),
|
|
93
|
+
getUri: () => this.uri,
|
|
94
|
+
debug: (...props) => this.__debug(...props),
|
|
95
|
+
setConnected: (connected) => {
|
|
96
|
+
this.__connected = connected;
|
|
97
|
+
},
|
|
98
|
+
onEvent: (event, data) => {
|
|
99
|
+
// Transform & add to cache if this is a CRUD event
|
|
100
|
+
if (event.endsWith('.create') || event.endsWith('.update') || event.endsWith('.delete')) {
|
|
101
|
+
const [itemId, operation] = event.split('.');
|
|
102
|
+
const itemName = this.itemNames[itemId];
|
|
103
|
+
const ItemClass = this.itemClasses[itemName];
|
|
104
|
+
|
|
105
|
+
switch (operation) {
|
|
106
|
+
case 'create': {
|
|
107
|
+
const props = ItemClass.transformGet(data);
|
|
108
|
+
|
|
109
|
+
const item = new ItemClass({
|
|
110
|
+
id: props.id,
|
|
111
|
+
homey: this.homey,
|
|
112
|
+
manager: this,
|
|
113
|
+
properties: props,
|
|
114
|
+
});
|
|
115
|
+
this.__cache[ItemClass.ID][props.id] = item;
|
|
121
116
|
|
|
122
|
-
if (this.__cache[ItemClass.ID][props.id]) {
|
|
123
|
-
const item = this.__cache[ItemClass.ID][props.id];
|
|
124
|
-
item.__update(props);
|
|
125
117
|
this.emit(event, item);
|
|
126
118
|
return;
|
|
127
119
|
}
|
|
120
|
+
case 'update': {
|
|
121
|
+
const props = ItemClass.transformGet(data);
|
|
122
|
+
|
|
123
|
+
if (this.__cache[ItemClass.ID][props.id]) {
|
|
124
|
+
const item = this.__cache[ItemClass.ID][props.id];
|
|
125
|
+
item.__update(props);
|
|
126
|
+
this.emit(event, item);
|
|
127
|
+
return;
|
|
128
|
+
}
|
|
128
129
|
|
|
129
|
-
|
|
130
|
-
}
|
|
131
|
-
case 'delete': {
|
|
132
|
-
const props = ItemClass.transformGet(data);
|
|
133
|
-
|
|
134
|
-
if (this.__cache[ItemClass.ID][props.id]) {
|
|
135
|
-
const item = this.__cache[ItemClass.ID][props.id];
|
|
136
|
-
item.__delete();
|
|
137
|
-
delete this.__cache[ItemClass.ID][item.id];
|
|
138
|
-
this.emit(event, {
|
|
139
|
-
id: item.id,
|
|
140
|
-
});
|
|
141
|
-
return;
|
|
130
|
+
break;
|
|
142
131
|
}
|
|
132
|
+
case 'delete': {
|
|
133
|
+
const props = ItemClass.transformGet(data);
|
|
134
|
+
|
|
135
|
+
if (this.__cache[ItemClass.ID][props.id]) {
|
|
136
|
+
const item = this.__cache[ItemClass.ID][props.id];
|
|
137
|
+
item.__delete();
|
|
138
|
+
delete this.__cache[ItemClass.ID][item.id];
|
|
139
|
+
this.emit(event, {
|
|
140
|
+
id: item.id,
|
|
141
|
+
});
|
|
142
|
+
return;
|
|
143
|
+
}
|
|
143
144
|
|
|
144
|
-
|
|
145
|
+
break;
|
|
146
|
+
}
|
|
147
|
+
default:
|
|
148
|
+
break;
|
|
145
149
|
}
|
|
146
|
-
default:
|
|
147
|
-
break;
|
|
148
150
|
}
|
|
149
|
-
}
|
|
150
151
|
|
|
151
|
-
|
|
152
|
-
|
|
152
|
+
this.emit(event, data);
|
|
153
|
+
},
|
|
154
|
+
}),
|
|
155
|
+
enumerable: false,
|
|
156
|
+
writable: false,
|
|
153
157
|
});
|
|
154
158
|
|
|
155
159
|
// Create methods
|