// tslint:disable:max-file-line-count import { Directive, ElementRef, EmbeddedViewRef, EventEmitter, Input, OnDestroy, OnInit, Output, Renderer2, ViewContainerRef } from '@angular/core'; import { filter } from 'rxjs/operators'; import { Subscription } from 'rxjs'; import { ComponentLoader, ComponentLoaderFactory, BsComponentRef } from 'mirra-ui/component-loader'; import { DropdownButtonConfig } from './dropdown-button.config'; import { DropdownButtonContainerComponent } from './dropdown-button-container.component'; import { DropdownButtonState } from './dropdown-button.state'; import { AnimationBuilder, AnimationFactory } from '@angular/animations'; import { dropdownButtonAnimation } from './dropdown-button-animations'; import { DropdownButtonMenuDirective } from './dropdown-button-menu.directive'; @Directive({ selector: "[pDropdownButton],[dropdown]", exportAs: "p-dropdown-button", providers: [DropdownButtonState], host: { "[class.dropup]": "dropup", "[class.open]": "isOpen", "[class.show]": "isOpen && isBs4", }, }) export class DropdownButtonDirective implements OnInit, OnDestroy { /** * Placement of a popover. Accepts: "top", "bottom", "left", "right" */ @Input() placement: string; /** * Specifies events that should trigger. Supports a space separated list of * event names. */ @Input() triggers: string; /** * A selector specifying the element the popover should be appended to. */ @Input() container: string; /** * This attribute indicates that the dropdown should be opened upwards */ @Input() dropup: boolean; /** * Indicates that dropdown will be closed on item or document click, * and after pressing ESC */ @Input() set autoClose(value: boolean) { this._state.autoClose = value; } get autoClose(): boolean { return this._state.autoClose; } /** * Indicates that dropdown will be animated */ @Input() set isAnimated(value: boolean) { this._state.isAnimated = value; } get isAnimated(): boolean { return this._state.isAnimated; } /** * This attribute indicates that the dropdown shouldn't close on inside click when autoClose is set to true */ @Input() set insideClick(value: boolean) { this._state.insideClick = value; } get insideClick(): boolean { return this._state.insideClick; } /** * Disables dropdown toggle and hides dropdown menu if opened */ @Input() set isDisabled(value: boolean) { this._isDisabled = value; this._state.isDisabledChange.emit(value); if (value) { this.hide(); } } get isDisabled(): boolean { return this._isDisabled; } /** * Returns whether or not the popover is currently being shown */ @Input() get isOpen(): boolean { if (this._showInline) { return this._isInlineOpen; } return this._dropdown.isShown; } set isOpen(value: boolean) { if (value) { this.show(); } else { this.hide(); } } /** * Emits an event when isOpen change */ @Output() isOpenChange: EventEmitter; /** * Emits an event when the popover is shown */ @Output() onShown: EventEmitter; /** * Emits an event when the popover is hidden */ @Output() onHidden: EventEmitter; get isBs4(): boolean { return true; } private _dropdown: ComponentLoader; private get _showInline(): boolean { return !this.container; } // todo: move to component loader private _isInlineOpen = false; private _inlinedMenu: EmbeddedViewRef; private _isDisabled: boolean; private _subscriptions: Subscription[] = []; private _isInited = false; private _factoryDropDownAnimation: AnimationFactory; constructor( private _elementRef: ElementRef, private _renderer: Renderer2, private _viewContainerRef: ViewContainerRef, private _cis: ComponentLoaderFactory, private _state: DropdownButtonState, private _config: DropdownButtonConfig, _builder: AnimationBuilder ) { // set initial dropdown state from config this._state.autoClose = this._config.autoClose; this._state.insideClick = this._config.insideClick; this._state.isAnimated = this._config.isAnimated; this._factoryDropDownAnimation = _builder.build(dropdownButtonAnimation); // create dropdown component loader this._dropdown = this._cis .createLoader( this._elementRef, this._viewContainerRef, this._renderer ) .provide({ provide: DropdownButtonState, useValue: this._state }); this.onShown = this._dropdown.onShown; this.onHidden = this._dropdown.onHidden; this.isOpenChange = this._state.isOpenChange; } ngOnInit(): void { // fix: seems there are an issue with `routerLinkActive` // which result in duplicated call ngOnInit without call to ngOnDestroy if (this._isInited) { return; } this._isInited = true; // attach DOM listeners this._dropdown.listen({ // because of dropdown inline mode outsideClick: false, triggers: this.triggers, show: () => this.show(), }); // toggle visibility on toggle element click this._subscriptions.push( this._state.toggleClick.subscribe((value: boolean) => this.toggle(value) ) ); // hide dropdown if set disabled while opened this._subscriptions.push( this._state.isDisabledChange .pipe(filter((value: boolean) => value)) .subscribe((value: boolean) => this.hide()) ); } /** * Opens an element’s popover. This is considered a “manual” triggering of * the popover. */ show(): void { if (this.isOpen || this.isDisabled) { return; } if (this._showInline) { if (!this._inlinedMenu) { this._state.dropdownMenu .then( ( dropdownMenu: BsComponentRef< DropdownButtonMenuDirective > ) => { this._dropdown.attachInline( dropdownMenu.viewContainer, dropdownMenu.templateRef ); this._inlinedMenu = this._dropdown._inlineViewRef; this.addBs4Polyfills(); this._renderer.addClass( this._inlinedMenu.rootNodes[0].parentNode, "open" ); this.playAnimation(); } ) // swallow errors .catch(); } this.addBs4Polyfills(); this._isInlineOpen = true; this.onShown.emit(true); this._state.isOpenChange.emit(true); this.playAnimation(); return; } this._state.dropdownMenu .then((dropdownMenu) => { // check direction in which dropdown should be opened const _dropup = this.dropup || (typeof this.dropup !== "undefined" && this.dropup); this._state.direction = _dropup ? "up" : "down"; const _placement = this.placement || (_dropup ? "top start" : "bottom start"); // show dropdown this._dropdown .attach(DropdownButtonContainerComponent) .to(this.container) .position({ attachment: _placement }) .show({ content: dropdownMenu.templateRef, placement: _placement, }); this._state.isOpenChange.emit(true); }) // swallow error .catch(); } /** * Closes an element’s popover. This is considered a “manual” triggering of * the popover. */ hide(): void { if (!this.isOpen) { return; } if (this._showInline) { this.removeShowClass(); this.removeDropupStyles(); this._isInlineOpen = false; this.onHidden.emit(true); } else { this._dropdown.hide(); } this._state.isOpenChange.emit(false); } /** * Toggles an element’s popover. This is considered a “manual” triggering of * the popover. With parameter true allows toggling, with parameter false * only hides opened dropdown. */ toggle(value?: boolean): void { if (this.isOpen || !value) { return this.hide(); } return this.show(); } /** @internal */ _contains(event: any): boolean { return ( this._elementRef.nativeElement.contains(event.target) || (this._dropdown.instance && this._dropdown.instance._contains(event.target)) ); } ngOnDestroy(): void { // clean up subscriptions and destroy dropdown for (const sub of this._subscriptions) { sub.unsubscribe(); } this._dropdown.dispose(); } private addBs4Polyfills(): void { this.addShowClass(); this.checkRightAlignment(); this.addDropupStyles(); } private playAnimation(): void { if (this._state.isAnimated && this._inlinedMenu) { setTimeout(() => { this._factoryDropDownAnimation .create(this._inlinedMenu.rootNodes[0]) .play(); }); } } private addShowClass(): void { if (this._inlinedMenu && this._inlinedMenu.rootNodes[0]) { this._renderer.addClass(this._inlinedMenu.rootNodes[0], "show"); } } private removeShowClass(): void { if (this._inlinedMenu && this._inlinedMenu.rootNodes[0]) { this._renderer.removeClass(this._inlinedMenu.rootNodes[0], "show"); } } private checkRightAlignment(): void { if (this._inlinedMenu && this._inlinedMenu.rootNodes[0]) { const isRightAligned = this._inlinedMenu.rootNodes[0].classList.contains( "dropdown-menu-right" ); this._renderer.setStyle( this._inlinedMenu.rootNodes[0], "left", isRightAligned ? "auto" : "0" ); this._renderer.setStyle( this._inlinedMenu.rootNodes[0], "right", isRightAligned ? "0" : "auto" ); } } private addDropupStyles(): void { if (this._inlinedMenu && this._inlinedMenu.rootNodes[0]) { // a little hack to not break support of bootstrap 4 beta this._renderer.setStyle( this._inlinedMenu.rootNodes[0], "top", this.dropup ? "auto" : "100%" ); this._renderer.setStyle( this._inlinedMenu.rootNodes[0], "transform", this.dropup ? "translateY(-101%)" : "translateY(0)" ); this._renderer.setStyle( this._inlinedMenu.rootNodes[0], "bottom", "auto" ); } } private removeDropupStyles(): void { if (this._inlinedMenu && this._inlinedMenu.rootNodes[0]) { this._renderer.removeStyle(this._inlinedMenu.rootNodes[0], "top"); this._renderer.removeStyle( this._inlinedMenu.rootNodes[0], "transform" ); this._renderer.removeStyle( this._inlinedMenu.rootNodes[0], "bottom" ); } } }