From 5c5d050218b9b171497d85e5c740a5fde6961ca8 Mon Sep 17 00:00:00 2001 From: Lars Jung Date: Sat, 31 Aug 2013 17:47:35 +0200 Subject: [PATCH] Optionally hide folders in the main view. --- src/_h5ai/client/js/inc/view/items.js | 9 +++++++-- src/_h5ai/conf/options.json | 4 +++- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/src/_h5ai/client/js/inc/view/items.js b/src/_h5ai/client/js/inc/view/items.js index 80400724..58008e33 100644 --- a/src/_h5ai/client/js/inc/view/items.js +++ b/src/_h5ai/client/js/inc/view/items.js @@ -4,6 +4,7 @@ modulejs.define('view/items', ['_', '$', 'core/settings', 'core/resource', 'core var settings = _.extend({ setParentFolderLabels: false, hideParentFolderLinks: false, + hideFolders: false, binaryPrefix: false }, allsettings.view), @@ -106,7 +107,9 @@ modulejs.define('view/items', ['_', '$', 'core/settings', 'core/resource', 'core _.each(item.content, function (e) { - $items.append(update(e, true)); + if (!(e.isFolder() && settings.hideFolders)) { + $items.append(update(e, true)); + } }); if (item.isEmpty()) { @@ -123,7 +126,9 @@ modulejs.define('view/items', ['_', '$', 'core/settings', 'core/resource', 'core _.each(added, function (item) { - update(item, true).hide().appendTo($items).fadeIn(400); + if (!(item.isFolder() && settings.hideFolders)) { + update(item, true).hide().appendTo($items).fadeIn(400); + } }); _.each(removed, function (item) { diff --git a/src/_h5ai/conf/options.json b/src/_h5ai/conf/options.json index 3f037a41..7058782e 100644 --- a/src/_h5ai/conf/options.json +++ b/src/_h5ai/conf/options.json @@ -34,7 +34,8 @@ Options The user selected view mode is also stored local in modern browsers so that it will be persistent. - setParentFolderLabels: set parent folder labels to real folder names - - hideParentFolderLinks: hide parent folder links + - hideParentFolderLinks: hide parent folder links in the main view + - hideFolders: hide all folders in the main view - binaryPrefix: set to true uses 1024B=1KiB when formatting file sizes (see http://en.wikipedia.org/wiki/Binary_prefix) - indexFiles: consider folder with those files as non {{pkg.name}} folders - ignore: don't list items matching these regular expressions @@ -46,6 +47,7 @@ Options "sizes": [48, 24, 96], "setParentFolderLabels": true, "hideParentFolderLinks": false, + "hideFolders": false, "binaryPrefix": false, "indexFiles": ["index.html", "index.htm", "index.php"], "ignore": ["^\\.", "^_{{pkg.name}}"],