OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 var CommandUtil = {}; | 5 var CommandUtil = {}; |
6 | 6 |
7 /** | 7 /** |
8 * Extracts root on which command event was dispatched. | 8 * Extracts root on which command event was dispatched. |
9 * | 9 * |
10 * @param {Event} event Command event for which to retrieve root to operate on. | 10 * @param {Event} event Command event for which to retrieve root to operate on. |
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
272 function(task) { | 272 function(task) { |
273 tasks.execute(task.taskId); | 273 tasks.execute(task.taskId); |
274 }); | 274 }); |
275 } | 275 } |
276 }, | 276 }, |
277 canExecute: function(event, fileManager) { | 277 canExecute: function(event, fileManager) { |
278 var tasks = fileManager.getSelection().tasks; | 278 var tasks = fileManager.getSelection().tasks; |
279 event.canExecute = tasks && tasks.size() > 1; | 279 event.canExecute = tasks && tasks.size() > 1; |
280 } | 280 } |
281 }; | 281 }; |
| 282 |
| 283 /** |
| 284 * Creates zip file for current selection. |
| 285 */ |
| 286 Commands.zipSelectionCommand = { |
| 287 execute: function(event, fileManager) { |
| 288 var dirEntry = fileManager.directoryModel_.getCurrentDirEntry(); |
| 289 var selectionEntries = fileManager.getSelection().entries; |
| 290 fileManager.copyManager_.zipSelection(dirEntry, fileManager.isOnGData(), |
| 291 selectionEntries); |
| 292 }, |
| 293 canExecute: function(event, fileManager) { |
| 294 var selection = fileManager.getSelection(); |
| 295 event.canExecute = !fileManager.isOnGData() && selection && |
| 296 selection.totalCount > 0; |
| 297 } |
| 298 }; |
OLD | NEW |