我正在使用elfinder制作自定义共享按钮,有关于如何自定义右键菜单的教程,我已经实现了它。但是,有一些规则我想申请菜单
1) For folder only, exclude the button for file
2) For root level only, exclude the button for sub level folder
3) For single folder only, if select more than one folder will exclude the button
这是当前的代码,现在有了分享按钮,但没有上述规则:
elFinder.prototype.i18.zh_TW.messages['cmdsharefolder'] = 'Share';
elFinder.prototype._options.commands.push('sharefolder');
elFinder.prototype.commands.sharefolder = function () {
this.exec = function (hashes) {
//open share menu
}
this.getstate = function () {
return 0;
}
}
和elfinder实例:
var elfinder = $('#elfinder').elfinder({
url: '<?= $connector; ?>',
soundPath: '<?= site_url('assets/plugins/elFinder/sounds/rm.wav'); ?>',
height: 700,
lang: 'zh_TW',
uiOptions: {
// toolbar configuration
toolbar: [
['back', 'forward'],
['reload'],
['mkdir', 'upload'],
['copy', 'cut', 'paste', 'rm'],
['rename'],
['view', 'sort']
]
},
contextmenu: {
navbar: ['open', '|', 'copy', 'cut', 'paste', 'duplicate', '|', 'rm', '|', 'info'],
cwd: ['reload', 'back', '|', 'upload', 'mkdir', 'paste', '|', 'info'],
files: [
'open', 'quicklook', 'sharefolder', '|', 'download', '|', 'copy', 'cut', 'paste', 'rm', '|', 'rename', '|', 'info'
]
},
ui: ['toolbar', 'tree', 'stat']
}).elfinder('instance');
问题是:
1)如何应用上述规则? (如果规则不适用,可以通过检查和弹出警告框解决,请建议检查方式,谢谢)
2)有没有办法捕获哪个文件夹被选中,例如完整文件夹路径等...
这是我研究过的文档,示例用于一般用途: https://github.com/Studio-42/elFinder/wiki/Custom-context-menu-command
非常感谢您的帮助。
答案 0 :(得分:2)
您可以尝试完成的任务,但这在很大程度上取决于您的连接器的工作方式。
要使用您的规则,您必须在this.exec
或this.getstate
中添加代码。每个选项都有利弊。
如果将代码添加到this.getstate
,您的代码可能会针对单个操作执行多次(例如:当您选择多个文件夹时,单击第一个文件夹时会执行该功能,在最后和当你右键单击时)。
但是,使用this.getstate
,您可以在任何不符合要求(规则)的情况下隐藏选项(按钮)。
向this.exec
添加代码可确保代码每次操作仅执行一次,但即使规则不适用,该按钮也始终存在。
如果您选择此选项,则需要向用户提供某种警报或对话框消息,告知他们共享菜单未显示的原因。
在以下代码中,我使用了this.getstate
,但您可以将代码移至this.exec
。在Javascript方面,你需要使用这样的东西:
elFinder.prototype.i18.zh_TW.messages['cmdsharefolder'] = 'Share';
elFinder.prototype._options.commands.push('sharefolder');
elFinder.prototype.commands.sharefolder = function () {
var self = this,
fm = self.fm;
this.exec = function (hashes) {
// Display the share menu
};
this.getstate = function () {
var hashes = self.fm.selected(), result = 0;
// Verifies rule nr 3: For single folder only,
// if select more than one folder will exclude the button
if (hashes.length > 1) {
return -1;
}
// Rule 1 and 2 exclude itself. By this I mean that rule nr 2
// takes precedence over rule nr 1, so you just need to check
// if the selected hash is a root folder.
$.ajax({
url: 'file-manager/check-rule-on-hash',
data: hashes,
type: 'get',
async: false,
dataType: 'json',
success: function(response) {
if (!response.isRoot) {
result = -1;
}
}
});
return result;
}
}
说明:
规则nr 3很简单,因为您可以通过Javascript访问所选项目的数量。所以你只需要计算所选哈希的数量。如果该数字大于1,则表示用户选择了多个项目,并且不应显示该菜单。
规则nr 2有点棘手,因为你需要&#34;验证&#34;选择的哈希,这就是为什么我开始说这取决于连接器的工作方式。
例如,我有一个自定义PHP连接器,其中文件夹结构是通过数据库表定义的。尽管所有文件都物理存储在硬盘驱动器上,但元数据存储在同一个表中(主要是因为所有权限都是通过数据库定义的)。在我的情况下,执行ajax调用并检查给定的散列是否是根文件夹有点容易,因为该信息存储在数据库中,我可以通过简单的查询检索该信息。
< / LI> 醇>由于我无法确定连接器的工作方式,因此通用的解决方案是使用选定的哈希对服务器执行ajax调用,并验证该哈希是否为根文件夹。服务器应该返回一个属性为isRoot
的{{1}}或true
的对象。