-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.ts
72 lines (65 loc) · 1.84 KB
/
index.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
import { init, getOrderInfo, createOrder } from "./src/example";
import { config } from "./src/config";
const divConsole = document.getElementById("console");
const btnInitialize = document.getElementById("btnInitialize");
const btnDeployAssetLedger = document.getElementById("btnDeployAssetLedger");
const btnGetDeployInfo = document.getElementById("btnGetDeployInfo");
btnInitialize.addEventListener("click", async () => {
try {
await init();
printMessage("Initialized.");
} catch (e) {
printError(e);
}
});
btnDeployAssetLedger.addEventListener("click", async () => {
if (config.client === null) {
printWarning("First initialize the client.");
return;
}
printMessage("Creating an order");
try {
const order = await createOrder();
printMessage(order.data);
} catch (e) {
printError(e);
}
});
btnGetDeployInfo.addEventListener("click", async () => {
if (config.orderRef === "") {
printWarning("First create an order.");
return;
}
try {
const order = await getOrderInfo();
printMessage(order.data);
} catch (e) {
printError(e);
}
});
function printMessage(message: any) {
if (typeof message !== "string") {
message = JSON.stringify(message, null, 2);
}
const div = document.createElement("div");
div.innerText = message;
divConsole.prepend(div);
}
function printWarning(message: any) {
if (typeof message !== "string") {
message = JSON.stringify(message, null, 2);
}
const div = document.createElement("div");
div.innerText = "Warning: " + message;
div.className = "warning";
divConsole.prepend(div);
}
function printError(message: any) {
if (typeof message !== "string") {
message = JSON.stringify(message, null, 2);
}
const div = document.createElement("div");
div.innerText = "Error: " + message;
div.className = "error";
divConsole.prepend(div);
}