-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.ts
131 lines (122 loc) · 3.3 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
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
import {
init,
createValueApproval,
getValueApproveInfo,
createAssetApproval,
getAssetApproveInfo
} from "./src/example";
import { config } from "./src/config";
const divConsole = document.getElementById("console");
const btnInitialize = document.getElementById("btnInitialize");
const btnCreateValueApproval = document.getElementById(
"btnCreateValueApproval"
);
const btnGetValueApproveInfo = document.getElementById(
"btnGetValueApproveInfo"
);
const btnCreateAssetApproval = document.getElementById(
"btnCreateAssetApproval"
);
const btnGetAssetApproveInfo = document.getElementById(
"btnGetAssetApproveInfo"
);
btnInitialize.addEventListener("click", async () => {
try {
await init();
printMessage("Initialized.");
} catch (e) {
printError(e);
}
});
btnCreateValueApproval.addEventListener("click", async () => {
if (config.client === null) {
printWarning("First initialize the client.");
return;
}
if (config.assetLedgerId === "") {
printWarning(
"No assetLedgerSource defined. Either deploy a new asset ledger or set asset ledger source in src/config.ts file."
);
return;
}
if (config.operator === "") {
printWarning("No operator defined. Set operator in src/config.ts file.");
return;
}
printMessage("Creating value approval");
try {
const approval = await createValueApproval();
printMessage(approval.data);
} catch (e) {
printError(e);
}
});
btnCreateAssetApproval.addEventListener("click", async () => {
if (config.valueApprovalRef === "") {
printWarning("First approve value.");
return;
}
const valueApprove = await getValueApproveInfo();
if (valueApprove.data.status < 3) {
printWarning("Value approval still in progress. This can take a minute.");
return;
}
printMessage("Creating asset approval");
try {
const approval = await createAssetApproval();
printMessage(approval.data);
} catch (e) {
printError(e);
}
});
btnGetValueApproveInfo.addEventListener("click", async () => {
if (config.valueApprovalRef === "") {
printWarning("First create an value approval.");
return;
}
try {
const approve = await getValueApproveInfo();
printMessage(approve.data);
} catch (e) {
printError(e);
}
});
btnGetAssetApproveInfo.addEventListener("click", async () => {
if (config.assetApprovalRef === "") {
printWarning("First create an asset approval.");
return;
}
try {
const approve = await getAssetApproveInfo();
printMessage(approve.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) {
console.log(message);
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);
}