-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtree.js
773 lines (642 loc) · 27.4 KB
/
tree.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
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
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
/**
* File Tree for the Cloud9 IDE
*
* @copyright 2012, Cloud9 IDE, Inc.
* @license GPLv3 <http://www.gnu.org/licenses/gpl.txt>
*/
define(function(require, exports, module) {
var ide = require("core/ide");
var ext = require("core/ext");
var util = require("core/util");
var fs = require("ext/filesystem/filesystem");
var settings = require("ext/settings/settings");
var panels = require("ext/panels/panels");
var markup = require("text!ext/tree/tree.xml");
var commands = require("ext/commands/commands");
var editors = require("ext/editors/editors");
var showHideScrollPos;
function $trScroll() {
if (this.$scrollTimer)
clearTimeout(this.$scrollTimer);
showHideScrollPos = trFiles.$ext.scrollTop;
// Set to -1 in case the user scrolls before the tree is done loading,
// in which case we don't want to set the scroll pos to the saved one
this.scrollPos = -1;
this.$scrollTimer = setTimeout(function() {
var settingsData = settings.model.data;
var settingProjectTree = settingsData.selectSingleNode("auto/projecttree");
if (settingProjectTree)
apf.xmldb.setAttribute(settingProjectTree, "scrollpos", trFiles.$ext.scrollTop);
}, 1000);
}
function $cancelWhenOffline() {
if (!ide.onLine && !ide.offlineFileSystemSupport)
return false;
}
module.exports = ext.register("ext/tree/tree", {
name : "Workspace Files",
dev : "Cloud9 IDE, Inc.",
alone : true,
type : ext.GENERAL,
markup : markup,
defaultWidth : 200,
deps : [fs],
expandedNodes : [],
loadedSettings : 0,
expandedList : {},
treeSelection : { path : null, type : null },
loading : false,
changed : false,
animControl : {},
nodes : [],
model : null,
offline : false,
"default" : true,
hook : function(){
var _self = this;
this.markupInsertionPoint = colLeft;
// Register this panel on the left-side panels
panels.register(this, {
position : 1000,
caption: "Workspace Files",
"class": "project_files",
command: "opentreepanel"
});
commands.addCommand({
name: "opentreepanel",
hint: "show the open settings panel",
bindKey: {mac: "Command-U", win: "Ctrl-U"},
exec: function () {
_self.show();
}
});
/**
* Wait for the filesystem extension to load before we set up our
* model
*/
ide.addEventListener("init.ext/filesystem/filesystem", function(e) {
_self.model = e.ext.model;
// loadedSettings is set after "settings.load" is dispatched.
// Thus if we have our model setup and we have the cached expanded
// folders, then we can load the project tree
if (_self.loadedSettings > 0 && _self.inited)
_self.onReady();
});
ide.addEventListener("settings.load", function(e){
var model = e.model;
(davProject.realWebdav || davProject).setAttribute("showhidden",
apf.isTrue(model.queryValue('auto/projecttree/@showhidden')));
_self.scrollPos = model.queryValue('auto/projecttree/@scrollpos');
// auto/projecttree contains the saved expanded nodes
var strSettings = model.queryValue("auto/projecttree");
if (strSettings) {
try {
_self.expandedNodes = JSON.parse(strSettings);
}
catch (ex) {
_self.expandedNodes = [ide.davPrefix];
}
// Get the last selected tree node
var savedTreeSelection = model.queryNode("auto/tree_selection");
if (savedTreeSelection) {
_self.treeSelection.path = model.queryValue('auto/tree_selection/@path');
_self.treeSelection.type = model.queryValue('auto/tree_selection/@type');
}
_self.loadedSettings = 1;
// Please see note above about waiting for both the model and
// the settings to be loaded before loading the project tree
if (_self.model && _self.inited)
_self.onReady();
}
else {
_self.loadedSettings = 2;
if (_self.model && _self.inited)
_self.onReady();
}
});
ide.addEventListener("settings.save", function(e){
if (!_self.changed)
return;
var expandedNodes = apf.createNodeFromXpath(e.model.data, "auto/projecttree/text()");
_self.expandedNodes = [];
var path, id, lut = {};
// expandedList keeps an active record of all the expanded nodes
// so that on each save this gets serialized into the auto/projecttree
// settings node
for (id in _self.expandedList) {
path = _self.expandedList[id].getAttribute("path");
if (!path)
delete _self.expandedList[id];
else
lut[path] = true;
}
// This checks that each expanded folder has a root that's already
// been saved
var splitPrefix = ide.davPrefix.split("/");
splitPrefix.pop();
var rootPrefixNodes = splitPrefix.length;
var rootPrefix = splitPrefix.join("/");
var cc, parts;
for (path in lut) {
parts = path.split("/").splice(rootPrefixNodes);
cc = rootPrefix + "/" + parts.shift();
while(lut[cc]) {
if (!parts.length)
break;
cc += "/" + parts.shift();
}
if (!parts.length)
_self.expandedNodes.push(path);
}
expandedNodes.nodeValue = JSON.stringify(_self.expandedNodes);
_self.changed = false;
});
/**
* This receives updates from the tree watcher on the backend
* I haven't looked deeply at this code, but it looks like it removes
* and adds nodes
*/
ide.addEventListener("treechange", function(e) {
var path = "//node()[@path='" + e.path.replace(/'/g, "\\'").replace(/\\/g, "\\\\") + "']";
var parent = trFiles.getModel().data.selectSingleNode(path)
if (!parent)
return;
var nodes = parent.childNodes;
var files = {};
e.files.forEach(function(f) {
files[f.name] = f;
});
if (!apf.isTrue(settings.model.queryValue("auto/projecttree/@showhidden"))) {
var hiddenExtensions = ["pyc", "class"];
var hiddenExtensionsRegex = new RegExp("\\.(?:" + hiddenExtensions.join("|") + ")$");
for (var file in files) {
if (file.charAt(0) == '.' || hiddenExtensionsRegex.test(file))
delete files[file];
}
}
var removed = [];
for (var i = 0; i < nodes.length; ++i) {
var node = nodes[i],
name = node.getAttribute("name");
if (files && files[name])
delete files[name];
else
removed.push(node);
}
removed.forEach(function (node) {
apf.xmldb.removeNode(node);
});
path = parent.getAttribute("path");
for (var filename in files) {
var file = files[filename];
var xmlNode = new apf.getXml("<" + apf.escapeXML(file.type) + " />");
xmlNode.setAttribute("type", file.type);
xmlNode.setAttribute("name", file.name);
xmlNode.setAttribute("path", path + "/" + file.name);
trFiles.add(xmlNode, parent);
}
});
},
onReady : function() {
var _self = this;
trFiles.setAttribute("model", this.model);
if (this.loadedSettings === 1) {
if (ide.inited) {
setTimeout(function() {
_self.loadProjectTree();
}, 200);
}
else {
_self.loadProjectTree();
}
}
// If no settings were found, then we set the "get" attribute of
// the AML insert rule for the tree and expand the root. The
// "get" attr is originally empty by default so when we run
// this.loadProjectTree() the tree itself doesn't try to duplicate
// our actions
else {
self["trFilesInsertRule"] && trFilesInsertRule.setAttribute("get", "{davProject.readdir([@path])}");
trFiles.expandAll();
}
},
init : function() {
var _self = this;
// Set the panel var for the panels extension
this.panel = winFilesViewer;
this.nodes.push(winFilesViewer);
ide.addEventListener("afteroffline", function(){
trFiles.selectable = false;
//_self.button.enable();
})
ide.addEventListener("afteronline", function(){
trFiles.selectable = true;
})
// This adds a "Show Hidden Files" item to the settings dropdown
// from the Project Files header
mnuFilesSettings.appendChild(new apf.item({
id : "mnuitemHiddenFiles",
type : "check",
caption : "Show Hidden Files",
visible : "{trFiles.visible}",
checked : "[{require('core/settings').model}::auto/projecttree/@showhidden]",
onclick : function(e){
setTimeout(function() {
_self.changed = true;
settings.save();
(davProject.realWebdav || davProject)
.setAttribute("showhidden", e.currentTarget.checked);
_self.refresh();
});
}
}));
trFiles.filterUnique = function(pNode, nodes){
var filtered = [];
for (var i = 0, l = nodes.length; i < l; i++) {
if (!pNode.selectSingleNode("node()[@path="
+ util.escapeXpathString(nodes[i].getAttribute("path")) + "]"))
filtered.push(nodes[i]);
}
return filtered;
}
this.setupTreeListeners();
if (_self.loadedSettings > 0 && _self.model)
_self.onReady();
},
/**
* Sets up listeners on tree events
*/
setupTreeListeners : function() {
var _self = this;
winFilesViewer.addEventListener("prop.visible", function(e) {
if (e.value) {
if (showHideScrollPos) {
setTimeout(function() {
trFiles.$ext.scrollTop = showHideScrollPos;
});
}
}
});
// After an item in the tree has been clicked on, this saves that
// selection in the settings model
trFiles.addEventListener("afterselect", this.$afterselect = function(e) {
if (settings.model && settings.model.data && trFiles.selected) {
var nodePath = trFiles.selected.getAttribute("path").replace(/"/g, """);
var nodeType = trFiles.selected.getAttribute("type");
var settingsData = settings.model.data;
var treeSelectionNode = settingsData.selectSingleNode("auto/tree_selection");
if(treeSelectionNode) {
apf.xmldb.setAttribute(treeSelectionNode, "path", nodePath);
apf.xmldb.setAttribute(treeSelectionNode, "type", nodeType);
}
else {
apf.xmldb.appendChild(settingsData.selectSingleNode("auto"),
apf.n("<tree_selection />")
.attr("path", nodePath)
.attr("type", nodeType)
.node()
);
}
// Also update our own internal selection vars for when the
// user refreshes the tree
_self.treeSelection.path = nodePath;
_self.treeSelection.type = nodeType;
}
});
// Block keypressing, else afterchoose from "Enter" inserts new lines in the doc
trFiles.addEventListener("keydown", function(e) {
if (e.keyCode == 13) {
e.preventDefault();
return false;
}
});
// Opens a file after the user has double-clicked
trFiles.addEventListener("afterchoose", this.$afterchoose = function() {
_self.openSelection();
});
trFiles.addEventListener("beforecopy", this.$beforecopy = function(e) {
if (!ide.onLine && !ide.offlineFileSystemSupport)
return false;
function rename(pNode, node, filename, isReplaceAction){
setTimeout(function () {
fs.beforeRename(pNode, null,
node.getAttribute("path").replace(/[\/]+$/, "") +
"/" + filename, true, isReplaceAction);
pNode.removeAttribute("newname");
});
}
var args, filename;
for (var i = 0, l = e.args.length; i < l; i++) {
args = e.args[i].args;
filename = args[1].getAttribute("name");
var count = 0;
filename.match(/\.(\d+)$/, "") && (count = parseInt(RegExp.$1, 10));
while (args[0].selectSingleNode('node()[@name=' + util.escapeXpathString(filename) + ']')) {
filename = filename.replace(/\.(\d+)$/, "");
var idx = filename.lastIndexOf(".");
if (idx == -1) idx = filename.length;
var name = filename.substr(0, idx), ext = filename.substr(idx);
filename = name + "." + ++count + ext;
}
args[1].setAttribute("newname", filename);
rename(args[1], args[0], filename, count > 0);
}
});
trFiles.addEventListener("beforerename", this.$beforerename = function(e){
if (!ide.onLine && !ide.offlineFileSystemSupport)
return false;
if (trFiles.$model.data.firstChild == trFiles.selected)
return false;
// check for a path with the same name, which is not allowed to rename to:
var path = e.args[0].getAttribute("path"),
newpath = path.replace(/^(.*\/)[^\/]+$/, "$1" + e.args[1]).toLowerCase();
var exists, nodes = trFiles.getModel().queryNodes(".//node()");
for (var i = 0, len = nodes.length; i < len; i++) {
var pathLwr = nodes[i].getAttribute("path").toLowerCase();
if (nodes[i] != e.args[0] && pathLwr === newpath) {
exists = true;
break;
}
}
if (exists) {
util.alert("Error", "Unable to Rename",
"That name is already taken. Please choose a different name.");
trFiles.getActionTracker().undo();
return false;
}
if (fs.beforeRename(e.args[0], e.args[1]) === false) {
return false;
}
});
trFiles.addEventListener("beforemove", this.$beforemove = function(e){
if (!ide.onLine && !ide.offlineFileSystemSupport)
return false;
setTimeout(function(){
var changes = e.args;
for (var i = 0; i < changes.length; i++) {
// If any file exists in its future destination, cancel the event.
fs.beforeMove(changes[i].args[0], changes[i].args[1], trFiles);
}
});
});
trFiles.addEventListener("keyup", this.$keyup = function(e){
if(this.dragging > 0 && e.keyCode == 27) {
apf.DragServer.stop();
}
});
trFiles.addEventListener("scroll", $trScroll);
trFiles.addEventListener("beforeadd", $cancelWhenOffline);
trFiles.addEventListener("renamestart", $cancelWhenOffline);
trFiles.addEventListener("beforeremove", $cancelWhenOffline);
trFiles.addEventListener("dragstart", $cancelWhenOffline);
trFiles.addEventListener("dragdrop", $cancelWhenOffline);
// When a folder has been expanded, save it in expandedList
trFiles.addEventListener("expand", this.$expand = function(e){
if (!e.xmlNode)
return;
_self.expandedList[e.xmlNode.getAttribute(apf.xmldb.xmlIdTag)] = e.xmlNode;
// Only save if we are not loading the tree
if (!_self.loading) {
_self.changed = true;
settings.save();
}
});
// When a folder has been expanded, remove it from expandedList
trFiles.addEventListener("collapse", this.$collapse = function(e){
if (!e.xmlNode)
return;
var id = e.xmlNode.getAttribute(apf.xmldb.xmlIdTag);
delete _self.expandedList[id];
_self.changed = true;
settings.save();
});
},
$cancelWhenOffline : function() {
if (!ide.onLine && !ide.offlineFileSystemSupport)
return false;
},
openSelection : function(){
if (!ide.onLine && !ide.offlineFileSystemSupport)
return;
var sel = trFiles.getSelection();
sel.forEach(function(node){
if (!node || node.tagName != "file")
return;
editors.gotoDocument({node: node});
});
},
moveFile : function(node, newpath){
var path = node.getAttribute("path");
davProject.move(path, newpath, true, false, function(data, state, extra) {
if (state !== apf.SUCCESS) {
// TODO: revert the move!!
return;
}
ide.dispatchEvent("afterupdatefile", {
path: node.getAttribute("oldpath"),
newPath: newpath,
xmlNode: node,
isFolder: node.getAttribute("type") === "folder"
});
});
trFiles.enable();
trFiles.focus();
},
renameFile : function(node) {
var path = node.getAttribute("path");
var oldpath = node.getAttribute("oldpath");
davProject.rename(oldpath, path, true, false, function(data, state, extra) {
if (state !== apf.SUCCESS) {
// TODO: revert the rename!!
return;
}
ide.dispatchEvent("afterupdatefile", {
path: oldpath,
newPath: path,
xmlNode: node,
isFolder: node.getAttribute("type") === "folder"
});
});
},
/**
* Loads the project tree based on expandedNodes, which is an array of
* folders that were previously expanded, otherwise it contains only the
* root identifier (i.e. ide.davPrefix)
*
* @param boolean animateScrollOnFinish
*/
loadProjectTree : function(animateScrollOnFinish) {
var _self = this;
// Sort the cached list so it's more probable that nodes near the top of
// the tree are loaded first, giving the user more visual feedback that
// something is happening
this.expandedNodes.sort();
this.loading = true;
var numFoldersLoaded = 0;
// Stores child nodes of parents who do not exist in the tree yet
var orphanedChildren = [];
// Get the parent node of the new items. If the path is the
// same as `ide.davPrefix`, then we append to root
function getParentNodeFromPath(path) {
var parentNode;
if (path === ide.davPrefix)
parentNode = trFiles.queryNode("folder[@root=1]");
else
parentNode = trFiles.queryNode('//folder[@path=' + util.escapeXpathString(path) + ']');
return parentNode;
}
function appendXmlToNode(parentNode, dataXml) {
trFiles.insert(dataXml, { insertPoint: parentNode });
// Set the load status to "loaded" so APF doesn't assume the child
// nodes still need to be loaded
trFiles.$setLoadStatus(parentNode, "loaded");
// Slide open the folder
trFiles.slideToggle(apf.xmldb.getHtmlNode(parentNode, trFiles), 1, true, null, null);
}
/* Go through the orphaned children and attempt to append them to
* the tree
*
* Called after XML has been added
*/
function tryAppendingOrphansToTree() {
for (var ic = 0; ic < orphanedChildren.length; ic++) {
var cleanParentPath = orphanedChildren[ic].cleanParentPath;
var parentNode = getParentNodeFromPath(cleanParentPath);
if (parentNode) {
appendXmlToNode(parentNode, orphanedChildren[ic].dataXml);
orphanedChildren.splice(ic, 1);
// We just appended new nodes, so run this again. But, wait
// a tick so the new nodes have time to expand
setTimeout(function() {
tryAppendingOrphansToTree();
});
return;
}
}
// If we didn't find any parent nodes and all the folders have been
// loaded, then it must mean the parent was collapsed
if (numFoldersLoaded === _self.expandedNodes.length)
return onFinish();
}
if (!this.expandedNodes.length)
return onFinish();
// Load up the saved list of project tree folders in this.expandedNodes
for (var i = 0; i < this.expandedNodes.length; i++) {
// At some point davProject.realWebdav is set but you'll note that
// tree.xml is able to use just davProject (which is an intended
// global). Why we cannot use that here escapes me, so we have to
// check which one is available for us to use (and yes, realWebdav
// can sometimes not be set on initial load)
(davProject.realWebdav || davProject).readdir(this.expandedNodes[i], function(data, state, extra) {
numFoldersLoaded++;
if (extra.status === 404) {
_self.changed = true;
settings.save();
// Go through the orphaned children and remove those that
// start with the path of the folder not found
for (var oi = 0; oi < orphanedChildren.length; /* blank */) {
var child = orphanedChildren[oi];
if ((child.cleanParentPath + "/").indexOf(extra.url) === 0)
orphanedChildren.splice(oi, 1);
else
oi++;
}
}
else {
var dataXml = apf.getXml(data);
// Strip the extra "/" that webDav adds on
var cleanParentPath = extra.url.substr(0, extra.url.length-1);
var parentNode = getParentNodeFromPath(cleanParentPath);
// If we can't find the parent node in the tree, then store
// the the result to add later
if (!parentNode) {
orphanedChildren.push({
cleanParentPath : cleanParentPath,
dataXml : dataXml
});
}
else {
appendXmlToNode(parentNode, dataXml);
tryAppendingOrphansToTree();
}
}
// If all the folder children have been loaded and there are no
// more orphans to append, then finish
if (numFoldersLoaded === _self.expandedNodes.length && !orphanedChildren.length)
return onFinish();
});
}
// Called when every cached node has been loaded
function onFinish() {
// There is the possibility that we are calling this more than once
if (!_self.loading)
return;
_self.loading = false;
// Re-select the last selected item
if(_self.treeSelection.path) {
var xmlNode = trFiles.$model.queryNode('//node()[@path=' +
util.escapeXpathString(_self.treeSelection.path) + ' and @type="' +
_self.treeSelection.type + '"]');
if (xmlNode)
trFiles.select(xmlNode);
}
else {
trFiles.select(trFiles.getFirstTraverseNode());
}
// Scroll to last set scroll pos
if (_self.scrollPos && _self.scrollPos > -1) {
if (animateScrollOnFinish) {
apf.tween.single(trFiles, {
type: "scrollTop",
from: 0,
to: _self.scrollPos
});
}
else {
trFiles.$ext.scrollTop = _self.scrollPos;
}
}
// Now set the "get" attribute of the <a:insert> rule so the tree
// knows to ask webdav for expanded folders' contents automatically
self["trFilesInsertRule"] && trFilesInsertRule.setAttribute("get", "{davProject.readdir([@path])}");
settings.save();
}
},
/**
* Called when the user hits the refresh button in the Project Files header
*/
refresh : function(){
settings.save(true);
// When we clear the model below, it dispatches a scroll event which
// we don't want to process, so remove that event listener
trFiles.removeEventListener("scroll", $trScroll);
this.scrollPos = trFiles.$ext.scrollTop;
trFiles.getModel().load("<data><folder type='folder' name='" +
ide.projectName + "' path='" + ide.davPrefix + "' root='1'/></data>");
this.expandedList = {};
// Make sure the "get" attribute is empty so the file tree doesn't
// think it's the one loading up all the data when loadProjectTree
// expands folders
self["trFilesInsertRule"] && trFilesInsertRule.setAttribute("get", "");
ide.dispatchEvent("track_action", { type: "reloadtree" });
this.loadProjectTree(true);
// Now re-attach the scroll listener
trFiles.addEventListener("scroll", $trScroll);
},
show : function(e) {
if (!this.panel || !this.panel.visible) {
panels.activate(this);
this.enable();
}
else {
panels.deactivate(null, true);
}
return false;
},
destroy : function(){
commands.removeCommandByName("opentreepanel");
panels.unregister(this);
this.$destroy();
}
});
});