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 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302
|
// 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 Abstract class for all UI components. This defines the standard
* design pattern that all UI components should follow.
*
* @author attila@google.com (Attila Bodis)
* @see ../demos/samplecomponent.html
* @see http://code.google.com/p/closure-library/wiki/IntroToComponents
*/
goog.provide('goog.ui.Component');
goog.provide('goog.ui.Component.Error');
goog.provide('goog.ui.Component.EventType');
goog.provide('goog.ui.Component.State');
goog.require('goog.array');
goog.require('goog.asserts');
goog.require('goog.dom');
goog.require('goog.dom.NodeType');
goog.require('goog.dom.TagName');
goog.require('goog.events.EventHandler');
goog.require('goog.events.EventTarget');
goog.require('goog.object');
goog.require('goog.style');
goog.require('goog.ui.IdGenerator');
/**
* Default implementation of UI component.
*
* @param {goog.dom.DomHelper=} opt_domHelper Optional DOM helper.
* @constructor
* @extends {goog.events.EventTarget}
* @suppress {underscore}
*/
goog.ui.Component = function(opt_domHelper) {
goog.events.EventTarget.call(this);
/**
* DomHelper used to interact with the document, allowing components to be
* created in a different window.
* @protected {!goog.dom.DomHelper}
* @suppress {underscore|visibility}
*/
this.dom_ = opt_domHelper || goog.dom.getDomHelper();
/**
* Whether the component is rendered right-to-left. Right-to-left is set
* lazily when {@link #isRightToLeft} is called the first time, unless it has
* been set by calling {@link #setRightToLeft} explicitly.
* @private {?boolean}
*/
this.rightToLeft_ = goog.ui.Component.defaultRightToLeft_;
/**
* Unique ID of the component, lazily initialized in {@link
* goog.ui.Component#getId} if needed. This property is strictly private and
* must not be accessed directly outside of this class!
* @private {?string}
*/
this.id_ = null;
/**
* Whether the component is in the document.
* @private {boolean}
*/
this.inDocument_ = false;
// TODO(attila): Stop referring to this private field in subclasses.
/**
* The DOM element for the component.
* @private {Element}
*/
this.element_ = null;
/**
* Event handler.
* TODO(user): rename it to handler_ after all component subclasses in
* inside Google have been cleaned up.
* Code search: http://go/component_code_search
* @private {goog.events.EventHandler|undefined}
*/
this.googUiComponentHandler_ = void 0;
/**
* Arbitrary data object associated with the component. Such as meta-data.
* @private {*}
*/
this.model_ = null;
/**
* Parent component to which events will be propagated. This property is
* strictly private and must not be accessed directly outside of this class!
* @private {goog.ui.Component?}
*/
this.parent_ = null;
/**
* Array of child components. Lazily initialized on first use. Must be kept
* in sync with {@code childIndex_}. This property is strictly private and
* must not be accessed directly outside of this class!
* @private {Array<goog.ui.Component>?}
*/
this.children_ = null;
/**
* Map of child component IDs to child components. Used for constant-time
* random access to child components by ID. Lazily initialized on first use.
* Must be kept in sync with {@code children_}. This property is strictly
* private and must not be accessed directly outside of this class!
*
* We use a plain Object, not a {@link goog.structs.Map}, for simplicity.
* This means components can't have children with IDs such as 'constructor' or
* 'valueOf', but this shouldn't really be an issue in practice, and if it is,
* we can always fix it later without changing the API.
*
* @private {Object}
*/
this.childIndex_ = null;
/**
* Flag used to keep track of whether a component decorated an already
* existing element or whether it created the DOM itself.
*
* If an element is decorated, dispose will leave the node in the document.
* It is up to the app to remove the node.
*
* If an element was rendered, dispose will remove the node automatically.
*
* @private {boolean}
*/
this.wasDecorated_ = false;
};
goog.inherits(goog.ui.Component, goog.events.EventTarget);
/**
* @define {boolean} Whether to support calling decorate with an element that is
* not yet in the document. If true, we check if the element is in the
* document, and avoid calling enterDocument if it isn't. If false, we
* maintain legacy behavior (always call enterDocument from decorate).
*/
goog.define('goog.ui.Component.ALLOW_DETACHED_DECORATION', false);
/**
* Generator for unique IDs.
* @type {goog.ui.IdGenerator}
* @private
*/
goog.ui.Component.prototype.idGenerator_ = goog.ui.IdGenerator.getInstance();
// TODO(gboyer): See if we can remove this and just check goog.i18n.bidi.IS_RTL.
/**
* @define {number} Defines the default BIDI directionality.
* 0: Unknown.
* 1: Left-to-right.
* -1: Right-to-left.
*/
goog.define('goog.ui.Component.DEFAULT_BIDI_DIR', 0);
/**
* The default right to left value.
* @type {?boolean}
* @private
*/
goog.ui.Component.defaultRightToLeft_ =
(goog.ui.Component.DEFAULT_BIDI_DIR == 1) ?
false :
(goog.ui.Component.DEFAULT_BIDI_DIR == -1) ? true : null;
/**
* Common events fired by components so that event propagation is useful. Not
* all components are expected to dispatch or listen for all event types.
* Events dispatched before a state transition should be cancelable to prevent
* the corresponding state change.
* @enum {string}
*/
goog.ui.Component.EventType = {
/** Dispatched before the component becomes visible. */
BEFORE_SHOW: 'beforeshow',
/**
* Dispatched after the component becomes visible.
* NOTE(user): For goog.ui.Container, this actually fires before containers
* are shown. Use goog.ui.Container.EventType.AFTER_SHOW if you want an event
* that fires after a goog.ui.Container is shown.
*/
SHOW: 'show',
/** Dispatched before the component becomes hidden. */
HIDE: 'hide',
/** Dispatched before the component becomes disabled. */
DISABLE: 'disable',
/** Dispatched before the component becomes enabled. */
ENABLE: 'enable',
/** Dispatched before the component becomes highlighted. */
HIGHLIGHT: 'highlight',
/** Dispatched before the component becomes un-highlighted. */
UNHIGHLIGHT: 'unhighlight',
/** Dispatched before the component becomes activated. */
ACTIVATE: 'activate',
/** Dispatched before the component becomes deactivated. */
DEACTIVATE: 'deactivate',
/** Dispatched before the component becomes selected. */
SELECT: 'select',
/** Dispatched before the component becomes un-selected. */
UNSELECT: 'unselect',
/** Dispatched before a component becomes checked. */
CHECK: 'check',
/** Dispatched before a component becomes un-checked. */
UNCHECK: 'uncheck',
/** Dispatched before a component becomes focused. */
FOCUS: 'focus',
/** Dispatched before a component becomes blurred. */
BLUR: 'blur',
/** Dispatched before a component is opened (expanded). */
OPEN: 'open',
/** Dispatched before a component is closed (collapsed). */
CLOSE: 'close',
/** Dispatched after a component is moused over. */
ENTER: 'enter',
/** Dispatched after a component is moused out of. */
LEAVE: 'leave',
/** Dispatched after the user activates the component. */
ACTION: 'action',
/** Dispatched after the external-facing state of a component is changed. */
CHANGE: 'change'
};
/**
* Errors thrown by the component.
* @enum {string}
*/
goog.ui.Component.Error = {
/**
* Error when a method is not supported.
*/
NOT_SUPPORTED: 'Method not supported',
/**
* Error when the given element can not be decorated.
*/
DECORATE_INVALID: 'Invalid element to decorate',
/**
* Error when the component is already rendered and another render attempt is
* made.
*/
ALREADY_RENDERED: 'Component already rendered',
/**
* Error when an attempt is made to set the parent of a component in a way
* that would result in an inconsistent object graph.
*/
PARENT_UNABLE_TO_BE_SET: 'Unable to set parent component',
/**
* Error when an attempt is made to add a child component at an out-of-bounds
* index. We don't support sparse child arrays.
*/
CHILD_INDEX_OUT_OF_BOUNDS: 'Child component index out of bounds',
/**
* Error when an attempt is made to remove a child component from a component
* other than its parent.
*/
NOT_OUR_CHILD: 'Child is not in parent component',
/**
* Error when an operation requiring DOM interaction is made when the
* component is not in the document
*/
NOT_IN_DOCUMENT: 'Operation not supported while component is not in document',
/**
* Error when an invalid component state is encountered.
*/
STATE_INVALID: 'Invalid component state'
};
/**
* Common component states. Components may have distinct appearance depending
* on what state(s) apply to them. Not all components are expected to support
* all states.
* @enum {number}
*/
goog.ui.Component.State = {
/**
* Union of all supported component states.
*/
ALL: 0xFF,
/**
* Component is disabled.
* @see goog.ui.Component.EventType.DISABLE
* @see goog.ui.Component.EventType.ENABLE
*/
DISABLED: 0x01,
/**
* Component is highlighted.
* @see goog.ui.Component.EventType.HIGHLIGHT
* @see goog.ui.Component.EventType.UNHIGHLIGHT
*/
HOVER: 0x02,
/**
* Component is active (or "pressed").
* @see goog.ui.Component.EventType.ACTIVATE
* @see goog.ui.Component.EventType.DEACTIVATE
*/
ACTIVE: 0x04,
/**
* Component is selected.
* @see goog.ui.Component.EventType.SELECT
* @see goog.ui.Component.EventType.UNSELECT
*/
SELECTED: 0x08,
/**
* Component is checked.
* @see goog.ui.Component.EventType.CHECK
* @see goog.ui.Component.EventType.UNCHECK
*/
CHECKED: 0x10,
/**
* Component has focus.
* @see goog.ui.Component.EventType.FOCUS
* @see goog.ui.Component.EventType.BLUR
*/
FOCUSED: 0x20,
/**
* Component is opened (expanded). Applies to tree nodes, menu buttons,
* submenus, zippys (zippies?), etc.
* @see goog.ui.Component.EventType.OPEN
* @see goog.ui.Component.EventType.CLOSE
*/
OPENED: 0x40
};
/**
* Static helper method; returns the type of event components are expected to
* dispatch when transitioning to or from the given state.
* @param {goog.ui.Component.State} state State to/from which the component
* is transitioning.
* @param {boolean} isEntering Whether the component is entering or leaving the
* state.
* @return {goog.ui.Component.EventType} Event type to dispatch.
*/
goog.ui.Component.getStateTransitionEvent = function(state, isEntering) {
switch (state) {
case goog.ui.Component.State.DISABLED:
return isEntering ? goog.ui.Component.EventType.DISABLE :
goog.ui.Component.EventType.ENABLE;
case goog.ui.Component.State.HOVER:
return isEntering ? goog.ui.Component.EventType.HIGHLIGHT :
goog.ui.Component.EventType.UNHIGHLIGHT;
case goog.ui.Component.State.ACTIVE:
return isEntering ? goog.ui.Component.EventType.ACTIVATE :
goog.ui.Component.EventType.DEACTIVATE;
case goog.ui.Component.State.SELECTED:
return isEntering ? goog.ui.Component.EventType.SELECT :
goog.ui.Component.EventType.UNSELECT;
case goog.ui.Component.State.CHECKED:
return isEntering ? goog.ui.Component.EventType.CHECK :
goog.ui.Component.EventType.UNCHECK;
case goog.ui.Component.State.FOCUSED:
return isEntering ? goog.ui.Component.EventType.FOCUS :
goog.ui.Component.EventType.BLUR;
case goog.ui.Component.State.OPENED:
return isEntering ? goog.ui.Component.EventType.OPEN :
goog.ui.Component.EventType.CLOSE;
default:
// Fall through.
}
// Invalid state.
throw new Error(goog.ui.Component.Error.STATE_INVALID);
};
/**
* Set the default right-to-left value. This causes all component's created from
* this point forward to have the given value. This is useful for cases where
* a given page is always in one directionality, avoiding unnecessary
* right to left determinations.
* @param {?boolean} rightToLeft Whether the components should be rendered
* right-to-left. Null iff components should determine their directionality.
*/
goog.ui.Component.setDefaultRightToLeft = function(rightToLeft) {
goog.ui.Component.defaultRightToLeft_ = rightToLeft;
};
/**
* Gets the unique ID for the instance of this component. If the instance
* doesn't already have an ID, generates one on the fly.
* @return {string} Unique component ID.
*/
goog.ui.Component.prototype.getId = function() {
return this.id_ || (this.id_ = this.idGenerator_.getNextUniqueId());
};
/**
* Assigns an ID to this component instance. It is the caller's responsibility
* to guarantee that the ID is unique. If the component is a child of a parent
* component, then the parent component's child index is updated to reflect the
* new ID; this may throw an error if the parent already has a child with an ID
* that conflicts with the new ID.
* @param {string} id Unique component ID.
*/
goog.ui.Component.prototype.setId = function(id) {
if (this.parent_ && this.parent_.childIndex_) {
// Update the parent's child index.
goog.object.remove(this.parent_.childIndex_, this.id_);
goog.object.add(this.parent_.childIndex_, id, this);
}
// Update the component ID.
this.id_ = id;
};
/**
* Gets the component's element.
* @return {Element} The element for the component.
*/
goog.ui.Component.prototype.getElement = function() {
return this.element_;
};
/**
* Gets the component's element. This differs from getElement in that
* it assumes that the element exists (i.e. the component has been
* rendered/decorated) and will cause an assertion error otherwise (if
* assertion is enabled).
* @return {!Element} The element for the component.
*/
goog.ui.Component.prototype.getElementStrict = function() {
var el = this.element_;
goog.asserts.assert(
el, 'Can not call getElementStrict before rendering/decorating.');
return el;
};
/**
* Sets the component's root element to the given element. Considered
* protected and final.
*
* This should generally only be called during createDom. Setting the element
* does not actually change which element is rendered, only the element that is
* associated with this UI component.
*
* This should only be used by subclasses and its associated renderers.
*
* @param {Element} element Root element for the component.
*/
goog.ui.Component.prototype.setElementInternal = function(element) {
this.element_ = element;
};
/**
* Returns an array of all the elements in this component's DOM with the
* provided className.
* @param {string} className The name of the class to look for.
* @return {!IArrayLike<!Element>} The items found with the class name provided.
*/
goog.ui.Component.prototype.getElementsByClass = function(className) {
return this.element_ ?
this.dom_.getElementsByClass(className, this.element_) :
[];
};
/**
* Returns the first element in this component's DOM with the provided
* className.
* @param {string} className The name of the class to look for.
* @return {Element} The first item with the class name provided.
*/
goog.ui.Component.prototype.getElementByClass = function(className) {
return this.element_ ? this.dom_.getElementByClass(className, this.element_) :
null;
};
/**
* Similar to {@code getElementByClass} except that it expects the
* element to be present in the dom thus returning a required value. Otherwise,
* will assert.
* @param {string} className The name of the class to look for.
* @return {!Element} The first item with the class name provided.
*/
goog.ui.Component.prototype.getRequiredElementByClass = function(className) {
var el = this.getElementByClass(className);
goog.asserts.assert(
el, 'Expected element in component with class: %s', className);
return el;
};
/**
* Returns the event handler for this component, lazily created the first time
* this method is called.
* @return {!goog.events.EventHandler<T>} Event handler for this component.
* @protected
* @this {T}
* @template T
*/
goog.ui.Component.prototype.getHandler = function() {
// TODO(user): templated "this" values currently result in "this" being
// "unknown" in the body of the function.
var self = /** @type {goog.ui.Component} */ (this);
if (!self.googUiComponentHandler_) {
self.googUiComponentHandler_ = new goog.events.EventHandler(self);
}
return self.googUiComponentHandler_;
};
/**
* Sets the parent of this component to use for event bubbling. Throws an error
* if the component already has a parent or if an attempt is made to add a
* component to itself as a child. Callers must use {@code removeChild}
* or {@code removeChildAt} to remove components from their containers before
* calling this method.
* @see goog.ui.Component#removeChild
* @see goog.ui.Component#removeChildAt
* @param {goog.ui.Component} parent The parent component.
*/
goog.ui.Component.prototype.setParent = function(parent) {
if (this == parent) {
// Attempting to add a child to itself is an error.
throw new Error(goog.ui.Component.Error.PARENT_UNABLE_TO_BE_SET);
}
if (parent && this.parent_ && this.id_ && this.parent_.getChild(this.id_) &&
this.parent_ != parent) {
// This component is already the child of some parent, so it should be
// removed using removeChild/removeChildAt first.
throw new Error(goog.ui.Component.Error.PARENT_UNABLE_TO_BE_SET);
}
this.parent_ = parent;
goog.ui.Component.superClass_.setParentEventTarget.call(this, parent);
};
/**
* Returns the component's parent, if any.
* @return {goog.ui.Component?} The parent component.
*/
goog.ui.Component.prototype.getParent = function() {
return this.parent_;
};
/**
* Overrides {@link goog.events.EventTarget#setParentEventTarget} to throw an
* error if the parent component is set, and the argument is not the parent.
* @override
*/
goog.ui.Component.prototype.setParentEventTarget = function(parent) {
if (this.parent_ && this.parent_ != parent) {
throw new Error(goog.ui.Component.Error.NOT_SUPPORTED);
}
goog.ui.Component.superClass_.setParentEventTarget.call(this, parent);
};
/**
* Returns the dom helper that is being used on this component.
* @return {!goog.dom.DomHelper} The dom helper used on this component.
*/
goog.ui.Component.prototype.getDomHelper = function() {
return this.dom_;
};
/**
* Determines whether the component has been added to the document.
* @return {boolean} TRUE if rendered. Otherwise, FALSE.
*/
goog.ui.Component.prototype.isInDocument = function() {
return this.inDocument_;
};
/**
* Creates the initial DOM representation for the component. The default
* implementation is to set this.element_ = div.
*/
goog.ui.Component.prototype.createDom = function() {
this.element_ = this.dom_.createElement(goog.dom.TagName.DIV);
};
/**
* Renders the component. If a parent element is supplied, the component's
* element will be appended to it. If there is no optional parent element and
* the element doesn't have a parentNode then it will be appended to the
* document body.
*
* If this component has a parent component, and the parent component is
* not in the document already, then this will not call {@code enterDocument}
* on this component.
*
* Throws an Error if the component is already rendered.
*
* @param {Element=} opt_parentElement Optional parent element to render the
* component into.
*/
goog.ui.Component.prototype.render = function(opt_parentElement) {
this.render_(opt_parentElement);
};
/**
* Renders the component before another element. The other element should be in
* the document already.
*
* Throws an Error if the component is already rendered.
*
* @param {Node} sibling Node to render the component before.
*/
goog.ui.Component.prototype.renderBefore = function(sibling) {
this.render_(/** @type {Element} */ (sibling.parentNode), sibling);
};
/**
* Renders the component. If a parent element is supplied, the component's
* element will be appended to it. If there is no optional parent element and
* the element doesn't have a parentNode then it will be appended to the
* document body.
*
* If this component has a parent component, and the parent component is
* not in the document already, then this will not call {@code enterDocument}
* on this component.
*
* Throws an Error if the component is already rendered.
*
* @param {Element=} opt_parentElement Optional parent element to render the
* component into.
* @param {Node=} opt_beforeNode Node before which the component is to
* be rendered. If left out the node is appended to the parent element.
* @private
*/
goog.ui.Component.prototype.render_ = function(
opt_parentElement, opt_beforeNode) {
if (this.inDocument_) {
throw new Error(goog.ui.Component.Error.ALREADY_RENDERED);
}
if (!this.element_) {
this.createDom();
}
if (opt_parentElement) {
opt_parentElement.insertBefore(this.element_, opt_beforeNode || null);
} else {
this.dom_.getDocument().body.appendChild(this.element_);
}
// If this component has a parent component that isn't in the document yet,
// we don't call enterDocument() here. Instead, when the parent component
// enters the document, the enterDocument() call will propagate to its
// children, including this one. If the component doesn't have a parent
// or if the parent is already in the document, we call enterDocument().
if (!this.parent_ || this.parent_.isInDocument()) {
this.enterDocument();
}
};
/**
* Decorates the element for the UI component. If the element is in the
* document, the enterDocument method will be called.
*
* If goog.ui.Component.ALLOW_DETACHED_DECORATION is false, the caller must
* pass an element that is in the document.
*
* @param {Element} element Element to decorate.
*/
goog.ui.Component.prototype.decorate = function(element) {
if (this.inDocument_) {
throw new Error(goog.ui.Component.Error.ALREADY_RENDERED);
} else if (element && this.canDecorate(element)) {
this.wasDecorated_ = true;
// Set the DOM helper of the component to match the decorated element.
var doc = goog.dom.getOwnerDocument(element);
if (!this.dom_ || this.dom_.getDocument() != doc) {
this.dom_ = goog.dom.getDomHelper(element);
}
// Call specific component decorate logic.
this.decorateInternal(element);
// If supporting detached decoration, check that element is in doc.
if (!goog.ui.Component.ALLOW_DETACHED_DECORATION ||
goog.dom.contains(doc, element)) {
this.enterDocument();
}
} else {
throw new Error(goog.ui.Component.Error.DECORATE_INVALID);
}
};
/**
* Determines if a given element can be decorated by this type of component.
* This method should be overridden by inheriting objects.
* @param {Element} element Element to decorate.
* @return {boolean} True if the element can be decorated, false otherwise.
*/
goog.ui.Component.prototype.canDecorate = function(element) {
return true;
};
/**
* @return {boolean} Whether the component was decorated.
*/
goog.ui.Component.prototype.wasDecorated = function() {
return this.wasDecorated_;
};
/**
* Actually decorates the element. Should be overridden by inheriting objects.
* This method can assume there are checks to ensure the component has not
* already been rendered have occurred and that enter document will be called
* afterwards. This method is considered protected.
* @param {Element} element Element to decorate.
* @protected
*/
goog.ui.Component.prototype.decorateInternal = function(element) {
this.element_ = element;
};
/**
* Called when the component's element is known to be in the document. Anything
* using document.getElementById etc. should be done at this stage.
*
* If the component contains child components, this call is propagated to its
* children.
*/
goog.ui.Component.prototype.enterDocument = function() {
this.inDocument_ = true;
// Propagate enterDocument to child components that have a DOM, if any.
// If a child was decorated before entering the document (permitted when
// goog.ui.Component.ALLOW_DETACHED_DECORATION is true), its enterDocument
// will be called here.
this.forEachChild(function(child) {
if (!child.isInDocument() && child.getElement()) {
child.enterDocument();
}
});
};
/**
* Called by dispose to clean up the elements and listeners created by a
* component, or by a parent component/application who has removed the
* component from the document but wants to reuse it later.
*
* If the component contains child components, this call is propagated to its
* children.
*
* It should be possible for the component to be rendered again once this method
* has been called.
*/
goog.ui.Component.prototype.exitDocument = function() {
// Propagate exitDocument to child components that have been rendered, if any.
this.forEachChild(function(child) {
if (child.isInDocument()) {
child.exitDocument();
}
});
if (this.googUiComponentHandler_) {
this.googUiComponentHandler_.removeAll();
}
this.inDocument_ = false;
};
/**
* Disposes of the component. Calls {@code exitDocument}, which is expected to
* remove event handlers and clean up the component. Propagates the call to
* the component's children, if any. Removes the component's DOM from the
* document unless it was decorated.
* @override
* @protected
*/
goog.ui.Component.prototype.disposeInternal = function() {
if (this.inDocument_) {
this.exitDocument();
}
if (this.googUiComponentHandler_) {
this.googUiComponentHandler_.dispose();
delete this.googUiComponentHandler_;
}
// Disposes of the component's children, if any.
this.forEachChild(function(child) { child.dispose(); });
// Detach the component's element from the DOM, unless it was decorated.
if (!this.wasDecorated_ && this.element_) {
goog.dom.removeNode(this.element_);
}
this.children_ = null;
this.childIndex_ = null;
this.element_ = null;
this.model_ = null;
this.parent_ = null;
goog.ui.Component.superClass_.disposeInternal.call(this);
};
/**
* Helper function for subclasses that gets a unique id for a given fragment,
* this can be used by components to generate unique string ids for DOM
* elements.
* @param {string} idFragment A partial id.
* @return {string} Unique element id.
*/
goog.ui.Component.prototype.makeId = function(idFragment) {
return this.getId() + '.' + idFragment;
};
/**
* Makes a collection of ids. This is a convenience method for makeId. The
* object's values are the id fragments and the new values are the generated
* ids. The key will remain the same.
* @param {Object} object The object that will be used to create the ids.
* @return {!Object<string, string>} An object of id keys to generated ids.
*/
goog.ui.Component.prototype.makeIds = function(object) {
var ids = {};
for (var key in object) {
ids[key] = this.makeId(object[key]);
}
return ids;
};
/**
* Returns the model associated with the UI component.
* @return {*} The model.
*/
goog.ui.Component.prototype.getModel = function() {
return this.model_;
};
/**
* Sets the model associated with the UI component.
* @param {*} obj The model.
*/
goog.ui.Component.prototype.setModel = function(obj) {
this.model_ = obj;
};
/**
* Helper function for returning the fragment portion of an id generated using
* makeId().
* @param {string} id Id generated with makeId().
* @return {string} Fragment.
*/
goog.ui.Component.prototype.getFragmentFromId = function(id) {
return id.substring(this.getId().length + 1);
};
/**
* Helper function for returning an element in the document with a unique id
* generated using makeId().
* @param {string} idFragment The partial id.
* @return {Element} The element with the unique id, or null if it cannot be
* found.
*/
goog.ui.Component.prototype.getElementByFragment = function(idFragment) {
if (!this.inDocument_) {
throw new Error(goog.ui.Component.Error.NOT_IN_DOCUMENT);
}
return this.dom_.getElement(this.makeId(idFragment));
};
/**
* Adds the specified component as the last child of this component. See
* {@link goog.ui.Component#addChildAt} for detailed semantics.
*
* @see goog.ui.Component#addChildAt
* @param {goog.ui.Component} child The new child component.
* @param {boolean=} opt_render If true, the child component will be rendered
* into the parent.
*/
goog.ui.Component.prototype.addChild = function(child, opt_render) {
// TODO(gboyer): addChildAt(child, this.getChildCount(), false) will
// reposition any already-rendered child to the end. Instead, perhaps
// addChild(child, false) should never reposition the child; instead, clients
// that need the repositioning will use addChildAt explicitly. Right now,
// clients can get around this by calling addChild before calling decorate.
this.addChildAt(child, this.getChildCount(), opt_render);
};
/**
* Adds the specified component as a child of this component at the given
* 0-based index.
*
* Both {@code addChild} and {@code addChildAt} assume the following contract
* between parent and child components:
* <ul>
* <li>the child component's element must be a descendant of the parent
* component's element, and
* <li>the DOM state of the child component must be consistent with the DOM
* state of the parent component (see {@code isInDocument}) in the
* steady state -- the exception is to addChildAt(child, i, false) and
* then immediately decorate/render the child.
* </ul>
*
* In particular, {@code parent.addChild(child)} will throw an error if the
* child component is already in the document, but the parent isn't.
*
* Clients of this API may call {@code addChild} and {@code addChildAt} with
* {@code opt_render} set to true. If {@code opt_render} is true, calling these
* methods will automatically render the child component's element into the
* parent component's element. If the parent does not yet have an element, then
* {@code createDom} will automatically be invoked on the parent before
* rendering the child.
*
* Invoking {@code parent.addChild(child, true)} will throw an error if the
* child component is already in the document, regardless of the parent's DOM
* state.
*
* If {@code opt_render} is true and the parent component is not already
* in the document, {@code enterDocument} will not be called on this component
* at this point.
*
* Finally, this method also throws an error if the new child already has a
* different parent, or the given index is out of bounds.
*
* @see goog.ui.Component#addChild
* @param {goog.ui.Component} child The new child component.
* @param {number} index 0-based index at which the new child component is to be
* added; must be between 0 and the current child count (inclusive).
* @param {boolean=} opt_render If true, the child component will be rendered
* into the parent.
* @return {void} Nada.
*/
goog.ui.Component.prototype.addChildAt = function(child, index, opt_render) {
goog.asserts.assert(!!child, 'Provided element must not be null.');
if (child.inDocument_ && (opt_render || !this.inDocument_)) {
// Adding a child that's already in the document is an error, except if the
// parent is also in the document and opt_render is false (e.g. decorate()).
throw new Error(goog.ui.Component.Error.ALREADY_RENDERED);
}
if (index < 0 || index > this.getChildCount()) {
// Allowing sparse child arrays would lead to strange behavior, so we don't.
throw new Error(goog.ui.Component.Error.CHILD_INDEX_OUT_OF_BOUNDS);
}
// Create the index and the child array on first use.
if (!this.childIndex_ || !this.children_) {
this.childIndex_ = {};
this.children_ = [];
}
// Moving child within component, remove old reference.
if (child.getParent() == this) {
goog.object.set(this.childIndex_, child.getId(), child);
goog.array.remove(this.children_, child);
// Add the child to this component. goog.object.add() throws an error if
// a child with the same ID already exists.
} else {
goog.object.add(this.childIndex_, child.getId(), child);
}
// Set the parent of the child to this component. This throws an error if
// the child is already contained by another component.
child.setParent(this);
goog.array.insertAt(this.children_, child, index);
if (child.inDocument_ && this.inDocument_ && child.getParent() == this) {
// Changing the position of an existing child, move the DOM node (if
// necessary).
var contentElement = this.getContentElement();
var insertBeforeElement = contentElement.childNodes[index] || null;
if (insertBeforeElement != child.getElement()) {
contentElement.insertBefore(child.getElement(), insertBeforeElement);
}
} else if (opt_render) {
// If this (parent) component doesn't have a DOM yet, call createDom now
// to make sure we render the child component's element into the correct
// parent element (otherwise render_ with a null first argument would
// render the child into the document body, which is almost certainly not
// what we want).
if (!this.element_) {
this.createDom();
}
// Render the child into the parent at the appropriate location. Note that
// getChildAt(index + 1) returns undefined if inserting at the end.
// TODO(attila): We should have a renderer with a renderChildAt API.
var sibling = this.getChildAt(index + 1);
// render_() calls enterDocument() if the parent is already in the document.
child.render_(this.getContentElement(), sibling ? sibling.element_ : null);
} else if (
this.inDocument_ && !child.inDocument_ && child.element_ &&
child.element_.parentNode &&
// Under some circumstances, IE8 implicitly creates a Document Fragment
// for detached nodes, so ensure the parent is an Element as it should be.
child.element_.parentNode.nodeType == goog.dom.NodeType.ELEMENT) {
// We don't touch the DOM, but if the parent is in the document, and the
// child element is in the document but not marked as such, then we call
// enterDocument on the child.
// TODO(gboyer): It would be nice to move this condition entirely, but
// there's a large risk of breaking existing applications that manually
// append the child to the DOM and then call addChild.
child.enterDocument();
}
};
/**
* Returns the DOM element into which child components are to be rendered,
* or null if the component itself hasn't been rendered yet. This default
* implementation returns the component's root element. Subclasses with
* complex DOM structures must override this method.
* @return {Element} Element to contain child elements (null if none).
*/
goog.ui.Component.prototype.getContentElement = function() {
return this.element_;
};
/**
* Returns true if the component is rendered right-to-left, false otherwise.
* The first time this function is invoked, the right-to-left rendering property
* is set if it has not been already.
* @return {boolean} Whether the control is rendered right-to-left.
*/
goog.ui.Component.prototype.isRightToLeft = function() {
if (this.rightToLeft_ == null) {
this.rightToLeft_ = goog.style.isRightToLeft(
this.inDocument_ ? this.element_ : this.dom_.getDocument().body);
}
return this.rightToLeft_;
};
/**
* Set is right-to-left. This function should be used if the component needs
* to know the rendering direction during dom creation (i.e. before
* {@link #enterDocument} is called and is right-to-left is set).
* @param {boolean} rightToLeft Whether the component is rendered
* right-to-left.
*/
goog.ui.Component.prototype.setRightToLeft = function(rightToLeft) {
if (this.inDocument_) {
throw new Error(goog.ui.Component.Error.ALREADY_RENDERED);
}
this.rightToLeft_ = rightToLeft;
};
/**
* Returns true if the component has children.
* @return {boolean} True if the component has children.
*/
goog.ui.Component.prototype.hasChildren = function() {
return !!this.children_ && this.children_.length != 0;
};
/**
* Returns the number of children of this component.
* @return {number} The number of children.
*/
goog.ui.Component.prototype.getChildCount = function() {
return this.children_ ? this.children_.length : 0;
};
/**
* Returns an array containing the IDs of the children of this component, or an
* empty array if the component has no children.
* @return {!Array<string>} Child component IDs.
*/
goog.ui.Component.prototype.getChildIds = function() {
var ids = [];
// We don't use goog.object.getKeys(this.childIndex_) because we want to
// return the IDs in the correct order as determined by this.children_.
this.forEachChild(function(child) {
// addChild()/addChildAt() guarantee that the child array isn't sparse.
ids.push(child.getId());
});
return ids;
};
/**
* Returns the child with the given ID, or null if no such child exists.
* @param {string} id Child component ID.
* @return {goog.ui.Component?} The child with the given ID; null if none.
*/
goog.ui.Component.prototype.getChild = function(id) {
// Use childIndex_ for O(1) access by ID.
return (this.childIndex_ && id) ?
/** @type {goog.ui.Component} */ (
goog.object.get(this.childIndex_, id)) ||
null :
null;
};
/**
* Returns the child at the given index, or null if the index is out of bounds.
* @param {number} index 0-based index.
* @return {goog.ui.Component?} The child at the given index; null if none.
*/
goog.ui.Component.prototype.getChildAt = function(index) {
// Use children_ for access by index.
return this.children_ ? this.children_[index] || null : null;
};
/**
* Calls the given function on each of this component's children in order. If
* {@code opt_obj} is provided, it will be used as the 'this' object in the
* function when called. The function should take two arguments: the child
* component and its 0-based index. The return value is ignored.
* @param {function(this:T,?,number):?} f The function to call for every
* child component; should take 2 arguments (the child and its index).
* @param {T=} opt_obj Used as the 'this' object in f when called.
* @template T
*/
goog.ui.Component.prototype.forEachChild = function(f, opt_obj) {
if (this.children_) {
goog.array.forEach(this.children_, f, opt_obj);
}
};
/**
* Returns the 0-based index of the given child component, or -1 if no such
* child is found.
* @param {goog.ui.Component?} child The child component.
* @return {number} 0-based index of the child component; -1 if not found.
*/
goog.ui.Component.prototype.indexOfChild = function(child) {
return (this.children_ && child) ? goog.array.indexOf(this.children_, child) :
-1;
};
/**
* Removes the given child from this component, and returns it. Throws an error
* if the argument is invalid or if the specified child isn't found in the
* parent component. The argument can either be a string (interpreted as the
* ID of the child component to remove) or the child component itself.
*
* If {@code opt_unrender} is true, calls {@link goog.ui.component#exitDocument}
* on the removed child, and subsequently detaches the child's DOM from the
* document. Otherwise it is the caller's responsibility to clean up the child
* component's DOM.
*
* @see goog.ui.Component#removeChildAt
* @param {string|goog.ui.Component|null} child The ID of the child to remove,
* or the child component itself.
* @param {boolean=} opt_unrender If true, calls {@code exitDocument} on the
* removed child component, and detaches its DOM from the document.
* @return {goog.ui.Component} The removed component, if any.
*/
goog.ui.Component.prototype.removeChild = function(child, opt_unrender) {
if (child) {
// Normalize child to be the object and id to be the ID string. This also
// ensures that the child is really ours.
var id = goog.isString(child) ? child : child.getId();
child = this.getChild(id);
if (id && child) {
goog.object.remove(this.childIndex_, id);
goog.array.remove(this.children_, child);
if (opt_unrender) {
// Remove the child component's DOM from the document. We have to call
// exitDocument first (see documentation).
child.exitDocument();
if (child.element_) {
goog.dom.removeNode(child.element_);
}
}
// Child's parent must be set to null after exitDocument is called
// so that the child can unlisten to its parent if required.
child.setParent(null);
}
}
if (!child) {
throw new Error(goog.ui.Component.Error.NOT_OUR_CHILD);
}
return /** @type {!goog.ui.Component} */ (child);
};
/**
* Removes the child at the given index from this component, and returns it.
* Throws an error if the argument is out of bounds, or if the specified child
* isn't found in the parent. See {@link goog.ui.Component#removeChild} for
* detailed semantics.
*
* @see goog.ui.Component#removeChild
* @param {number} index 0-based index of the child to remove.
* @param {boolean=} opt_unrender If true, calls {@code exitDocument} on the
* removed child component, and detaches its DOM from the document.
* @return {goog.ui.Component} The removed component, if any.
*/
goog.ui.Component.prototype.removeChildAt = function(index, opt_unrender) {
// removeChild(null) will throw error.
return this.removeChild(this.getChildAt(index), opt_unrender);
};
/**
* Removes every child component attached to this one and returns them.
*
* @see goog.ui.Component#removeChild
* @param {boolean=} opt_unrender If true, calls {@link #exitDocument} on the
* removed child components, and detaches their DOM from the document.
* @return {!Array<goog.ui.Component>} The removed components if any.
*/
goog.ui.Component.prototype.removeChildren = function(opt_unrender) {
var removedChildren = [];
while (this.hasChildren()) {
removedChildren.push(this.removeChildAt(0, opt_unrender));
}
return removedChildren;
};
|