forked from chroma-sdk/chroma-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChromaApp.ts
71 lines (63 loc) · 2.4 KB
/
ChromaApp.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
import {AppCategory, AppInfo} from "./AppInfo";
import {AvailableDevices} from "./Devices";
import {ChromaInstance} from "./ChromaInstance";
import fetch from "./request";
export class ChromaApp {
private uninitpromise: any = null;
private activeInstance: Promise<ChromaInstance> = null;
private data: AppInfo;
constructor(title: string,
description: string= "",
author: string= "TempRazerDev",
contact: string= "[email protected]",
devices: AvailableDevices[]= [
AvailableDevices.Keyboard,
AvailableDevices.Mouse,
AvailableDevices.Headset,
AvailableDevices.Mousepad,
AvailableDevices.Keypad,
AvailableDevices.ChromaLink,
],
category: AppCategory= AppCategory.Application) {
this.activeInstance = null;
this.data = new AppInfo();
this.data.Title = title;
this.data.Description = description;
this.data.Author.Name = author;
this.data.Author.Contact = contact;
this.data.DeviceSupported = devices;
this.data.Category = category;
}
public async Instance(create: boolean= true): Promise<ChromaInstance> {
if (this.activeInstance !== null) {
const instance = await this.activeInstance;
if (!instance.destroyed) {
return instance;
} else {
this.activeInstance = null;
}
}
if (create) {
const options = {
body: JSON.stringify(this.data),
headers: {"Content-Type": "application/json"},
method: "post",
};
this.activeInstance = new Promise<ChromaInstance>(async (resolve, reject) => {
try {
const response = await fetch("http://localhost:54235/razer/chromasdk", options);
const json = await response.json();
if (json.uri !== undefined) {
resolve(new ChromaInstance(json.uri));
}
reject("Unable to retrieve URI " + JSON.stringify(json));
} catch (error) {
reject(error);
}
});
return await this.activeInstance;
} else {
return null;
}
}
}