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
|
// Copyright 2008 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 Renderer for {@link goog.ui.Palette}s.
*
* @author attila@google.com (Attila Bodis)
*/
goog.provide('goog.ui.PaletteRenderer');
goog.require('goog.a11y.aria');
goog.require('goog.a11y.aria.Role');
goog.require('goog.a11y.aria.State');
goog.require('goog.array');
goog.require('goog.asserts');
goog.require('goog.dom');
goog.require('goog.dom.NodeIterator');
goog.require('goog.dom.NodeType');
goog.require('goog.dom.TagName');
goog.require('goog.dom.classlist');
goog.require('goog.iter');
goog.require('goog.style');
goog.require('goog.ui.ControlRenderer');
goog.require('goog.userAgent');
/**
* Default renderer for {@link goog.ui.Palette}s. Renders the palette as an
* HTML table wrapped in a DIV, with one palette item per cell:
*
* <div class="goog-palette">
* <table class="goog-palette-table">
* <tbody class="goog-palette-body">
* <tr class="goog-palette-row">
* <td class="goog-palette-cell">...Item 0...</td>
* <td class="goog-palette-cell">...Item 1...</td>
* ...
* </tr>
* <tr class="goog-palette-row">
* ...
* </tr>
* </tbody>
* </table>
* </div>
*
* @constructor
* @extends {goog.ui.ControlRenderer}
*/
goog.ui.PaletteRenderer = function() {
goog.ui.ControlRenderer.call(this);
};
goog.inherits(goog.ui.PaletteRenderer, goog.ui.ControlRenderer);
goog.addSingletonGetter(goog.ui.PaletteRenderer);
/**
* Globally unique ID sequence for cells rendered by this renderer class.
* @type {number}
* @private
*/
goog.ui.PaletteRenderer.cellId_ = 0;
/**
* Default CSS class to be applied to the root element of components rendered
* by this renderer.
* @type {string}
*/
goog.ui.PaletteRenderer.CSS_CLASS = goog.getCssName('goog-palette');
/**
* Returns the palette items arranged in a table wrapped in a DIV, with the
* renderer's own CSS class and additional state-specific classes applied to
* it.
* @param {goog.ui.Control} palette goog.ui.Palette to render.
* @return {!Element} Root element for the palette.
* @override
*/
goog.ui.PaletteRenderer.prototype.createDom = function(palette) {
var classNames = this.getClassNames(palette);
var element = palette.getDomHelper().createDom(
goog.dom.TagName.DIV, classNames,
this.createGrid(
/** @type {Array<Node>} */ (palette.getContent()), palette.getSize(),
palette.getDomHelper()));
goog.a11y.aria.setRole(element, goog.a11y.aria.Role.GRID);
return element;
};
/**
* Returns the given items in a table with {@code size.width} columns and
* {@code size.height} rows. If the table is too big, empty cells will be
* created as needed. If the table is too small, the items that don't fit
* will not be rendered.
* @param {Array<Node>} items Palette items.
* @param {goog.math.Size} size Palette size (columns x rows); both dimensions
* must be specified as numbers.
* @param {goog.dom.DomHelper} dom DOM helper for document interaction.
* @return {!Element} Palette table element.
*/
goog.ui.PaletteRenderer.prototype.createGrid = function(items, size, dom) {
var rows = [];
for (var row = 0, index = 0; row < size.height; row++) {
var cells = [];
for (var column = 0; column < size.width; column++) {
var item = items && items[index++];
cells.push(this.createCell(item, dom));
}
rows.push(this.createRow(cells, dom));
}
return this.createTable(rows, dom);
};
/**
* Returns a table element (or equivalent) that wraps the given rows.
* @param {Array<Element>} rows Array of row elements.
* @param {goog.dom.DomHelper} dom DOM helper for document interaction.
* @return {!Element} Palette table element.
*/
goog.ui.PaletteRenderer.prototype.createTable = function(rows, dom) {
var table = dom.createDom(
goog.dom.TagName.TABLE, goog.getCssName(this.getCssClass(), 'table'),
dom.createDom(
goog.dom.TagName.TBODY, goog.getCssName(this.getCssClass(), 'body'),
rows));
table.cellSpacing = '0';
table.cellPadding = '0';
return table;
};
/**
* Returns a table row element (or equivalent) that wraps the given cells.
* @param {Array<Element>} cells Array of cell elements.
* @param {goog.dom.DomHelper} dom DOM helper for document interaction.
* @return {!Element} Row element.
*/
goog.ui.PaletteRenderer.prototype.createRow = function(cells, dom) {
var row = dom.createDom(
goog.dom.TagName.TR, goog.getCssName(this.getCssClass(), 'row'), cells);
goog.a11y.aria.setRole(row, goog.a11y.aria.Role.ROW);
return row;
};
/**
* Returns a table cell element (or equivalent) that wraps the given palette
* item (which must be a DOM node).
* @param {Node|string} node Palette item.
* @param {goog.dom.DomHelper} dom DOM helper for document interaction.
* @return {!Element} Cell element.
*/
goog.ui.PaletteRenderer.prototype.createCell = function(node, dom) {
var cell = dom.createDom(
goog.dom.TagName.TD, {
'class': goog.getCssName(this.getCssClass(), 'cell'),
// Cells must have an ID, for accessibility, so we generate one here.
'id': goog.getCssName(this.getCssClass(), 'cell-') +
goog.ui.PaletteRenderer.cellId_++
},
node);
goog.a11y.aria.setRole(cell, goog.a11y.aria.Role.GRIDCELL);
// Initialize to an unselected state.
goog.a11y.aria.setState(cell, goog.a11y.aria.State.SELECTED, false);
if (!goog.dom.getTextContent(cell) && !goog.a11y.aria.getLabel(cell)) {
var ariaLabelForCell = this.findAriaLabelForCell_(cell);
if (ariaLabelForCell) {
goog.a11y.aria.setLabel(cell, ariaLabelForCell);
}
}
return cell;
};
/**
* Descends the DOM and tries to find an aria label for a grid cell
* from the first child with a label or title.
* @param {!Element} cell The cell.
* @return {string} The label to use.
* @private
*/
goog.ui.PaletteRenderer.prototype.findAriaLabelForCell_ = function(cell) {
var iter = new goog.dom.NodeIterator(cell);
var label = '';
var node;
while (!label && (node = goog.iter.nextOrValue(iter, null))) {
if (node.nodeType == goog.dom.NodeType.ELEMENT) {
label =
goog.a11y.aria.getLabel(/** @type {!Element} */ (node)) || node.title;
}
}
return label;
};
/**
* Overrides {@link goog.ui.ControlRenderer#canDecorate} to always return false.
* @param {Element} element Ignored.
* @return {boolean} False, since palettes don't support the decorate flow (for
* now).
* @override
*/
goog.ui.PaletteRenderer.prototype.canDecorate = function(element) {
return false;
};
/**
* Overrides {@link goog.ui.ControlRenderer#decorate} to be a no-op, since
* palettes don't support the decorate flow (for now).
* @param {goog.ui.Control} palette Ignored.
* @param {Element} element Ignored.
* @return {null} Always null.
* @override
*/
goog.ui.PaletteRenderer.prototype.decorate = function(palette, element) {
return null;
};
/**
* Overrides {@link goog.ui.ControlRenderer#setContent} for palettes. Locates
* the HTML table representing the palette grid, and replaces the contents of
* each cell with a new element from the array of nodes passed as the second
* argument. If the new content has too many items the table will have more
* rows added to fit, if there are less items than the table has cells, then the
* left over cells will be empty.
* @param {Element} element Root element of the palette control.
* @param {goog.ui.ControlContent} content Array of items to replace existing
* palette items.
* @override
*/
goog.ui.PaletteRenderer.prototype.setContent = function(element, content) {
var items = /** @type {Array<Node>} */ (content);
if (element) {
var tbody = goog.dom.getElementsByTagNameAndClass(
goog.dom.TagName.TBODY, goog.getCssName(this.getCssClass(), 'body'),
element)[0];
if (tbody) {
var index = 0;
goog.array.forEach(tbody.rows, function(row) {
goog.array.forEach(row.cells, function(cell) {
goog.dom.removeChildren(cell);
if (items) {
var item = items[index++];
if (item) {
goog.dom.appendChild(cell, item);
}
}
});
});
// Make space for any additional items.
if (index < items.length) {
var cells = [];
var dom = goog.dom.getDomHelper(element);
var width = tbody.rows[0].cells.length;
while (index < items.length) {
var item = items[index++];
cells.push(this.createCell(item, dom));
if (cells.length == width) {
var row = this.createRow(cells, dom);
goog.dom.appendChild(tbody, row);
cells.length = 0;
}
}
if (cells.length > 0) {
while (cells.length < width) {
cells.push(this.createCell('', dom));
}
var row = this.createRow(cells, dom);
goog.dom.appendChild(tbody, row);
}
}
}
// Make sure the new contents are still unselectable.
goog.style.setUnselectable(element, true, goog.userAgent.GECKO);
}
};
/**
* Returns the item corresponding to the given node, or null if the node is
* neither a palette cell nor part of a palette item.
* @param {goog.ui.Palette} palette Palette in which to look for the item.
* @param {Node} node Node to look for.
* @return {Node} The corresponding palette item (null if not found).
*/
goog.ui.PaletteRenderer.prototype.getContainingItem = function(palette, node) {
var root = palette.getElement();
while (node && node.nodeType == goog.dom.NodeType.ELEMENT && node != root) {
if (node.tagName == goog.dom.TagName.TD &&
goog.dom.classlist.contains(
/** @type {!Element} */ (node),
goog.getCssName(this.getCssClass(), 'cell'))) {
return node.firstChild;
}
node = node.parentNode;
}
return null;
};
/**
* Updates the highlight styling of the palette cell containing the given node
* based on the value of the Boolean argument.
* @param {goog.ui.Palette} palette Palette containing the item.
* @param {Node} node Item whose cell is to be highlighted or un-highlighted.
* @param {boolean} highlight If true, the cell is highlighted; otherwise it is
* un-highlighted.
*/
goog.ui.PaletteRenderer.prototype.highlightCell = function(
palette, node, highlight) {
if (node) {
var cell = this.getCellForItem(node);
goog.asserts.assert(cell);
goog.dom.classlist.enable(
cell, goog.getCssName(this.getCssClass(), 'cell-hover'), highlight);
// See http://www.w3.org/TR/2006/WD-aria-state-20061220/#activedescendent
// for an explanation of the activedescendent.
if (highlight) {
goog.a11y.aria.setState(
palette.getElementStrict(), goog.a11y.aria.State.ACTIVEDESCENDANT,
cell.id);
} else if (
cell.id ==
goog.a11y.aria.getState(
palette.getElementStrict(),
goog.a11y.aria.State.ACTIVEDESCENDANT)) {
goog.a11y.aria.removeState(
palette.getElementStrict(), goog.a11y.aria.State.ACTIVEDESCENDANT);
}
}
};
/**
* @param {Node} node Item whose cell is to be returned.
* @return {Element} The grid cell for the palette item.
*/
goog.ui.PaletteRenderer.prototype.getCellForItem = function(node) {
return /** @type {Element} */ (node ? node.parentNode : null);
};
/**
* Updates the selection styling of the palette cell containing the given node
* based on the value of the Boolean argument.
* @param {goog.ui.Palette} palette Palette containing the item.
* @param {Node} node Item whose cell is to be selected or deselected.
* @param {boolean} select If true, the cell is selected; otherwise it is
* deselected.
*/
goog.ui.PaletteRenderer.prototype.selectCell = function(palette, node, select) {
if (node) {
var cell = /** @type {!Element} */ (node.parentNode);
goog.dom.classlist.enable(
cell, goog.getCssName(this.getCssClass(), 'cell-selected'), select);
goog.a11y.aria.setState(cell, goog.a11y.aria.State.SELECTED, select);
}
};
/**
* Returns the CSS class to be applied to the root element of components
* rendered using this renderer.
* @return {string} Renderer-specific CSS class.
* @override
*/
goog.ui.PaletteRenderer.prototype.getCssClass = function() {
return goog.ui.PaletteRenderer.CSS_CLASS;
};
|