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
|
// 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 Default renderer for {@link goog.ui.TabBar}s. Based on the
* original {@code TabPane} code.
*
* @author attila@google.com (Attila Bodis)
* @author eae@google.com (Emil A. Eklund)
*/
goog.provide('goog.ui.TabBarRenderer');
goog.require('goog.a11y.aria.Role');
goog.require('goog.object');
goog.require('goog.ui.ContainerRenderer');
/**
* Default renderer for {@link goog.ui.TabBar}s, based on the {@code TabPane}
* code. The tab bar's DOM structure is determined by its orientation and
* location relative to tab contents. For example, a horizontal tab bar
* located above tab contents looks like this:
*
* <div class="goog-tab-bar goog-tab-bar-horizontal goog-tab-bar-top">
* ...(tabs here)...
* </div>
*
* @constructor
* @extends {goog.ui.ContainerRenderer}
*/
goog.ui.TabBarRenderer = function() {
goog.ui.ContainerRenderer.call(this, goog.a11y.aria.Role.TAB_LIST);
};
goog.inherits(goog.ui.TabBarRenderer, goog.ui.ContainerRenderer);
goog.addSingletonGetter(goog.ui.TabBarRenderer);
goog.tagUnsealableClass(goog.ui.TabBarRenderer);
/**
* Default CSS class to be applied to the root element of components rendered
* by this renderer.
* @type {string}
*/
goog.ui.TabBarRenderer.CSS_CLASS = goog.getCssName('goog-tab-bar');
/**
* Returns the CSS class name to be applied to the root element of all tab bars
* rendered or decorated using this renderer.
* @return {string} Renderer-specific CSS class name.
* @override
*/
goog.ui.TabBarRenderer.prototype.getCssClass = function() {
return goog.ui.TabBarRenderer.CSS_CLASS;
};
/**
* Sets the tab bar's state based on the given CSS class name, encountered
* during decoration. Overrides the superclass implementation by recognizing
* class names representing tab bar orientation and location.
* @param {goog.ui.Container} tabBar Tab bar to configure.
* @param {string} className CSS class name.
* @param {string} baseClass Base class name used as the root of state-specific
* class names (typically the renderer's own class name).
* @protected
* @override
*/
goog.ui.TabBarRenderer.prototype.setStateFromClassName = function(
tabBar, className, baseClass) {
// Create the class-to-location lookup table on first access.
if (!this.locationByClass_) {
this.createLocationByClassMap_();
}
// If the class name corresponds to a location, update the tab bar's location;
// otherwise let the superclass handle it.
var location = this.locationByClass_[className];
if (location) {
tabBar.setLocation(location);
} else {
goog.ui.TabBarRenderer.superClass_.setStateFromClassName.call(
this, tabBar, className, baseClass);
}
};
/**
* Returns all CSS class names applicable to the tab bar, based on its state.
* Overrides the superclass implementation by appending the location-specific
* class name to the list.
* @param {goog.ui.Container} tabBar Tab bar whose CSS classes are to be
* returned.
* @return {!Array<string>} Array of CSS class names applicable to the tab bar.
* @override
*/
goog.ui.TabBarRenderer.prototype.getClassNames = function(tabBar) {
var classNames =
goog.ui.TabBarRenderer.superClass_.getClassNames.call(this, tabBar);
// Create the location-to-class lookup table on first access.
if (!this.classByLocation_) {
this.createClassByLocationMap_();
}
// Apped the class name corresponding to the tab bar's location to the list.
classNames.push(this.classByLocation_[tabBar.getLocation()]);
return classNames;
};
/**
* Creates the location-to-class lookup table.
* @private
*/
goog.ui.TabBarRenderer.prototype.createClassByLocationMap_ = function() {
var baseClass = this.getCssClass();
/**
* Map of locations to location-specific structural class names,
* precomputed and cached on first use to minimize object allocations
* and string concatenation.
* @type {Object}
* @private
* @suppress {missingRequire} goog.ui.TabBar
*/
this.classByLocation_ = goog.object.create(
goog.ui.TabBar.Location.TOP, goog.getCssName(baseClass, 'top'),
goog.ui.TabBar.Location.BOTTOM, goog.getCssName(baseClass, 'bottom'),
goog.ui.TabBar.Location.START, goog.getCssName(baseClass, 'start'),
goog.ui.TabBar.Location.END, goog.getCssName(baseClass, 'end'));
};
/**
* Creates the class-to-location lookup table, used during decoration.
* @private
*/
goog.ui.TabBarRenderer.prototype.createLocationByClassMap_ = function() {
// We need the classByLocation_ map so we can transpose it.
if (!this.classByLocation_) {
this.createClassByLocationMap_();
}
/**
* Map of location-specific structural class names to locations, used during
* element decoration. Precomputed and cached on first use to minimize object
* allocations and string concatenation.
* @type {Object}
* @private
*/
this.locationByClass_ = goog.object.transpose(this.classByLocation_);
};
|