Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(321)

Unified Diff: ui/file_manager/file_manager/foreground/js/toolbar_controller.js

Issue 951443002: Files.app: Make delete button on the toolbar standard button instead of CommandButton. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add @const for const members of ToolbarController. Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/file_manager/file_manager/foreground/js/toolbar_controller.js
diff --git a/ui/file_manager/file_manager/foreground/js/toolbar_controller.js b/ui/file_manager/file_manager/foreground/js/toolbar_controller.js
index 2c8a47189561e2c1ab4dd8aeb093044ca3701fc4..1874caa45f4f70f1db0459b55908810965fd72bf 100644
--- a/ui/file_manager/file_manager/foreground/js/toolbar_controller.js
+++ b/ui/file_manager/file_manager/foreground/js/toolbar_controller.js
@@ -6,47 +6,87 @@
* This class controls wires toolbar UI and selection model. When selection
* status is changed, this class changes the view of toolbar. If cancel
* selection button is pressed, this class clears the selection.
- * @param {!HTMLElement} cancelSelectionButton Button to cancel selection.
- * @param {!HTMLElement} cancelSelectionButtonWrapper Wapper for the button,
- * which works as a spacer for the filesSelectionLabel.
- * @param {!HTMLElement} filesSelectedLabel Label to show how many files are
- * selected.
+ * @param {!HTMLElement} toolbar Toolbar element which contains controls.
* @param {!HTMLElement} navigationList Navigation list on the left pane. The
* position of silesSelectedLabel depends on the navitaion list's width.
* @param {!FileSelectionHandler} selectionHandler
- * @param {!cr.ui.ListSelectionModel|!cr.ui.ListSingleSelectionModel}
- * selectionModel
+ * @param {!DirectoryModel} directoryModel
* @constructor
* @struct
*/
-function ToolbarController(cancelSelectionButton,
- cancelSelectionButtonWrapper,
- filesSelectedLabel,
+function ToolbarController(toolbar,
navigationList,
selectionHandler,
- selectionModel) {
- /** @private {!HTMLElement} */
- this.cancelSelectionButtonWrapper_ = cancelSelectionButtonWrapper;
+ directoryModel) {
+ /**
+ * @private {!HTMLElement}
+ * @const
+ */
+ this.toolbar_ = toolbar;
- /** @private {!HTMLElement} */
- this.filesSelectedLabel_ = filesSelectedLabel;
+ /**
+ * @private {!HTMLElement}
+ * @const
+ */
+ this.cancelSelectionButton_ =
+ queryRequiredElement(this.toolbar_, '#cancel-selection-button');
- /** @private {!HTMLElement} */
+ /**
+ * @private {!HTMLElement}
+ * @const
+ */
+ this.cancelSelectionButtonWrapper_ =
+ queryRequiredElement(this.toolbar_, '#cancel-selection-button-wrapper');
+
+ /**
+ * @private {!HTMLElement}
+ * @const
+ */
+ this.filesSelectedLabel_ =
+ queryRequiredElement(this.toolbar_, '#files-selected-label');
+
+ /**
+ * @private {!HTMLElement}
+ * @const
+ */
+ this.deleteButton_ = queryRequiredElement(this.toolbar_, '#delete-button');
+
+ /**
+ * @private {!cr.ui.Command}
+ * @const
+ */
+ this.deleteCommand_ = assertInstanceof(
+ queryRequiredElement(assert(this.toolbar_.ownerDocument), '#delete'),
+ cr.ui.Command);
+
+ /**
+ * @private {!HTMLElement}
+ * @const
+ */
this.navigationList_ = navigationList;
- /** @private {!FileSelectionHandler} */
+ /**
+ * @private {!FileSelectionHandler}
+ * @const
+ */
this.selectionHandler_ = selectionHandler;
- /** @private {!cr.ui.ListSelectionModel|!cr.ui.ListSingleSelectionModel} */
- this.selectionModel_ = selectionModel;
+ /**
+ * @private {!DirectoryModel}
+ * @const
+ */
+ this.directoryModel_ = directoryModel;
this.selectionHandler_.addEventListener(
FileSelectionHandler.EventType.CHANGE,
this.onSelectionChanged_.bind(this));
- cancelSelectionButton.addEventListener(
+ this.cancelSelectionButton_.addEventListener(
'click', this.onCancelSelectionButtonClicked_.bind(this));
+ this.deleteButton_.addEventListener(
+ 'click', this.onDeleteButtonClicked_.bind(this));
+
this.navigationList_.addEventListener(
'relayout', this.onNavigationListRelayout_.bind(this));
}
@@ -72,6 +112,10 @@ ToolbarController.prototype.onSelectionChanged_ = function() {
this.filesSelectedLabel_.textContent = text;
}
+ // Update visibility of the delete button.
+ this.deleteButton_.hidden =
+ selection.totalCount === 0 || this.directoryModel_.isReadOnly();
+
// Set .selecting class to containing element to change the view accordingly.
// TODO(fukino): This code changes the state of body, not the toolbar, to
// update the checkmark visibility on grid view. This should be moved to a
@@ -86,7 +130,15 @@ ToolbarController.prototype.onSelectionChanged_ = function() {
* @private
*/
ToolbarController.prototype.onCancelSelectionButtonClicked_ = function() {
- this.selectionModel_.unselectAll();
+ this.directoryModel_.selectEntries([]);
+}
+
+/**
+ * Handles click event for delete button to execute the delete command.
+ * @private
+ */
+ToolbarController.prototype.onDeleteButtonClicked_ = function() {
+ this.deleteCommand_.execute();
}
/**

Powered by Google App Engine
This is Rietveld 408576698