From 7c710e57b7d500fa7bd4008dbb991a05d11ca374 Mon Sep 17 00:00:00 2001 From: yflory Date: Mon, 14 Oct 2019 16:02:21 +0200 Subject: [PATCH] Read-only shared folders UI --- customize.dist/src/less2/include/drive.less | 24 ++++++++ www/common/drive-ui.js | 67 +++++++++++++++++---- www/drive/inner.html | 1 + www/drive/inner.js | 2 + www/teams/inner.js | 5 +- 5 files changed, 85 insertions(+), 14 deletions(-) diff --git a/customize.dist/src/less2/include/drive.less b/customize.dist/src/less2/include/drive.less index 0691ffd9e..ee5472490 100644 --- a/customize.dist/src/less2/include/drive.less +++ b/customize.dist/src/less2/include/drive.less @@ -466,6 +466,7 @@ padding: 0.25em 0.75em; margin: 1em; background: @drive_info-box-bg; + cursor: default; span { cursor: pointer; float: right; @@ -976,5 +977,28 @@ flex: 1; } } + + #cp-app-drive-edition-state { + height: @variables_bar-height; + display: flex; + align-items: center; + justify-content: center; + background-color: lighten(@colortheme_drive-bg, 32%); + color: black; + font-weight: bold; + text-transform: uppercase; + cursor: default; + } + #cp-app-drive-connection-state { + height: @variables_bar-height; + display: flex; + align-items: center; + justify-content: center; + background-color: #eb675e; + color: white; + font-weight: bold; + text-transform: uppercase; + cursor: default; + } } diff --git a/www/common/drive-ui.js b/www/common/drive-ui.js index 4bf2367e2..1badf239e 100644 --- a/www/common/drive-ui.js +++ b/www/common/drive-ui.js @@ -252,15 +252,18 @@ define([ return APP.store[LS_SEARCHCURSOR] || 0; }; + // Handle disconnect/reconnect var setEditable = function (state) { - APP.editable = state; - if (APP.closed || (APP.$content && !$.contains(document.documentElement, APP.$content[0]))) { return; } + if (APP.closed || !APP.$content || !$.contains(document.documentElement, APP.$content[0])) { return; } + APP.editable = !APP.readOnly && state; if (!state) { APP.$content.addClass('cp-app-drive-readonly'); + $('#cp-app-drive-connection-state').show(); $('[draggable="true"]').attr('draggable', false); } else { APP.$content.removeClass('cp-app-drive-readonly'); + $('#cp-app-drive-connection-state').hide(); $('[draggable="false"]').attr('draggable', true); } }; @@ -531,6 +534,8 @@ define([ APP.hideDuplicateOwned = Util.find(priv, ['settings', 'drive', 'hideDuplicate']); APP.closed = false; + var $readOnly = $('#cp-app-drive-edition-state'); + var updateObject = driveConfig.updateObject; var updateSharedFolders = driveConfig.updateSharedFolders; @@ -608,9 +613,7 @@ define([ } } - if (!APP.readOnly) { - setEditable(true); - } + APP.editable = !APP.readOnly; var appStatus = { isReady: true, _onReady: [], @@ -1091,8 +1094,10 @@ define([ var show = []; var filter; + var editable = true; if (type === "content") { + if (APP.$content.data('readOnlyFolder')) { editable = false; } // Return true in filter to hide filter = function ($el, className) { if (className === 'newfolder') { return; } @@ -1212,6 +1217,9 @@ define([ hide.push('removesf'); } } + if ($element.closest('[data-ro]').length) { + editable = false; + } }); if (paths.length > 1) { hide.push('restore'); @@ -1258,7 +1266,7 @@ define([ var filtered = []; show.forEach(function (className) { var $el = $contextMenu.find('.cp-app-drive-context-' + className); - if (!APP.editable && $el.is('.cp-app-drive-context-editable')) { return; } + if ((!APP.editable || !editable) && $el.is('.cp-app-drive-context-editable')) { return; } if (filter($el, className)) { return; } $el.parent('li').show(); filtered.push('.cp-app-drive-context-' + className); @@ -1665,6 +1673,13 @@ define([ $('.cp-app-drive-element-droppable').removeClass('cp-app-drive-element-droppable'); var data = ev.dataTransfer.getData("text"); + var newPath = findDropPath(ev.target); + if (!newPath) { return; } + var sfId = manager.isInSharedFolder(newPath); + if (sfId && folders[sfId] && folders[sfId].readOnly) { + return void UI.warn(Messages.fm_forbidden); + } + // Don't use the normal drop handler for file upload var fileDrop = ev.dataTransfer.files; if (fileDrop.length) { return void onFileDrop(fileDrop, ev); } @@ -1682,8 +1697,6 @@ define([ } }); - var newPath = findDropPath(ev.target); - if (!newPath) { return; } if (sharedF && manager.isPathIn(newPath, [TRASH])) { return void deletePaths(null, movedPaths); } @@ -1945,7 +1958,8 @@ define([ addFileData(element, $element); } $element.addClass(liClass); - addDragAndDropHandlers($element, newPath, isFolder, !isTrash); + var droppable = !isTrash && !APP.$content.data('readOnlyFolder'); + addDragAndDropHandlers($element, newPath, isFolder, droppable); $element.click(function(e) { e.stopPropagation(); onElementClick(e, $element); @@ -2786,6 +2800,7 @@ define([ return $container; }; var createGhostIcon = function ($list) { + if (APP.$content.data('readOnlyFolder')) { return; } var isInRoot = currentPath[0] === ROOT; var $element = $('
  • ', { 'class': 'cp-app-drive-element-row cp-app-drive-element-grid cp-app-drive-new-ghost' @@ -3209,6 +3224,7 @@ define([ if (!APP.editable) { debug("Read-only mode"); } if (!appStatus.isReady && !force) { return; } + // Fix path obvious issues if (!path || path.length === 0) { // Only Trash and Root are available in not-owned files manager if (!path || displayedCategories.indexOf(path[0]) === -1) { @@ -3226,7 +3242,7 @@ define([ path = [ROOT]; } - + // Get path data appStatus.ready(false); currentPath = path; var s = $content.scrollTop() || 0; @@ -3248,6 +3264,7 @@ define([ currentPath = path; } + // Make sure the path is valid var root = isVirtual ? undefined : manager.find(path); if (manager.isSharedFolder(root)) { // ANON_SHARED_FOLDER @@ -3270,6 +3287,7 @@ define([ } if (!isSearch) { delete APP.Search.oldLocation; } + // Display the tree and build the content APP.resetTree(); if (displayedCategories.indexOf(SEARCH) !== -1 && $tree.find('#cp-app-drive-tree-search-input').length) { // in history mode we want to focus the version number input @@ -3302,9 +3320,24 @@ define([ var $list = $('