source: pro-violet-viettel/www/deploy/20150304/assets/js/manager.js @ 780

Last change on this file since 780 was 780, checked in by dungnv, 10 years ago
File size: 39.1 KB
Line 
1if (jQuery)
2    (function ($) {
3        $.extend($.fn, {
4            violetFileManager: function (o) {
5                if (!o)
6                    var o = {};
7                if (o.tree == undefined)
8                    o.tree = null;
9                if (o.grid == undefined)
10                    o.grid = null;
11
12                if (o.maincontainer == undefined)
13                    o.maincontainer = null;
14                if (o.titlebar == undefined)
15                    o.titlebar = null;
16                if (o.toolsbar == undefined)
17                    o.toolsbar = null;
18                if (o.statusbar == undefined)
19                    o.statusbar = null;
20
21                if (o.oTree == undefined)
22                    o.oTree = null;
23                if (o.oGrid == undefined)
24                    o.oGrid = null;
25                if (o.host == undefined)
26                    o.host = 'http://localhost/';
27                if (o.hostmodule == undefined)
28                    o.hostmodule = 'privatecontent/';
29                if (o.script == undefined)
30                    o.script = 'getcontent';
31                if (o.data == undefined)
32                    o.data = null;
33                if (o.datasource == undefined)
34                    o.datasource = 'ajax';
35
36                o.host = o.host + 'ajax/';
37
38                var isDev = false;
39                var contextmenu = null;
40                var oContainer = this;
41                var tree = [];
42                var totalItem = 0;
43                var countItem = 0;
44                var maxWidth = 0;
45                var treeCurrentNode = null;
46                var self = this;
47                var oClipBoard = {items: null, act: null};
48
49                /**
50                 * Toolbar defined
51                 * */
52                var btnNewFolder = $('#' + o.toolsbar + ' > DIV.btn-group.basic > #btnNewFolder');
53                var btnDel = $('#' + o.toolsbar + ' > DIV.btn-group.basic > #btnDel');
54                var btnCopy = $('#' + o.toolsbar + ' > DIV.btn-group.basic > #btnCopy');
55                var btnCut = $('#' + o.toolsbar + ' > DIV.btn-group.basic > #btnCut');
56                var btnPaste = $('#' + o.toolsbar + ' > DIV.btn-group.basic > #btnPaste');
57                var btnShare = $('#' + o.toolsbar + ' > DIV.btn-group.social > #btnShare');
58                var btnPreview = $('#' + o.toolsbar + ' > DIV.btn-group.social > #btnPreview');
59                var btnDownload = $('#' + o.toolsbar + ' > DIV.btn-group.creation > #btnDownload');
60                var btnUpload = $('#' + o.toolsbar + ' > DIV.btn-group.creation > #btnUpload');
61                var btnRefresh = $('#' + o.toolsbar + ' > DIV.btn-group.control > #btnRefresh');
62
63                var sendCommand = function (p) {
64                    if (p.postdata == undefined)
65                        p.postdata = null;
66                    if (p.script == undefined)
67                        p.script = o.script;
68                    if (p.callbackSuccess == undefined)
69                        p.callbackSuccess = null;
70                    if (p.callbackDone == undefined)
71                        p.callbackDone = null;
72                    if (p.callbackFail == undefined)
73                        p.callbackFail = null;
74                    if (p.callbackAlways == undefined)
75                        p.callbackAlways = null;
76                    if (p.parseData == undefined)
77                        p.parseData = null;
78                    if (p.self == undefined)
79                        p.self = this;
80
81                    if (p.script != null && (o.datasource == 'ajax' || isDev)) {
82                        $.post(o.host + o.hostmodule + p.script, p.postdata, function (data) {
83                            if (data) {
84                                parseData = $.parseJSON(data);
85                                p.parseData = parseData;
86                            }
87
88                            if (p.callbackSuccess != null) {
89                                if (parseInt(parseData.ERROR.errCode) === 0)
90                                    p.callbackSuccess(parseData);
91                                else {
92                                    p.callbackFail(parseData.ERROR);
93                                }
94                            }
95
96                        }).done(function () {
97                            if (p.callbackDone != null)
98                                p.callbackDone(p.parseData);
99                        }).fail(function () {
100                            if (p.callbackFail != null)
101                                p.callbackFail(this);
102                        }).always(function () {
103                            if (p.callbackAlways != null)
104                                p.callbackAlways(this);
105                        });
106                    }
107                    else if (o.datasource == 'json') {
108                        if (p.callbackSuccess != null)
109                            p.callbackSuccess(o.data);
110                        if (p.callbackDone != null)
111                            p.callbackDone(this);
112                    }
113
114                };
115
116                var getDirTreeMaxWidth = function () {
117                    var scrWidth = $(o.maincontainer).width();
118                    return parseInt(scrWidth / 2);
119                }
120
121                var layoutRender = function () {
122                    var scrWidth = $('#' + o.maincontainer).width();
123                    var scrHeght = $(window).height();
124                    var dirTreeHeight = scrHeght - $('#' + o.titlebar).height() - $('#' + o.toolsbar).height() - $('#' + o.statusbar).height() - 2;
125                    $('#' + o.tree).parent().height(dirTreeHeight);
126                    $('#' + o.grid).parent().height(dirTreeHeight);
127                    $('#' + o.grid).parent().width('calc(100% - ' + ($('#' + o.tree).parent().width() + 8) + 'px)');
128                    var scollWidth = $('#' + o.grid).parent().width();
129                    maxWidth = getDirTreeMaxWidth();
130                    $(o.tree).height(dirTreeHeight - 5);
131                }
132
133                var createFileManager = function (parseData) {
134                    o.data = parseData;
135                    totalItem = o.data.DIRECTORIES.length;
136                    o.oTree = $('#' + o.tree).violetTree({data: o.data.DIRECTORIES, manager: oContainer});
137                    o.oGrid = $('#' + o.grid).violetGrid({data: o.data, manager: oContainer});
138                };
139
140                var getAllDirChild = function (parentID, aryChild) {
141                    parentID = parentID == null ? 0 : parentID;
142                    var dirList = searchItemsByParent(parentID, 'directory');
143                    var index = aryChild.length;
144                    aryChild[index] = parentID;
145                    if (dirList.length > 0) {
146                        for (var i = 0; i < dirList.length; i++) {
147                            getAllDirChild(dirList[i].id, aryChild);
148                        }
149                    }
150                }
151
152                var buildTreeFromParent = function (dirID, node) {
153                    var aryChildFiles = [];
154                    var aryChildDirs = [];
155                    var aryChildIDs = [];
156                    var aryTmp = [];
157                    var dir = o.data.DIRECTORIES[searchItemByID(dirID, 'directory')];
158                    aryChildDirs = searchItemsByParent(dirID, 'directory');
159                    aryChildFiles = searchItemsByParent(dirID, 'file');
160
161                    node.id = dir.id;
162                    node.name = dir.name;
163                    node.type = 'directory';
164
165                    $(aryChildDirs).each(function (index) {
166                        var id = this.id;
167                        var name = this.name;
168                        var type = 'directory';
169                        var cDir = {id: id, name: name, type: type, childs: null};
170                        aryChildIDs[index] = cDir;
171                    });
172
173                    if ($(aryChildFiles).length > 0) {
174                        if (node.files == undefined)
175                            node.files = [];
176                        $(aryChildFiles).each(function (index) {
177                            var id = this.id;
178                            var name = this.name;
179                            var type = 'file';
180                            var cFile = {id: id, name: name, type: type};
181                            node.files[index] = cFile;
182                        });
183                    }
184
185                    if ($(aryChildDirs).length > 0) {
186                        if (node.childs == undefined)
187                            node.childs = [];
188                        $(aryChildIDs).each(function (index) {
189                            node.childs[index] = new Object;
190                            buildTreeFromParent(aryChildIDs[index].id, node.childs[index]);
191                        });
192                    }
193                }
194
195                var checkChildExisted = function (id) {
196                    var dirList = searchItemsByParent(id, 'directory');
197                    var fileList = searchItemsByParent(id, 'file');
198                    return (dirList.length > 0) || (fileList.length > 0);
199                }
200
201                var doneInit = function () {
202                    bindEventToToolbars();
203                    documentEventsBinding();
204                };
205
206                var failInit = function (er) {
207                    bootbox.alert(er.err);
208                }
209
210                var init = function () {
211                    layoutRender();
212                    $('#' + o.tree).parent().resizable({
213                        maxWidth: maxWidth,
214                        minWidth: 220,
215                        handles: "e",
216                        resize: function (event, ui) {
217                            layoutRender();
218                        }
219                    });
220                    $(window).resize(function () {
221                        layoutRender();
222                        $('#' + o.tree).parent().resizable({maxWidth: maxWidth});
223                    });
224                    sendCommand({postdata: null, callbackSuccess: createFileManager, callbackDone: doneInit, callbackFail: failInit});
225                };
226
227                var searchItemByID = function (id, type) {
228                    var data = {};
229                    switch (type) {
230                        case 'directory':
231                            data = o.data.DIRECTORIES;
232                            break;
233                        case 'file':
234                            data = o.data.FILES;
235                            break;
236                        default:
237                            break;
238                    }
239
240                    //for (var i = 0; i < data.length; i++) {
241                    for (var i in data) {
242                        if (data[i].id == id) {
243                            return i;
244                        }
245                    }
246                }
247
248                var searchItemsByParent = function (parentID, type) {
249                    var data = {};
250                    var aryItem = [];
251                    var index = aryItem.length;
252
253                    switch (type) {
254                        case 'directory':
255                            data = o.data.DIRECTORIES;
256                            break;
257                        case 'file':
258                            data = o.data.FILES;
259                            break;
260                        default:
261                            break;
262                    }
263
264                    for (i in data) {
265                        if (data[i].parentID == parentID) {
266                            aryItem[index] = data[i];
267                            index++;
268                        }
269                    }
270
271                    return aryItem;
272                }
273
274                /**************************
275                 * TOOLBAR EVENTS - START *
276                 **************************/
277                var btnRefreshClick = function (obj) {
278                    $(o).find('i').addClass('icon-spin');
279                    sendCommand({postdata: null,
280                        callbackSuccess: function (parseData) {
281                            o.data = parseData;
282                            self.updateData({updateAll: true});
283                            o.oTree.refeshTree();
284                        },
285                        callbackDone: function () {
286                            $(o).find('i').removeClass('icon-spin');
287                        },
288                        callbackFail: failInit
289                    });
290                }
291
292                var btnNewFolderClick = function () {
293                    createFolderStart();
294                }
295
296                var btnUploadClick = function () {
297                    uploadStart();
298                    uploadInit();
299
300                }
301
302                var btnDelClick = function () {
303                    var items = o.oGrid.getHightLightItem();
304                    if ($(items).length == 0) {
305                        var dirID = $(o.oTree.getSelectedNode()).attr('id');
306                        var item = o.data.DIRECTORIES[searchItemByID(dirID, 'directory')];
307                        item.type = 'directory';
308                        items = [item];
309                    }
310                    self.deleteItem(items);
311                }
312
313                var btnCopyClick = function () {
314                    copy('copy');
315                }
316
317                var btnPasteClick = function () {
318                    paste();
319                }
320
321                var btnCutClick = function () {
322                    copy('move');
323                }
324
325                var bindEventToToolbars = function () {
326                    $(btnRefresh).click(function (e) {
327                        btnRefreshClick(this)
328                    });
329
330                    $(btnNewFolder).click(function (e) {
331                        btnNewFolderClick()
332                    });
333                    $(btnUpload).click(function (e) {
334                        btnUploadClick()
335                    });
336
337                    $(btnDel).click(function (e) {
338                        btnDelClick()
339                    });
340                    $(btnCopy).click(function (e) {
341                        btnCopyClick()
342                    });
343                    $(btnCut).click(function (e) {
344                        btnCutClick()
345                    });
346                    $(btnPaste).click(function (e) {
347                        btnPasteClick()
348                    })
349                    $(btnPreview).click(function (e) {
350                        btnPreviewClick()
351                    })
352
353                    /*btnShare
354                     btnPreview
355                     btnDownload
356                     btnUpload*/
357                }
358                /************************
359                 * TOOLBAR EVENTS - END *
360                 ************************/
361
362                /***********************************
363                 * DOCUMENT EVENTS BINDING - START *
364                 ***********************************/
365                var documentEventsBinding = function () {
366                    $(document).bind('keydown', function (e) {
367                        switch (e.which) {
368                            case 113:
369                            case 27:
370                                var gridSelectedItems = o.oGrid.getHightLightItem();
371                                if ($(gridSelectedItems).length > 0) {
372                                    o.oGrid.rename(e.which);
373                                } else {
374                                    o.oTree.rename(e.which);
375                                }
376                                break;
377                            case 46:
378                                //delete
379                                btnDelClick();
380                                break;
381                            case 65:
382                                if (e.ctrlKey) {
383                                    o.oGrid.selectAllNode();
384                                }
385                                break;
386                            default:
387                                break;
388                        }
389                    });
390                }
391                /***********************************
392                 * DOCUMENT EVENTS BINDING - END *
393                 ***********************************/
394
395                /*******************************
396                 * CREATE FOLDER - START *
397                 *******************************/
398                var createFolderStart = function () {
399                    var promptOptions = {
400                        title: "Tạo thư mục mới",
401                        buttons: {
402                            confirm: {
403                                label: "Lưu"
404                            },
405                            cancel: {
406                                label: "Há»§y"
407                            }
408                        },
409                        callback: function (result) {
410                            if (result === null) {
411                            } else {
412                                createFolder(treeCurrentNode, result);
413                            }
414                        }
415                    };
416
417                    return bootbox.prompt(promptOptions);
418                }
419
420                var uploadStart = function () {
421                    var userid = o.data.userinfo.us_id;
422                     console.log(self.getTreeCurrentNode());
423                    var promptOptions = {
424                        title: "Tải lên",
425                        message: "<form id='upload' method='post'  action='http://sbgapi.violet.vn/space/upload' enctype='multipart/form-data'><div id='drop'>Kéo thả tệp vào đây <a> Chọn tệp </a><input type='hidden' name='response' value='1'/><input type='hidden' name='dir' value='" + self.getTreeCurrentNode() + "'/><input type='hidden' name='userid' value='"+userid+"'/><input type='file' name='upload_file' multiple /></div><ul></ul></form>",
426                        buttons: {
427                            success: {
428                                label: "Xong",
429                                className: "btn btn-primary",
430                                callback: function (result) {
431                                   
432                                }
433                            },
434                        },
435                        onEscape: function() {uploadDone(self.getTreeCurrentNode());}
436                    };
437
438                    return bootbox.dialog(promptOptions);
439                }
440                var uploadDone = function (result) {
441                   
442                }
443                var btnPreviewClick = function(){
444                    var items = o.oGrid.getHightLightItem();
445                    if ($(items).length == 0) {
446                        var dirID = $(o.oTree.getSelectedNode()).attr('id');
447                        var item = o.data.DIRECTORIES[searchItemByID(dirID, 'directory')];
448                        item.type = 'directory';
449                        items = [item];
450                    }
451                    previewFile(items[0]);
452                }
453               
454                var previewFile = function(node) {
455                    var content="";
456                    if (node.minetype == 'jpg')
457                    {
458                        content="<img style='width:100%' src='"+node.fileurl+"' />";
459                    }
460                    if (node.minetype == 'flv')
461                    {
462                        content='<video width="320" height="240" controls>\
463                        <source src="'+node.fileurl+'" type="video/flv">\
464                      </video>';
465                    }
466                    bootbox.alert(content);
467                }
468               
469                var uploadInit = function () {
470                    var ul = $('#upload ul');
471
472                    $('#drop a').click(function () {
473                        $(this).parent().find('input').click();
474                    });
475                   
476                    $('#upload').fileupload({
477                        dropZone: $('#drop'),
478                        add: function (e, data) {
479
480                            var tpl = $('<li class="working"><input type="text" value="0" data-width="48" data-height="48"' +
481                                    ' data-fgColor="#0788a5" data-readOnly="1" data-bgColor="#3e4043" /><p></p><span></span></li>');
482                            tpl.find('p').text(data.files[0].name)
483                                    .append('<i>' + formatFileSize(data.files[0].size) + '</i>');
484                            data.context = tpl.appendTo(ul);
485                            tpl.find('input').knob();
486                            tpl.find('span').click(function () {
487
488                                if (tpl.hasClass('working')) {
489                                    jqXHR.abort();
490                                }
491
492                                tpl.fadeOut(function () {
493                                    tpl.remove();
494                                });
495
496                            });
497                           
498                            var jqXHR = data.submit();
499                        },
500                        progress: function (e, data) {
501
502                            // Calculate the completion percentage of the upload
503                            var progress = parseInt(data.loaded / data.total * 100, 10);
504
505                            // Update the hidden input field and trigger a change
506                            // so that the jQuery knob plugin knows to update the dial
507                            data.context.find('input').val(progress).change();
508
509                            if (progress == 100) {
510                                data.context.removeClass('working');
511                               
512                               
513                                                       
514                               
515                            }
516                        },
517                        fail: function (e, data) {
518                            // Something has gone wrong!
519                            data.context.addClass('error');
520                        },
521                        done: function (e, data) {
522                            //var newFileData = {"DIRECTORIES": [{"id": "5000", "name": "Dir1", "parentID": 85}], "FILES": [{"id": "2000", "name": "File in root 1", "parentID": 85, "minetype": "text"},{"id": "2001", "name": "File in root 2", "parentID": 85, "minetype": "text"}], "ERROR": {"err": "", "errCode": 0}};
523                              var newFileData=data.result;
524                              newFileData=$.parseJSON(data.result);
525                                if (newFileData.ERROR.errCode == 0) {
526                                    for (var i = 0; i < $(newFileData.FILES).length; i++) {
527                                        var file = newFileData.FILES[i];
528                                        var node = {id: file.id, name: file.name,fileurl: file.fileurl, parentID: file.parentID, minetype:file.minetype};
529                                        o.oGrid.createNode(node);
530                                        o.data.FILES[$(o.data.FILES).length] = node;
531                                    }
532                                   
533                                    for (var i = 0; i < $(newFileData.DIRECTORIES).length; i++) {
534                                        var file = newFileData.DIRECTORIES[i];
535                                        var node = {id: file.id, name: file.name, parentID: file.parentID, minetype:file.minetype};
536                                        o.oTree.createNode(node);
537                                        o.oGrid.createNode(node);
538                                        o.data.DIRECTORIES[$(o.data.DIRECTORIES).length] = node;
539                                    }
540                                   
541                                    /*var node = {id: parseData.id, name: parseData.name, parentID: parseData.parentID};
542                                    o.oTree.createNode(node);
543                                    o.data.DIRECTORIES[$(o.data.DIRECTORIES).length] = node;
544                                    if (o.oGrid) o.oGrid.reloadGrid();*/
545                                }       
546                        }
547
548                    });
549                   
550                    $(document).on('drop dragover', function (e) {
551                        e.preventDefault();
552                    });
553                   
554                    function formatFileSize(bytes) {
555                        if (typeof bytes !== 'number') {
556                            return '';
557                        }
558
559                        if (bytes >= 1000000000) {
560                            return (bytes / 1000000000).toFixed(2) + ' GB';
561                        }
562
563                        if (bytes >= 1000000) {
564                            return (bytes / 1000000).toFixed(2) + ' MB';
565                        }
566
567                        return (bytes / 1000).toFixed(2) + ' KB';
568                    }
569
570                };
571
572                var createFolder = function (parent, name) {
573                    var postdata = {fname: name, fparentid: parent};
574                    var script = 'createdir';
575                    /*isDev = true;*/
576                    sendCommand({
577                        postdata: postdata,
578                        script: script,
579                        callbackSuccess: function (parseData) {
580                            createFolderFinish(parseData);
581                        },
582                        callbackFail: function () {
583                        }
584                    });
585                }
586
587                var createFolderFinish = function (parseData) {
588                    /*isDev = false;*/
589                    if (parseData.ERROR.errCode == 0) {
590                        var node = {id: parseData.id, name: parseData.name, parentID: parseData.parentID};
591                        o.oTree.createNode(node);
592                        o.data.DIRECTORIES[$(o.data.DIRECTORIES).length] = node;
593                        if (o.oGrid)
594                            o.oGrid.reloadGrid();
595                    }
596                }
597                /*******************************
598                 * CREATE FOLDER - END         *
599                 *******************************/
600                /********************************
601                 * COPY & PASTE & MOVE - START  *
602                 ************=*******************/
603                var copy = function (act) {
604                    //detect selected items
605                    //push to clipboard
606                    var items = o.oGrid.getHightLightItem();
607
608                    if ($(items).length == 0) {
609                        var node = o.oTree.getSelectedNode();
610                        var itemID = $(node).attr('id');
611
612                        if (itemID == 0)
613                            return false;
614
615                        items[0] = o.data.DIRECTORIES[searchItemByID(itemID, 'directory')];
616                        items[0].type = 'directory';
617                    }
618
619                    if ($(items).length > 0) {
620                        oClipBoard.items = items;
621                        oClipBoard.act = act;
622                    }
623                    return true;
624                }
625
626                var paste = function () {
627                    if ((oClipBoard.act != 'copy'
628                            && oClipBoard.act != 'move')
629                            || oClipBoard.items == null)
630                        return;
631
632                    var items = [];
633                    var destination = self.getTreeCurrentNode();
634                    if (oClipBoard.act != 'copy') {
635                        $(oClipBoard.items).each(function (index) {
636                            var node = new Object;
637                            if (this.type == 'directory')
638                                buildTreeFromParent(this.id, node);
639                            else {
640                                node.id = this.id;
641                                node.type = 'file';
642                            }
643
644                            items[index] = node;
645                        });
646                    }
647                    else {
648                        items = oClipBoard.items;
649                    }
650
651                    var postdata = {act: oClipBoard.act, destination: destination, data: JSON.stringify(items)};
652                    var script = oClipBoard.act;
653
654                    sendCommand({
655                        postdata: postdata,
656                        script: script,
657                        callbackSuccess: function (parseData) {
658                            if (oClipBoard.act == 'copy') {
659                                $(parseData.DIRECTORIES).each(function (index) {
660                                    o.data.DIRECTORIES[$(o.data.DIRECTORIES).length] = this;
661                                });
662
663                                $(parseData.FILES).each(function (index) {
664                                    o.data.FILES[$(o.data.FILES).length] = this;
665                                });
666
667                                o.data.DIRECTORIES.sort(function (a, b) {
668                                    return a.parentID - b.parentID;
669                                });
670
671                                o.oTree.setData(o.data.DIRECTORIES);
672                                o.oGrid.setData(o.data);
673                                o.oTree.createCopyNode(parseData.DIRECTORIES);
674                                o.oGrid.reloadGrid();
675                            }
676                            else if (oClipBoard.act == 'move') {
677
678                            }
679                        }
680                    });
681
682                }
683
684                var move = function () {
685
686                }
687
688                var copyTo = function () {
689
690                }
691
692                var moveTo = function () {
693
694                }
695
696                /*****************************
697                 * COPY & PASTE & MOVE - END *
698                 *****************************/
699
700                this.deleteItem = function (item) {
701
702                    var confirmText = 'Bạn có muốn xóa ';
703
704                    if ($.isArray(item) && item.length > 1) {
705                        confirmText += 'các thư mục (và files) đã chọn?';
706                    }
707                    else if (item.length == 1) {
708                        if (item[0].id == 0)
709                            return false;
710                        confirmText += (item[0].type == 'directory') ? 'thư mục' : 'file';
711                        confirmText += ' <span style="font-weight:bold">' + item[0].name + "</span> khÃŽng?";
712                    }
713
714                    confirmText += '<br /><div style="color:red">(hành động này sẜ xóa tất cả thư mục con và các file trong các thư mục đã chọn)</div>';
715
716                    var parentID = item[0].parentID;
717
718                    for (var i = 0; i < item.length; i++) {
719                        if (item[i].type == 'directory') {
720                            var aryChildDirTmp = [];
721                            var aryChildDirID = [];
722                            var aryChildFiles = searchItemsByParent(item[i].id, 'file');
723                            var aryChildDirs = [];
724
725                            getAllDirChild(item[i].id, aryChildDirTmp);
726                            for (var d = 1; d < aryChildDirTmp.length; d++) {
727                                aryChildDirID[d - 1] = aryChildDirTmp[d];
728                            }
729
730                            for (var j = 0; j < aryChildDirID.length; j++) {
731                                if (o.data.DIRECTORIES[searchItemByID(aryChildDirID[j], 'directory')] != undefined)
732                                    aryChildDirs[aryChildDirs.length] = o.data.DIRECTORIES[searchItemByID(aryChildDirID[j], 'directory')];
733
734                                var aryTmp = searchItemsByParent(aryChildDirID[j], 'file');
735                                if (aryTmp.length > 0)
736                                    for (var f in aryTmp) {
737                                        aryChildFiles[aryChildFiles.length] = aryTmp[f];
738                                    }
739                            }
740
741                            item[i].childDirs = aryChildDirs;
742                            item[i].childFiles = aryChildFiles;
743                        }
744                    }
745
746                    var confirmOptions = {
747                        message: confirmText,
748                        buttons: {
749                            confirm: {
750                                label: "Xóa"
751                            },
752                            cancel: {
753                                label: "KhÃŽng xóa"
754                            }
755                        },
756                        callback: function (result) {
757                            if (result) {
758                                var delobj = JSON.stringify(item);
759                                var postdata = {delobj: delobj};
760                                var script = 'delete';
761                                sendCommand({
762                                    postdata: postdata,
763                                    script: script,
764                                    callbackSuccess: function (parseData) {
765                                        if ($(parseData.DIRECTORIES).length > 0) {
766                                            $(parseData.DIRECTORIES).each(function (index) {
767                                                o.oTree.deletion(this);
768                                                o.oGrid.deletion(this, 'directory');
769                                            });
770                                        }
771
772                                        if ($(parseData.FILES).length > 0) {
773                                            $(parseData.FILES).each(function (index) {
774                                                var file = o.data.FILES[searchItemByID(this, 'file')];
775                                                o.oGrid.deletion(this, file.minetype);
776                                            });
777                                        }
778                                    },
779                                    callbackDone: function (obj) {
780                                        if ($(parseData.DIRECTORIES).length > 0) {
781                                            $(parseData.DIRECTORIES).each(function (index) {
782                                                delete o.data.DIRECTORIES[searchItemByID(this, 'directory')];
783                                            });
784                                        }
785
786                                        if ($(parseData.FILES).length > 0) {
787                                            $(parseData.FILES).each(function (index) {
788                                                delete o.data.FILES[searchItemByID(this, 'file')];
789                                            });
790                                        }
791
792                                        o.oTree.setData(o.data.DIRECTORIES);
793                                        o.oGrid.setData(o.data);
794                                        self.setTreeCurrentNode(parentID);
795                                        o.oGrid.reloadGrid();
796                                    },
797                                    callbackFail: function () {
798                                    }
799                                });
800                            }
801                        }
802                    };
803
804                    bootbox.confirm(confirmOptions);
805                }
806
807                this.setTreeCurrentNode = function (treeNode) {
808                    //fire when click a node on Tree
809                    //then fire action of Grid
810                    treeCurrentNode = treeNode;
811                    if (o.oGrid)
812                        o.oGrid.reloadGrid();
813                };
814
815                this.getTreeCurrentNode = function () {
816                    return treeCurrentNode;
817                }
818
819                this.gridNodeDblClick = function (node) {
820                    if (node.minetype == 'directory') {
821                        var treeNode = $('#' + o.tree).find('UL.vstree[rel^="node' + node.parentID + '"] > LI[rel^="folder"] > A#' + node.id);
822                        o.oTree.activeNode(treeNode);
823                    }
824                    else {
825                        //execute or preview file
826                         previewFile(node);
827                    }
828                };
829
830                this.createNewFolder = function () {
831
832                }
833
834                this.updateData = function (p) {
835                    if (p.item == undefined)
836                        p.item = null;
837                    if (p.updateAll == undefined)
838                        p.updateAll = false;
839                    if (p.from == undefined)
840                        p.from = null;
841                    if (p.type == undefined)
842                        p.type = null;
843                    if (p.callback == undefined)
844                        p.callback = null;
845
846                    var obj = p.from == 'tree' ? o.oGrid : o.oTree;
847                    if (!p.updateAll) {
848                        var index = searchItemByID(p.item.id, p.type);
849                        switch (p.type) {
850                            case 'directory':
851                                o.data.DIRECTORIES[index].name = p.item.name;
852                                o.data.DIRECTORIES[index].parentID = p.item.parentID;
853                                break;
854                            case 'file':
855                                o.data.FILES[index].name = p.item.name;
856                                o.data.FILES[index].parentID = p.item.parentID;
857                                o.data.FILES[index].minetype = p.item.minetype;
858                                o.data.FILES[index].fileurl = p.item.fileurl;
859                                break;
860                            default:
861                                break;
862                        }
863                    }
864
865                    o.oTree.setData(o.data.DIRECTORIES);
866                    o.oGrid.setData(o.data);
867
868                    if (p.callback != null) {
869                        eval('obj.' + p.callback + '(p.item);')
870                    }
871
872                    //call sendCommand
873                }
874
875                this.searchItemsByParent = function (parentID, type) {
876                    return searchItemsByParent(parentID, type);
877                }
878
879                this.searchItemByID = function (parentID, type) {
880                    return searchItemByID(parentID, type);
881                }
882
883                this.initialize = function () {
884                    init();
885                    return this;
886                };
887
888                return this.initialize();
889            }
890        });
891    })(jQuery);
Note: See TracBrowser for help on using the repository browser.