Blame view

sources/core/js/oc-dialogs.js 18.9 KB
03e52840d   Kload   Init
1
2
3
  /**
   * ownCloud
   *
31b7f2792   Kload   Upgrade to ownclo...
4
   * @author Bartek Przybylski, Christopher Schäpers, Thomas Tanghus
03e52840d   Kload   Init
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
   * @copyright 2012 Bartek Przybylski bartek@alefzero.eu
   *
   * This library is free software; you can redistribute it and/or
   * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
   * License as published by the Free Software Foundation; either
   * version 3 of the License, or any later version.
   *
   * This library 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 AFFERO GENERAL PUBLIC LICENSE for more details.
   *
   * You should have received a copy of the GNU Affero General Public
   * License along with this library.  If not, see <http://www.gnu.org/licenses/>.
   *
   */
  
  /**
   * this class to ease the usage of jquery dialogs
   */
  var OCdialogs = {
31b7f2792   Kload   Upgrade to ownclo...
26
27
28
29
30
  	// dialog button types
  	YES_NO_BUTTONS:		70,
  	OK_BUTTONS:		71,
  	// used to name each dialog
  	dialogs_counter: 0,
03e52840d   Kload   Init
31
32
33
34
  	/**
  	* displays alert dialog
  	* @param text content of dialog
  	* @param title dialog title
31b7f2792   Kload   Upgrade to ownclo...
35
36
  	* @param callback which will be triggered when user presses OK
  	* @param modal make the dialog modal
03e52840d   Kload   Init
37
38
  	*/
  	alert:function(text, title, callback, modal) {
31b7f2792   Kload   Upgrade to ownclo...
39
  		this.message(text, title, 'alert', OCdialogs.OK_BUTTON, callback, modal);
03e52840d   Kload   Init
40
41
42
43
44
  	},
  	/**
  	* displays info dialog
  	* @param text content of dialog
  	* @param title dialog title
31b7f2792   Kload   Upgrade to ownclo...
45
46
  	* @param callback which will be triggered when user presses OK
  	* @param modal make the dialog modal
03e52840d   Kload   Init
47
48
  	*/
  	info:function(text, title, callback, modal) {
31b7f2792   Kload   Upgrade to ownclo...
49
  		this.message(text, title, 'info', OCdialogs.OK_BUTTON, callback, modal);
03e52840d   Kload   Init
50
51
52
53
54
  	},
  	/**
  	* displays confirmation dialog
  	* @param text content of dialog
  	* @param title dialog title
31b7f2792   Kload   Upgrade to ownclo...
55
56
  	* @param callback which will be triggered when user presses YES or NO (true or false would be passed to callback respectively)
  	* @param modal make the dialog modal
03e52840d   Kload   Init
57
58
  	*/
  	confirm:function(text, title, callback, modal) {
31b7f2792   Kload   Upgrade to ownclo...
59
  		this.message(text, title, 'notice', OCdialogs.YES_NO_BUTTONS, callback, modal);
03e52840d   Kload   Init
60
61
  	},
  	/**
31b7f2792   Kload   Upgrade to ownclo...
62
63
64
65
66
67
  	 * show a file picker to pick a file from
  	 * @param title dialog title
  	 * @param callback which will be triggered when user presses Choose
  	 * @param multiselect whether it should be possible to select multiple files
  	 * @param mimetype_filter mimetype to filter by
  	 * @param modal make the dialog modal
03e52840d   Kload   Init
68
  	*/
31b7f2792   Kload   Upgrade to ownclo...
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
  	filepicker:function(title, callback, multiselect, mimetype_filter, modal) {
  		var self = this;
  		$.when(this._getFilePickerTemplate()).then(function($tmpl) {
  			var dialog_name = 'oc-dialog-filepicker-content';
  			var dialog_id = '#' + dialog_name;
  			if(self.$filePicker) {
  				self.$filePicker.ocdialog('close');
  			}
  			self.$filePicker = $tmpl.octemplate({
  				dialog_name: dialog_name,
  				title: title
  			}).data('path', '').data('multiselect', multiselect).data('mimetype', mimetype_filter);
  
  			if (modal === undefined) {
  				modal = false;
  			}
  			if (multiselect === undefined) {
  				multiselect = false;
  			}
  			if (mimetype_filter === undefined) {
  				mimetype_filter = '';
  			}
  
  			$('body').append(self.$filePicker);
  
  
  			self.$filePicker.ready(function() {
  				self.$filelist = self.$filePicker.find('.filelist');
  				self.$dirTree = self.$filePicker.find('.dirtree');
  				self.$dirTree.on('click', 'span:not(:last-child)', self, self._handleTreeListSelect);
  				self.$filelist.on('click', 'li', function(event) {
  					self._handlePickerClick(event, $(this));
  				});
  				self._fillFilePicker('');
  			});
  
  			// build buttons
  			var functionToCall = function() {
  				if (callback !== undefined) {
  					var datapath;
  					if (multiselect === true) {
  						datapath = [];
  						self.$filelist.find('.filepicker_element_selected .filename').each(function(index, element) {
  							datapath.push(self.$filePicker.data('path') + '/' + $(element).text());
  						});
03e52840d   Kload   Init
114
  					} else {
31b7f2792   Kload   Upgrade to ownclo...
115
116
  						datapath = self.$filePicker.data('path');
  						datapath += '/' + self.$filelist.find('.filepicker_element_selected .filename').text();
03e52840d   Kload   Init
117
  					}
31b7f2792   Kload   Upgrade to ownclo...
118
119
  					callback(datapath);
  					self.$filePicker.ocdialog('close');
03e52840d   Kload   Init
120
  				}
31b7f2792   Kload   Upgrade to ownclo...
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
  			};
  			var buttonlist = [{
  				text: t('core', 'Choose'),
  				click: functionToCall,
  				defaultButton: true
  			}];
  
  			self.$filePicker.ocdialog({
  				closeOnEscape: true,
  				width: (4/9)*$(document).width(),
  				height: 420,
  				modal: modal,
  				buttons: buttonlist,
  				close: function(event, ui) {
  					try {
  						$(this).ocdialog('destroy').remove();
  					} catch(e) {}
  					self.$filePicker = null;
03e52840d   Kload   Init
139
  				}
31b7f2792   Kload   Upgrade to ownclo...
140
141
142
143
144
145
146
  			});
  		})
  		.fail(function(status, error) {
  			// If the method is called while navigating away
  			// from the page, it is probably not needed ;)
  			if(status !== 0) {
  				alert(t('core', 'Error loading file picker template: {error}', {error: error}));
03e52840d   Kload   Init
147
  			}
03e52840d   Kload   Init
148
  		});
03e52840d   Kload   Init
149
  	},
31b7f2792   Kload   Upgrade to ownclo...
150
151
152
153
154
155
156
157
158
159
160
161
162
  	/**
  	 * Displays raw dialog
  	 * You better use a wrapper instead ...
  	*/
  	message:function(content, title, dialog_type, buttons, callback, modal) {
  		$.when(this._getMessageTemplate()).then(function($tmpl) {
  			var dialog_name = 'oc-dialog-' + OCdialogs.dialogs_counter + '-content';
  			var dialog_id = '#' + dialog_name;
  			var $dlg = $tmpl.octemplate({
  				dialog_name: dialog_name,
  				title: title,
  				message: content,
  				type: dialog_type
03e52840d   Kload   Init
163
  			});
31b7f2792   Kload   Upgrade to ownclo...
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
  			if (modal === undefined) {
  				modal = false;
  			}
  			$('body').append($dlg);
  			var buttonlist = [];
  			switch (buttons) {
  				case OCdialogs.YES_NO_BUTTONS:
  					buttonlist = [{
  						text: t('core', 'Yes'),
  						click: function(){
  							if (callback !== undefined) {
  								callback(true);
  							}
  							$(dialog_id).ocdialog('close');
  						},
  						defaultButton: true
  					},
  					{
  						text: t('core', 'No'),
  						click: function(){
  							if (callback !== undefined) {
  								callback(false);
  							}
  							$(dialog_id).ocdialog('close');
  						}
  					}];
  				break;
  				case OCdialogs.OK_BUTTON:
  					var functionToCall = function() {
  						$(dialog_id).ocdialog('close');
  						if(callback !== undefined) {
  							callback();
  						}
  					};
  					buttonlist[0] = {
  						text: t('core', 'Ok'),
  						click: functionToCall,
  						defaultButton: true
  					};
  				break;
  			}
  
  			$(dialog_id).ocdialog({
  				closeOnEscape: true,
  				modal: modal,
  				buttons: buttonlist
  			});
  			OCdialogs.dialogs_counter++;
  		})
  		.fail(function(status, error) {
  			// If the method is called while navigating away from
  			// the page, we still want to deliver the message.
  			if(status === 0) {
  				alert(title + ': ' + content);
  			} else {
  				alert(t('core', 'Error loading message template: {error}', {error: error}));
  			}
  		});
  	},
  	_fileexistsshown: false,
  	/**
  	 * Displays file exists dialog
  	 * @param {object} data upload object
  	 * @param {object} original file with name, size and mtime
  	 * @param {object} replacement file with name, size and mtime
  	 * @param {object} controller with onCancel, onSkip, onReplace and onRename methods
  	*/
  	fileexists:function(data, original, replacement, controller) {
  		var self = this;
  
  		var getCroppedPreview = function(file) {
  			var deferred = new $.Deferred();
  			// Only process image files.
  			var type = file.type && file.type.split('/').shift();
  			if (window.FileReader && type === 'image') {
  				var reader = new FileReader();
  				reader.onload = function (e) {
  					var blob = new Blob([e.target.result]);
  					window.URL = window.URL || window.webkitURL;
  					var originalUrl = window.URL.createObjectURL(blob);
  					var image = new Image();
  					image.src = originalUrl;
  					image.onload = function () {
  						var url = crop(image);
  						deferred.resolve(url);
03e52840d   Kload   Init
249
  					}
31b7f2792   Kload   Upgrade to ownclo...
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
  				};
  				reader.readAsArrayBuffer(file);
  			} else {
  				deferred.reject();
  			}
  			return deferred;
  		};
  
  		var crop = function(img) {
  			var canvas = document.createElement('canvas'),
  				width = img.width,
  				height = img.height,
  				x, y, size;
  
  			// calculate the width and height, constraining the proportions
  			if (width > height) {
  				y = 0;
  				x = (width - height) / 2;
  			} else {
  				y = (height - width) / 2;
  				x = 0;
  			}
  			size = Math.min(width, height);
  
  			// resize the canvas and draw the image data into it
  			canvas.width = 64;
  			canvas.height = 64;
  			var ctx = canvas.getContext("2d");
  			ctx.drawImage(img, x, y, size, size, 0, 0, 64, 64);
  			return canvas.toDataURL("image/png", 0.7);
  		};
  
  		var addConflict = function(conflicts, original, replacement) {
  
  			var conflict = conflicts.find('.template').clone().removeClass('template').addClass('conflict');
  
  			conflict.data('data',data);
  
  			conflict.find('.filename').text(original.name);
  			conflict.find('.original .size').text(humanFileSize(original.size));
  			conflict.find('.original .mtime').text(formatDate(original.mtime*1000));
  			// ie sucks
  			if (replacement.size && replacement.lastModifiedDate) {
  				conflict.find('.replacement .size').text(humanFileSize(replacement.size));
  				conflict.find('.replacement .mtime').text(formatDate(replacement.lastModifiedDate));
  			}
  			var path = getPathForPreview(original.name);
  			Files.lazyLoadPreview(path, original.mime, function(previewpath){
  				conflict.find('.original .icon').css('background-image','url('+previewpath+')');
  			}, 96, 96, original.etag);
  			getCroppedPreview(replacement).then(
  				function(path){
  					conflict.find('.replacement .icon').css('background-image','url(' + path + ')');
  				}, function(){
  					Files.getMimeIcon(replacement.type,function(path){
  						conflict.find('.replacement .icon').css('background-image','url(' + path + ')');
  					});
03e52840d   Kload   Init
307
  				}
31b7f2792   Kload   Upgrade to ownclo...
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
  			);
  			conflicts.append(conflict);
  
  			//set more recent mtime bold
  			// ie sucks
  			if (replacement.lastModifiedDate && replacement.lastModifiedDate.getTime() > original.mtime*1000) {
  				conflict.find('.replacement .mtime').css('font-weight', 'bold');
  			} else if (replacement.lastModifiedDate && replacement.lastModifiedDate.getTime() < original.mtime*1000) {
  				conflict.find('.original .mtime').css('font-weight', 'bold');
  			} else {
  				//TODO add to same mtime collection?
  			}
  
  			// set bigger size bold
  			if (replacement.size && replacement.size > original.size) {
  				conflict.find('.replacement .size').css('font-weight', 'bold');
  			} else if (replacement.size && replacement.size < original.size) {
  				conflict.find('.original .size').css('font-weight', 'bold');
  			} else {
  				//TODO add to same size collection?
  			}
  
  			//TODO show skip action for files with same size and mtime in bottom row
  
  		};
  		//var selection = controller.getSelection(data.originalFiles);
  		//if (selection.defaultAction) {
  		//	controller[selection.defaultAction](data);
  		//} else {
  			var dialog_name = 'oc-dialog-fileexists-content';
  			var dialog_id = '#' + dialog_name;
  			if (this._fileexistsshown) {
  				// add conflict
  
  				var conflicts = $(dialog_id+ ' .conflicts');
  				addConflict(conflicts, original, replacement);
  
  				var count = $(dialog_id+ ' .conflict').length;
  				var title = n('files',
  								'{count} file conflict',
  								'{count} file conflicts',
  								count,
  								{count:count}
  							);
  				$(dialog_id).parent().children('.oc-dialog-title').text(title);
  
  				//recalculate dimensions
  				$(window).trigger('resize');
  
  			} else {
  				//create dialog
  				this._fileexistsshown = true;
  				$.when(this._getFileExistsTemplate()).then(function($tmpl) {
  					var title = t('files','One file conflict');
  					var $dlg = $tmpl.octemplate({
  						dialog_name: dialog_name,
  						title: title,
  						type: 'fileexists',
  
  						why: t('files','Which files do you want to keep?'),
  						what: t('files','If you select both versions, the copied file will have a number added to its name.')
  					});
  					$('body').append($dlg);
  
  					var conflicts = $($dlg).find('.conflicts');
  					addConflict(conflicts, original, replacement);
  
  					buttonlist = [{
  							text: t('core', 'Cancel'),
  							classes: 'cancel',
  							click: function(){
  								if ( typeof controller.onCancel !== 'undefined') {
  									controller.onCancel(data);
  								}
  								$(dialog_id).ocdialog('close');
  							}
  						},
  						{
  							text: t('core', 'Continue'),
  							classes: 'continue',
  							click: function(){
  								if ( typeof controller.onContinue !== 'undefined') {
  									controller.onContinue($(dialog_id + ' .conflict'));
  								}
  								$(dialog_id).ocdialog('close');
  							}
  						}];
  
  					$(dialog_id).ocdialog({
  						width: 500,
  						closeOnEscape: true,
  						modal: true,
  						buttons: buttonlist,
  						closeButton: null,
  						close: function(event, ui) {
  								self._fileexistsshown = false;
  							$(this).ocdialog('destroy').remove();
  						}
  					});
  
  					$(dialog_id).css('height','auto');
  
  					//add checkbox toggling actions
  					$(dialog_id).find('.allnewfiles').on('click', function() {
  						var checkboxes = $(dialog_id).find('.conflict .replacement input[type="checkbox"]');
  						checkboxes.prop('checked', $(this).prop('checked'));
  					});
  					$(dialog_id).find('.allexistingfiles').on('click', function() {
  						var checkboxes = $(dialog_id).find('.conflict .original input[type="checkbox"]');
  						checkboxes.prop('checked', $(this).prop('checked'));
  					});
  					$(dialog_id).find('.conflicts').on('click', '.replacement,.original', function() {
  						var checkbox = $(this).find('input[type="checkbox"]');
  						checkbox.prop('checked', !checkbox.prop('checked'));
  					});
  					$(dialog_id).find('.conflicts').on('click', 'input[type="checkbox"]', function() {
  						var checkbox = $(this);
  						checkbox.prop('checked', !checkbox.prop('checked'));
  					});
  
  					//update counters
  					$(dialog_id).on('click', '.replacement,.allnewfiles', function() {
  						var count = $(dialog_id).find('.conflict .replacement input[type="checkbox"]:checked').length;
  						if (count === $(dialog_id+ ' .conflict').length) {
  							$(dialog_id).find('.allnewfiles').prop('checked', true);
  							$(dialog_id).find('.allnewfiles + .count').text(t('files','(all selected)'));
  						} else if (count > 0) {
  							$(dialog_id).find('.allnewfiles').prop('checked', false);
  							$(dialog_id).find('.allnewfiles + .count').text(t('files','({count} selected)',{count:count}));
  						} else {
  							$(dialog_id).find('.allnewfiles').prop('checked', false);
  							$(dialog_id).find('.allnewfiles + .count').text('');
  						}
  					});
  					$(dialog_id).on('click', '.original,.allexistingfiles', function(){
  						var count = $(dialog_id).find('.conflict .original input[type="checkbox"]:checked').length;
  						if (count === $(dialog_id+ ' .conflict').length) {
  							$(dialog_id).find('.allexistingfiles').prop('checked', true);
  							$(dialog_id).find('.allexistingfiles + .count').text(t('files','(all selected)'));
  						} else if (count > 0) {
  							$(dialog_id).find('.allexistingfiles').prop('checked', false);
  							$(dialog_id).find('.allexistingfiles + .count').text(t('files','({count} selected)',{count:count}));
  						} else {
  							$(dialog_id).find('.allexistingfiles').prop('checked', false);
  							$(dialog_id).find('.allexistingfiles + .count').text('');
  						}
  					});
  				})
  				.fail(function() {
  					alert(t('core', 'Error loading file exists template'));
  				});
03e52840d   Kload   Init
459
  			}
31b7f2792   Kload   Upgrade to ownclo...
460
  		//}
03e52840d   Kload   Init
461
  	},
31b7f2792   Kload   Upgrade to ownclo...
462
463
464
465
466
467
468
469
470
471
472
473
474
475
  	_getFilePickerTemplate: function() {
  		var defer = $.Deferred();
  		if(!this.$filePickerTemplate) {
  			var self = this;
  			$.get(OC.filePath('core', 'templates', 'filepicker.html'), function(tmpl) {
  				self.$filePickerTemplate = $(tmpl);
  				self.$listTmpl = self.$filePickerTemplate.find('.filelist li:first-child').detach();
  				defer.resolve(self.$filePickerTemplate);
  			})
  			.fail(function(jqXHR, textStatus, errorThrown) {
  				defer.reject(jqXHR.status, errorThrown);
  			});
  		} else {
  			defer.resolve(this.$filePickerTemplate);
03e52840d   Kload   Init
476
  		}
31b7f2792   Kload   Upgrade to ownclo...
477
  		return defer.promise();
03e52840d   Kload   Init
478
  	},
31b7f2792   Kload   Upgrade to ownclo...
479
480
481
482
483
484
485
486
487
488
489
490
491
  	_getMessageTemplate: function() {
  		var defer = $.Deferred();
  		if(!this.$messageTemplate) {
  			var self = this;
  			$.get(OC.filePath('core', 'templates', 'message.html'), function(tmpl) {
  				self.$messageTemplate = $(tmpl);
  				defer.resolve(self.$messageTemplate);
  			})
  			.fail(function(jqXHR, textStatus, errorThrown) {
  				defer.reject(jqXHR.status, errorThrown);
  			});
  		} else {
  			defer.resolve(this.$messageTemplate);
03e52840d   Kload   Init
492
  		}
31b7f2792   Kload   Upgrade to ownclo...
493
  		return defer.promise();
03e52840d   Kload   Init
494
  	},
31b7f2792   Kload   Upgrade to ownclo...
495
496
497
498
499
500
501
502
503
504
  	_getFileExistsTemplate: function () {
  		var defer = $.Deferred();
  		if (!this.$fileexistsTemplate) {
  			var self = this;
  			$.get(OC.filePath('files', 'templates', 'fileexists.html'), function (tmpl) {
  				self.$fileexistsTemplate = $(tmpl);
  				defer.resolve(self.$fileexistsTemplate);
  			})
  			.fail(function () {
  				defer.reject();
03e52840d   Kload   Init
505
  			});
03e52840d   Kload   Init
506
  		} else {
31b7f2792   Kload   Upgrade to ownclo...
507
  			defer.resolve(this.$fileexistsTemplate);
03e52840d   Kload   Init
508
  		}
31b7f2792   Kload   Upgrade to ownclo...
509
  		return defer.promise();
03e52840d   Kload   Init
510
  	},
31b7f2792   Kload   Upgrade to ownclo...
511
512
513
  	_getFileList: function(dir, mimeType) {
  		if (typeof(mimeType) === "string") {
  			mimeType = [mimeType];
03e52840d   Kload   Init
514
  		}
31b7f2792   Kload   Upgrade to ownclo...
515
516
517
518
519
520
  
  		return $.getJSON(
  			OC.filePath('files', 'ajax', 'rawlist.php'),
  			{
  				dir: dir,
  				mimetypes: JSON.stringify(mimeType)
03e52840d   Kload   Init
521
  			}
31b7f2792   Kload   Upgrade to ownclo...
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
  		);
  	},
  	_determineValue: function(element) {
  		if ( $(element).attr('type') === 'checkbox' ) {
  			return element.checked;
  		} else {
  			return $(element).val();
  		}
  	},
  
  	/**
  	 * fills the filepicker with files
  	*/
  	_fillFilePicker:function(dir) {
  		var dirs = [];
  		var others = [];
  		var self = this;
  		this.$filelist.empty().addClass('loading');
  		this.$filePicker.data('path', dir);
  		$.when(this._getFileList(dir, this.$filePicker.data('mimetype'))).then(function(response) {
  			$.each(response.data, function(index, file) {
  				if (file.type === 'dir') {
  					dirs.push(file);
  				} else {
  					others.push(file);
  				}
  			});
  
  			self._fillSlug();
  			var sorted = dirs.concat(others);
  
  			$.each(sorted, function(idx, entry) {
  				var $li = self.$listTmpl.octemplate({
  					type: entry.type,
  					dir: dir,
  					filename: entry.name,
  					date: OC.mtime2date(entry.mtime)
  				});
  				$li.find('img').attr('src', entry.mimetype_icon);
  				self.$filelist.append($li);
  			});
  
  			self.$filelist.removeClass('loading');
03e52840d   Kload   Init
565
  		});
03e52840d   Kload   Init
566
  	},
31b7f2792   Kload   Upgrade to ownclo...
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
  	/**
  	 * fills the tree list with directories
  	*/
  	_fillSlug: function() {
  		this.$dirTree.empty();
  		var self = this;
  		var path = this.$filePicker.data('path');
  		var $template = $('<span data-dir="{dir}">{name}</span>');
  		if(path) {
  			var paths = path.split('/');
  			$.each(paths, function(index, dir) {
  				dir = paths.pop();
  				if(dir === '') {
  					return false;
  				}
  				self.$dirTree.prepend($template.octemplate({
  					dir: paths.join('/') + '/' + dir,
  					name: dir
  				}));
  			});
  		}
  		$template.octemplate({
  			dir: '',
  			name: '&nbsp;&nbsp;&nbsp;&nbsp;' // Ugly but works ;)
  		}, {escapeFunction: null}).addClass('home svg').prependTo(this.$dirTree);
  	},
  	/**
  	 * handle selection made in the tree list
  	*/
  	_handleTreeListSelect:function(event) {
  		var self = event.data;
  		var dir = $(event.target).data('dir');
  		self._fillFilePicker(dir);
  	},
  	/**
  	 * handle clicks made in the filepicker
  	*/
  	_handlePickerClick:function(event, $element) {
  		if ($element.data('type') === 'file') {
  			if (this.$filePicker.data('multiselect') !== true || !event.ctrlKey) {
  				this.$filelist.find('.filepicker_element_selected').removeClass('filepicker_element_selected');
03e52840d   Kload   Init
608
  			}
31b7f2792   Kload   Upgrade to ownclo...
609
  			$element.toggleClass('filepicker_element_selected');
03e52840d   Kload   Init
610
  			return;
31b7f2792   Kload   Upgrade to ownclo...
611
612
  		} else if ( $element.data('type') === 'dir' ) {
  			this._fillFilePicker(this.$filePicker.data('path') + '/' + $element.data('entryname'));
03e52840d   Kload   Init
613
  		}
03e52840d   Kload   Init
614
615
  	}
  };