forked from Ericsson/CodeCompass
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodeBites.js
More file actions
514 lines (403 loc) · 13.6 KB
/
Copy pathcodeBites.js
File metadata and controls
514 lines (403 loc) · 13.6 KB
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
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
require([
'dojo/_base/declare',
'dojo/_base/array',
'dojo/dom-construct',
'dojo/dom-style',
'dojo/topic',
'dojo/on',
'dijit/layout/ContentPane',
'dojox/layout/ResizeHandle',
'codecompass/view/component/ContextMenu',
'codecompass/view/component/Text',
'codecompass/model',
'codecompass/viewHandler',
'codecompass/urlHandler'],
function (declare, array, dom, style, topic, on, ContentPane, ResizeHandle,
ContextMenu, Text, model, viewHandler, urlHandler) {
/**
* In CodeBites view every code box has the same languageService object. By
* this solution it's supposed that every box contains files from the same
* type.
*/
var languageService = null;
/**
* This array contains arrays of boxes of CodeBites view. Every array
* represents a row of boxes.
*/
var elementMatrix = [];
/**
* This array contains the height of each row.
*/
var sizeRows = [];
/**
* This array contains the width of each column.
*/
var sizeCols = [];
/**
* When a token is clicked in a box then the token will be selected by one of
* these colors as the edge too.
*/
var colors = ['#42a62c', '#2c34a5', '#e5801b', '#a0398f', '#c91010'];
/**
* Selection colors are going round. This variable contains the index of the
* current color.
*/
var colorIdx = 0;
/**
* Default properties of boxes.
*/
var defaults = {
width : 480,
height : 300,
left : 50,
top : 100
};
function createRow(row) {
if (!elementMatrix[row]) {
elementMatrix[row] = [];
sizeRows[row] = defaults.height;
}
}
function createCol(col) {
if (!sizeCols[col])
sizeCols[col] = defaults.width;
}
function hasRow(row) {
return sizeRows[row] !== undefined;
}
function hasCol(col) {
return sizeCols[col] !== undefined;
}
/**
* This function creates a new box in CodeBites view.
* @param {Object} astNodeInfo AstNodeInfo thrift object which is displayed in
* the box.
* @param {Object} panel ContentPane dojo panel on which the box is placed.
* @param {Object} parent CodeBitesElement object, the parent of this element.
*/
function createCodeBitesElement(astNodeInfo, panel, parent) {
//--- Set content ---//
var fileInfo = model.project.getFileInfo(astNodeInfo.range.file);
languageService = model.getLanguageService(fileInfo.type);
if (astNodeInfo.astNodeType !== 'Definition')
astNodeInfo = languageService.getReferences(astNodeInfo.id, 0)[0];
var srcText = languageService.getSourceText(astNodeInfo.id);
var newElement = new CodeBitesElement({
astNodeInfo : astNodeInfo,
firstLineNumber : astNodeInfo.range.range.startpos.line,
closable : true,
resizable : true,
parent : parent || null,
panel : panel,
fileInfo : fileInfo,
selection : panel.selection
});
newElement.set('content', srcText);
newElement.set('header', fileInfo);
//--- Place node ---//
dom.place(newElement.domNode, panel.domNode);
if (parent)
newElement.connection = panel._jsPlumbInstance.connect({
source : parent.domNode,
target : newElement.domNode,
paintStyle : { stroke : colors[colorIdx], strokeWidth : 2 },
Anchors : ['Perimeter', { shape : 'Ellipse' }],
Endpoint : ['Dot', { radius : 1 }],
overlays : [['Label', {
label : astNodeInfo.astNodeValue,
cssClass : 'cb-label cb-label-' + colorIdx
}]]
});
if (window.gtag) {
window.gtag ('event', 'code_bites', {
'event_category' : urlHandler.getState('wsid'),
'event_label' : urlHandler.getFileInfo().name
+ ': '
+ astNodeInfo.astNodeValue.toString()
});
}
return newElement;
}
/**
* CodeBites box element.
*/
var CodeBitesElement = declare(Text, {
/**
* Constructor of a box element.
* @param {Object} config CodeBitesElement class is inherited from Editor
* class, so its constructor expects the same attributes. Furthermore
* 'config' parameter has to contain these properties:
* - astNodeId: (Thrift object) Node ID of the loaded AST node. If
* astNodeInfo is also given then this ID is omitted.
* - astNodeInfo: (Thrift object) Node info of the loaded AST node. If
* astNodeId is also given then that's omitted.
* - parent: (CodeBitesElement) Parent node of this element.
*/
constructor : function (config) {
//--- Set properties ---//
this.astNodeInfo
= config.astNodeInfo ||
languageService.getAstNodeInfo(config.astNodeId);
this.parent = config.parent;
this.children = {};
this.row = this.parent ? this.parent.row + 1 : 0; createRow(this.row);
this.col = elementMatrix[this.row].length; createCol(this.col);
this.height = sizeRows[this.row];
this.width = sizeCols[this.col];
this.top = 0;
for (var i = 0; i < this.row; ++i)
this.top += sizeRows[i] + defaults.top;
this.left = 0;
for (var i = 0; i < this.col; ++i)
this.left += sizeCols[i] + defaults.left;
this.panel = config.panel;
this.htmlId = 'cp-row-' + this.row + '-astnodeid-'
+ this.astNodeInfo.id;
if (this.parent)
this.parent.children[this.htmlId] = this;
elementMatrix[this.row][this.col] = this;
},
postCreate : function () {
this.inherited(arguments);
var that = this;
style.set(this.domNode, 'border', '1px solid grey');
style.set(this.domNode, 'position', 'absolute' );
style.set(this.domNode, 'left', this.left + 'px');
style.set(this.domNode, 'top', this.top + 'px');
style.set(this.domNode, 'width', this.width + 'px');
style.set(this.domNode, 'height', this.height + 'px');
//--- Resize handler ---//
new ResizeHandle({
targetContainer : that.domNode,
animateMethod : 'combine'
}).placeAt(this);
//--- Close button ---//
var closeImg = dom.create('span', { class : 'icon-x' });
dom.place(closeImg, this._header.header);
on(closeImg, 'click', function () {
that._onClose();
});
this.contextMenu = new ContextMenu();
this.contextMenu.bindDomNode(this.domNode.lastChild);
this._refresh();
},
resize : function() {
this._refresh();
},
/**
* Subscribe on topics
* !Warning!: We need to override it to avoid openFile topic
*/
_subscribeTopics : function () {
var that = this;
topic.subscribe('/dojo/resize/stop', function (inst) {
if (inst.targetDomNode.id !== that.id)
return;
that._onResize({
width : that.domNode.style.width,
height : that.domNode.style.height
});
that._refresh();
});
},
/**
* Handle mouse events
*/
_eventHandler : function (event) {
//--- Select the clicked word ---//
var pos = this._codeMirror.coordsChar({
top : event.clientY,
left : event.clientX
});
//--- Right click ---//
if (event.button === 0) {
this._clickOnAstNode({
'line' : pos.line + this._codeMirror.options.firstLineNumber,
'column' : pos.ch + 1
});
}
},
/**
* Close a CodeBites window
*/
_onClose : function () {
//--- Remove child elements recursively ---//
for (var element in this.children)
this.children[element]._onClose();
//--- Replace elements in the same row ---//
for (var i = elementMatrix[this.row].length - 1; i > this.col; --i) {
var element = elementMatrix[this.row][i];
--element.col;
element.left = elementMatrix[this.row][i - 1].left;
style.set(element.domNode, 'left', element.left + 'px');
}
//--- Remove from elementMatrix ---//
elementMatrix[this.row].splice(this.col, 1);
if (elementMatrix[this.row].length === 0)
elementMatrix.splice(this.row, 1);
//--- Remove connection, mark, and the node itself ---//
if (this.parent) {
delete this.parent.children[this.htmlId];
this.parent.clearMark(this.parent._marks[this.htmlId]);
delete this.parent._marks[this.htmlId];
}
if (this.connection)
this.panel._jsPlumbInstance.detachAllConnections(this.domNode);
dom.destroy(this.domNode);
this.panel._jsPlumbInstance.repaintEverything();
//--- When root element is closed ---//
if (!this.parent) {
var range = this.astNodeInfo.range.range;
topic.publish('codecompass/openFile', {
fileId : this.astNodeInfo.range.file,
line : range.startpos.line,
selection : [
range.startpos.line,
range.startpos.column,
range.endpos.line,
range.endpos.column]
});
}
},
/**
* Click on an AST node
*/
_clickOnAstNode : function (pos) {
//--- Get nodes by position ---//
var mPos = new Position(),
fPos = new FilePosition();
mPos.line = pos.line;
mPos.column = pos.column;
fPos.pos = mPos;
fPos.file = this.astNodeInfo.range.file;
var astNodeInfo = languageService.getAstNodeInfoByPosition(fPos);
var refTypes = languageService.getReferenceTypes(astNodeInfo.id);
var defAstNodeInfo = languageService.getReferences(
astNodeInfo.id, refTypes["Definition"])[0];
//--- Check if it's necessary to open a new box ---//
if (astNodeInfo.id === defAstNodeInfo.id)
return;
if (hasRow(this.row + 1) &&
array.some(elementMatrix[this.row + 1], function (element) {
return element.astNodeInfo.id === defAstNodeInfo.id;
}))
return;
//--- Color selection and open new box ---//
var token = this._getWordAt([pos.line, pos.column]);
var markId = this.markText(
{ line : pos.line, column : token.start },
{ line : pos.line, column : token.end },
{ className : 'cb-marked-' + colorIdx });
var childElement
= createCodeBitesElement(defAstNodeInfo, this.panel, this);
this._marks[childElement.htmlId] = markId;
colorIdx = (colorIdx + 1) % colors.length;
},
/**
* Resize a CodeBites item
*/
_onResize : function (size) {
var that = this;
array.forEach(elementMatrix, function (row) {
array.forEach(row, function (element) {
if (element.col === that.col)
style.set(element.domNode, 'width', size.width);
if (element.col > that.col)
style.set(element.domNode, 'left',
(parseInt(element.domNode.style.left) +
parseInt(that.domNode.style.width) -
sizeCols[that.col]) + 'px');
if (element.row === that.row)
style.set(element.domNode, 'height', size.height);
if (element.row > that.row) {
style.set(element.domNode, 'top',
(parseInt(element.domNode.style.top) +
parseInt(that.domNode.style.height) -
sizeRows[that.row]) + 'px');
}
});
});
sizeRows[this.row] = parseInt(size.height);
sizeCols[this.col] = parseInt(size.width);
this.panel._jsPlumbInstance.repaintEverything();
},
});
/**
* CodeBites module
*/
var CodeBites = declare(ContentPane, {
/**
* Constructor for initialization
*/
constructor : function () {
this._subscribeTopics();
},
/**
* Init variables
*/
onLoad : function (center) {
style.set(this.domNode, 'position', 'relative');
style.set(this.domNode, 'overflow', 'auto');
this._jsPlumbInstance = jsPlumb.getInstance({
Container : this.domNode,
});
this._jsPlumbInstance.importDefaults({
Anchors : ['Bottom', 'Top'],
Endpoint : ['Dot', { radius : 1 }],
ConnectionsDetechable : false,
ConnectionOverlays : [['Arrow', { location : 1 }]]
});
},
/**
* Reset settings
*/
onUnload : function (center) {
elementMatrix = [];
sizeCols = [];
sizeRows = [];
this.destroyDescendants();
},
/**
* Set CodeBites's state from url
*/
setState : function (state) {
if ( state.center !== this.id ||
!state.node ||
!state.fid)
return;
var selection
= state.select
? state.select.split('|').map(function (x) { return parseInt(x); })
: [1, 1, 1, 1];
topic.publish('codecompass/codebites', {
'node' : urlHandler.getAstNodeInfo()
});
},
/**
* Subscribe on topic events
*/
_subscribeTopics : function () {
var that = this;
topic.subscribe('codecompass/codebites', function (message) {
if (!message.selection)
message.selection = [1, 1, 1, 1];
that.set('selection', message.selection);
topic.publish('codecompass/setCenterModule', that.id);
createCodeBitesElement(message.node, that);
urlHandler.setStateValue({
fid : message.node.range.file,
center : that.id,
select : message.selection.join('|'),
node : message.node.id
});
});
}
});
//--- Create and register CodeBites ---//
var codebites = new CodeBites({
id : 'codebites'
});
viewHandler.registerModule(codebites, {
type : viewHandler.moduleType.Center
});
});