-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
231 lines (200 loc) · 4.44 KB
/
index.js
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
const fs = require("fs");
const presetIconColors = [
"#FCBD4D",
"#FF8C59",
"#FB6666",
"#FA78B6",
"#AB87C7",
"#6DB3BF",
"#65AE76",
"#307ABC",
"#568195",
"#956A56"
];
class TextWithVariables {
constructor(value = "", tokens) {
if (tokens) this._output = { value, tokens };
else this._output = this._parse(value);
}
_parse(value) {
const startIndexes = [...value.matchAll(/\${/g)].map(n => n.index);
const endIndexes = [...value.matchAll(/}/g)].map(n => n.index);
const pairs = [];
startIndexes.forEach(n => {
const endIndex = endIndexes.find(m => m > n);
if (endIndex) pairs.push({ start: n, end: endIndex });
});
let text = "";
let lastEnd = 0
const tokens = []
pairs.forEach(({ start, end }) => {
text += value.slice(lastEnd, start)
tokens.push({location: text.length, value: value.slice(start + 2, end)})
text += "$"
lastEnd = end + 1
});
text += value.slice(lastEnd)
return {value: text, tokens}
}
get output() {
return this._output;
}
}
class Component {
constructor(type, parameters) {
this._type = type;
this._parameters = parameters;
}
get output() {
return {
type: this._type,
parameters: this._parameters
};
}
}
class App {
constructor() {
this._name = "未命名";
this._summary = "";
this._icon = "wand.and.stars";
this._iconColor = presetIconColors[0];
this.actions = [];
this.buildVersion = 1;
this.clientMinVersion = 1;
this.clientVersion = 29;
}
set actions(params) {
this._actions = params.map(n => {
if (n instanceof Component) return n.output;
else return n;
});
}
get actions() {
return this._actions;
}
set name(name) {
this._name = name;
}
get name() {
return this._name;
}
set summary(text) {
this._summary = text;
}
get summary() {
return this._summary;
}
set icon(symbol) {
this._icon = symbol;
}
get icon() {
return this._icon;
}
set iconColor(hexcode) {
this._iconColor = hexcode;
}
get iconColor() {
return this._iconColor;
}
get output() {
const output = {
buildVersion: this.buildVersion,
clientMinVersion: this.clientMinVersion,
clientVersion: this.clientVersion,
name: this.name,
summary: this.summary,
icon: {
glyph: this.icon,
color: this.iconColor
},
actions: this.actions
};
return JSON.stringify(output, null, 2)
}
}
function textWithVariables(value, tokens) {
return new TextWithVariables(value, tokens);
}
function comment(text = "") {
const type = "@comment";
const parameters = {
text: {
value: text
}
};
return new Component(type, parameters);
}
function text(text = "") {
const type = "@text";
const parameters = {};
if (text instanceof TextWithVariables) {
parameters.text = text.output;
} else {
parameters.text = { value: text };
}
return new Component(type, parameters);
}
function setVar(name, value = "") {
const type = "@flow.set-variable";
const parameters = {
name: {
value: name
}
};
if (value instanceof TextWithVariables) {
parameters.value = value.output;
} else {
parameters.value = { value };
}
return new Component(type, parameters);
}
function getVar(name, fallback = 0) {
const type = "@flow.get-variable";
const parameters = { fallback };
if (name instanceof TextWithVariables) {
parameters.name = name.output;
} else {
parameters.name = { value: name };
}
return new Component(type, parameters);
}
function uitoast(title = "", style = 0, waitUntilDone = false) {
const type = "@ui.toast";
const parameters = { style, waitUntilDone };
if (title instanceof TextWithVariables) {
parameters.title = title.output;
} else {
parameters.title = { value: title };
}
return new Component(type, parameters);
}
function runjs(params) {
const type = "@flow.javascript";
let js;
if (typeof params === "object") {
const path = params.path;
if (!fs.existsSync(path)) throw new Error("文件不存在!");
js = fs.readFileSync(path).toString();
} else {
js = params;
}
const parameters = {
script: {
value: js
}
};
return new Component(type, parameters);
}
module.exports = {
presetIconColors,
TextWithVariables,
Component,
App,
textWithVariables,
comment,
text,
setVar,
getVar,
uitoast,
runjs
};