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

Side by Side Diff: chrome/browser/resources/file_manager/js/image_editor/gallery.js

Issue 8036019: [filebrowser] Enable sharing in gallery. For now, show all image-related extensions as 'Sharing'. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/file_manager/js/image_editor/gallery.css ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 /** 5 /**
6 * Image gallery for viewing and editing image files. 6 * Image gallery for viewing and editing image files.
7 * 7 *
8 * @param {HTMLDivElement} container 8 * @param {HTMLDivElement} container
9 * @param {function} closeCallback 9 * @param {function} closeCallback
10 * @param {MetadataProvider} metadataProvider 10 * @param {MetadataProvider} metadataProvider
11 * @param {Array.<Object>} shareActions
11 */ 12 */
12 function Gallery(container, closeCallback, metadataProvider) { 13 function Gallery(container, closeCallback, metadataProvider, shareActions) {
13 this.container_ = container; 14 this.container_ = container;
14 this.document_ = container.ownerDocument; 15 this.document_ = container.ownerDocument;
15 this.editing_ = false; 16 this.editing_ = false;
17 this.sharing_ = false;
16 this.closeCallback_ = closeCallback; 18 this.closeCallback_ = closeCallback;
17 this.metadataProvider_ = metadataProvider; 19 this.metadataProvider_ = metadataProvider;
18 this.onFadeTimeoutBound_ = this.onFadeTimeout_.bind(this); 20 this.onFadeTimeoutBound_ = this.onFadeTimeout_.bind(this);
19 this.fadeTimeoutId_ = null; 21 this.fadeTimeoutId_ = null;
20 22
21 this.initDom_(); 23 this.initDom_(shareActions);
22 } 24 }
23 25
24 Gallery.open = function( 26 Gallery.open = function(
25 parentDirEntry, urls, closeCallback, metadataProvider) { 27 parentDirEntry, urls, closeCallback, metadataProvider, shareActions) {
26 var container = document.querySelector('.gallery'); 28 var container = document.querySelector('.gallery');
27 container.innerHTML = ''; 29 container.innerHTML = '';
28 var gallery = new Gallery(container, closeCallback, metadataProvider); 30 var gallery = new Gallery(container, closeCallback, metadataProvider,
31 shareActions);
29 gallery.load(parentDirEntry, urls); 32 gallery.load(parentDirEntry, urls);
30 }; 33 };
31 34
32 // TODO(kaznacheev): localization. 35 // TODO(kaznacheev): localization.
33 Gallery.displayStrings = { 36 Gallery.displayStrings = {
34 close: 'Close', 37 close: 'Close',
35 edit: 'Edit', 38 edit: 'Edit',
36 share: 'Share', 39 share: 'Share',
37 autofix: 'Auto-fix', 40 autofix: 'Auto-fix',
38 crop: 'Crop', 41 crop: 'Crop',
39 exposure: 'Brightness / contrast', 42 exposure: 'Brightness / contrast',
40 brightness: 'Brightness', 43 brightness: 'Brightness',
41 contrast: 'Contrast', 44 contrast: 'Contrast',
42 rotate: 'Rotate', 45 rotate: 'Rotate',
43 undo: 'Undo' 46 undo: 'Undo'
44 }; 47 };
45 48
46 49
47 Gallery.editorModes = [ 50 Gallery.editorModes = [
48 ImageEditor.Mode.InstantAutofix, 51 ImageEditor.Mode.InstantAutofix,
49 ImageEditor.Mode.Crop, 52 ImageEditor.Mode.Crop,
50 ImageEditor.Mode.Exposure, 53 ImageEditor.Mode.Exposure,
51 ImageEditor.Mode.InstantRotate 54 ImageEditor.Mode.InstantRotate
52 ]; 55 ];
53 56
54 Gallery.FADE_TIMEOUT = 5000; 57 Gallery.FADE_TIMEOUT = 5000;
55 58
56 Gallery.prototype.initDom_ = function() { 59 Gallery.prototype.initDom_ = function(shareActions) {
57 var doc = this.document_; 60 var doc = this.document_;
58 this.container_.addEventListener('keydown', this.onKeyDown_.bind(this)); 61 this.container_.addEventListener('keydown', this.onKeyDown_.bind(this));
59 this.container_.addEventListener('mousemove', this.onMouseMove_.bind(this)); 62 this.container_.addEventListener('mousemove', this.onMouseMove_.bind(this));
60 63
61 this.closeButton_ = doc.createElement('div'); 64 this.closeButton_ = doc.createElement('div');
62 this.closeButton_.className = 'close'; 65 this.closeButton_.className = 'close';
63 this.closeButton_.textContent = Gallery.displayStrings['close']; 66 this.closeButton_.textContent = Gallery.displayStrings['close'];
64 this.closeButton_.addEventListener('click', this.onClose_.bind(this)); 67 this.closeButton_.addEventListener('click', this.onClose_.bind(this));
65 this.container_.appendChild(this.closeButton_); 68 this.container_.appendChild(this.closeButton_);
66 69
(...skipping 15 matching lines...) Expand all
82 this.editButton_ = doc.createElement('div'); 85 this.editButton_ = doc.createElement('div');
83 this.editButton_.className = 'button edit'; 86 this.editButton_.className = 'button edit';
84 this.editButton_.textContent = Gallery.displayStrings['edit']; 87 this.editButton_.textContent = Gallery.displayStrings['edit'];
85 this.editButton_.addEventListener('click', this.onEdit_.bind(this)); 88 this.editButton_.addEventListener('click', this.onEdit_.bind(this));
86 this.toolbar_.appendChild(this.editButton_); 89 this.toolbar_.appendChild(this.editButton_);
87 90
88 this.shareButton_ = doc.createElement('div'); 91 this.shareButton_ = doc.createElement('div');
89 this.shareButton_.className = 'button share'; 92 this.shareButton_.className = 'button share';
90 this.shareButton_.textContent = Gallery.displayStrings['share']; 93 this.shareButton_.textContent = Gallery.displayStrings['share'];
91 this.shareButton_.addEventListener('click', this.onShare_.bind(this)); 94 this.shareButton_.addEventListener('click', this.onShare_.bind(this));
92 this.toolbar_.appendChild(this.shareButton_); 95 if (shareActions.length > 0) {
96 this.toolbar_.appendChild(this.shareButton_);
97 }
93 98
94 this.editBarMain_ = doc.createElement('div'); 99 this.editBarMain_ = doc.createElement('div');
95 this.editBarMain_.className = 'edit-main'; 100 this.editBarMain_.className = 'edit-main';
96 this.editBarMain_.setAttribute('hidden', 'hidden'); 101 this.editBarMain_.setAttribute('hidden', 'hidden');
97 this.editBar_.appendChild(this.editBarMain_); 102 this.editBar_.appendChild(this.editBarMain_);
98 103
99 this.editBarMode_ = doc.createElement('div'); 104 this.editBarMode_ = doc.createElement('div');
100 this.editBarMode_.className = 'edit-modal'; 105 this.editBarMode_.className = 'edit-modal';
101 this.editBarMode_.setAttribute('hidden', 'hidden'); 106 this.editBarMode_.setAttribute('hidden', 'hidden');
102 this.editBar_.appendChild(this.editBarMode_); 107 this.editBar_.appendChild(this.editBarMode_);
103 108
109 this.shareMenu_ = doc.createElement('div');
110 this.shareMenu_.className = 'share-menu';
111 this.shareMenu_.setAttribute('hidden', 'hidden');
112 for (var index = 0; index < shareActions.length; index++) {
113 var action = shareActions[index];
114 var row = doc.createElement('div');
115 var img = doc.createElement('img');
116 img.src = action.iconUrl;
117 row.appendChild(img);
118 row.appendChild(doc.createTextNode(action.title));
119 row.addEventListener('click', this.onActionExecute_.bind(this, action));
120 this.shareMenu_.appendChild(row);
121 }
122 if (shareActions.length > 0) {
123 this.container_.appendChild(this.shareMenu_);
124 }
125
104 this.editor_ = new ImageEditor( 126 this.editor_ = new ImageEditor(
105 this.imageContainer_, 127 this.imageContainer_,
106 this.editBarMain_, 128 this.editBarMain_,
107 this.editBarMode_, 129 this.editBarMode_,
108 Gallery.editorModes, 130 Gallery.editorModes,
109 Gallery.displayStrings); 131 Gallery.displayStrings);
110 }; 132 };
111 133
112 Gallery.prototype.load = function(parentDirEntry, urls) { 134 Gallery.prototype.load = function(parentDirEntry, urls) {
113 this.editBar_.setAttribute('hidden', 'hidden'); 135 this.editBar_.setAttribute('hidden', 'hidden');
114 this.editBarMain_.setAttribute('hidden', 'hidden'); 136 this.editBarMain_.setAttribute('hidden', 'hidden');
115 this.editButton_.removeAttribute('pressed'); 137 this.editButton_.removeAttribute('pressed');
116 this.shareButton_.removeAttribute('pressed'); 138 this.shareButton_.removeAttribute('pressed');
117 this.toolbar_.removeAttribute('hidden'); 139 this.toolbar_.removeAttribute('hidden');
140 this.shareMenu_.setAttribute('hidden', 'hidden');
118 this.editing_ = false; 141 this.editing_ = false;
142 this.sharing_ = false;
119 143
120 if (urls.length == 0) 144 if (urls.length == 0)
121 return; 145 return;
122 146
123 // TODO(kaznacheev): instead of always selecting the 0-th url 147 // TODO(kaznacheev): instead of always selecting the 0-th url
124 // select the url passed from the FileManager. 148 // select the url passed from the FileManager.
125 this.ribbon_.load(urls, urls[0], this.metadataProvider_); 149 this.ribbon_.load(urls, urls[0], this.metadataProvider_);
126 this.parentDirEntry_ = parentDirEntry; 150 this.parentDirEntry_ = parentDirEntry;
127 151
128 this.initiateFading_(); 152 this.initiateFading_();
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 onError); 203 onError);
180 }, onError); 204 }, onError);
181 } else { 205 } else {
182 // This branch is needed only for gallery_demo.js 206 // This branch is needed only for gallery_demo.js
183 currentItem.onSaveSuccess( 207 currentItem.onSaveSuccess(
184 canvas.toDataURL(metadataEncoder.getMetadata().mimeType)); 208 canvas.toDataURL(metadataEncoder.getMetadata().mimeType));
185 if (opt_callback) opt_callback(); 209 if (opt_callback) opt_callback();
186 } 210 }
187 }; 211 };
188 212
213 Gallery.prototype.onActionExecute_ = function(action) {
214 var item = this.currentItem_;
215 if (item) {
216 this.onShare_();
217 this.saveChanges_(function() {
218 action.execute([item.getUrl()]);
219 });
220 }
221 };
189 222
190 Gallery.prototype.onClose_ = function() { 223 Gallery.prototype.onClose_ = function() {
191 // TODO: handle write errors gracefully (suggest retry or saving elsewhere). 224 // TODO: handle write errors gracefully (suggest retry or saving elsewhere).
192 this.saveChanges_(this.closeCallback_); 225 this.saveChanges_(this.closeCallback_);
193 }; 226 };
194 227
195 Gallery.prototype.onSelect_ = function(item) { 228 Gallery.prototype.onSelect_ = function(item) {
196 if (this.currentItem_) { 229 if (this.currentItem_) {
197 this.saveChanges_(); 230 this.saveChanges_();
198 } 231 }
199 232
200 this.currentItem_ = item; 233 this.currentItem_ = item;
201 234
202 this.editor_.load(this.currentItem_.getContent(), 235 this.editor_.load(this.currentItem_.getContent(),
203 ImageUtil.deepCopy(this.currentItem_.getMetadata())); 236 ImageUtil.deepCopy(this.currentItem_.getMetadata()));
204 }; 237 };
205 238
206 Gallery.prototype.onEdit_ = function(event) { 239 Gallery.prototype.onEdit_ = function(event) {
240 this.toolbar_.removeAttribute('hidden');
241
207 var self = this; 242 var self = this;
208 if (this.editing_) { 243 if (this.editing_) {
209 this.editor_.onModeLeave(); 244 this.editor_.onModeLeave();
210 this.editBar_.setAttribute('hidden', 'hidden'); 245 this.editBar_.setAttribute('hidden', 'hidden');
211 this.editButton_.removeAttribute('pressed'); 246 this.editButton_.removeAttribute('pressed');
212 this.editing_ = false; 247 this.editing_ = false;
213 this.initiateFading_(); 248 this.initiateFading_();
214 window.setTimeout(function() { 249 window.setTimeout(function() {
215 // Hide the toolbar, so it will not overlap with buttons. 250 // Hide the toolbar, so it will not overlap with buttons.
216 self.editBarMain_.setAttribute('hidden', 'hidden'); 251 self.editBarMain_.setAttribute('hidden', 'hidden');
217 self.ribbon_.redraw(); 252 self.ribbon_.redraw();
218 }, 500); 253 }, 500);
219 } else { 254 } else {
220 this.cancelFading_(); 255 this.cancelFading_();
221 // Show the toolbar. 256 // Show the toolbar.
222 this.editBarMain_.removeAttribute('hidden'); 257 this.editBarMain_.removeAttribute('hidden');
223 // Use setTimeout, so computed style will be recomputed. 258 // Use setTimeout, so computed style will be recomputed.
224 window.setTimeout(function() { 259 window.setTimeout(function() {
225 self.editBar_.removeAttribute('hidden'); 260 self.editBar_.removeAttribute('hidden');
226 self.editButton_.setAttribute('pressed', 'pressed'); 261 self.editButton_.setAttribute('pressed', 'pressed');
227 self.editing_ = true; 262 self.editing_ = true;
228 self.ribbon_.redraw(); 263 self.ribbon_.redraw();
229 }, 0); 264 }, 0);
230 } 265 }
231 }; 266 };
232 267
233 Gallery.prototype.onShare_ = function(event) { 268 Gallery.prototype.onShare_ = function(event) {
234 // TODO(dgozman): implement. 269 this.toolbar_.removeAttribute('hidden');
270
271 if (this.sharing_) {
272 this.shareMenu_.setAttribute('hidden', 'hidden');
273 } else {
274 this.shareMenu_.removeAttribute('hidden');
275 }
276 this.sharing_ = !this.sharing_;
235 }; 277 };
236 278
237 Gallery.prototype.onKeyDown_ = function(event) { 279 Gallery.prototype.onKeyDown_ = function(event) {
238 if (this.editing_) 280 if (this.editing_ || this.sharing_)
239 return; 281 return;
240 switch (event.keyIdentifier) { 282 switch (event.keyIdentifier) {
241 case 'Home': 283 case 'Home':
242 this.ribbon_.scrollToFirst(); 284 this.ribbon_.scrollToFirst();
243 break; 285 break;
244 case 'Left': 286 case 'Left':
245 this.ribbon_.scrollLeft(); 287 this.ribbon_.scrollLeft();
246 break; 288 break;
247 case 'Right': 289 case 'Right':
248 this.ribbon_.scrollRight(); 290 this.ribbon_.scrollRight();
249 break; 291 break;
250 case 'End': 292 case 'End':
251 this.ribbon_.scrollToLast(); 293 this.ribbon_.scrollToLast();
252 break; 294 break;
253 } 295 }
254 }; 296 };
255 297
256 Gallery.prototype.onMouseMove_ = function(e) { 298 Gallery.prototype.onMouseMove_ = function(e) {
257 this.cancelFading_(); 299 this.cancelFading_();
258 this.toolbar_.removeAttribute('hidden'); 300 this.toolbar_.removeAttribute('hidden');
259 this.initiateFading_(); 301 this.initiateFading_();
260 }; 302 };
261 303
262 Gallery.prototype.onFadeTimeout_ = function() { 304 Gallery.prototype.onFadeTimeout_ = function() {
263 this.fadeTimeoutId_ = null; 305 this.fadeTimeoutId_ = null;
306 if (this.editing_ || this.sharing_) return;
264 this.toolbar_.setAttribute('hidden', 'hidden'); 307 this.toolbar_.setAttribute('hidden', 'hidden');
265 }; 308 };
266 309
267 Gallery.prototype.initiateFading_ = function() { 310 Gallery.prototype.initiateFading_ = function() {
268 if (this.editing_ || this.fadeTimeoutId_) { 311 if (this.editing_ || this.sharing_ || this.fadeTimeoutId_) {
269 return; 312 return;
270 } 313 }
271 this.fadeTimeoutId_ = window.setTimeout( 314 this.fadeTimeoutId_ = window.setTimeout(
272 this.onFadeTimeoutBound_, Gallery.FADE_TIMEOUT); 315 this.onFadeTimeoutBound_, Gallery.FADE_TIMEOUT);
273 }; 316 };
274 317
275 Gallery.prototype.cancelFading_ = function() { 318 Gallery.prototype.cancelFading_ = function() {
276 if (this.fadeTimeoutId_) { 319 if (this.fadeTimeoutId_) {
277 window.clearTimeout(this.fadeTimeoutId_); 320 window.clearTimeout(this.fadeTimeoutId_);
278 this.fadeTimeoutId_ = null; 321 this.fadeTimeoutId_ = null;
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 this.box_.addEventListener('click', selectClosure.bind(null, this)); 446 this.box_.addEventListener('click', selectClosure.bind(null, this));
404 this.box_.appendChild(this.img_); 447 this.box_.appendChild(this.img_);
405 448
406 this.original_ = true; 449 this.original_ = true;
407 }; 450 };
408 451
409 Ribbon.Item.prototype.getBox = function () { return this.box_ }; 452 Ribbon.Item.prototype.getBox = function () { return this.box_ };
410 453
411 Ribbon.Item.prototype.isOriginal = function () { return this.original_ }; 454 Ribbon.Item.prototype.isOriginal = function () { return this.original_ };
412 455
456 Ribbon.Item.prototype.getUrl = function () { return this.url_ };
457
413 Ribbon.Item.prototype.select = function(on) { 458 Ribbon.Item.prototype.select = function(on) {
414 if (on) 459 if (on)
415 this.box_.setAttribute('selected', 'selected'); 460 this.box_.setAttribute('selected', 'selected');
416 else 461 else
417 this.box_.removeAttribute('selected'); 462 this.box_.removeAttribute('selected');
418 }; 463 };
419 464
420 // TODO: Localize? 465 // TODO: Localize?
421 Ribbon.Item.COPY_SIGNATURE = '_Edited_'; 466 Ribbon.Item.COPY_SIGNATURE = '_Edited_';
422 467
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
509 metadata.imageTransform; 554 metadata.imageTransform;
510 555
511 this.box_.style.webkitTransform = transform ? 556 this.box_.style.webkitTransform = transform ?
512 ('scaleX(' + transform.scaleX + ') ' + 557 ('scaleX(' + transform.scaleX + ') ' +
513 'scaleY(' + transform.scaleY + ') ' + 558 'scaleY(' + transform.scaleY + ') ' +
514 'rotate(' + transform.rotate90 * 90 + 'deg)') : 559 'rotate(' + transform.rotate90 * 90 + 'deg)') :
515 ''; 560 '';
516 561
517 this.img_.setAttribute('src', metadata.thumbnailURL || this.url_); 562 this.img_.setAttribute('src', metadata.thumbnailURL || this.url_);
518 }; 563 };
OLDNEW
« no previous file with comments | « chrome/browser/resources/file_manager/js/image_editor/gallery.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698