-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathnode.js
449 lines (417 loc) · 12.2 KB
/
node.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
import $ from 'jquery';
import * as _ from 'lodash';
import { Node } from 'butterfly-dag';
import * as ReactDOM from 'react-dom';
import emptyDom from './empty';
import Endpoint from './endpoint';
import RightMenuGen from './right-menu';
export default class TableNode extends Node {
constructor(opts) {
super(opts);
this.fieldsList = [];
// 每列宽度
this.COLUMN_WIDTH = 60;
this.status = 'expand';
this.emptyDataTree = undefined;
}
draw(obj) {
let _dom = obj.dom;
if (!_dom) {
_dom = $('<div></div>')
.attr('class', 'node table-node')
.attr('id', obj.name);
}
const node = $(_dom);
// 计算节点坐标
if (obj.top !== undefined) {
node.css('top', `${obj.top}px`);
}
if (obj.left !== undefined) {
node.css('left', `${obj.left}px`);
}
this._createTableTitle(node);
this._createExtIcon(node);
this._createFields(node);
return node[0];
}
mounted() {
// 生成field的endpoint
this._createNodeEndpoint();
if (this.fieldsList.length === 0) {
$(this.dom).find('.title').css('width', this.options._emptyWidth || 150);
}
$(this.dom).on('dblclick', (e) => {
this.emit('system.node.dblClick', {
node: this
});
});
// 生成右键菜单
this._createRightMenu();
}
focus() {
$(this.dom).addClass('focus');
this.options.minimapActive = true;
}
unfocus() {
$(this.dom).removeClass('focus');
this.options.minimapActive = false;
}
_expand() {
if (this.status === 'expand') {
console.warn(`节点${this.id}已经是展开状态`)
return;
}
// 清除新锚点
this._rmTitleEndpoint();
// 隐藏字段
this.fieldsList.forEach((item) => {
$(item.dom).css('display', 'flex');
let points = [
this.getEndpoint(item.id),
this.getEndpoint(`${item.id}-left`),
this.getEndpoint(`${item.id}-right`),
]
points.forEach((item) => {
item.updatePos();
});
});
// 记录状态
this.status = 'expand';
// 改变伸缩状态
$(this.dom).removeClass('collapse');
}
_collapse(oldEdges) {
if (this.status === 'collapse') {
console.warn(`节点${this.id}已经是收缩状态`)
return;
}
// 生成新锚点
this._createTitleEndpoint();
// 隐藏字段
this.fieldsList.forEach((item) => {
$(item.dom).css('display', 'none');
});
// 记录状态
this.status = 'collapse';
// 改变伸缩状态
$(this.dom).addClass('collapse');
// 生成新线段,并去重
let newEdges = [];
oldEdges.forEach((item) => {
let updateObj = {};
if (item.sourceNode === this.id) {
updateObj['source'] = `${this.id}-right`;
} else if (item.targeNode = this.id) {
updateObj['target'] = `${this.id}-left`;
}
let newEdgeObj = _.assign({}, item, updateObj);
let hasExist = _.some(newEdges, (item) => {
return (
newEdgeObj.sourceNode === item.sourceNode &&
newEdgeObj.source === item.source &&
newEdgeObj.targetNode === item.targetNode &&
newEdgeObj.target === item.target
)
});
if (!hasExist) {
newEdges.push(newEdgeObj);
}
});
return newEdges;
}
_createTableTitle(container = this.dom) {
let title = _.get(this, 'options.title');
let titleRender = _.get(this, 'options._config.titleRender');
let titleDom = $(`<div class="title"></div>`);
$(container).append(titleDom);
if (title) {
if (titleRender) {
let titleTextDom = $(`<div class="title-text"></div>`);
$(titleDom).append(titleTextDom);
ReactDOM.render(
titleRender(title, this.options),
titleTextDom[0],
() => {
this._updateEndpointPos();
}
);
} else {
let titleTextDom = $(`<div class="title-text">${title}</div>`);
$(titleDom).append(titleTextDom);
}
}
}
_createExtIcon(container = this.dom) {
let titleDom = $(container).find('.title');
let titleIcon = $('<span class="title-icon-con"></span>');
// 展开收缩icon
let collapseIcon = $('<i class="table-build-icon table-build-icon-xiala"></i>');
collapseIcon.on('click', (e) => {
if (this.status === 'collapse') {
this.emit('custom.node.expand', {
nodeId: this.id
});
} else {
this.emit('custom.node.collapse', {
nodeId: this.id
});
}
});
titleIcon.append(collapseIcon);
// 删除icon
let deleteIcon = $('<i class="table-build-icon table-build-icon-canvas-cuo"></i>');
deleteIcon.on('click', (e) => {
this.emit('custom.node.delete', {
node: this
});
});
titleIcon.append(deleteIcon);
let extIcon = $('<span class="title-ext-icon"></span>');
let titleIconRender = _.get(this, 'options._config.titleExtIconRender');
if (titleIconRender) {
titleIcon.prepend(extIcon);
ReactDOM.render(
titleIconRender(this.options),
extIcon[0]
);
}
titleDom.append(titleIcon);
}
_createFields(container = this.dom, fieldList) {
let fields = fieldList || _.get(this, 'options.fields');
let coloums = _.get(this, 'options._columns', []);
let _primaryKey = _.get(coloums, '[0].key');
if (fields && fields.length) {
return fields.map((_field) => {
let fieldDom = $('<div class="field"></div>');
coloums.forEach((_col) => {
if (_col.render) {
let fieldItemDom = $(`<span class="field-item"></span>`);
fieldItemDom.css('width', (_col.width || this.COLUMN_WIDTH) + 'px').attr('dataType', _col.key);
fieldDom.append(fieldItemDom);
ReactDOM.render(
_col.render(_field[_col.key], _field),
fieldItemDom[0]
);
} else {
let fieldItemDom = $(`<span class="field-item">${_field[_col.key]}</span>`);
fieldItemDom.css('width', (_col.width || this.COLUMN_WIDTH) + 'px').attr('dataType', _col.key);
fieldDom.append(fieldItemDom);
}
if (_col.primaryKey) {
_primaryKey = _col.key;
}
});
let leftPoint = $('<div class="point left-point"></div>');
let rightPoint = $('<div class="point right-point"></div>');
fieldDom.append(leftPoint).append(rightPoint);
container.append(fieldDom);
let _newFieldItem = {
id: _field[_primaryKey],
dom: fieldDom
};
this.fieldsList.push(_newFieldItem);
return _newFieldItem;
});
} else {
if(this.emptyDataTree){
return this.emptyDataTree;
}
const _emptyContent = _.get(this.options, '_emptyContent');
const noDataCon = $('<div></div>');
container.append(noDataCon);
const noDataTree = emptyDom({
content: _emptyContent,
container: noDataCon,
width: this.options._emptyWidth
});
container.append(noDataTree);
const _newFieldItem = {
id: 0,
__type: 'no-data',
dom: noDataTree
};
this.emptyDataTree = [_newFieldItem];
return [_newFieldItem];
}
}
_createNodeEndpoint(fieldList) {
let _fieldList = (fieldList || this.fieldsList);
_fieldList.forEach((item) => {
this.addEndpoint({
id: item.id,
type: 'onlyConnect',
_isNodeSelf: true,
dom: item.dom[0],
Class: Endpoint
});
this.addEndpoint({
id: item.id + '-right',
originId: item.id,
orientation: [1,0],
type: 'source',
_isNodeSelf: false,
dom: $(item.dom).find('.right-point')[0],
Class: Endpoint,
linkable: false,
disLinkable: false
});
this.addEndpoint({
id: item.id + '-left',
originId: item.id,
orientation: [-1,0],
type: 'target',
_isNodeSelf: false,
dom: $(item.dom).find('.left-point')[0],
Class: Endpoint,
linkable: false,
disLinkable: false
});
});
}
_rmNodeEndpoint(ids) {
ids.forEach((id) => {
this.removeEndpoint(id);
})
}
_updateTitle(newTitle) {
if (newTitle !== this.options.title) {
this.options.title = newTitle;
let titleTextDom = $(this.dom).find('.title-text');
let titleRender = _.get(this, 'options._config.titleRender');
if (titleRender) {
ReactDOM.unmountComponentAtNode(titleTextDom[0]);
ReactDOM.render(
titleRender(newTitle),
titleTextDom[0],
() => {
this._updateEndpointPos();
}
);
} else {
titleTextDom.text(newTitle);
}
}
}
_addFields(fields) {
$(this.dom).find('.no-data').remove();
this.emptyDataTree = undefined;
let _newFieldsList = this._createFields($(this.dom), fields);
if (_newFieldsList.length >= 1 && _.get(_newFieldsList, ['0', '__type']) !== 'no-data') {
this._createNodeEndpoint(_newFieldsList);
}
}
_rmFields(fields = this.fieldsList) {
// 寻找primaryKey
let columns = _.get(this, 'options._columns', []);
let _primaryKey = columns[0].key;
columns.forEach((col) => {
if (col.primaryKey) {
_primaryKey = col.key;
}
});
// 删除field
let ids = [];
fields.forEach((field) => {
ids = ids.concat([field.id, `${field.id}-left`, `${field.id}-right`]);
});
ids.forEach((id) => {
this.removeEndpoint(id);
this.fieldsList = this.fieldsList.filter((item) => {
return id !== item.id;
});
this.options.fields = (this.options.fields || []).filter((item) => {
return id !== item[_primaryKey];
});
});
}
_updateFields(fields) {
let columns = _.get(this, 'options._columns', []);
let _primaryKey = _.find(columns, (item) => {
return item.primaryKey;
}).key;
fields.forEach((newField) => {
let oldFieldInfo = _.find(this.options.fields || [], (item) => {
return newField[_primaryKey] === item[_primaryKey];
});
let oldFieldItem = _.find(this.fieldsList || [], (item) => {
return newField[_primaryKey] === item.id;
});
if (!oldFieldInfo || !oldFieldItem) {
return;
}
columns.forEach((col) => {
let targetDom = $(oldFieldItem.dom).find(`[dataType="${col.key}"]`);
if (col.render) {
ReactDOM.unmountComponentAtNode(targetDom[0]);
ReactDOM.render(
col.render(newField[col.key], newField),
targetDom[0]
);
} else {
$(targetDom).text(newField[col.key]);
}
})
});
}
// 更新col
_updateCol(newCol) {
let fields = this.fieldsList;
let ids = [];
fields.forEach((field) => {
ids = ids.concat([field.id, `${field.id}-left`, `${field.id}-right`]);
});
ids.forEach((id) => {
this.removeEndpoint(id);
});
this.fieldsList = [];
_.set(this, 'options._columns', newCol);
this._addFields();
}
_createTitleEndpoint() {
let titleDom = $(this.dom).find('.title');
let leftPoint = $('<div class="point left-point"></div>');
let rightPoint = $('<div class="point right-point"></div>');
titleDom.append(leftPoint).append(rightPoint);
this.addEndpoint({
id: this.id + '-right',
orientation: [1,0],
type: 'source',
_isNodeSelf: false,
dom: rightPoint[0],
Class: Endpoint,
linkable: false,
disLinkable: false
});
this.addEndpoint({
id: this.id + '-left',
orientation: [-1,0],
type: 'target',
_isNodeSelf: false,
dom: leftPoint[0],
Class: Endpoint,
linkable: false,
disLinkable: false
});
}
_rmTitleEndpoint() {
this.removeEndpoint(`${this.id}-left`);
this.removeEndpoint(`${this.id}-right`);
}
// 右键菜单
_createRightMenu() {
let menus = _.get(this, 'options._menu', []);
if (menus.length > 0) {
$(this.dom).contextmenu((e) => {
e.preventDefault();
e.stopPropagation();
RightMenuGen(this.dom, 'node', [e.clientX, e.clientY], menus, this.options);
})
}
}
_updateEndpointPos() {
(this.endpoints || []).forEach((item) => {
item.updatePos();
});
}
};