UNPKG

@angular/material

Version:
1,346 lines (1,337 loc) 106 kB
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ import { Directive, ElementRef, Inject, InjectionToken, NgZone, Optional, TemplateRef, ChangeDetectionStrategy, Component, ContentChild, Input, ViewChild, ViewContainerRef, ViewEncapsulation, ChangeDetectorRef, Output, EventEmitter, ComponentFactoryResolver, forwardRef, ContentChildren, Attribute, NgModule } from '@angular/core'; import { ANIMATION_MODULE_TYPE } from '@angular/platform-browser/animations'; import { __extends } from 'tslib'; import { CdkPortal, TemplatePortal, CdkPortalOutlet, PortalHostDirective, PortalModule } from '@angular/cdk/portal'; import { mixinDisabled, mixinColor, mixinDisableRipple, MAT_RIPPLE_GLOBAL_OPTIONS, mixinTabIndex, RippleRenderer, MatCommonModule, MatRippleModule } from '@angular/material/core'; import { Subject, Subscription, merge, of, timer, fromEvent } from 'rxjs'; import { animate, state, style, transition, trigger } from '@angular/animations'; import { Directionality } from '@angular/cdk/bidi'; import { startWith, distinctUntilChanged, takeUntil } from 'rxjs/operators'; import { coerceNumberProperty, coerceBooleanProperty } from '@angular/cdk/coercion'; import { ViewportRuler } from '@angular/cdk/scrolling'; import { FocusKeyManager, FocusMonitor, A11yModule } from '@angular/cdk/a11y'; import { END, ENTER, HOME, SPACE, hasModifierKey } from '@angular/cdk/keycodes'; import { Platform, normalizePassiveListenerOptions } from '@angular/cdk/platform'; import { ObserversModule } from '@angular/cdk/observers'; import { CommonModule } from '@angular/common'; /** * @fileoverview added by tsickle * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc */ /** * Injection token for the MatInkBar's Positioner. * @type {?} */ var _MAT_INK_BAR_POSITIONER = new InjectionToken('MatInkBarPositioner', { providedIn: 'root', factory: _MAT_INK_BAR_POSITIONER_FACTORY }); /** * The default positioner function for the MatInkBar. * \@docs-private * @return {?} */ function _MAT_INK_BAR_POSITIONER_FACTORY() { /** @type {?} */ var method = (/** * @param {?} element * @return {?} */ function (element) { return ({ left: element ? (element.offsetLeft || 0) + 'px' : '0', width: element ? (element.offsetWidth || 0) + 'px' : '0', }); }); return method; } /** * The ink-bar is used to display and animate the line underneath the current active tab label. * \@docs-private */ var MatInkBar = /** @class */ (function () { function MatInkBar(_elementRef, _ngZone, _inkBarPositioner, _animationMode) { this._elementRef = _elementRef; this._ngZone = _ngZone; this._inkBarPositioner = _inkBarPositioner; this._animationMode = _animationMode; } /** * Calculates the styles from the provided element in order to align the ink-bar to that element. * Shows the ink bar if previously set as hidden. * @param element */ /** * Calculates the styles from the provided element in order to align the ink-bar to that element. * Shows the ink bar if previously set as hidden. * @param {?} element * @return {?} */ MatInkBar.prototype.alignToElement = /** * Calculates the styles from the provided element in order to align the ink-bar to that element. * Shows the ink bar if previously set as hidden. * @param {?} element * @return {?} */ function (element) { var _this = this; this.show(); if (typeof requestAnimationFrame !== 'undefined') { this._ngZone.runOutsideAngular((/** * @return {?} */ function () { requestAnimationFrame((/** * @return {?} */ function () { return _this._setStyles(element); })); })); } else { this._setStyles(element); } }; /** Shows the ink bar. */ /** * Shows the ink bar. * @return {?} */ MatInkBar.prototype.show = /** * Shows the ink bar. * @return {?} */ function () { this._elementRef.nativeElement.style.visibility = 'visible'; }; /** Hides the ink bar. */ /** * Hides the ink bar. * @return {?} */ MatInkBar.prototype.hide = /** * Hides the ink bar. * @return {?} */ function () { this._elementRef.nativeElement.style.visibility = 'hidden'; }; /** * Sets the proper styles to the ink bar element. * @param element */ /** * Sets the proper styles to the ink bar element. * @private * @param {?} element * @return {?} */ MatInkBar.prototype._setStyles = /** * Sets the proper styles to the ink bar element. * @private * @param {?} element * @return {?} */ function (element) { /** @type {?} */ var positions = this._inkBarPositioner(element); /** @type {?} */ var inkBar = this._elementRef.nativeElement; inkBar.style.left = positions.left; inkBar.style.width = positions.width; }; MatInkBar.decorators = [ { type: Directive, args: [{ selector: 'mat-ink-bar', host: { 'class': 'mat-ink-bar', '[class._mat-animation-noopable]': "_animationMode === 'NoopAnimations'", }, },] }, ]; /** @nocollapse */ MatInkBar.ctorParameters = function () { return [ { type: ElementRef }, { type: NgZone }, { type: undefined, decorators: [{ type: Inject, args: [_MAT_INK_BAR_POSITIONER,] }] }, { type: String, decorators: [{ type: Optional }, { type: Inject, args: [ANIMATION_MODULE_TYPE,] }] } ]; }; return MatInkBar; }()); /** * @fileoverview added by tsickle * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc */ /** * Decorates the `ng-template` tags and reads out the template from it. */ var MatTabContent = /** @class */ (function () { function MatTabContent(template) { this.template = template; } MatTabContent.decorators = [ { type: Directive, args: [{ selector: '[matTabContent]' },] }, ]; /** @nocollapse */ MatTabContent.ctorParameters = function () { return [ { type: TemplateRef } ]; }; return MatTabContent; }()); /** * @fileoverview added by tsickle * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc */ /** * Used to flag tab labels for use with the portal directive */ var MatTabLabel = /** @class */ (function (_super) { __extends(MatTabLabel, _super); function MatTabLabel() { return _super !== null && _super.apply(this, arguments) || this; } MatTabLabel.decorators = [ { type: Directive, args: [{ selector: '[mat-tab-label], [matTabLabel]', },] }, ]; return MatTabLabel; }(CdkPortal)); /** * @fileoverview added by tsickle * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc */ // Boilerplate for applying mixins to MatTab. /** * \@docs-private */ var // Boilerplate for applying mixins to MatTab. /** * \@docs-private */ MatTabBase = /** @class */ (function () { function MatTabBase() { } return MatTabBase; }()); /** @type {?} */ var _MatTabMixinBase = mixinDisabled(MatTabBase); var MatTab = /** @class */ (function (_super) { __extends(MatTab, _super); function MatTab(_viewContainerRef) { var _this = _super.call(this) || this; _this._viewContainerRef = _viewContainerRef; /** * Plain text label for the tab, used when there is no template label. */ _this.textLabel = ''; /** * Portal that will be the hosted content of the tab */ _this._contentPortal = null; /** * Emits whenever the internal state of the tab changes. */ _this._stateChanges = new Subject(); /** * The relatively indexed position where 0 represents the center, negative is left, and positive * represents the right. */ _this.position = null; /** * The initial relatively index origin of the tab if it was created and selected after there * was already a selected tab. Provides context of what position the tab should originate from. */ _this.origin = null; /** * Whether the tab is currently active. */ _this.isActive = false; return _this; } Object.defineProperty(MatTab.prototype, "content", { /** @docs-private */ get: /** * \@docs-private * @return {?} */ function () { return this._contentPortal; }, enumerable: true, configurable: true }); /** * @param {?} changes * @return {?} */ MatTab.prototype.ngOnChanges = /** * @param {?} changes * @return {?} */ function (changes) { if (changes.hasOwnProperty('textLabel') || changes.hasOwnProperty('disabled')) { this._stateChanges.next(); } }; /** * @return {?} */ MatTab.prototype.ngOnDestroy = /** * @return {?} */ function () { this._stateChanges.complete(); }; /** * @return {?} */ MatTab.prototype.ngOnInit = /** * @return {?} */ function () { this._contentPortal = new TemplatePortal(this._explicitContent || this._implicitContent, this._viewContainerRef); }; MatTab.decorators = [ { type: Component, args: [{selector: 'mat-tab', template: "<ng-template><ng-content></ng-content></ng-template>", inputs: ['disabled'], changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, exportAs: 'matTab', },] }, ]; /** @nocollapse */ MatTab.ctorParameters = function () { return [ { type: ViewContainerRef } ]; }; MatTab.propDecorators = { templateLabel: [{ type: ContentChild, args: [MatTabLabel, { static: false },] }], _explicitContent: [{ type: ContentChild, args: [MatTabContent, { read: TemplateRef, static: true },] }], _implicitContent: [{ type: ViewChild, args: [TemplateRef, { static: true },] }], textLabel: [{ type: Input, args: ['label',] }], ariaLabel: [{ type: Input, args: ['aria-label',] }], ariaLabelledby: [{ type: Input, args: ['aria-labelledby',] }] }; return MatTab; }(_MatTabMixinBase)); /** * @fileoverview added by tsickle * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc */ /** * Animations used by the Material tabs. * \@docs-private * @type {?} */ var matTabsAnimations = { /** * Animation translates a tab along the X axis. */ translateTab: trigger('translateTab', [ // Note: transitions to `none` instead of 0, because some browsers might blur the content. state('center, void, left-origin-center, right-origin-center', style({ transform: 'none' })), // If the tab is either on the left or right, we additionally add a `min-height` of 1px // in order to ensure that the element has a height before its state changes. This is // necessary because Chrome does seem to skip the transition in RTL mode if the element does // not have a static height and is not rendered. See related issue: #9465 state('left', style({ transform: 'translate3d(-100%, 0, 0)', minHeight: '1px' })), state('right', style({ transform: 'translate3d(100%, 0, 0)', minHeight: '1px' })), transition('* => left, * => right, left => center, right => center', animate('{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)')), transition('void => left-origin-center', [ style({ transform: 'translate3d(-100%, 0, 0)' }), animate('{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)') ]), transition('void => right-origin-center', [ style({ transform: 'translate3d(100%, 0, 0)' }), animate('{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)') ]) ]) }; /** * @fileoverview added by tsickle * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc */ /** * The portal host directive for the contents of the tab. * \@docs-private */ var MatTabBodyPortal = /** @class */ (function (_super) { __extends(MatTabBodyPortal, _super); function MatTabBodyPortal(componentFactoryResolver, viewContainerRef, _host) { var _this = _super.call(this, componentFactoryResolver, viewContainerRef) || this; _this._host = _host; /** * Subscription to events for when the tab body begins centering. */ _this._centeringSub = Subscription.EMPTY; /** * Subscription to events for when the tab body finishes leaving from center position. */ _this._leavingSub = Subscription.EMPTY; return _this; } /** Set initial visibility or set up subscription for changing visibility. */ /** * Set initial visibility or set up subscription for changing visibility. * @return {?} */ MatTabBodyPortal.prototype.ngOnInit = /** * Set initial visibility or set up subscription for changing visibility. * @return {?} */ function () { var _this = this; _super.prototype.ngOnInit.call(this); this._centeringSub = this._host._beforeCentering .pipe(startWith(this._host._isCenterPosition(this._host._position))) .subscribe((/** * @param {?} isCentering * @return {?} */ function (isCentering) { if (isCentering && !_this.hasAttached()) { _this.attach(_this._host._content); } })); this._leavingSub = this._host._afterLeavingCenter.subscribe((/** * @return {?} */ function () { _this.detach(); })); }; /** Clean up centering subscription. */ /** * Clean up centering subscription. * @return {?} */ MatTabBodyPortal.prototype.ngOnDestroy = /** * Clean up centering subscription. * @return {?} */ function () { _super.prototype.ngOnDestroy.call(this); this._centeringSub.unsubscribe(); this._leavingSub.unsubscribe(); }; MatTabBodyPortal.decorators = [ { type: Directive, args: [{ selector: '[matTabBodyHost]' },] }, ]; /** @nocollapse */ MatTabBodyPortal.ctorParameters = function () { return [ { type: ComponentFactoryResolver }, { type: ViewContainerRef }, { type: MatTabBody, decorators: [{ type: Inject, args: [forwardRef((/** * @return {?} */ function () { return MatTabBody; })),] }] } ]; }; return MatTabBodyPortal; }(CdkPortalOutlet)); /** * Wrapper for the contents of a tab. * \@docs-private */ var MatTabBody = /** @class */ (function () { function MatTabBody(_elementRef, _dir, changeDetectorRef) { var _this = this; this._elementRef = _elementRef; this._dir = _dir; /** * Subscription to the directionality change observable. */ this._dirChangeSubscription = Subscription.EMPTY; /** * Emits when an animation on the tab is complete. */ this._translateTabComplete = new Subject(); /** * Event emitted when the tab begins to animate towards the center as the active tab. */ this._onCentering = new EventEmitter(); /** * Event emitted before the centering of the tab begins. */ this._beforeCentering = new EventEmitter(); /** * Event emitted before the centering of the tab begins. */ this._afterLeavingCenter = new EventEmitter(); /** * Event emitted when the tab completes its animation towards the center. */ this._onCentered = new EventEmitter(true); // Note that the default value will always be overwritten by `MatTabBody`, but we need one // anyway to prevent the animations module from throwing an error if the body is used on its own. /** * Duration for the tab's animation. */ this.animationDuration = '500ms'; if (_dir) { this._dirChangeSubscription = _dir.change.subscribe((/** * @param {?} dir * @return {?} */ function (dir) { _this._computePositionAnimationState(dir); changeDetectorRef.markForCheck(); })); } // Ensure that we get unique animation events, because the `.done` callback can get // invoked twice in some browsers. See https://github.com/angular/angular/issues/24084. this._translateTabComplete.pipe(distinctUntilChanged((/** * @param {?} x * @param {?} y * @return {?} */ function (x, y) { return x.fromState === y.fromState && x.toState === y.toState; }))).subscribe((/** * @param {?} event * @return {?} */ function (event) { // If the transition to the center is complete, emit an event. if (_this._isCenterPosition(event.toState) && _this._isCenterPosition(_this._position)) { _this._onCentered.emit(); } if (_this._isCenterPosition(event.fromState) && !_this._isCenterPosition(_this._position)) { _this._afterLeavingCenter.emit(); } })); } Object.defineProperty(MatTabBody.prototype, "position", { /** The shifted index position of the tab body, where zero represents the active center tab. */ set: /** * The shifted index position of the tab body, where zero represents the active center tab. * @param {?} position * @return {?} */ function (position) { this._positionIndex = position; this._computePositionAnimationState(); }, enumerable: true, configurable: true }); /** * After initialized, check if the content is centered and has an origin. If so, set the * special position states that transition the tab from the left or right before centering. */ /** * After initialized, check if the content is centered and has an origin. If so, set the * special position states that transition the tab from the left or right before centering. * @return {?} */ MatTabBody.prototype.ngOnInit = /** * After initialized, check if the content is centered and has an origin. If so, set the * special position states that transition the tab from the left or right before centering. * @return {?} */ function () { if (this._position == 'center' && this.origin != null) { this._position = this._computePositionFromOrigin(); } }; /** * @return {?} */ MatTabBody.prototype.ngOnDestroy = /** * @return {?} */ function () { this._dirChangeSubscription.unsubscribe(); this._translateTabComplete.complete(); }; /** * @param {?} event * @return {?} */ MatTabBody.prototype._onTranslateTabStarted = /** * @param {?} event * @return {?} */ function (event) { /** @type {?} */ var isCentering = this._isCenterPosition(event.toState); this._beforeCentering.emit(isCentering); if (isCentering) { this._onCentering.emit(this._elementRef.nativeElement.clientHeight); } }; /** The text direction of the containing app. */ /** * The text direction of the containing app. * @return {?} */ MatTabBody.prototype._getLayoutDirection = /** * The text direction of the containing app. * @return {?} */ function () { return this._dir && this._dir.value === 'rtl' ? 'rtl' : 'ltr'; }; /** Whether the provided position state is considered center, regardless of origin. */ /** * Whether the provided position state is considered center, regardless of origin. * @param {?} position * @return {?} */ MatTabBody.prototype._isCenterPosition = /** * Whether the provided position state is considered center, regardless of origin. * @param {?} position * @return {?} */ function (position) { return position == 'center' || position == 'left-origin-center' || position == 'right-origin-center'; }; /** Computes the position state that will be used for the tab-body animation trigger. */ /** * Computes the position state that will be used for the tab-body animation trigger. * @private * @param {?=} dir * @return {?} */ MatTabBody.prototype._computePositionAnimationState = /** * Computes the position state that will be used for the tab-body animation trigger. * @private * @param {?=} dir * @return {?} */ function (dir) { if (dir === void 0) { dir = this._getLayoutDirection(); } if (this._positionIndex < 0) { this._position = dir == 'ltr' ? 'left' : 'right'; } else if (this._positionIndex > 0) { this._position = dir == 'ltr' ? 'right' : 'left'; } else { this._position = 'center'; } }; /** * Computes the position state based on the specified origin position. This is used if the * tab is becoming visible immediately after creation. */ /** * Computes the position state based on the specified origin position. This is used if the * tab is becoming visible immediately after creation. * @private * @return {?} */ MatTabBody.prototype._computePositionFromOrigin = /** * Computes the position state based on the specified origin position. This is used if the * tab is becoming visible immediately after creation. * @private * @return {?} */ function () { /** @type {?} */ var dir = this._getLayoutDirection(); if ((dir == 'ltr' && this.origin <= 0) || (dir == 'rtl' && this.origin > 0)) { return 'left-origin-center'; } return 'right-origin-center'; }; MatTabBody.decorators = [ { type: Component, args: [{selector: 'mat-tab-body', template: "<div class=\"mat-tab-body-content\" #content [@translateTab]=\"{ value: _position, params: {animationDuration: animationDuration} }\" (@translateTab.start)=\"_onTranslateTabStarted($event)\" (@translateTab.done)=\"_translateTabComplete.next($event)\"><ng-template matTabBodyHost></ng-template></div>", styles: [".mat-tab-body-content{height:100%;overflow:auto}.mat-tab-group-dynamic-height .mat-tab-body-content{overflow:hidden}"], encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, animations: [matTabsAnimations.translateTab], host: { 'class': 'mat-tab-body', }, },] }, ]; /** @nocollapse */ MatTabBody.ctorParameters = function () { return [ { type: ElementRef }, { type: Directionality, decorators: [{ type: Optional }] }, { type: ChangeDetectorRef } ]; }; MatTabBody.propDecorators = { _onCentering: [{ type: Output }], _beforeCentering: [{ type: Output }], _afterLeavingCenter: [{ type: Output }], _onCentered: [{ type: Output }], _portalHost: [{ type: ViewChild, args: [PortalHostDirective, { static: false },] }], _content: [{ type: Input, args: ['content',] }], origin: [{ type: Input }], animationDuration: [{ type: Input }], position: [{ type: Input }] }; return MatTabBody; }()); /** * @fileoverview added by tsickle * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc */ // Boilerplate for applying mixins to MatTabLabelWrapper. /** * \@docs-private */ var // Boilerplate for applying mixins to MatTabLabelWrapper. /** * \@docs-private */ MatTabLabelWrapperBase = /** @class */ (function () { function MatTabLabelWrapperBase() { } return MatTabLabelWrapperBase; }()); /** @type {?} */ var _MatTabLabelWrapperMixinBase = mixinDisabled(MatTabLabelWrapperBase); /** * Used in the `mat-tab-group` view to display tab labels. * \@docs-private */ var MatTabLabelWrapper = /** @class */ (function (_super) { __extends(MatTabLabelWrapper, _super); function MatTabLabelWrapper(elementRef) { var _this = _super.call(this) || this; _this.elementRef = elementRef; return _this; } /** Sets focus on the wrapper element */ /** * Sets focus on the wrapper element * @return {?} */ MatTabLabelWrapper.prototype.focus = /** * Sets focus on the wrapper element * @return {?} */ function () { this.elementRef.nativeElement.focus(); }; /** * @return {?} */ MatTabLabelWrapper.prototype.getOffsetLeft = /** * @return {?} */ function () { return this.elementRef.nativeElement.offsetLeft; }; /** * @return {?} */ MatTabLabelWrapper.prototype.getOffsetWidth = /** * @return {?} */ function () { return this.elementRef.nativeElement.offsetWidth; }; MatTabLabelWrapper.decorators = [ { type: Directive, args: [{ selector: '[matTabLabelWrapper]', inputs: ['disabled'], host: { '[class.mat-tab-disabled]': 'disabled', '[attr.aria-disabled]': '!!disabled', } },] }, ]; /** @nocollapse */ MatTabLabelWrapper.ctorParameters = function () { return [ { type: ElementRef } ]; }; return MatTabLabelWrapper; }(_MatTabLabelWrapperMixinBase)); /** * @fileoverview added by tsickle * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc */ /** * Config used to bind passive event listeners * @type {?} */ var passiveEventListenerOptions = (/** @type {?} */ (normalizePassiveListenerOptions({ passive: true }))); /** * The distance in pixels that will be overshot when scrolling a tab label into view. This helps * provide a small affordance to the label next to it. * @type {?} */ var EXAGGERATED_OVERSCROLL = 60; /** * Amount of milliseconds to wait before starting to scroll the header automatically. * Set a little conservatively in order to handle fake events dispatched on touch devices. * @type {?} */ var HEADER_SCROLL_DELAY = 650; /** * Interval in milliseconds at which to scroll the header * while the user is holding their pointer. * @type {?} */ var HEADER_SCROLL_INTERVAL = 100; /** * Base class for a tab header that supported pagination. * @abstract */ var MatPaginatedTabHeader = /** @class */ (function () { function MatPaginatedTabHeader(_elementRef, _changeDetectorRef, _viewportRuler, _dir, _ngZone, _platform, _animationMode) { var _this = this; this._elementRef = _elementRef; this._changeDetectorRef = _changeDetectorRef; this._viewportRuler = _viewportRuler; this._dir = _dir; this._ngZone = _ngZone; this._platform = _platform; this._animationMode = _animationMode; /** * The distance in pixels that the tab labels should be translated to the left. */ this._scrollDistance = 0; /** * Whether the header should scroll to the selected index after the view has been checked. */ this._selectedIndexChanged = false; /** * Emits when the component is destroyed. */ this._destroyed = new Subject(); /** * Whether the controls for pagination should be displayed */ this._showPaginationControls = false; /** * Whether the tab list can be scrolled more towards the end of the tab label list. */ this._disableScrollAfter = true; /** * Whether the tab list can be scrolled more towards the beginning of the tab label list. */ this._disableScrollBefore = true; /** * Stream that will stop the automated scrolling. */ this._stopScrolling = new Subject(); this._selectedIndex = 0; /** * Event emitted when the option is selected. */ this.selectFocusedIndex = new EventEmitter(); /** * Event emitted when a label is focused. */ this.indexFocused = new EventEmitter(); // Bind the `mouseleave` event on the outside since it doesn't change anything in the view. _ngZone.runOutsideAngular((/** * @return {?} */ function () { fromEvent(_elementRef.nativeElement, 'mouseleave') .pipe(takeUntil(_this._destroyed)) .subscribe((/** * @return {?} */ function () { _this._stopInterval(); })); })); } Object.defineProperty(MatPaginatedTabHeader.prototype, "selectedIndex", { /** The index of the active tab. */ get: /** * The index of the active tab. * @return {?} */ function () { return this._selectedIndex; }, set: /** * @param {?} value * @return {?} */ function (value) { value = coerceNumberProperty(value); if (this._selectedIndex != value) { this._selectedIndexChanged = true; this._selectedIndex = value; if (this._keyManager) { this._keyManager.updateActiveItemIndex(value); } } }, enumerable: true, configurable: true }); /** * @return {?} */ MatPaginatedTabHeader.prototype.ngAfterViewInit = /** * @return {?} */ function () { var _this = this; // We need to handle these events manually, because we want to bind passive event listeners. fromEvent(this._previousPaginator.nativeElement, 'touchstart', passiveEventListenerOptions) .pipe(takeUntil(this._destroyed)) .subscribe((/** * @return {?} */ function () { _this._handlePaginatorPress('before'); })); fromEvent(this._nextPaginator.nativeElement, 'touchstart', passiveEventListenerOptions) .pipe(takeUntil(this._destroyed)) .subscribe((/** * @return {?} */ function () { _this._handlePaginatorPress('after'); })); }; /** * @return {?} */ MatPaginatedTabHeader.prototype.ngAfterContentInit = /** * @return {?} */ function () { var _this = this; /** @type {?} */ var dirChange = this._dir ? this._dir.change : of(null); /** @type {?} */ var resize = this._viewportRuler.change(150); /** @type {?} */ var realign = (/** * @return {?} */ function () { _this.updatePagination(); _this._alignInkBarToSelectedTab(); }); this._keyManager = new FocusKeyManager(this._items) .withHorizontalOrientation(this._getLayoutDirection()) .withWrap(); this._keyManager.updateActiveItem(0); // Defer the first call in order to allow for slower browsers to lay out the elements. // This helps in cases where the user lands directly on a page with paginated tabs. typeof requestAnimationFrame !== 'undefined' ? requestAnimationFrame(realign) : realign(); // On dir change or window resize, realign the ink bar and update the orientation of // the key manager if the direction has changed. merge(dirChange, resize, this._items.changes).pipe(takeUntil(this._destroyed)).subscribe((/** * @return {?} */ function () { realign(); _this._keyManager.withHorizontalOrientation(_this._getLayoutDirection()); })); // If there is a change in the focus key manager we need to emit the `indexFocused` // event in order to provide a public event that notifies about focus changes. Also we realign // the tabs container by scrolling the new focused tab into the visible section. this._keyManager.change.pipe(takeUntil(this._destroyed)).subscribe((/** * @param {?} newFocusIndex * @return {?} */ function (newFocusIndex) { _this.indexFocused.emit(newFocusIndex); _this._setTabFocus(newFocusIndex); })); }; /** * @return {?} */ MatPaginatedTabHeader.prototype.ngAfterContentChecked = /** * @return {?} */ function () { // If the number of tab labels have changed, check if scrolling should be enabled if (this._tabLabelCount != this._items.length) { this.updatePagination(); this._tabLabelCount = this._items.length; this._changeDetectorRef.markForCheck(); } // If the selected index has changed, scroll to the label and check if the scrolling controls // should be disabled. if (this._selectedIndexChanged) { this._scrollToLabel(this._selectedIndex); this._checkScrollingControls(); this._alignInkBarToSelectedTab(); this._selectedIndexChanged = false; this._changeDetectorRef.markForCheck(); } // If the scroll distance has been changed (tab selected, focused, scroll controls activated), // then translate the header to reflect this. if (this._scrollDistanceChanged) { this._updateTabScrollPosition(); this._scrollDistanceChanged = false; this._changeDetectorRef.markForCheck(); } }; /** * @return {?} */ MatPaginatedTabHeader.prototype.ngOnDestroy = /** * @return {?} */ function () { this._destroyed.next(); this._destroyed.complete(); this._stopScrolling.complete(); }; /** Handles keyboard events on the header. */ /** * Handles keyboard events on the header. * @param {?} event * @return {?} */ MatPaginatedTabHeader.prototype._handleKeydown = /** * Handles keyboard events on the header. * @param {?} event * @return {?} */ function (event) { // We don't handle any key bindings with a modifier key. if (hasModifierKey(event)) { return; } switch (event.keyCode) { case HOME: this._keyManager.setFirstItemActive(); event.preventDefault(); break; case END: this._keyManager.setLastItemActive(); event.preventDefault(); break; case ENTER: case SPACE: this.selectFocusedIndex.emit(this.focusIndex); this._itemSelected(event); break; default: this._keyManager.onKeydown(event); } }; /** * Callback for when the MutationObserver detects that the content has changed. */ /** * Callback for when the MutationObserver detects that the content has changed. * @return {?} */ MatPaginatedTabHeader.prototype._onContentChanges = /** * Callback for when the MutationObserver detects that the content has changed. * @return {?} */ function () { var _this = this; /** @type {?} */ var textContent = this._elementRef.nativeElement.textContent; // We need to diff the text content of the header, because the MutationObserver callback // will fire even if the text content didn't change which is inefficient and is prone // to infinite loops if a poorly constructed expression is passed in (see #14249). if (textContent !== this._currentTextContent) { this._currentTextContent = textContent || ''; // The content observer runs outside the `NgZone` by default, which // means that we need to bring the callback back in ourselves. this._ngZone.run((/** * @return {?} */ function () { _this.updatePagination(); _this._alignInkBarToSelectedTab(); _this._changeDetectorRef.markForCheck(); })); } }; /** * Updates the view whether pagination should be enabled or not. * * WARNING: Calling this method can be very costly in terms of performance. It should be called * as infrequently as possible from outside of the Tabs component as it causes a reflow of the * page. */ /** * Updates the view whether pagination should be enabled or not. * * WARNING: Calling this method can be very costly in terms of performance. It should be called * as infrequently as possible from outside of the Tabs component as it causes a reflow of the * page. * @return {?} */ MatPaginatedTabHeader.prototype.updatePagination = /** * Updates the view whether pagination should be enabled or not. * * WARNING: Calling this method can be very costly in terms of performance. It should be called * as infrequently as possible from outside of the Tabs component as it causes a reflow of the * page. * @return {?} */ function () { this._checkPaginationEnabled(); this._checkScrollingControls(); this._updateTabScrollPosition(); }; Object.defineProperty(MatPaginatedTabHeader.prototype, "focusIndex", { /** Tracks which element has focus; used for keyboard navigation */ get: /** * Tracks which element has focus; used for keyboard navigation * @return {?} */ function () { return this._keyManager ? (/** @type {?} */ (this._keyManager.activeItemIndex)) : 0; }, /** When the focus index is set, we must manually send focus to the correct label */ set: /** * When the focus index is set, we must manually send focus to the correct label * @param {?} value * @return {?} */ function (value) { if (!this._isValidIndex(value) || this.focusIndex === value || !this._keyManager) { return; } this._keyManager.setActiveItem(value); }, enumerable: true, configurable: true }); /** * Determines if an index is valid. If the tabs are not ready yet, we assume that the user is * providing a valid index and return true. */ /** * Determines if an index is valid. If the tabs are not ready yet, we assume that the user is * providing a valid index and return true. * @param {?} index * @return {?} */ MatPaginatedTabHeader.prototype._isValidIndex = /** * Determines if an index is valid. If the tabs are not ready yet, we assume that the user is * providing a valid index and return true. * @param {?} index * @return {?} */ function (index) { if (!this._items) { return true; } /** @type {?} */ var tab = this._items ? this._items.toArray()[index] : null; return !!tab && !tab.disabled; }; /** * Sets focus on the HTML element for the label wrapper and scrolls it into the view if * scrolling is enabled. */ /** * Sets focus on the HTML element for the label wrapper and scrolls it into the view if * scrolling is enabled. * @param {?} tabIndex * @return {?} */ MatPaginatedTabHeader.prototype._setTabFocus = /** * Sets focus on the HTML element for the label wrapper and scrolls it into the view if * scrolling is enabled. * @param {?} tabIndex * @return {?} */ function (tabIndex) { if (this._showPaginationControls) { this._scrollToLabel(tabIndex); } if (this._items && this._items.length) { this._items.toArray()[tabIndex].focus(); // Do not let the browser manage scrolling to focus the element, this will be handled // by using translation. In LTR, the scroll left should be 0. In RTL, the scroll width // should be the full width minus the offset width. /** @type {?} */ var containerEl = this._tabListContainer.nativeElement; /** @type {?} */ var dir = this._getLayoutDirection(); if (dir == 'ltr') { containerEl.scrollLeft = 0; } else { containerEl.scrollLeft = containerEl.scrollWidth - containerEl.offsetWidth; } } }; /** The layout direction of the containing app. */ /** * The layout direction of the containing app. * @return {?} */ MatPaginatedTabHeader.prototype._getLayoutDirection = /** * The layout direction of the containing app. * @return {?} */ function () { return this._dir && this._dir.value === 'rtl' ? 'rtl' : 'ltr'; }; /** Performs the CSS transformation on the tab list that will cause the list to scroll. */ /** * Performs the CSS transformation on the tab list that will cause the list to scroll. * @return {?} */ MatPaginatedTabHeader.prototype._updateTabScrollPosition = /** * Performs the CSS transformation on the tab list that will cause the list to scroll. * @return {?} */ function () { /** @type {?} */ var scrollDistance = this.scrollDistance; /** @type {?} */ var platform = this._platform; /** @type {?} */ var translateX = this._getLayoutDirection() === 'ltr' ? -scrollDistance : scrollDistance; // Don't use `translate3d` here because we don't want to create a new layer. A new layer // seems to cause flickering and overflow in Internet Explorer. For example, the ink bar // and ripples will exceed the boundaries of the visible tab bar. // See: https://github.com/angular/components/issues/10276 // We round the `transform` here, because transforms with sub-pixel precision cause some // browsers to blur the content of the element. this._tabList.nativeElement.style.transform = "translateX(" + Math.round(translateX) + "px)"; // Setting the `transform` on IE will change the scroll offset of the parent, causing the // position to be thrown off in some cases. We have to reset it ourselves to ensure that // it doesn't get thrown off. Note that we scope it only to IE and Edge, because messing // with the scroll position throws off Chrome 71+ in RTL mode (see #14689). // @breaking-change 9.0.0 Remove null check for `platform` after it can no longer be undefined. if (platform && (platform.TRIDENT || platform.EDGE)) { this._tabListContainer.nativeElement.scrollLeft = 0; } }; Object.defineProperty(MatPaginatedTabHeader.prototype, "scrollDistance", { /** Sets the distance in pixels that the tab header should be transformed in the X-axis. */ get: /** * Sets the distance in pixels that the tab header should be transformed in the X-axis. * @return {?} */ function () { return this._scrollDistance; }, set: /** * @param {?} value * @return {?} */ function (value) { this._scrollTo(value); }, enumerable: true, configurable: true }); /** * Moves the tab list in the 'before' or 'after' direction (towards the beginning of the list or * the end of the list, respectively). The distance to scroll is computed to be a third of the * length of the tab list view window. * * This is an expensive call that forces a layout reflow to compute box and scroll metrics and * should be called sparingly. */ /** * Moves the tab list in the 'before' or 'after' direction (towards the beginning of the list or * the end of the list, respectively). The distance to scroll is computed to be a third of the * length of the tab list view window. * * This is an expensive call that forces a layout reflow to compute box and scroll metrics and * should be called sparingly. * @param {?} direction * @return {?} */ MatPaginatedTabHeader.prototype._scrollHeader = /** * Moves the tab list in the 'before' or 'after' direction (towards the beginning of the list or * the end of the list, respectively). The distance to scroll is computed to be a third of the * length of the tab list view window. * * This is an expensive call that forces a layout reflow to compute box and scroll metrics and * should be called sparingly. * @param {?} direction * @return {?} */ function (direction) { /** @type {?} */ var viewLength = this._tabListContainer.nativeElement.offsetWidth; // Move the scroll distance one-third the length of the tab list's viewport. /** @type {?} */ var scrollAmount = (direction == 'before' ? -1 : 1) * viewLength / 3; return this._scrollTo(this._scrollDistance + scrollAmount); }; /** Handles click events on the pagination arrows. */ /** * Handles click events on the pagination arrows. * @param {?} direction * @return {?} */ MatPaginatedTabHeader.prototype._handlePaginatorClick = /** * Handles click events on the pagination arrows. * @param {?} direction * @return {?} */ function (direction) { this._stopInterval(); this._scrollHeader(direction); }; /** * Moves the tab list such that the desired tab label (marked by index) is moved into view. * * This is an expensive call that forces a layout reflow to compute box and scroll metrics and * should be called sparingly. */ /** * Moves the tab list such that the desired tab label (marked by index) is moved into view. * * This is an expensive call that forces a layout reflow to compute box and scroll metrics and * should be called sparingly. * @param {?} labelIndex * @return {?} */ MatPaginatedTabHeader.prototype._scrollToLabel = /** * Moves the tab list such that the desired tab label (marked by index) is moved into view. * * This is an expensive call that forces a layout reflow to compute box and scroll metrics and * should be called sparingly. * @param {?} labelIndex * @return {?} */ function (labelIndex) { /** @type {?} */ var selectedLabel = this._items ? this._items.toArray()[labelIndex] : null; if (!selectedLabel) { return; } // The view length is the visible width of the tab labels. /** @type {?} */ var viewLength = this._tabListContainer.nativeElement.offsetWidth; var _a = selectedLabel.elementRef.nativeElement, offsetLeft = _a.offsetLeft, offsetWidth = _a.offsetWidth; /** @type {?} */ var labelBeforePos; /** @type {?} */ var labelAfterPos; if (this._getLayoutDirection() == 'ltr') { labelBeforePos = offsetLeft; labelAfterPos = labelBeforePos + offsetWidth; } else { labelAfterPos = this._tabList.nativeElement.offsetWidth - offsetLeft; labelBeforePos = labelAfterPos - offsetWidth; } /** @type {?} */ var beforeVisiblePos = this.scrollDistance; /** @type {?} */ var afterVisiblePos = this.scrollDistance + viewLength; if (labelBeforePos < beforeVisiblePos) { // Scroll header to move label to the before direction this.scrollDistance -= beforeVisiblePos - labelBeforePos + EXAGGERATED_OVERSCROLL; } else if (labelAfterPos > afterVisiblePos) { // Scroll header to move label to the after direction this.scrollDistance += labelAfterPos - afterVisiblePos + EXAGGERATED_OVERSCROLL; } }; /** * Evaluate whether the pagination controls should be displayed. If the scroll width of the * tab list is wider than the size of the header container, then the pagination controls should