1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631
|
// Copyright 2007 The Closure Library Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS-IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
/**
* @fileoverview A palette control. A palette is a grid that the user can
* highlight or select via the keyboard or the mouse.
*
* @author attila@google.com (Attila Bodis)
* @see ../demos/palette.html
*/
goog.provide('goog.ui.Palette');
goog.require('goog.array');
goog.require('goog.dom');
goog.require('goog.events');
goog.require('goog.events.EventType');
goog.require('goog.events.KeyCodes');
goog.require('goog.math.Size');
goog.require('goog.ui.Component');
goog.require('goog.ui.Control');
goog.require('goog.ui.PaletteRenderer');
goog.require('goog.ui.SelectionModel');
/**
* A palette is a grid of DOM nodes that the user can highlight or select via
* the keyboard or the mouse. The selection state of the palette is controlled
* an ACTION event. Event listeners may retrieve the selected item using the
* {@link #getSelectedItem} or {@link #getSelectedIndex} method.
*
* Use this class as the base for components like color palettes or emoticon
* pickers. Use {@link #setContent} to set/change the items in the palette
* after construction. See palette.html demo for example usage.
*
* @param {Array<Node>} items Array of DOM nodes to be displayed as items
* in the palette grid (limited to one per cell).
* @param {goog.ui.PaletteRenderer=} opt_renderer Renderer used to render or
* decorate the palette; defaults to {@link goog.ui.PaletteRenderer}.
* @param {goog.dom.DomHelper=} opt_domHelper Optional DOM helper, used for
* document interaction.
* @constructor
* @extends {goog.ui.Control}
*/
goog.ui.Palette = function(items, opt_renderer, opt_domHelper) {
goog.ui.Palette.base(
this, 'constructor', items,
opt_renderer || goog.ui.PaletteRenderer.getInstance(), opt_domHelper);
this.setAutoStates(
goog.ui.Component.State.CHECKED | goog.ui.Component.State.SELECTED |
goog.ui.Component.State.OPENED,
false);
/**
* A fake component for dispatching events on palette cell changes.
* @type {!goog.ui.Palette.CurrentCell_}
* @private
*/
this.currentCellControl_ = new goog.ui.Palette.CurrentCell_();
this.currentCellControl_.setParentEventTarget(this);
/**
* @private {number} The last highlighted index, or -1 if it never had one.
*/
this.lastHighlightedIndex_ = -1;
};
goog.inherits(goog.ui.Palette, goog.ui.Control);
goog.tagUnsealableClass(goog.ui.Palette);
/**
* Events fired by the palette object
* @enum {string}
*/
goog.ui.Palette.EventType = {
AFTER_HIGHLIGHT: goog.events.getUniqueId('afterhighlight')
};
/**
* Palette dimensions (columns x rows). If the number of rows is undefined,
* it is calculated on first use.
* @type {goog.math.Size}
* @private
*/
goog.ui.Palette.prototype.size_ = null;
/**
* Index of the currently highlighted item (-1 if none).
* @type {number}
* @private
*/
goog.ui.Palette.prototype.highlightedIndex_ = -1;
/**
* Selection model controlling the palette's selection state.
* @type {goog.ui.SelectionModel}
* @private
*/
goog.ui.Palette.prototype.selectionModel_ = null;
// goog.ui.Component / goog.ui.Control implementation.
/** @override */
goog.ui.Palette.prototype.disposeInternal = function() {
goog.ui.Palette.superClass_.disposeInternal.call(this);
if (this.selectionModel_) {
this.selectionModel_.dispose();
this.selectionModel_ = null;
}
this.size_ = null;
this.currentCellControl_.dispose();
};
/**
* Overrides {@link goog.ui.Control#setContentInternal} by also updating the
* grid size and the selection model. Considered protected.
* @param {goog.ui.ControlContent} content Array of DOM nodes to be displayed
* as items in the palette grid (one item per cell).
* @protected
* @override
*/
goog.ui.Palette.prototype.setContentInternal = function(content) {
var items = /** @type {Array<Node>} */ (content);
goog.ui.Palette.superClass_.setContentInternal.call(this, items);
// Adjust the palette size.
this.adjustSize_();
// Add the items to the selection model, replacing previous items (if any).
if (this.selectionModel_) {
// We already have a selection model; just replace the items.
this.selectionModel_.clear();
this.selectionModel_.addItems(items);
} else {
// Create a selection model, initialize the items, and hook up handlers.
this.selectionModel_ = new goog.ui.SelectionModel(items);
this.selectionModel_.setSelectionHandler(goog.bind(this.selectItem_, this));
this.getHandler().listen(
this.selectionModel_, goog.events.EventType.SELECT,
this.handleSelectionChange);
}
// In all cases, clear the highlight.
this.highlightedIndex_ = -1;
};
/**
* Overrides {@link goog.ui.Control#getCaption} to return the empty string,
* since palettes don't have text captions.
* @return {string} The empty string.
* @override
*/
goog.ui.Palette.prototype.getCaption = function() {
return '';
};
/**
* Overrides {@link goog.ui.Control#setCaption} to be a no-op, since palettes
* don't have text captions.
* @param {string} caption Ignored.
* @override
*/
goog.ui.Palette.prototype.setCaption = function(caption) {
// Do nothing.
};
// Palette event handling.
/**
* Handles mouseover events. Overrides {@link goog.ui.Control#handleMouseOver}
* by determining which palette item (if any) was moused over, highlighting it,
* and un-highlighting any previously-highlighted item.
* @param {goog.events.BrowserEvent} e Mouse event to handle.
* @override
*/
goog.ui.Palette.prototype.handleMouseOver = function(e) {
goog.ui.Palette.superClass_.handleMouseOver.call(this, e);
var item = this.getRenderer().getContainingItem(this, e.target);
if (item && e.relatedTarget && goog.dom.contains(item, e.relatedTarget)) {
// Ignore internal mouse moves.
return;
}
if (item != this.getHighlightedItem()) {
this.setHighlightedItem(item);
}
};
/**
* Handles mousedown events. Overrides {@link goog.ui.Control#handleMouseDown}
* by ensuring that the item on which the user moused down is highlighted.
* @param {goog.events.Event} e Mouse event to handle.
* @override
*/
goog.ui.Palette.prototype.handleMouseDown = function(e) {
goog.ui.Palette.superClass_.handleMouseDown.call(this, e);
if (this.isActive()) {
// Make sure we move the highlight to the cell on which the user moused
// down.
var item = this.getRenderer().getContainingItem(this, e.target);
if (item != this.getHighlightedItem()) {
this.setHighlightedItem(item);
}
}
};
/**
* Selects the currently highlighted palette item (triggered by mouseup or by
* keyboard action). Overrides {@link goog.ui.Control#performActionInternal}
* by selecting the highlighted item and dispatching an ACTION event.
* @param {goog.events.Event} e Mouse or key event that triggered the action.
* @return {boolean} True if the action was allowed to proceed, false otherwise.
* @override
*/
goog.ui.Palette.prototype.performActionInternal = function(e) {
var highlightedItem = this.getHighlightedItem();
if (highlightedItem) {
if (e && this.shouldSelectHighlightedItem_(e)) {
this.setSelectedItem(highlightedItem);
}
return goog.ui.Palette.base(this, 'performActionInternal', e);
}
return false;
};
/**
* Determines whether to select the highlighted item while handling an internal
* action. The highlighted item should not be selected if the action is a mouse
* event occurring outside the palette or in an "empty" cell.
* @param {!goog.events.Event} e Mouseup or key event being handled.
* @return {boolean} True if the highlighted item should be selected.
* @private
*/
goog.ui.Palette.prototype.shouldSelectHighlightedItem_ = function(e) {
if (!this.getSelectedItem()) {
// It's always ok to select when nothing is selected yet.
return true;
} else if (e.type != 'mouseup') {
// Keyboard can only act on valid cells.
return true;
} else {
// Return whether or not the mouse action was in the palette.
return !!this.getRenderer().getContainingItem(this, e.target);
}
};
/**
* Handles keyboard events dispatched while the palette has focus. Moves the
* highlight on arrow keys, and selects the highlighted item on Enter or Space.
* Returns true if the event was handled, false otherwise. In particular, if
* the user attempts to navigate out of the grid, the highlight isn't changed,
* and this method returns false; it is then up to the parent component to
* handle the event (e.g. by wrapping the highlight around). Overrides {@link
* goog.ui.Control#handleKeyEvent}.
* @param {goog.events.KeyEvent} e Key event to handle.
* @return {boolean} True iff the key event was handled by the component.
* @override
*/
goog.ui.Palette.prototype.handleKeyEvent = function(e) {
var items = this.getContent();
var numItems = items ? items.length : 0;
var numColumns = this.size_.width;
// If the component is disabled or the palette is empty, bail.
if (numItems == 0 || !this.isEnabled()) {
return false;
}
// User hit ENTER or SPACE; trigger action.
if (e.keyCode == goog.events.KeyCodes.ENTER ||
e.keyCode == goog.events.KeyCodes.SPACE) {
return this.performActionInternal(e);
}
// User hit HOME or END; move highlight.
if (e.keyCode == goog.events.KeyCodes.HOME) {
this.setHighlightedIndex(0);
return true;
} else if (e.keyCode == goog.events.KeyCodes.END) {
this.setHighlightedIndex(numItems - 1);
return true;
}
// If nothing is highlighted, start from the selected index. If nothing is
// selected either, highlightedIndex is -1.
var highlightedIndex = this.highlightedIndex_ < 0 ? this.getSelectedIndex() :
this.highlightedIndex_;
switch (e.keyCode) {
case goog.events.KeyCodes.LEFT:
// If the highlighted index is uninitialized, or is at the beginning, move
// it to the end.
if (highlightedIndex == -1 || highlightedIndex == 0) {
highlightedIndex = numItems;
}
this.setHighlightedIndex(highlightedIndex - 1);
e.preventDefault();
return true;
break;
case goog.events.KeyCodes.RIGHT:
// If the highlighted index at the end, move it to the beginning.
if (highlightedIndex == numItems - 1) {
highlightedIndex = -1;
}
this.setHighlightedIndex(highlightedIndex + 1);
e.preventDefault();
return true;
break;
case goog.events.KeyCodes.UP:
if (highlightedIndex == -1) {
highlightedIndex = numItems + numColumns - 1;
}
if (highlightedIndex >= numColumns) {
this.setHighlightedIndex(highlightedIndex - numColumns);
e.preventDefault();
return true;
}
break;
case goog.events.KeyCodes.DOWN:
if (highlightedIndex == -1) {
highlightedIndex = -numColumns;
}
if (highlightedIndex < numItems - numColumns) {
this.setHighlightedIndex(highlightedIndex + numColumns);
e.preventDefault();
return true;
}
break;
}
return false;
};
/**
* Handles selection change events dispatched by the selection model.
* @param {goog.events.Event} e Selection event to handle.
*/
goog.ui.Palette.prototype.handleSelectionChange = function(e) {
// No-op in the base class.
};
// Palette management.
/**
* Returns the size of the palette grid.
* @return {goog.math.Size} Palette size (columns x rows).
*/
goog.ui.Palette.prototype.getSize = function() {
return this.size_;
};
/**
* Sets the size of the palette grid to the given size. Callers can either
* pass a single {@link goog.math.Size} or a pair of numbers (first the number
* of columns, then the number of rows) to this method. In both cases, the
* number of rows is optional and will be calculated automatically if needed.
* It is an error to attempt to change the size of the palette after it has
* been rendered.
* @param {goog.math.Size|number} size Either a size object or the number of
* columns.
* @param {number=} opt_rows The number of rows (optional).
*/
goog.ui.Palette.prototype.setSize = function(size, opt_rows) {
if (this.getElement()) {
throw new Error(goog.ui.Component.Error.ALREADY_RENDERED);
}
this.size_ = goog.isNumber(size) ?
new goog.math.Size(size, /** @type {number} */ (opt_rows)) :
size;
// Adjust size, if needed.
this.adjustSize_();
};
/**
* Returns the 0-based index of the currently highlighted palette item, or -1
* if no item is highlighted.
* @return {number} Index of the highlighted item (-1 if none).
*/
goog.ui.Palette.prototype.getHighlightedIndex = function() {
return this.highlightedIndex_;
};
/**
* Returns the currently highlighted palette item, or null if no item is
* highlighted.
* @return {Node} The highlighted item (undefined if none).
*/
goog.ui.Palette.prototype.getHighlightedItem = function() {
var items = this.getContent();
return items && items[this.highlightedIndex_];
};
/**
* @return {Element} The highlighted cell.
* @private
*/
goog.ui.Palette.prototype.getHighlightedCellElement_ = function() {
return this.getRenderer().getCellForItem(this.getHighlightedItem());
};
/**
* Highlights the item at the given 0-based index, or removes the highlight
* if the argument is -1 or out of range. Any previously-highlighted item
* will be un-highlighted.
* @param {number} index 0-based index of the item to highlight.
*/
goog.ui.Palette.prototype.setHighlightedIndex = function(index) {
if (index != this.highlightedIndex_) {
this.highlightIndex_(this.highlightedIndex_, false);
this.lastHighlightedIndex_ = this.highlightedIndex_;
this.highlightedIndex_ = index;
this.highlightIndex_(index, true);
this.dispatchEvent(goog.ui.Palette.EventType.AFTER_HIGHLIGHT);
}
};
/**
* Highlights the given item, or removes the highlight if the argument is null
* or invalid. Any previously-highlighted item will be un-highlighted.
* @param {Node|undefined} item Item to highlight.
*/
goog.ui.Palette.prototype.setHighlightedItem = function(item) {
var items = /** @type {Array<Node>} */ (this.getContent());
this.setHighlightedIndex(
(items && item) ? goog.array.indexOf(items, item) : -1);
};
/**
* Returns the 0-based index of the currently selected palette item, or -1
* if no item is selected.
* @return {number} Index of the selected item (-1 if none).
*/
goog.ui.Palette.prototype.getSelectedIndex = function() {
return this.selectionModel_ ? this.selectionModel_.getSelectedIndex() : -1;
};
/**
* Returns the currently selected palette item, or null if no item is selected.
* @return {Node} The selected item (null if none).
*/
goog.ui.Palette.prototype.getSelectedItem = function() {
return this.selectionModel_ ?
/** @type {Node} */ (this.selectionModel_.getSelectedItem()) :
null;
};
/**
* Selects the item at the given 0-based index, or clears the selection
* if the argument is -1 or out of range. Any previously-selected item
* will be deselected.
* @param {number} index 0-based index of the item to select.
*/
goog.ui.Palette.prototype.setSelectedIndex = function(index) {
if (this.selectionModel_) {
this.selectionModel_.setSelectedIndex(index);
}
};
/**
* Selects the given item, or clears the selection if the argument is null or
* invalid. Any previously-selected item will be deselected.
* @param {Node} item Item to select.
*/
goog.ui.Palette.prototype.setSelectedItem = function(item) {
if (this.selectionModel_) {
this.selectionModel_.setSelectedItem(item);
}
};
/**
* Private helper; highlights or un-highlights the item at the given index
* based on the value of the Boolean argument. This implementation simply
* applies highlight styling to the cell containing the item to be highighted.
* Does nothing if the palette hasn't been rendered yet.
* @param {number} index 0-based index of item to highlight or un-highlight.
* @param {boolean} highlight If true, the item is highlighted; otherwise it
* is un-highlighted.
* @private
*/
goog.ui.Palette.prototype.highlightIndex_ = function(index, highlight) {
if (this.getElement()) {
var items = this.getContent();
if (items && index >= 0 && index < items.length) {
var cellEl = this.getHighlightedCellElement_();
if (this.currentCellControl_.getElement() != cellEl) {
this.currentCellControl_.setElementInternal(cellEl);
}
if (this.currentCellControl_.tryHighlight(highlight)) {
this.getRenderer().highlightCell(this, items[index], highlight);
}
}
}
};
/** @override */
goog.ui.Palette.prototype.setHighlighted = function(highlight) {
if (highlight && this.highlightedIndex_ == -1) {
// If there was a last highlighted index, use that. Otherwise, highlight the
// first cell.
this.setHighlightedIndex(
this.lastHighlightedIndex_ > -1 ? this.lastHighlightedIndex_ : 0);
} else if (!highlight) {
this.setHighlightedIndex(-1);
}
// The highlight event should be fired once the component has updated its own
// state.
goog.ui.Palette.base(this, 'setHighlighted', highlight);
};
/**
* Private helper; selects or deselects the given item based on the value of
* the Boolean argument. This implementation simply applies selection styling
* to the cell containing the item to be selected. Does nothing if the palette
* hasn't been rendered yet.
* @param {Node} item Item to select or deselect.
* @param {boolean} select If true, the item is selected; otherwise it is
* deselected.
* @private
*/
goog.ui.Palette.prototype.selectItem_ = function(item, select) {
if (this.getElement()) {
this.getRenderer().selectCell(this, item, select);
}
};
/**
* Calculates and updates the size of the palette based on any preset values
* and the number of palette items. If there is no preset size, sets the
* palette size to the smallest square big enough to contain all items. If
* there is a preset number of columns, increases the number of rows to hold
* all items if needed. (If there are too many rows, does nothing.)
* @private
*/
goog.ui.Palette.prototype.adjustSize_ = function() {
var items = this.getContent();
if (items) {
if (this.size_ && this.size_.width) {
// There is already a size set; honor the number of columns (if >0), but
// increase the number of rows if needed.
var minRows = Math.ceil(items.length / this.size_.width);
if (!goog.isNumber(this.size_.height) || this.size_.height < minRows) {
this.size_.height = minRows;
}
} else {
// No size has been set; size the grid to the smallest square big enough
// to hold all items (hey, why not?).
var length = Math.ceil(Math.sqrt(items.length));
this.size_ = new goog.math.Size(length, length);
}
} else {
// No items; set size to 0x0.
this.size_ = new goog.math.Size(0, 0);
}
};
/**
* A component to represent the currently highlighted cell.
* @constructor
* @extends {goog.ui.Control}
* @private
*/
goog.ui.Palette.CurrentCell_ = function() {
goog.ui.Palette.CurrentCell_.base(this, 'constructor', null);
this.setDispatchTransitionEvents(goog.ui.Component.State.HOVER, true);
};
goog.inherits(goog.ui.Palette.CurrentCell_, goog.ui.Control);
/**
* @param {boolean} highlight Whether to highlight or unhighlight the component.
* @return {boolean} Whether it was successful.
*/
goog.ui.Palette.CurrentCell_.prototype.tryHighlight = function(highlight) {
this.setHighlighted(highlight);
return this.isHighlighted() == highlight;
};
|