-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery.fileManager.js
218 lines (195 loc) · 7.8 KB
/
jquery.fileManager.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
/*
* File Manager
*
* Copyright (c) 2010 Tom Kay - [email protected]
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.*
*
*/
;(function($){
var optionDefaults = {
path : '',
upload : false,
readonly : false,
fixedPath : false,
baseClass : 'fmBase',
folderClass : 'fmFolder',
trashClass : 'fmTrash',
loadingClass : 'fmLoading',
highlightClass : 'ui-state-highlight',
hoverClass : 'ui-state-active'
};
$.fn.fileManager = function(settings, pluploadOptions) {
var mbOptions = $.extend({}, optionDefaults, settings);
// mbOptions.events = $.extend({selectstart:function () { return false; },dblclick:ItemDblClick},mbOptions.events);
// if (!mbOptions.uploadPath) {
// alert('uploadPath not specified'); return;
// }
if (!mbOptions.ajaxPath) {
alert('ajaxPath not specified'); return;
}
if (mbOptions.fixedPath) mbOptions.path = mbOptions.fixedPath;
var query = $.extend({},{path:mbOptions.path},mbOptions.get);
this.each(function () { // swap with getJSON so not duplicating ajax
var $sel = $(this);
// $sel.empty();
// $sel.append('<div>Loading FileManager...</div>');
$.getJSON(mbOptions.ajaxPath, query, function(data, status) {
//localOptions = mbOptions;
$sel.data('result',data);
// localOptions.path = data.path;
// localOptions.relPath = data.relPath;
$sel.data('options',mbOptions);
if (status != "success") {
var msg = "Sorry but there was an error: "+status;
}
// process response
$sel.empty();
if (!mbOptions.readonly) {
$sel.append('<div>Path: '+data.rootPath+data.path+'</div>');
if (data.path && !mbOptions.fixedPath) DrawItem($sel,{path:'..',title:'..',type:1});
DrawItem($sel,{path:'',title:'',type:2});
}
if ($(data.files).length == 0) {
$sel.append('<div style="font-size:1.3em;padding:0.5em">No files in this folder.</div>');
}
$(data.files).each(function () {
DrawItem($sel,this);
});
$sel.append('<div style="clear:both"></div>');
if (!mbOptions.readonly)
$sel.append($('<div>New Folder</div>').button().bind('click',NewFolder));
if (mbOptions.upload) {
var ul = $('<div></div>').hide();
$sel.append($('<div>Upload Files</div>').button().bind('click',{container:ul},UploadFiles));
$sel.append(ul);
}
// end processing
$('.'+mbOptions.baseClass,$sel).disableSelection();//bind('selectstart',function () { return false; });
$('.'+mbOptions.folderClass,$sel).bind('dblclick',ItemDblClick);
// DocReady(); // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~> event
});
function UploadFiles(event) {
$(event.data.container).toggle();
if (plupload && pluploadOptions) {
if (!$(event.data.container).pluploadQueue) {
$(event.data.container).html('Must install Plupload jquery plugin.'); return;
}
var opts = pluploadOptions;
opts.url = opts.url+ (opts.url.indexOf('?') < 0 ? '?' : '&') +'path='+$sel.data('result').path;
$(event.data.container).pluploadQueue(opts);
$(event.data.container).pluploadQueue().bind('FileUploaded',function (uploader,file,response) {
if (uploader.total.queued == 0) {
RefreshView($sel);
}
});
} else {
$(event.data.container).html('Must install Plupload.');
}
}
function NewFolder() {
var path = prompt('Enter Folder Name:');
if (!path) return;
if ($sel.data('result').path) path = $sel.data('result').path + '/' + path;
ReloadFolder($sel, path);
}
});
function FileDropped(event,ui) {
var from = $(ui.draggable);
var to = $(this);
if ($(this).hasClass(mbOptions.trashClass)) {
if (confirm('Really delete "'+from.data('item').title+'"? This cannot be undone')) {
ajaxData = {path:mbOptions.path,'delete':from.data('item').path};
$.ajax({url:mbOptions.ajaxPath,data:ajaxData,dataType:'script',complete:function() {
RefreshView(from.data('item').target);
}});
}
} else {
return Rename(from.data('item').target,from.data('item').path,to.data('item').path+'/'+from.data('item').path);
//ajaxData = {path:mbOptions.path,mFrom:from.data('item').path,mTo:to.data('item').path+'/'+from.data('item').path};
}
};
function Rename(view,from,to) {
ajaxData = {path:mbOptions.path,mFrom:from,mTo:to};
$.ajax({url:mbOptions.ajaxPath,data:ajaxData,dataType:'script',complete:function() {
RefreshView(view);
}});
}
function ItemDblClick() {
var item = $(this).data('item');
if (item.type != ICONTYPE_FOLDER) return;
// $(this).append($('<div></div>').addClass('fmLoading'));
var path = item.path;
if (item.target.data('result').path) path = item.target.data('result').path + '/' + path;
ReloadFolder(item.target,path);
}
function RefreshView(target) {
ReloadFolder(target,target.data('result').path);
}
function ReloadFolder(target,path) {
target.fileManager($.extend({},mbOptions,{path:path}),pluploadOptions);
};
var ICONTYPE_FILE = 0;
var ICONTYPE_FOLDER = 1;
var ICONTYPE_TRASH = 2;
function DrawItem(target, item) {
if (item.type == ICONTYPE_FOLDER && mbOptions.fixedPath) return;
item.target = $(target);
item.fullPath = item.target.data('result').rootPath + item.target.data('result').path + '/' + item.path;
var icon = $('<div title="'+item.title+'"></div>');
icon.data('item',item);
icon.addClass(mbOptions.baseClass);
// set classes
if (item.type == ICONTYPE_FOLDER)
icon.addClass(mbOptions.folderClass);
else if (item.type == ICONTYPE_TRASH)
icon.addClass(mbOptions.trashClass);
// set draggables
if (!mbOptions.readonly) {
if (item.type == ICONTYPE_FOLDER || item.type == ICONTYPE_TRASH)
icon.droppable({tolerance:'intersect',accept:'.'+mbOptions.baseClass,drop:FileDropped,hoverClass:mbOptions.hoverClass,activeClass:mbOptions.highlightClass});
if (item.type != ICONTYPE_TRASH && item.path != '..')
icon.draggable({stack:'files',revert:true,zIndex:1000,opacity:0.5,scroll:false});
}
if (item.type == ICONTYPE_FILE && item.path.search(/.jpeg|.jpg|.png|.gif|.tif|.tiff/i) > -1) {
icon.css('background-image','none');
icon.append('<img style="width:100%;height:100%" src="'+item.fullPath+'">');
}
// events
if (mbOptions.events) {
$.each(mbOptions.events,function (index,value) {
icon.bind(index, value);
});
}
icon.data('result',target.data('result'));
target.append(icon);
if (!item.path) return;
//if (mbOptions.readonly) return;
var ext = item.path.match(/\.[^.\b]*$/i);
if (ext) ext = ext[0];
else ext = '';
var basename = item.path.replace(ext,'');
var renamebox = $('<input style="position:absolute;left:-1em;bottom:-1px;right:-1em" type="text">')
.bind('focus',function() { $(this).val(basename); })
.bind('blur',function() { $(this).hide(); if (item.path == $(this).val()+ext) return; Rename(item.target,item.path,$(this).val()+ext); })
.bind('keydown',function(event) { if (event.keyCode == '13' || event.keyCode == '27') $(this).blur(); })
.hide()
.appendTo(icon);
var label = $('<div class="label">'+item.title+'</div>')
.prependTo(icon)//.bind('dblclick',function() {return false;})
.bind('click',function () { if (!mbOptions.readonly) { renamebox.show().focus(); return false;}});
}
return $(this);
};
})(jQuery);