-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
custom-blocks.js
489 lines (418 loc) · 13.2 KB
/
custom-blocks.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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
import os from 'os';
import path from 'path';
import { observable, action } from 'mobx';
import { remote } from 'electron';
import fs from 'fs-extra';
import mkdirp from 'mkdirp';
import fecha from 'fecha';
import request from 'request';
import requestProgress from 'request-progress';
import services from '../services';
import logger from '../lib/logger';
const defaultWorkspacePath = path.join(os.homedir(), '.iceworks');
// const devWorkbenchPath = 'http://127.0.0.1:3333/src/pages/workbench/index.html';
const onlineWorkbenchPath = 'http://ice.alicdn.com/iceland-assets/workbench/v21300/pages/workbench/index.html';
const presentWorkbenchPath = onlineWorkbenchPath;
/**
* 自定义区块状态管理
*/
class CustomBlocks {
blockSaving = false;
materialData = '';
materialEngine = null;
blockCounter = 0;
paintOffset = {};
paintHeight = 0;
paintWidth = 0;
iconData = '';
dataLoading = false;
capture = false;
requestCount = 0;
@observable blockEditing = false;
@observable workBenchWindow = null;
@observable visible = false;
@observable showCustomBlocks = false;
@observable isDisabled = false;
@observable blockName = '';
@observable blockAlias = '';
@observable currentBlock = {};
@observable blockJSON = '';
@observable blockCode = {};
@observable blockNameValidation = '';
@observable renameVisible = false;
@observable renameBlockName = '';
@observable renameBlockAlias = '';
@observable renameBlock = '';
@observable blockDeps = [];
@observable blocksStorage = {};
@observable showModal = false;
@observable previewBlock = {};
@observable materialProgress = 0;
@observable progressVisible = false;
@observable progressRemaining = 0;
@observable progressSpeed = 0;
@observable progressTitle = '';
@observable errorVisible = false;
deepClone(value) {
return JSON.parse(JSON.stringify(value));
}
initCustomBlocks() {
// 确保目录存在
mkdirp.sync(path.join(defaultWorkspacePath, 'blocks'));
mkdirp.sync(path.join(defaultWorkspacePath, 'images'));
// 读取区块文件数据到状态池
this.initBlocksData();
}
initBlocksData() {
fs.readdirSync(path.join(defaultWorkspacePath, 'blocks')).forEach((element) => {
this.blocksStorage[element] = JSON.parse(
fs.readFileSync(
path.join(defaultWorkspacePath, 'blocks', element),
'utf8'
)
);
});
}
loadMaterialData() {
if (this.dataLoading) {
this.progressVisible = true;
}
if (!this.materialData) {
this.dataLoading = true;
this.progressTitle = '下载物料数据';
requestProgress(
request(
'http://ice.alicdn.com/iceland-assets/material-engine-production.json',
(error, response, body) => {
if (!error) {
this.materialData = body;
this.getEngine('react');
this.loadIconData();
} else if (this.requestCount < 3) {
this.requestCount++;
this.loadMaterialData();
} else {
this.requestCount = 0;
this.errorVisible = true;
this.dataLoading = false;
this.progressVisible = false;
}
}),
{})
.on('progress', (state) => {
this.materialProgress = Math.ceil(state.percentage * 50);
this.progressSpeed = Math.floor(state.speed / 1024);
});
}
}
loadIconData() {
if (!this.iconData) {
this.progressTitle = '下载 Iconfont 数据';
requestProgress(
request('http://ice.alicdn.com/iceland-assets/iconData.json',
(error, response, body) => {
if (!error) {
this.materialProgress = 100;
this.iconData = body;
this.dataLoading = false;
this.progressVisible = false;
this.dataTest();
} else if (this.requestCount < 3) {
this.requestCount++;
this.loadIconData();
} else {
this.requestCount = 0;
this.errorVisible = true;
this.dataLoading = false;
this.progressVisible = false;
}
}),
{})
.on('progress', (state) => {
this.materialProgress = Math.ceil(state.percentage * 50) + 50;
this.progressSpeed = Math.floor(state.speed / 1024);
});
}
}
getEngine() {
if (!this.materialEngine) {
this.materialEngine = services.customBlocks.getEngine(JSON.parse(this.materialData));
}
}
@action
openProgress = () => {
this.progressVisible = true;
};
@action
closeProgress = () => {
this.progressVisible = false;
};
@action
closeError = () => {
this.errorVisible = false;
};
@action
openModal = (blockName) => {
this.showModal = true;
this.previewBlock.name = blockName;
this.previewBlock.screenshot = `data:image/png;base64,${this.getBlockImg(blockName)}`;
};
@action
closeModal = () => {
this.showModal = false;
};
// 重置新建区块和重命名表单
formReset() {
this.blockName = '';
this.blockAlias = '';
this.blockNameValidation = '';
this.renameBlock = '';
this.renameBlockName = '';
this.renameBlockAlias = '';
}
@action
getBlockImg(blockName) {
try {
const img = fs.readFileSync(path.join(defaultWorkspacePath, 'images', blockName), 'base64');
return img;
} catch (e) {
return '';
}
}
@action
close() {
this.visible = false;
}
@action
open() {
this.visible = true;
// 获取区块名默认值
this.blockCounter = Object.keys(this.blocksStorage).length;
this.getDefaultBlockName(this.blockCounter);
}
@action
renameClose() {
this.renameVisible = false;
}
@action
renameOpen(name) {
this.renameVisible = true;
this.renameBlockName = name;
this.renameBlock = name;
this.resetBlockAlias(this.blocksStorage[name].alias);
}
getDefaultBlockName(blockCounter) {
blockCounter++;
const blockName = `block${blockCounter}`;
if (Object.prototype.hasOwnProperty.call(this.blocksStorage, blockName)) {
this.getDefaultBlockName(blockCounter);
} else {
this.setBlockName(blockName);
}
}
// 表单onChange + 验证
@action
setBlockName(value = '') {
if (value.trim() === '' || !/^[a-z][0-9a-z]*$/i.test(value.trim())) {
this.blockNameValidation = '区块名须由字母、数字组成, 字母开头';
this.isDisabled = true;
} else if (Object.prototype.hasOwnProperty.call(this.blocksStorage, value)) {
this.isDisabled = true;
this.blockNameValidation = '区块名重复';
} else {
this.blockNameValidation = '';
this.isDisabled = false;
}
this.blockName = value;
}
@action
setBlockAlias(value = '') {
this.blockAlias = value;
}
// 表单onChange时表单验证
@action
resetBlockName(value = '') {
if (value.trim() === '' || !/^[a-z][0-9a-z]*$/i.test(value.trim())) {
this.blockNameValidation = '区块名须由字母、数字组成,字母开头';
this.isDisabled = true;
} else if (Object.prototype.hasOwnProperty.call(this.blocksStorage, value) && this.renameBlock !== value) {
this.isDisabled = true;
this.blockNameValidation = '区块名重复';
} else {
this.blockNameValidation = '';
this.isDisabled = false;
}
this.renameBlockName = value;
}
@action
resetBlockAlias(value = '') {
this.renameBlockAlias = value;
}
@action
refactorBlock() {
if (this.renameBlock !== this.renameBlockName || this.renameBlockAlias !== this.blocksStorage[this.renameBlockName].alias) {
this.blockEditing = true;
this.refactorBlockFiles(this.renameBlock);
this.blocksStorage[this.renameBlockName] = this.deepClone(this.blocksStorage[this.renameBlock]);
this.blocksStorage[this.renameBlockName].alias = this.renameBlockAlias;
if (this.renameBlock !== this.renameBlockName) {
this.deleteBlock(this.renameBlock);
}
this.blockEditing = false;
this.formReset();
}
}
refactorBlockFiles(blockName) {
const blockData = fs.readFileSync(path.join(defaultWorkspacePath, 'blocks', blockName), 'utf8');
const newBlockData = JSON.parse(blockData);
newBlockData.alias = this.renameBlockAlias;
fs.writeFileSync(path.join(defaultWorkspacePath, 'blocks', this.renameBlockName), JSON.stringify(newBlockData));
const imageData = fs.readFileSync(path.join(defaultWorkspacePath, 'images', blockName));
fs.writeFileSync(path.join(defaultWorkspacePath, 'images', this.renameBlockName), imageData);
}
@action
dataTest() {
if (!this.materialData || !this.iconData) {
this.progressVisible = true;
this.loadMaterialData();
} else {
this.openWorkBench();
}
}
@action
openWorkBench() {
if (!this.materialData || !this.iconData) {
return this.dataTest();
}
if (!this.workBenchWindow) {
this.workBenchEventsBinding();
if (this.blockJSON) {
this.workBenchWindow.webContents.setUserAgent(JSON.stringify({
name: this.blockName,
json: this.blockJSON,
}));
} else {
this.workBenchWindow.webContents.setUserAgent(JSON.stringify({
name: this.blockName,
}));
}
}
}
@action
editBlock(name) {
this.blockName = name;
this.blockCode = this.blocksStorage[name].code;
this.blockAlias = this.blocksStorage[name].alias;
this.blockJSON = this.blocksStorage[name].json;
this.dataTest();
}
workBenchEventsBinding() {
this.blockEditing = true;
this.workBenchWindow = new remote.BrowserWindow({
title: 'ICELAND - 区块搭建',
width: 1280,
minWidth: 1186,
height: 720,
minHeight: 720,
show: false,
});
this.workBenchWindow.once('ready-to-show', () => {
this.workBenchWindow.show();
});
this.workBenchWindow.loadURL(presentWorkbenchPath);
this.workBenchWindow.webContents.executeJavaScript(`window.IceLand.materialData = ${this.materialData}`, true);
// 回调参数和官方文档描述不符
this.workBenchWindow.webContents.on('console-message', (level, sourceId, message, line) => {
logger.info(message, line);
if (line === 133 || line === 125) {
const passBackData = JSON.parse(message);
if (passBackData) {
if (passBackData.type === 'icon') {
this.workBenchWindow.webContents.executeJavaScript(`window.IceLand.iconData = ${this.iconData}`, true);
} else if (passBackData.type === 'offset') {
this.paintOffset = passBackData.value;
} else if (passBackData.type === 'height') {
this.paintHeight = passBackData.value + 72;
} else if (passBackData.type === 'width') {
this.paintWidth = passBackData.value + 72;
this.capture = true;
} else if (passBackData.type === 'Group') {
this.blockSaving = true;
const JSONObj = passBackData;
JSONObj.props.style.position = 'relative';
this.blockJSON = JSON.stringify(JSONObj);
this.jsonTransfer();
}
}
}
});
this.workBenchWindow.on('closed', () => {
this.workBenchWindow = null;
this.formReset();
});
this.workBenchWindow.on('close', (event) => {
if (!this.blockSaving) {
this.workBenchWindow.destroy();
this.blockJSON = '';
this.blockEditing = false;
} else {
event.preventDefault();
}
});
}
// json转代码 + 抽取依赖 + 代码美化
jsonTransfer() {
const json = JSON.parse(this.blockJSON);
services.customBlocks.dsl2code(json, this.materialEngine, this.saveCustomBlock);
}
saveCustomBlock = (deps, code) => {
this.blockDeps = deps;
this.blockCode = JSON.parse(code);
this.currentBlock = {
json: this.blockJSON,
alias: this.blockAlias,
code: this.blockCode,
type: 'custom',
time: fecha.format(new Date(), 'YYYY-MM-DD HH:mm:ss'),
dep: this.blockDeps,
};
fs.writeFileSync(path.join(defaultWorkspacePath, 'blocks', this.blockName), JSON.stringify(this.currentBlock));
if (this.capture) {
this.workBenchWindow.capturePage({
x: Math.floor(this.paintOffset.left),
y: Math.floor(this.paintOffset.top),
width: Math.floor(this.paintWidth),
height: Math.floor(this.paintHeight),
}, (img) => {
fs.writeFile(path.join(defaultWorkspacePath, 'images', this.blockName), img.toPNG(), () => {
this.refreshBlocks();
this.blockSaving = false;
this.blockJSON = '';
this.capture = false;
});
});
}
};
refreshBlocks = () => {
this.blocksStorage[this.blockName] = this.deepClone(this.currentBlock);
};
@action
deleteBlock(name) {
delete this.blocksStorage[name];
fs.remove(path.join(defaultWorkspacePath, 'blocks', name), (error) => {
if (error) {
logger.error(error);
} else {
logger.info('删除区块数据');
}
});
fs.remove(path.join(defaultWorkspacePath, 'images', name), (error) => {
if (error) {
logger.error(error);
} else {
logger.info('删除区块截图');
}
});
}
}
export default new CustomBlocks();