2015-08-27 14:22:58 +03:00
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2014
|
|
|
|
|
*
|
|
|
|
|
* This file is licensed under the Affero General Public License version 3
|
|
|
|
|
* or later.
|
|
|
|
|
*
|
|
|
|
|
* See the COPYING-README file.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* global Files */
|
|
|
|
|
|
|
|
|
|
(function() {
|
|
|
|
|
|
|
|
|
|
var TEMPLATE_MENU =
|
|
|
|
|
'<ul>' +
|
|
|
|
|
'<li>' +
|
|
|
|
|
'<label for="file_upload_start" class="menuitem" data-action="upload" title="{{uploadMaxHumanFilesize}}"><span class="svg icon icon-upload"></span><span class="displayname">{{uploadLabel}}</span></label>' +
|
|
|
|
|
'</li>' +
|
|
|
|
|
'{{#each items}}' +
|
|
|
|
|
'<li>' +
|
|
|
|
|
'<a href="#" class="menuitem" data-templatename="{{templateName}}" data-filetype="{{fileType}}" data-action="{{id}}"><span class="icon {{iconClass}} svg"></span><span class="displayname">{{displayName}}</span></a>' +
|
|
|
|
|
'</li>' +
|
|
|
|
|
'{{/each}}' +
|
|
|
|
|
'</ul>';
|
|
|
|
|
|
|
|
|
|
var TEMPLATE_FILENAME_FORM =
|
|
|
|
|
'<form class="filenameform">' +
|
|
|
|
|
'<label class="hidden-visually" for="{{cid}}-input-{{fileType}}">{{fileName}}</label>' +
|
2016-03-09 10:38:05 +03:00
|
|
|
|
'<input id="{{cid}}-input-{{fileType}}" type="text" value="{{fileName}}" autocomplete="off" autocapitalize="off">' +
|
2015-08-27 14:22:58 +03:00
|
|
|
|
'</form>';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Construct a new NewFileMenu instance
|
|
|
|
|
* @constructs NewFileMenu
|
|
|
|
|
*
|
|
|
|
|
* @memberof OCA.Files
|
|
|
|
|
*/
|
|
|
|
|
var NewFileMenu = OC.Backbone.View.extend({
|
|
|
|
|
tagName: 'div',
|
2017-01-17 13:17:40 +03:00
|
|
|
|
// Menu is opened by default because it's rendered on "add-button" click
|
2017-01-21 22:05:58 +03:00
|
|
|
|
className: 'newFileMenu popovermenu bubble menu open menu-left',
|
2015-08-27 14:22:58 +03:00
|
|
|
|
|
|
|
|
|
events: {
|
|
|
|
|
'click .menuitem': '_onClickAction'
|
|
|
|
|
},
|
|
|
|
|
|
2015-11-19 16:39:41 +03:00
|
|
|
|
/**
|
|
|
|
|
* @type OCA.Files.FileList
|
|
|
|
|
*/
|
|
|
|
|
fileList: null,
|
|
|
|
|
|
2015-08-27 14:22:58 +03:00
|
|
|
|
initialize: function(options) {
|
|
|
|
|
var self = this;
|
|
|
|
|
var $uploadEl = $('#file_upload_start');
|
|
|
|
|
if ($uploadEl.length) {
|
|
|
|
|
$uploadEl.on('fileuploadstart', function() {
|
|
|
|
|
self.trigger('actionPerformed', 'upload');
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
console.warn('Missing upload element "file_upload_start"');
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-19 16:39:41 +03:00
|
|
|
|
this.fileList = options && options.fileList;
|
2015-10-22 00:15:38 +03:00
|
|
|
|
|
|
|
|
|
this._menuItems = [{
|
|
|
|
|
id: 'folder',
|
2017-05-16 22:06:05 +03:00
|
|
|
|
displayName: t('files', 'New folder'),
|
2015-10-22 00:15:38 +03:00
|
|
|
|
templateName: t('files', 'New folder'),
|
|
|
|
|
iconClass: 'icon-folder',
|
|
|
|
|
fileType: 'folder',
|
|
|
|
|
actionHandler: function(name) {
|
2015-11-19 16:39:41 +03:00
|
|
|
|
self.fileList.createDirectory(name);
|
2015-10-22 00:15:38 +03:00
|
|
|
|
}
|
|
|
|
|
}];
|
|
|
|
|
|
|
|
|
|
OC.Plugins.attach('OCA.Files.NewFileMenu', this);
|
2015-08-27 14:22:58 +03:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
template: function(data) {
|
|
|
|
|
if (!OCA.Files.NewFileMenu._TEMPLATE) {
|
|
|
|
|
OCA.Files.NewFileMenu._TEMPLATE = Handlebars.compile(TEMPLATE_MENU);
|
|
|
|
|
}
|
|
|
|
|
return OCA.Files.NewFileMenu._TEMPLATE(data);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Event handler whenever an action has been clicked within the menu
|
|
|
|
|
*
|
|
|
|
|
* @param {Object} event event object
|
|
|
|
|
*/
|
|
|
|
|
_onClickAction: function(event) {
|
|
|
|
|
var $target = $(event.target);
|
|
|
|
|
if (!$target.hasClass('menuitem')) {
|
|
|
|
|
$target = $target.closest('.menuitem');
|
|
|
|
|
}
|
|
|
|
|
var action = $target.attr('data-action');
|
|
|
|
|
// note: clicking the upload label will automatically
|
|
|
|
|
// set the focus on the "file_upload_start" hidden field
|
|
|
|
|
// which itself triggers the upload dialog.
|
|
|
|
|
// Currently the upload logic is still in file-upload.js and filelist.js
|
|
|
|
|
if (action === 'upload') {
|
|
|
|
|
OC.hideMenus();
|
|
|
|
|
} else {
|
|
|
|
|
event.preventDefault();
|
2015-09-30 11:44:59 +03:00
|
|
|
|
this.$el.find('.menuitem.active').removeClass('active');
|
|
|
|
|
$target.addClass('active');
|
2015-08-27 14:22:58 +03:00
|
|
|
|
this._promptFileName($target);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_promptFileName: function($target) {
|
|
|
|
|
var self = this;
|
|
|
|
|
if (!OCA.Files.NewFileMenu._TEMPLATE_FORM) {
|
|
|
|
|
OCA.Files.NewFileMenu._TEMPLATE_FORM = Handlebars.compile(TEMPLATE_FILENAME_FORM);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($target.find('form').length) {
|
|
|
|
|
$target.find('input').focus();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// discard other forms
|
|
|
|
|
this.$el.find('form').remove();
|
|
|
|
|
this.$el.find('.displayname').removeClass('hidden');
|
|
|
|
|
|
|
|
|
|
$target.find('.displayname').addClass('hidden');
|
|
|
|
|
|
|
|
|
|
var newName = $target.attr('data-templatename');
|
|
|
|
|
var fileType = $target.attr('data-filetype');
|
|
|
|
|
var $form = $(OCA.Files.NewFileMenu._TEMPLATE_FORM({
|
|
|
|
|
fileName: newName,
|
|
|
|
|
cid: this.cid,
|
|
|
|
|
fileType: fileType
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
//this.trigger('actionPerformed', action);
|
2015-09-03 01:58:03 +03:00
|
|
|
|
$target.append($form);
|
2015-08-27 14:22:58 +03:00
|
|
|
|
|
|
|
|
|
// here comes the OLD code
|
|
|
|
|
var $input = $form.find('input');
|
|
|
|
|
|
|
|
|
|
var lastPos;
|
|
|
|
|
var checkInput = function () {
|
|
|
|
|
var filename = $input.val();
|
|
|
|
|
try {
|
|
|
|
|
if (!Files.isFileNameValid(filename)) {
|
|
|
|
|
// Files.isFileNameValid(filename) throws an exception itself
|
2015-11-19 16:39:41 +03:00
|
|
|
|
} else if (self.fileList.inList(filename)) {
|
2016-09-30 13:44:49 +03:00
|
|
|
|
throw t('files', '{newName} already exists', {newName: filename}, undefined, {
|
|
|
|
|
escape: false
|
|
|
|
|
});
|
2015-08-27 14:22:58 +03:00
|
|
|
|
} else {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
} catch (error) {
|
|
|
|
|
$input.attr('title', error);
|
|
|
|
|
$input.tooltip({placement: 'right', trigger: 'manual'});
|
2017-05-20 19:40:50 +03:00
|
|
|
|
$input.tooltip('fixTitle');
|
2015-08-27 14:22:58 +03:00
|
|
|
|
$input.tooltip('show');
|
|
|
|
|
$input.addClass('error');
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// verify filename on typing
|
|
|
|
|
$input.keyup(function() {
|
|
|
|
|
if (checkInput()) {
|
|
|
|
|
$input.tooltip('hide');
|
|
|
|
|
$input.removeClass('error');
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$input.focus();
|
|
|
|
|
// pre select name up to the extension
|
|
|
|
|
lastPos = newName.lastIndexOf('.');
|
|
|
|
|
if (lastPos === -1) {
|
|
|
|
|
lastPos = newName.length;
|
|
|
|
|
}
|
|
|
|
|
$input.selectRange(0, lastPos);
|
|
|
|
|
|
|
|
|
|
$form.submit(function(event) {
|
|
|
|
|
event.stopPropagation();
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
|
|
if (checkInput()) {
|
|
|
|
|
var newname = $input.val();
|
2015-10-22 00:15:38 +03:00
|
|
|
|
|
|
|
|
|
/* Find the right actionHandler that should be called.
|
|
|
|
|
* Actions is retrieved by using `actionSpec.id` */
|
|
|
|
|
action = _.filter(self._menuItems, function(item) {
|
|
|
|
|
return item.id == $target.attr('data-action');
|
|
|
|
|
}).pop();
|
|
|
|
|
action.actionHandler(newname);
|
|
|
|
|
|
2015-08-27 14:22:58 +03:00
|
|
|
|
$form.remove();
|
|
|
|
|
$target.find('.displayname').removeClass('hidden');
|
|
|
|
|
OC.hideMenus();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
/**
|
2015-10-22 00:15:38 +03:00
|
|
|
|
* Add a new item menu entry in the “New” file menu (in
|
|
|
|
|
* last position). By clicking on the item, the
|
|
|
|
|
* `actionHandler` function is called.
|
|
|
|
|
*
|
|
|
|
|
* @param {Object} actionSpec item’s properties
|
|
|
|
|
*/
|
|
|
|
|
addMenuEntry: function(actionSpec) {
|
|
|
|
|
this._menuItems.push({
|
|
|
|
|
id: actionSpec.id,
|
|
|
|
|
displayName: actionSpec.displayName,
|
|
|
|
|
templateName: actionSpec.templateName,
|
|
|
|
|
iconClass: actionSpec.iconClass,
|
|
|
|
|
fileType: actionSpec.fileType,
|
|
|
|
|
actionHandler: actionSpec.actionHandler,
|
|
|
|
|
});
|
2015-08-27 14:22:58 +03:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Renders the menu with the currently set items
|
|
|
|
|
*/
|
|
|
|
|
render: function() {
|
|
|
|
|
this.$el.html(this.template({
|
|
|
|
|
uploadMaxHumanFileSize: 'TODO',
|
2017-05-16 22:06:05 +03:00
|
|
|
|
uploadLabel: t('files', 'Upload file'),
|
2015-10-22 00:15:38 +03:00
|
|
|
|
items: this._menuItems
|
2015-08-27 14:22:58 +03:00
|
|
|
|
}));
|
2015-09-29 19:15:15 +03:00
|
|
|
|
OC.Util.scaleFixForIE8(this.$('.svg'));
|
2015-08-27 14:22:58 +03:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Displays the menu under the given element
|
|
|
|
|
*
|
|
|
|
|
* @param {Object} $target target element
|
|
|
|
|
*/
|
|
|
|
|
showAt: function($target) {
|
|
|
|
|
this.render();
|
|
|
|
|
OC.showMenu(null, this.$el);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
OCA.Files.NewFileMenu = NewFileMenu;
|
|
|
|
|
|
|
|
|
|
})();
|