2020-11-20 13:59:20 +01:00
|
|
|
// (C) Copyright 2015 Moodle Pty Ltd.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2021-09-07 08:52:08 +02:00
|
|
|
import {
|
|
|
|
Component,
|
|
|
|
Input,
|
|
|
|
OnInit,
|
|
|
|
OnDestroy,
|
|
|
|
ElementRef,
|
|
|
|
ViewContainerRef,
|
|
|
|
ViewChild,
|
|
|
|
ComponentFactoryResolver,
|
|
|
|
} from '@angular/core';
|
2020-11-20 13:59:20 +01:00
|
|
|
import { CoreLogger } from '@singletons/logger';
|
|
|
|
import { CoreDomUtils } from '@services/utils/dom';
|
|
|
|
import { CoreContextMenuComponent } from '../context-menu/context-menu';
|
|
|
|
|
|
|
|
const BUTTON_HIDDEN_CLASS = 'core-navbar-button-hidden';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Component to add buttons to the app's header without having to place them inside the header itself. This is meant for
|
|
|
|
* pages that are loaded inside a sub ion-nav, so they don't have a header.
|
|
|
|
*
|
|
|
|
* If this component indicates a position (start/end), the buttons will only be added if the header has some buttons in that
|
|
|
|
* position. If no start/end is specified, then the buttons will be added to the first <ion-buttons> found in the header.
|
|
|
|
*
|
|
|
|
* If this component has a "prepend" attribute, the buttons will be added before other existing buttons in the header.
|
|
|
|
*
|
|
|
|
* You can use the [hidden] input to hide all the inner buttons if a certain condition is met.
|
|
|
|
*
|
|
|
|
* IMPORTANT: Do not use *ngIf in the buttons inside this component, it can cause problems. Please use [hidden] instead.
|
|
|
|
*
|
|
|
|
* Example usage:
|
|
|
|
*
|
|
|
|
* <core-navbar-buttons slot="end">
|
|
|
|
* <ion-button [hidden]="!buttonShown" [attr.aria-label]="Do something" (click)="action()">
|
2021-04-27 13:14:31 +02:00
|
|
|
* <ion-icon name="funnel" slot="icon-only" aria-hidden="true"></ion-icon>
|
2020-11-20 13:59:20 +01:00
|
|
|
* </ion-button>
|
|
|
|
* </core-navbar-buttons>
|
|
|
|
*/
|
|
|
|
@Component({
|
|
|
|
selector: 'core-navbar-buttons',
|
2021-09-07 08:52:08 +02:00
|
|
|
template: '<ng-content></ng-content><template #contextMenuContainer></template>',
|
2020-11-20 13:59:20 +01:00
|
|
|
styleUrls: ['navbar-buttons.scss'],
|
|
|
|
})
|
|
|
|
export class CoreNavBarButtonsComponent implements OnInit, OnDestroy {
|
|
|
|
|
2021-09-07 08:52:08 +02:00
|
|
|
@ViewChild('contextMenuContainer', { read: ViewContainerRef }) container?: ViewContainerRef;
|
|
|
|
|
2020-11-20 13:59:20 +01:00
|
|
|
// If the hidden input is true, hide all buttons.
|
|
|
|
// eslint-disable-next-line @angular-eslint/no-input-rename
|
|
|
|
@Input('hidden') set hidden(value: boolean) {
|
|
|
|
if (typeof value == 'string' && value == '') {
|
|
|
|
value = true;
|
|
|
|
}
|
|
|
|
this.allButtonsHidden = value;
|
|
|
|
this.showHideAllElements();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected element: HTMLElement;
|
|
|
|
protected allButtonsHidden = false;
|
|
|
|
protected forceHidden = false;
|
|
|
|
protected logger: CoreLogger;
|
|
|
|
protected movedChildren?: Node[];
|
|
|
|
protected mergedContextMenu?: CoreContextMenuComponent;
|
2021-09-07 08:52:08 +02:00
|
|
|
protected createdMainContextMenuElement?: HTMLElement;
|
2020-11-20 13:59:20 +01:00
|
|
|
|
2021-09-07 08:52:08 +02:00
|
|
|
constructor(element: ElementRef, protected factoryResolver: ComponentFactoryResolver) {
|
2020-11-20 13:59:20 +01:00
|
|
|
this.element = element.nativeElement;
|
|
|
|
this.logger = CoreLogger.getInstance('CoreNavBarButtonsComponent');
|
2021-06-15 16:16:20 +02:00
|
|
|
|
|
|
|
CoreDomUtils.storeInstanceByElement(this.element, this);
|
2020-11-20 13:59:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Component being initialized.
|
|
|
|
*/
|
|
|
|
async ngOnInit(): Promise<void> {
|
|
|
|
try {
|
|
|
|
const header = await this.searchHeader();
|
|
|
|
if (header) {
|
|
|
|
// Search the right buttons container (start, end or any).
|
|
|
|
let selector = 'ion-buttons';
|
|
|
|
|
|
|
|
let slot = this.element.getAttribute('slot');
|
|
|
|
// Take the slot from the parent if it has.
|
|
|
|
if (!slot && this.element.parentElement) {
|
|
|
|
slot = this.element.parentElement.getAttribute('slot');
|
|
|
|
}
|
|
|
|
if (slot) {
|
|
|
|
selector += '[slot="' + slot + '"]';
|
|
|
|
}
|
|
|
|
|
|
|
|
const buttonsContainer = <HTMLElement> header.querySelector(selector);
|
|
|
|
if (buttonsContainer) {
|
|
|
|
this.mergeContextMenus(buttonsContainer);
|
|
|
|
|
|
|
|
const prepend = this.element.hasAttribute('prepend');
|
|
|
|
|
2021-03-02 11:41:04 +01:00
|
|
|
this.movedChildren = CoreDomUtils.moveChildren(this.element, buttonsContainer, prepend);
|
2020-11-20 13:59:20 +01:00
|
|
|
this.showHideAllElements();
|
|
|
|
|
2021-09-07 08:52:08 +02:00
|
|
|
// Make sure that context-menu is always at the end of buttons if any.
|
|
|
|
const contextMenu = buttonsContainer.querySelector('core-context-menu');
|
|
|
|
contextMenu?.parentElement?.appendChild(contextMenu);
|
2020-11-20 13:59:20 +01:00
|
|
|
} else {
|
|
|
|
this.logger.warn('The header was found, but it didn\'t have the right ion-buttons.', selector);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (error) {
|
|
|
|
// Header not found.
|
|
|
|
this.logger.warn(error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Force or unforce hiding all buttons. If this is true, it will override the "hidden" input.
|
|
|
|
*
|
|
|
|
* @param value The value to set.
|
|
|
|
*/
|
|
|
|
forceHide(value: boolean): void {
|
|
|
|
this.forceHidden = value;
|
|
|
|
|
|
|
|
this.showHideAllElements();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If both button containers have a context menu, merge them into a single one.
|
|
|
|
*
|
|
|
|
* @param buttonsContainer The container where the buttons will be moved.
|
|
|
|
*/
|
|
|
|
protected mergeContextMenus(buttonsContainer: HTMLElement): void {
|
|
|
|
// Check if both button containers have a context menu.
|
|
|
|
const secondaryContextMenu = this.element.querySelector('core-context-menu');
|
|
|
|
if (!secondaryContextMenu) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-09-07 08:52:08 +02:00
|
|
|
const mainContextMenu = buttonsContainer.querySelector('core-context-menu');
|
2021-06-15 16:16:20 +02:00
|
|
|
const secondaryContextMenuInstance = CoreDomUtils.getInstanceByElement<CoreContextMenuComponent>(secondaryContextMenu);
|
2021-09-07 08:52:08 +02:00
|
|
|
let mainContextMenuInstance: CoreContextMenuComponent | undefined;
|
|
|
|
if (mainContextMenu) {
|
|
|
|
// Both containers have a context menu. Merge them to prevent having 2 menus at the same time.
|
|
|
|
mainContextMenuInstance = CoreDomUtils.getInstanceByElement<CoreContextMenuComponent>(mainContextMenu);
|
|
|
|
} else {
|
|
|
|
// There is a context-menu in these buttons, but there is no main context menu in the header.
|
|
|
|
// Create one main context menu dynamically.
|
|
|
|
mainContextMenuInstance = this.createMainContextMenu();
|
|
|
|
}
|
2020-11-20 13:59:20 +01:00
|
|
|
|
|
|
|
// Check that both context menus belong to the same core-tab. We shouldn't merge menus from different tabs.
|
|
|
|
if (mainContextMenuInstance && secondaryContextMenuInstance) {
|
|
|
|
this.mergedContextMenu = secondaryContextMenuInstance;
|
|
|
|
|
|
|
|
this.mergedContextMenu.mergeContextMenus(mainContextMenuInstance);
|
|
|
|
|
|
|
|
// Remove the empty context menu from the DOM.
|
|
|
|
secondaryContextMenu.parentElement?.removeChild(secondaryContextMenu);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-07 08:52:08 +02:00
|
|
|
/**
|
|
|
|
* Create a new and empty context menu to be used as a "parent".
|
|
|
|
*
|
|
|
|
* @return Created component.
|
|
|
|
*/
|
|
|
|
protected createMainContextMenu(): CoreContextMenuComponent {
|
|
|
|
const factory = this.factoryResolver.resolveComponentFactory(CoreContextMenuComponent);
|
|
|
|
const componentRef = this.container!.createComponent<CoreContextMenuComponent>(factory);
|
|
|
|
|
|
|
|
this.createdMainContextMenuElement = componentRef.location.nativeElement;
|
|
|
|
|
|
|
|
return componentRef.instance;
|
|
|
|
}
|
|
|
|
|
2020-11-20 13:59:20 +01:00
|
|
|
/**
|
|
|
|
* Search the ion-header where the buttons should be added.
|
|
|
|
*
|
|
|
|
* @param retries Number of retries so far.
|
|
|
|
* @return Promise resolved with the header element.
|
|
|
|
*/
|
|
|
|
protected async searchHeader(retries: number = 0): Promise<HTMLElement> {
|
|
|
|
let parentPage: HTMLElement = this.element;
|
|
|
|
|
|
|
|
while (parentPage) {
|
|
|
|
if (!parentPage.parentElement) {
|
|
|
|
// No parent, stop.
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the next parent page.
|
2021-03-02 11:41:04 +01:00
|
|
|
parentPage = <HTMLElement> CoreDomUtils.closest(parentPage.parentElement, '.ion-page');
|
2020-11-20 13:59:20 +01:00
|
|
|
if (parentPage) {
|
|
|
|
// Check if the page has a header. If it doesn't, search the next parent page.
|
|
|
|
const header = this.searchHeaderInPage(parentPage);
|
|
|
|
if (header && getComputedStyle(header, null).display != 'none') {
|
|
|
|
return header;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Header not found.
|
|
|
|
if (retries < 5) {
|
|
|
|
// If the component or any of its parent is inside a ng-content or similar it can be detached when it's initialized.
|
|
|
|
// Try again after a while.
|
|
|
|
return new Promise((resolve, reject): void => {
|
|
|
|
setTimeout(() => {
|
|
|
|
// eslint-disable-next-line promise/catch-or-return
|
|
|
|
this.searchHeader(retries + 1).then(resolve, reject);
|
|
|
|
}, 200);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// We've waited enough time, reject.
|
|
|
|
throw Error('Header not found.');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Search ion-header inside a page. The header should be a direct child.
|
|
|
|
*
|
|
|
|
* @param page Page to search in.
|
|
|
|
* @return Header element. Undefined if not found.
|
|
|
|
*/
|
|
|
|
protected searchHeaderInPage(page: HTMLElement): HTMLElement | undefined {
|
|
|
|
for (let i = 0; i < page.children.length; i++) {
|
|
|
|
const child = page.children[i];
|
|
|
|
if (child.tagName == 'ION-HEADER') {
|
|
|
|
return <HTMLElement> child;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show or hide all the elements.
|
|
|
|
*/
|
|
|
|
protected showHideAllElements(): void {
|
|
|
|
// Show or hide all moved children.
|
2021-09-07 08:52:08 +02:00
|
|
|
this.movedChildren?.forEach((child: Node) => {
|
|
|
|
this.showHideElement(child);
|
|
|
|
});
|
2020-11-20 13:59:20 +01:00
|
|
|
|
|
|
|
// Show or hide all the context menu items that were merged to another context menu.
|
|
|
|
if (this.mergedContextMenu) {
|
|
|
|
if (this.forceHidden || this.allButtonsHidden) {
|
|
|
|
this.mergedContextMenu.removeMergedItems();
|
|
|
|
} else {
|
|
|
|
this.mergedContextMenu.restoreMergedItems();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show or hide an element.
|
|
|
|
*
|
|
|
|
* @param element Element to show or hide.
|
|
|
|
*/
|
|
|
|
protected showHideElement(element: Node): void {
|
2021-09-07 08:52:08 +02:00
|
|
|
// Check if it's an HTML Element and it's not a created context menu. Never hide created context menus.
|
|
|
|
if (element instanceof Element && element !== this.createdMainContextMenuElement) {
|
2020-11-20 13:59:20 +01:00
|
|
|
element.classList.toggle(BUTTON_HIDDEN_CLASS, !!this.forceHidden || !!this.allButtonsHidden);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Component destroyed.
|
|
|
|
*/
|
|
|
|
ngOnDestroy(): void {
|
|
|
|
// This component was destroyed, remove all the buttons that were moved.
|
|
|
|
// The buttons can be moved outside of the current page, that's why we need to manually destroy them.
|
|
|
|
// There's no need to destroy context menu items that were merged because they weren't moved from their DOM position.
|
2021-09-07 08:52:08 +02:00
|
|
|
this.movedChildren?.forEach((child) => {
|
|
|
|
if (child.parentElement && child !== this.createdMainContextMenuElement) {
|
|
|
|
child.parentElement.removeChild(child);
|
|
|
|
}
|
|
|
|
});
|
2020-11-20 13:59:20 +01:00
|
|
|
|
2021-09-07 08:52:08 +02:00
|
|
|
this.mergedContextMenu?.removeMergedItems();
|
2020-11-20 13:59:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|