blob: 4e755432997f090c34d57f151607193860a430e6 [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2020 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
********************************************************************************/
import {Injectable} from "@angular/core";
import {BehaviorSubject, defer} from "rxjs";
import {distinctUntilChanged, map} from "rxjs/operators";
import {filterDistinctValues} from "../../../../util/store";
import {SideMenuDirective} from "../directives";
import {TSideMenuContentPosition} from "../TSideMenuContentPosition";
@Injectable({providedIn: "root"})
export class SideMenuRegistrationService {
public content$ = defer(() => this.directive$).pipe(
map(() => {
const positions: TSideMenuContentPosition[] = ["top", "center", "bottom"];
return positions.map((_) => this.getContentInPosition(_));
})
);
public hasContent$ = defer(() => this.directive$).pipe(
map((directives) => directives.length > 0),
distinctUntilChanged()
);
public left$ = defer(() => this.directive$).pipe(
map(() => this.getLeft()),
distinctUntilChanged()
);
public title$ = defer(() => this.directive$).pipe(
map(() => this.getTitle()),
distinctUntilChanged()
);
private readonly directivesSubject = new BehaviorSubject<SideMenuDirective[]>([]);
private get directive$() {
return this.directivesSubject.asObservable();
}
public register(directive: SideMenuDirective) {
this.directivesSubject.next(filterDistinctValues([...this.directivesSubject.getValue(), directive]));
}
public deregister(directive: SideMenuDirective) {
this.directivesSubject.next(this.directivesSubject.getValue().filter((_) => _ !== directive));
}
private getLeft(): boolean {
return this.directivesSubject.getValue()
.reduce((left, _) => left || _.appSideMenuLeft, false) === true;
}
private getTitle(): string {
return this.directivesSubject.getValue().reverse()
.map((_) => _.appSideMenuTitle)
.filter((_) => _)[0];
}
private getContentInPosition(position: TSideMenuContentPosition) {
return this.directivesSubject.getValue().reverse()
.find((_) => _.appSideMenu === position);
}
}