-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcodebot.ui.filespanel.js
378 lines (308 loc) · 12.2 KB
/
codebot.ui.filespanel.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
/*
The MIT License (MIT)
Copyright (c) 2013 Fernando Bevilacqua
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
var CodebotFilesPanel = function() {
var mCodebot = null;
var mSelf = null;
var mFocusedNode = null;
var mRootNode = null;
var mTreeData = {};
var mTree = null;
var mContextMenu = null;
var mFoldersState = {};
var mShadowNodes = {};
var mPendingActivities = {};
var onClick = function(theEvent, theItem) {
// If the currently focused node has the rename form active,
// close it and finish the renaming process.
if(mFocusedNode && mFocusedNode.node.isEditing()) {
mFocusedNode.node.endEdit();
}
mFocusedNode = theItem;
if(theItem.node.folder) {
mFoldersState[theItem.node.key] = !theItem.node.expanded;
}
mCodebot.signals.filesPanelItemClicked.dispatch([theItem]);
};
var onDoubleClick = function(theEvent, theItem) {
var aNode = theItem.node;
mCodebot.signals.filesPanelItemDoubleClicked.dispatch([theItem]);
if(!aNode.folder && !aNode.data.shadow) {
mCodebot.ui.tabs.openNode(aNode);
}
};
var onDragStart = function(theNode, theDragData) {
/** This function MUST be defined to enable dragging for the tree.
* Return false to cancel dragging of node.
*/
return !theDragData.shadow;
};
var onDragEnter = function(theDestinationNode, theDragData) {
/** data.otherNode may be null for non-fancytree droppables.
* Return false to disallow dropping on node. In this case
* dragOver and dragLeave are not called.
* Return 'over', 'before, or 'after' to force a hitMode.
* Return ['before', 'after'] to restrict available hitModes.
* Any other return value will calc the hitMode from the cursor position.
*/
// Prevent dropping a parent below another parent (only sort
// nodes under the same parent)
//if(node.parent !== data.otherNode.parent){
// return false;
//}
// Don't allow dropping *over* a node (would create a child)
//return ["before", "after"];
if(!theDestinationNode.folder) {
return ['after', 'before'];
} else {
return true;
}
};
/**
* Called when a node is dropped in the files panel.
*
* @theDestinationNode the node used to guide the dragging process.
* @theDragData An object containing information regarding the dragging process, e.g. node being dragged, destination, hit strategy.
*/
var onDragDrop = function(theDestinationNode, theDragData) {
var aNodeBeingDragged = theDragData.otherNode;
if(aNodeBeingDragged.data.shadow) {
// Shadow nodes cannot be dragged around.
console.debug('Drag and drop cancelled because node is a shadow node');
return;
}
console.debug('Drag and drop event', theDragData);
aNodeBeingDragged.moveTo(theDestinationNode, theDragData.hitMode);
var aOldPath = aNodeBeingDragged.data;
var aNewPath = null;
if(theDragData.hitMode == "over") {
// Dragging node into a folder. In that case, the destination node (the folder)
// already has a nice path to be used. e.g. /proj/test/folder/
aNewPath = theDestinationNode.data.path + '/';
} else {
// Dragging node after or before another node. In that case, we need to get the
// path to this neighbour file, removing the file name.
aNewPath = CODEBOT.utils.dirName(theDestinationNode.data.path);
}
aNewPath += aNodeBeingDragged.data.name;
// TODO: only move the UI item when the IO opperation informs everything went ok.
// TODO: fix the {path: } because it breaks IO layer.
mCodebot.io.move(aOldPath, {path: aNewPath}, function(theError) {
if(theError) {
console.log('Problem with move!');
// TODO: warn about error and reload tree.
}
});
mSelf.sortTree();
};
var onRename = function(theEvent, theData) {
var aNode = theData.node;
var aNewName = theData.value;
if(aNewName != aNode.data.name) {
var aNewNode = {path: CODEBOT.utils.dirName(aNode.data.path, aNode.folder ? 3 : 1) + aNewName}; // TODO: fix this, it breaks IO layer.
mCodebot.io.move(aNode.data, aNewNode, function(theError) {
if(theError) {
console.error('Problem with rename/move!');
// TODO: warn about error and reload tree.
} else {
aNode.data.name = aNewName;
aNode.data.path = aNewNode.path;
console.debug('Node has been renamed', aNode);
}
});
mSelf.sortTree();
// TODO: update open tab containing the renamed node.
}
};
var restoreFoldersStatus = function(theNode) {
if(!theNode || !theNode.folder) {
return;
}
// Was the folder expanded?
if(mFoldersState[theNode.key]) {
theNode.expanded = true;
}
// Check all children, if any.
if(theNode.children) {
for(var i = 0, t = theNode.children.length; i < t; i++) {
if(theNode.children[i].folder) {
restoreFoldersStatus(theNode.children[i]);
}
}
}
};
var refreshPendingActivitiesBadge = function() {
var aText = '', aActivity;
for(var aKey in mPendingActivities) {
aActivity = mPendingActivities[aKey];
if(aActivity != null) {
aText += '<li><strong>' + mPendingActivities[aKey].name + '</strong> ' + mPendingActivities[aKey].description + '</li>';
}
}
if(aText != '') {
$('#files-panel-pending-activities div ul').html(aText);
$('#files-panel-pending-activities a').show();
} else {
$('#files-panel-pending-activities a').hide();
}
};
var initPendingActivitiesBadge = function() {
$('#files-panel').append(
'<div id="files-panel-pending-activities">' +
'<a href="javascript:void(0);"><i class="fa fa-circle-o-notch fa-spin"></i></a>' +
'<div><ul></ul></div>' +
'</div>'
);
$('#files-panel-pending-activities a').hover(
function() {
$('#files-panel-pending-activities div').show();
},
function() {
$('#files-panel-pending-activities div').hide();
}
);
}
var initTree = function() {
$("#folders").fancytree({
extensions: ['dnd', 'edit', 'awesome', 'contextMenu'],
click: onClick,
dblclick: onDoubleClick,
clickFolderMode: 2, // 1:activate, 2:expand, 3:activate and expand, 4:activate (dblclick expands)
source: [],
checkbox: false,
selectMode: 3,
debugLevel: 0,
dnd: {
preventVoidMoves: true, // Prevent dropping nodes 'before self', etc.
preventRecursiveMoves: true, // Prevent dropping nodes on own descendants
autoExpandMS: 400,
dragStart: onDragStart,
dragEnter: onDragEnter,
dragDrop: onDragDrop
},
edit: {
save: onRename,
triggerCancel: ['esc', 'tab', 'click'],
triggerStart: ['f2']
},
contextMenu: mContextMenu.create()
});
mTree = $("#folders").fancytree("getTree");
};
var addShadowNodesToRendedTree = function() {
var aKey,
aEntry;
for(aKey in mShadowNodes) {
aEntry = mShadowNodes[aKey];
aEntry.parent.addChildren(aEntry.node);
}
};
this.sortTree = function() {
var aNode = $('#folders').fancytree('getRootNode');
aNode.sortChildren(function(theA, theB) {
var x = theA.data.name.toLowerCase(),
y = theB.data.name.toLowerCase();
return x === y ? 0 : x > y ? 1 : -1;
}, true);
};
this.showMessage = function(theMessage) {
$('#folders .fancytree-container').hide();
$('#folders .message').html(theMessage).fadeIn();
};
this.hideMessage = function() {
$('#folders .message').fadeOut();
$('#folders .fancytree-container').show();
};
this.renameFocusedNode = function() {
if(mFocusedNode && !mFocusedNode.node.data.shadow) {
mFocusedNode.node.startEdit();
console.log('Open rename panel', mFocusedNode);
}
};
this.reloadTreeData = function() {
mCodebot.io.readDirectory(mRootNode, mSelf.populateTree);
};
this.refreshTree = function() {
// Tell everybody that the files panel is about to
// refresh. Plugins can change the tree structure,
// for instance.
mCodebot.signals.beforeFilesPanelRefresh.dispatch([mRootNode]);
restoreFoldersStatus(mTreeData);
mTree.reload(mTreeData);
addShadowNodesToRendedTree();
mSelf.sortTree();
};
this.addShadowNode = function(theNode, theParent) {
var aNewNode = {};
if(theNode == null || !theNode.key) {
throw new Error('Shadow node is null or has no key property.');
}
$.extend(aNewNode, theNode);
aNewNode.shadow = true;
mShadowNodes[aNewNode.key] = {
node: aNewNode,
parent: theParent || $('#folders').fancytree('getRootNode')
}
};
this.populateTree = function(theNodes) {
if(theNodes && theNodes.length > 0) {
mTreeData = theNodes;
mRootNode = mTreeData[0];
mSelf.refreshTree();
console.debug('Tree has been populated.', mRootNode);
}
};
this.init = function(theCodebot) {
mCodebot = theCodebot;
mSelf = this;
mContextMenu = new CodebotContextMenu();
$('#folders').append('<div class="message"></div>');
mContextMenu.init(mCodebot);
initPendingActivitiesBadge();
initTree();
// If a new project is open, clear the folder status cache.
mCodebot.signals.projectOpened.add(function() {
mFoldersState = null;
mFoldersState = {};
});
};
this.addPendingActivity = function(theKey, theName, theDescription) {
mPendingActivities[theKey] = {
name: theName, description: theDescription
};
refreshPendingActivitiesBadge();
};
this.removePendingActivity = function(theKey) {
mPendingActivities[theKey] = null;
refreshPendingActivitiesBadge();
};
this.getRootNode = function() {
return mRootNode;
};
this.findTopFolders = function() {
var aRet = [];
i;
for(i = 0; i < mRootNode.children.length; i++) {
if(mRootNode.children[i].folder) {
aRet.push(mRootNode.children[i]);
}
}
return aRet;
};
this.__defineGetter__("contextMenu", function(){ return mContextMenu; });
};