forked from chroma-sdk/chroma-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChromaInstance.ts
152 lines (125 loc) · 4.1 KB
/
ChromaInstance.ts
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
54
55
56
57
58
59
60
61
62
63
64
65
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
import Color from "./Color";
import fetch from "./request";
import {Animation} from "./Animation";
import {IDevice, IDeviceData} from "./Devices/Base";
import DeviceContainer from "./Devices";
import Effect from "./Effect";
export class ChromaInstance extends DeviceContainer {
public destroyed: boolean = false;
private url: string;
private interval: number;
private activeAnimation: Animation = null;
constructor(url: string) {
super();
this.url = url;
this.heartbeat = this.heartbeat.bind(this);
this.setAll = this.setAll.bind(this);
this.destroy = this.destroy.bind(this);
this.interval = setInterval(this.heartbeat, 10000);
}
public async playAnimation(animation: Animation) {
await this.stopAnimation();
this.activeAnimation = animation;
await animation.play(this);
return animation;
}
public async stopAnimation() {
if (this.activeAnimation !== null) {
await this.activeAnimation.stop();
this.activeAnimation = null;
}
return;
}
public async destroy() {
this.destroyed = true;
clearInterval(this.interval);
this.interval = null;
const url = this.url;
this.url = "";
const response = await fetch(url, {
method: "delete",
});
if (!response.ok) {
throw Error(response.statusText);
}
return true;
}
public async heartbeat() {
if (this.url === "") {
return;
}
const response = await fetch(this.url + "/heartbeat", {
method: "put",
});
if (!response.ok) {
throw Error(response.statusText);
}
return response;
}
public async send(container: DeviceContainer = this) {
if (this.url === "") {
return;
}
const devices: IDevice[] = [];
const effectids = [];
for (const device of container.Devices){
if (device.activeEffect === Effect.UNDEFINED) {
continue;
}
if (device.effectId !== "") {
effectids.push(device.effectId);
} else {
devices.push(device);
}
}
this.setEffect(effectids);
return await this.sendDeviceUpdate(devices, false);
}
public async sendDeviceUpdate(devices: IDeviceData[], store: boolean= false) {
const response = [];
for (const device of devices){
const name = device.device;
const parsedData = device.effectData;
const deviceresponse = await fetch(this.url + "/" + name, {
body: JSON.stringify(parsedData),
headers: { "Content-Type": "application/json" },
method: (store) ? "post" : "put",
});
if (!deviceresponse.ok) {
throw Error(deviceresponse.statusText);
}
const data = await deviceresponse.json();
response.push(data.results);
}
return response;
}
public async setEffect(effectids: string[]) {
if (effectids.length === 0) {
return;
}
for (const effectid of effectids){
const payload = JSON.stringify({
id: effectid,
});
const deviceresponse = await fetch(this.url + "/effect", {
body: payload,
headers: { "Content-Type": "application/json", "Content-Length": payload.length },
method: "put",
});
const jsonresp = await deviceresponse.json();
}
}
public async deleteEffect(effectids: string[]) {
if (effectids.length === 0) {
return;
}
const payload = JSON.stringify({
ids: effectids,
});
const deviceresponse = await fetch(this.url + "/effect", {
body: payload,
headers: { "Content-Type": "application/json", "Content-Length": payload.length },
method: "delete",
});
}
}