@rxap/layout 16.0.3 → 17.0.1-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/README.md +1 -1
- package/esm2022/index.mjs +55 -29
- package/esm2022/lib/app-url.service.mjs +6 -6
- package/esm2022/lib/authentication.service.mock.mjs +13 -0
- package/esm2022/lib/footer/footer.component.mjs +5 -5
- package/esm2022/lib/footer.directive.mjs +6 -6
- package/esm2022/lib/header/apps-button/apps-button.component.mjs +6 -6
- package/esm2022/lib/header/header.component.mjs +6 -6
- package/esm2022/lib/header/language-selector/language-selector.component.mjs +5 -5
- package/esm2022/lib/header/navigation-progress-bar/navigation-progress-bar.component.mjs +6 -6
- package/esm2022/lib/header/reset-button/reset-button.component.mjs +6 -6
- package/esm2022/lib/header/settings-button/settings-button.component.mjs +5 -5
- package/esm2022/lib/header/sidenav-toggle-button/sidenav-toggle-button.component.mjs +5 -5
- package/esm2022/lib/header/sign-out/sign-out.component.mjs +5 -5
- package/esm2022/lib/header/user-profile-icon/user-profile-icon.component.mjs +6 -6
- package/esm2022/lib/layout/layout.component.mjs +6 -6
- package/esm2022/lib/layout/layout.component.service.mjs +6 -6
- package/esm2022/lib/navigation/navigation-item/navigation-item.component.mjs +6 -6
- package/esm2022/lib/navigation/navigation.component.mjs +6 -6
- package/esm2022/lib/navigation/navigation.service.mjs +6 -6
- package/esm2022/lib/navigation/replace-router-paths.pipe.mjs +22 -0
- package/esm2022/lib/navigation/replace-router-paths.service.mjs +4 -4
- package/esm2022/lib/sidenav/sidenav-footer.directive.mjs +6 -6
- package/esm2022/lib/sidenav/sidenav-header.directive.mjs +6 -6
- package/esm2022/lib/sidenav/sidenav.component.mjs +5 -5
- package/esm2022/lib/sidenav/sidenav.component.service.mjs +5 -5
- package/esm2022/lib/sidenav/version/version.component.mjs +6 -6
- package/esm2022/lib/toggle-window-sidenav-button/toggle-window-sidenav-button.component.mjs +4 -4
- package/esm2022/lib/window-container-sidenav/window-container-sidenav.component.mjs +6 -6
- package/fesm2022/rxap-layout.mjs +693 -661
- package/fesm2022/rxap-layout.mjs.map +1 -1
- package/index.d.ts +24 -20
- package/lib/authentication.service.mock.d.ts +6 -0
- package/lib/navigation/replace-router-paths.pipe.d.ts +11 -0
- package/package.json +62 -63
- package/theme.css +1 -1
package/fesm2022/rxap-layout.mjs
CHANGED
|
@@ -1,480 +1,187 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import {
|
|
3
|
-
import * as i1 from '@rxap/services';
|
|
4
|
-
import {
|
|
5
|
-
import * as
|
|
6
|
-
import {
|
|
7
|
-
import
|
|
2
|
+
import { Component, ChangeDetectionStrategy, Inject, EventEmitter, Input, Output, TemplateRef, Directive, Injectable, signal, ElementRef, Renderer2, ViewContainerRef, ViewEncapsulation, forwardRef, ViewChild, HostBinding, InjectionToken, INJECTOR, Optional, ChangeDetectorRef, ContentChild, Pipe, computed, effect, LOCALE_ID, isDevMode, inject } from '@angular/core';
|
|
3
|
+
import * as i1$1 from '@rxap/services';
|
|
4
|
+
import { WindowContainerSidenavService, VersionService, HeaderService, ResetService, FooterService } from '@rxap/services';
|
|
5
|
+
import * as i1 from '@angular/cdk/portal';
|
|
6
|
+
import { ComponentPortal, PortalModule, TemplatePortal } from '@angular/cdk/portal';
|
|
7
|
+
import { tap, filter, startWith, switchMap, catchError, map } from 'rxjs/operators';
|
|
8
|
+
import { Subscription, BehaviorSubject, debounceTime, ReplaySubject, of, from, combineLatest, firstValueFrom, switchMap as switchMap$1, filter as filter$1, skip, distinctUntilChanged } from 'rxjs';
|
|
9
|
+
import * as i4$1 from '@angular/common';
|
|
10
|
+
import { NgFor, NgIf, KeyValuePipe, NgClass, AsyncPipe, NgTemplateOutlet, NgOptimizedImage, CommonModule, NgStyle } from '@angular/common';
|
|
11
|
+
import * as i4 from '@angular/material/icon';
|
|
12
|
+
import { MatIconModule } from '@angular/material/icon';
|
|
13
|
+
import * as i3 from '@angular/material/button';
|
|
14
|
+
import { MatButtonModule } from '@angular/material/button';
|
|
15
|
+
import * as i1$2 from '@rxap/config';
|
|
16
|
+
import { ConfigService } from '@rxap/config';
|
|
17
|
+
import * as i3$1 from '@angular/material/divider';
|
|
18
|
+
import { MatDividerModule } from '@angular/material/divider';
|
|
19
|
+
import { coerceBoolean, JoinPath } from '@rxap/utilities';
|
|
20
|
+
import { trigger, transition, style, animate } from '@angular/animations';
|
|
21
|
+
import * as i2 from '@angular/router';
|
|
22
|
+
import { NavigationEnd, Router, RouterLinkActive, RouterLink, NavigationStart, NavigationCancel, RouterOutlet } from '@angular/router';
|
|
23
|
+
import * as i6 from '@angular/cdk/overlay';
|
|
24
|
+
import { Overlay } from '@angular/cdk/overlay';
|
|
25
|
+
import { IconDirective } from '@rxap/material-directives/icon';
|
|
26
|
+
import * as i1$3 from '@angular/material/core';
|
|
27
|
+
import { MatRippleModule, MatOptionModule } from '@angular/material/core';
|
|
28
|
+
import * as i2$1 from '@angular/cdk/layout';
|
|
29
|
+
import { toSignal } from '@angular/core/rxjs-interop';
|
|
30
|
+
import * as i1$6 from '@rxap/ngx-theme';
|
|
31
|
+
import { ObserveCurrentThemeDensity, ThemeService } from '@rxap/ngx-theme';
|
|
32
|
+
import * as i7 from '@angular/material/menu';
|
|
33
|
+
import { MatMenuModule } from '@angular/material/menu';
|
|
34
|
+
import * as i3$4 from '@angular/material/sidenav';
|
|
35
|
+
import { MatSidenav, MatSidenavModule } from '@angular/material/sidenav';
|
|
36
|
+
import { RXAP_ENVIRONMENT, DetermineReleaseName } from '@rxap/environment';
|
|
37
|
+
import * as i2$6 from '@rxap/icon';
|
|
38
|
+
import { StatusIndicatorComponent } from '@rxap/ngx-status-check';
|
|
39
|
+
import * as i1$7 from '@rxap/ngx-user';
|
|
40
|
+
import { UserSettingsThemeService, IsThemeDensity, ThemeDensity } from '@rxap/ngx-user';
|
|
41
|
+
import * as i2$2 from '@angular/material/toolbar';
|
|
8
42
|
import { MatToolbarModule } from '@angular/material/toolbar';
|
|
9
|
-
import * as i4$2 from '@angular/common';
|
|
10
|
-
import { NgIf, NgFor, AsyncPipe, NgOptimizedImage, KeyValuePipe, CommonModule, NgClass, NgStyle, NgTemplateOutlet } from '@angular/common';
|
|
11
43
|
import * as i5 from '@angular/forms';
|
|
12
44
|
import { FormsModule } from '@angular/forms';
|
|
13
|
-
import * as i3$1 from '@angular/material/button';
|
|
14
|
-
import { MatButtonModule } from '@angular/material/button';
|
|
15
|
-
import * as i4$1 from '@angular/material/core';
|
|
16
|
-
import { MatOptionModule, MatRippleModule } from '@angular/material/core';
|
|
17
45
|
import * as i2$5 from '@angular/material/form-field';
|
|
18
46
|
import { MatFormFieldModule } from '@angular/material/form-field';
|
|
19
|
-
import * as i4 from '@angular/material/icon';
|
|
20
|
-
import { MatIconModule } from '@angular/material/icon';
|
|
21
|
-
import * as i7 from '@angular/material/menu';
|
|
22
|
-
import { MatMenuModule } from '@angular/material/menu';
|
|
23
47
|
import * as i3$2 from '@angular/material/select';
|
|
24
48
|
import { MatSelectModule } from '@angular/material/select';
|
|
25
49
|
import { MatSlideToggleModule } from '@angular/material/slide-toggle';
|
|
26
50
|
import { DataSourceCollectionDirective } from '@rxap/data-source/directive';
|
|
27
51
|
import { StopPropagationDirective } from '@rxap/directives';
|
|
28
|
-
import * as i2$
|
|
29
|
-
import { toSignal } from '@angular/core/rxjs-interop';
|
|
30
|
-
import * as i1$1 from '@rxap/config';
|
|
31
|
-
import { ConfigService } from '@rxap/config';
|
|
32
|
-
import * as i1$4 from '@rxap/ngx-theme';
|
|
33
|
-
import { ObserveCurrentThemeDensity, ThemeService } from '@rxap/ngx-theme';
|
|
34
|
-
import * as i2$2 from '@rxap/authorization';
|
|
52
|
+
import * as i2$3 from '@rxap/authorization';
|
|
35
53
|
import { ClickOnLink } from '@rxap/browser-utilities';
|
|
36
|
-
import
|
|
37
|
-
import
|
|
38
|
-
import { firstValueFrom, switchMap, filter as filter$1, skip, distinctUntilChanged, BehaviorSubject, Subscription, debounceTime, ReplaySubject, of, from, combineLatest } from 'rxjs';
|
|
39
|
-
import * as i2$3 from '@rxap/authentication';
|
|
40
|
-
import { filter, tap, map, switchMap as switchMap$1, startWith, catchError } from 'rxjs/operators';
|
|
41
|
-
import * as i2$4 from '@angular/router';
|
|
42
|
-
import { NavigationStart, NavigationEnd, NavigationCancel, Router, RouterLinkActive, RouterLink, RouterOutlet } from '@angular/router';
|
|
43
|
-
import * as i1$2 from '@angular/material/progress-bar';
|
|
54
|
+
import * as i2$4 from '@rxap/authentication';
|
|
55
|
+
import * as i1$4 from '@angular/material/progress-bar';
|
|
44
56
|
import { MatProgressBarModule } from '@angular/material/progress-bar';
|
|
45
57
|
import * as i3$3 from '@rxap/ngx-changelog';
|
|
46
|
-
import * as i1$
|
|
47
|
-
import * as i1$5 from '@rxap/ngx-user';
|
|
48
|
-
import { UserSettingsThemeService, IsThemeDensity, ThemeDensity } from '@rxap/ngx-user';
|
|
49
|
-
import * as i3$5 from '@angular/material/sidenav';
|
|
50
|
-
import { MatSidenav, MatSidenavModule } from '@angular/material/sidenav';
|
|
51
|
-
import * as i2$6 from '@rxap/icon';
|
|
52
|
-
import { StatusIndicatorComponent } from '@rxap/ngx-status-check';
|
|
53
|
-
import * as i3$4 from '@angular/material/divider';
|
|
54
|
-
import { MatDividerModule } from '@angular/material/divider';
|
|
55
|
-
import { trigger, transition, style, animate } from '@angular/animations';
|
|
56
|
-
import * as i6 from '@angular/cdk/overlay';
|
|
57
|
-
import { Overlay } from '@angular/cdk/overlay';
|
|
58
|
-
import { IconDirective } from '@rxap/material-directives/icon';
|
|
59
|
-
|
|
60
|
-
const RXAP_NAVIGATION_CONFIG = new InjectionToken('rxap/layout/navigation-config');
|
|
61
|
-
const RXAP_NAVIGATION_CONFIG_INSERTS = new InjectionToken('rxap/layout/navigation-config-inserts');
|
|
62
|
-
const RXAP_FOOTER_COMPONENT = new InjectionToken('rxap/layout/footer-component');
|
|
63
|
-
const RXAP_HEADER_COMPONENT = new InjectionToken('rxap/layout/header-component');
|
|
64
|
-
const RXAP_LOGO_CONFIG = new InjectionToken('rxap/layout/logo-config');
|
|
65
|
-
const RXAP_LAYOUT_APPS_GRID = new InjectionToken('rxap/layout/apps-grid');
|
|
66
|
-
|
|
67
|
-
class FooterComponent {
|
|
68
|
-
constructor(footerService) {
|
|
69
|
-
this.footerService = footerService;
|
|
70
|
-
}
|
|
71
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FooterComponent, deps: [{ token: i1.FooterService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
72
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: FooterComponent, isStandalone: true, selector: "rxap-footer", ngImport: i0, template: "<ng-template [ngIf]=\"footerService.portals()\" let-portals>\n <mat-toolbar *ngIf=\"portals.length\" class=\"footer mat-elevation-z1\">\n <mat-toolbar-row *ngFor=\"let portal of portals\">\n <ng-template [cdkPortalOutlet]=\"portal\"></ng-template>\n </mat-toolbar-row>\n </mat-toolbar>\n</ng-template>\n", styles: [""], dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: MatToolbarModule }, { kind: "component", type: i2.MatToolbar, selector: "mat-toolbar", inputs: ["color"], exportAs: ["matToolbar"] }, { kind: "directive", type: i2.MatToolbarRow, selector: "mat-toolbar-row", exportAs: ["matToolbarRow"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "ngmodule", type: PortalModule }, { kind: "directive", type: i3.CdkPortalOutlet, selector: "[cdkPortalOutlet]", inputs: ["cdkPortalOutlet"], outputs: ["attached"], exportAs: ["cdkPortalOutlet"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
73
|
-
}
|
|
74
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FooterComponent, decorators: [{
|
|
75
|
-
type: Component,
|
|
76
|
-
args: [{ selector: 'rxap-footer', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [NgIf, MatToolbarModule, NgFor, PortalModule, AsyncPipe], template: "<ng-template [ngIf]=\"footerService.portals()\" let-portals>\n <mat-toolbar *ngIf=\"portals.length\" class=\"footer mat-elevation-z1\">\n <mat-toolbar-row *ngFor=\"let portal of portals\">\n <ng-template [cdkPortalOutlet]=\"portal\"></ng-template>\n </mat-toolbar-row>\n </mat-toolbar>\n</ng-template>\n" }]
|
|
77
|
-
}], ctorParameters: function () { return [{ type: i1.FooterService }]; } });
|
|
78
|
-
|
|
79
|
-
class LayoutComponentService {
|
|
80
|
-
constructor(footerComponentService, headerComponentService, logoConfig = null, config, mediaMatcher) {
|
|
81
|
-
this.footerComponentService = footerComponentService;
|
|
82
|
-
this.headerComponentService = headerComponentService;
|
|
83
|
-
this.config = config;
|
|
84
|
-
this.currentThemeDensity = toSignal(ObserveCurrentThemeDensity());
|
|
85
|
-
const mobileQuery = mediaMatcher.matchMedia('(max-width: 959px)');
|
|
86
|
-
const mobile = mobileQuery.matches;
|
|
87
|
-
const initialCollapsable = this.config.get('navigation.collapsable', true);
|
|
88
|
-
const collapsable = initialCollapsable && !mobile;
|
|
89
|
-
const pinned = this.config.get('navigation.pinned', false);
|
|
90
|
-
const mode = this.config.get('navigation.mode', pinned || !collapsable ? 'side' : 'over');
|
|
91
|
-
const opened = this.config.get('navigation.opened', (!collapsable || pinned) && !mobile);
|
|
92
|
-
this.opened = signal(opened);
|
|
93
|
-
this.mode = signal(mode);
|
|
94
|
-
this.pinned = signal(pinned);
|
|
95
|
-
this.collapsable = signal(collapsable);
|
|
96
|
-
this.fixedBottomGap = computed(() => this.footerComponentService.portalCount() * (64 + (this.currentThemeDensity() ?? 0) * 4));
|
|
97
|
-
this.fixedTopGap = computed(() => this.headerComponentService.componentCount() * (64 + (this.currentThemeDensity() ?? 0) * 4));
|
|
98
|
-
this.logo = logoConfig ?? {
|
|
99
|
-
src: 'assets/logo.png',
|
|
100
|
-
width: 192,
|
|
101
|
-
};
|
|
102
|
-
mobileQuery.addEventListener('change', (event) => {
|
|
103
|
-
if (initialCollapsable) {
|
|
104
|
-
this.collapsable.set(!event.matches);
|
|
105
|
-
if (this.collapsable()) {
|
|
106
|
-
if (!this.pinned()) {
|
|
107
|
-
this.opened.set(false);
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
});
|
|
112
|
-
effect(() => {
|
|
113
|
-
if (this.pinned()) {
|
|
114
|
-
this.mode.set('side');
|
|
115
|
-
this.opened.set(true);
|
|
116
|
-
}
|
|
117
|
-
else {
|
|
118
|
-
this.mode.set('over');
|
|
119
|
-
this.opened.set(false);
|
|
120
|
-
}
|
|
121
|
-
}, { allowSignalWrites: true });
|
|
122
|
-
}
|
|
123
|
-
toggleOpened() {
|
|
124
|
-
this.opened.set(!this.opened());
|
|
125
|
-
}
|
|
126
|
-
togglePinned() {
|
|
127
|
-
this.pinned.set(!this.pinned());
|
|
128
|
-
}
|
|
129
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LayoutComponentService, deps: [{ token: i1.FooterService }, { token: i1.HeaderService }, { token: RXAP_LOGO_CONFIG, optional: true }, { token: ConfigService }, { token: i2$1.MediaMatcher }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
130
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LayoutComponentService, providedIn: 'root' }); }
|
|
131
|
-
}
|
|
132
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LayoutComponentService, decorators: [{
|
|
133
|
-
type: Injectable,
|
|
134
|
-
args: [{ providedIn: 'root' }]
|
|
135
|
-
}], ctorParameters: function () { return [{ type: i1.FooterService }, { type: i1.HeaderService }, { type: undefined, decorators: [{
|
|
136
|
-
type: Optional
|
|
137
|
-
}, {
|
|
138
|
-
type: Inject,
|
|
139
|
-
args: [RXAP_LOGO_CONFIG]
|
|
140
|
-
}] }, { type: i1$1.ConfigService, decorators: [{
|
|
141
|
-
type: Inject,
|
|
142
|
-
args: [ConfigService]
|
|
143
|
-
}] }, { type: i2$1.MediaMatcher }]; } });
|
|
58
|
+
import * as i1$5 from '@rxap/ngx-localize';
|
|
144
59
|
|
|
145
|
-
class
|
|
146
|
-
constructor(
|
|
147
|
-
this.
|
|
148
|
-
this.
|
|
149
|
-
this.
|
|
150
|
-
this.environment = environment;
|
|
151
|
-
this._apps = this.config.get('navigation.apps', []);
|
|
152
|
-
}
|
|
153
|
-
getApp(appId) {
|
|
154
|
-
return this._apps.find(app => app.id === appId) ?? null;
|
|
60
|
+
class WindowContainerSidenavComponent {
|
|
61
|
+
constructor(service) {
|
|
62
|
+
this.service = service;
|
|
63
|
+
this.portals = new Map();
|
|
64
|
+
this.subscription = new Subscription();
|
|
155
65
|
}
|
|
156
|
-
|
|
157
|
-
const
|
|
158
|
-
|
|
159
|
-
|
|
66
|
+
ngOnInit() {
|
|
67
|
+
const components = this.service.getAll();
|
|
68
|
+
for (const component of components) {
|
|
69
|
+
this.add(component);
|
|
160
70
|
}
|
|
161
|
-
|
|
71
|
+
this.subscription.add(this.service.add$.pipe(tap(component => this.add(component))).subscribe());
|
|
72
|
+
this.subscription.add(this.service.remove$.pipe(tap(component => this.remove(component))).subscribe());
|
|
162
73
|
}
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
if (url) {
|
|
166
|
-
return url;
|
|
167
|
-
}
|
|
168
|
-
throw new Error(`Could not find app with id "${appId}"`);
|
|
74
|
+
ngOnDestroy() {
|
|
75
|
+
this.subscription.unsubscribe();
|
|
169
76
|
}
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
if (url) {
|
|
173
|
-
ClickOnLink(url);
|
|
174
|
-
}
|
|
77
|
+
trackBy(index, id) {
|
|
78
|
+
return id;
|
|
175
79
|
}
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
.
|
|
179
|
-
.filter(app => !app.hidden)
|
|
180
|
-
.map(app => ({
|
|
181
|
-
...app,
|
|
182
|
-
href: JoinPath(app.href, this.getPathPrefix()),
|
|
183
|
-
}));
|
|
184
|
-
const filteredAppList = [];
|
|
185
|
-
for (const app of appList) {
|
|
186
|
-
if (await firstValueFrom(this.authorizationService.hasPermission$(app.permissions))) {
|
|
187
|
-
filteredAppList.push(app);
|
|
188
|
-
}
|
|
80
|
+
add(component) {
|
|
81
|
+
if (this.portals.has(component.id)) {
|
|
82
|
+
throw new Error(`Component portal with id ${component.id} already exists`);
|
|
189
83
|
}
|
|
190
|
-
|
|
84
|
+
const portal = new ComponentPortal(component.component, component.viewContainerRef, component.injector, component.componentFactoryResolver);
|
|
85
|
+
this.portals.set(component.id, portal);
|
|
191
86
|
}
|
|
192
|
-
|
|
193
|
-
if (this.
|
|
194
|
-
|
|
87
|
+
remove(component) {
|
|
88
|
+
if (this.portals.has(component.id)) {
|
|
89
|
+
const portal = this.portals.get(component.id);
|
|
90
|
+
this.portals.delete(component.id);
|
|
91
|
+
portal.detach();
|
|
195
92
|
}
|
|
196
|
-
return '';
|
|
197
93
|
}
|
|
198
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
199
|
-
static { this.ɵ
|
|
94
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: WindowContainerSidenavComponent, deps: [{ token: WindowContainerSidenavService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
95
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.3", type: WindowContainerSidenavComponent, isStandalone: true, selector: "rxap-window-container-sidenav", ngImport: i0, template: "<div class=\"flex flex-col gap-4 p-2\">\n\n <div *ngFor=\"let portalId of portals.keys(); trackBy: trackBy\" class=\"grow-0\">\n <ng-template [cdkPortalOutlet]=\"portals.get(portalId)\"></ng-template>\n </div>\n\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "ngmodule", type: PortalModule }, { kind: "directive", type: i1.CdkPortalOutlet, selector: "[cdkPortalOutlet]", inputs: ["cdkPortalOutlet"], outputs: ["attached"], exportAs: ["cdkPortalOutlet"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
200
96
|
}
|
|
201
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
202
|
-
type:
|
|
203
|
-
args: [{
|
|
204
|
-
}], ctorParameters:
|
|
205
|
-
type: Inject,
|
|
206
|
-
args: [LOCALE_ID]
|
|
207
|
-
}] }, { type: i2$2.AuthorizationService }, { type: undefined, decorators: [{
|
|
97
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: WindowContainerSidenavComponent, decorators: [{
|
|
98
|
+
type: Component,
|
|
99
|
+
args: [{ selector: 'rxap-window-container-sidenav', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [NgFor, PortalModule], template: "<div class=\"flex flex-col gap-4 p-2\">\n\n <div *ngFor=\"let portalId of portals.keys(); trackBy: trackBy\" class=\"grow-0\">\n <ng-template [cdkPortalOutlet]=\"portals.get(portalId)\"></ng-template>\n </div>\n\n</div>\n" }]
|
|
100
|
+
}], ctorParameters: () => [{ type: i1$1.WindowContainerSidenavService, decorators: [{
|
|
208
101
|
type: Inject,
|
|
209
|
-
args: [
|
|
210
|
-
}] }]
|
|
102
|
+
args: [WindowContainerSidenavService]
|
|
103
|
+
}] }] });
|
|
211
104
|
|
|
212
|
-
class
|
|
213
|
-
constructor(
|
|
214
|
-
this.
|
|
215
|
-
this.
|
|
216
|
-
this.isOpen = false;
|
|
217
|
-
this.appList = signal([]);
|
|
218
|
-
}
|
|
219
|
-
ngOnInit() {
|
|
220
|
-
this._subscription = this.authenticationService.isAuthenticated$.pipe(filter(Boolean), switchMap(() => this.appUrlService.getAppList()), tap((apps) => this.appList.set(apps))).subscribe();
|
|
105
|
+
class ToggleWindowSidenavButtonComponent {
|
|
106
|
+
constructor() {
|
|
107
|
+
this.openWindowSidenav = false;
|
|
108
|
+
this.openWindowSidenavChange = new EventEmitter();
|
|
221
109
|
}
|
|
222
|
-
|
|
223
|
-
this.
|
|
110
|
+
toggle() {
|
|
111
|
+
this.openWindowSidenav = !this.openWindowSidenav;
|
|
112
|
+
this.openWindowSidenavChange.emit(this.openWindowSidenav);
|
|
224
113
|
}
|
|
225
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
226
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
114
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: ToggleWindowSidenavButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
115
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.3", type: ToggleWindowSidenavButtonComponent, isStandalone: true, selector: "rxap-toggle-window-sidenav-button", inputs: { openWindowSidenav: "openWindowSidenav" }, outputs: { openWindowSidenavChange: "openWindowSidenavChange" }, host: { classAttribute: "rxap-toggle-window-sidenav-button" }, ngImport: i0, template: "<div class=\"toggle-button\">\n <button (click)=\"toggle()\" mat-icon-button>\n <ng-template [ngIfElse]=\"hide\" [ngIf]=\"!openWindowSidenav\">\n <mat-icon svgIcon=\"arrow-left-bold\"></mat-icon>\n </ng-template>\n <ng-template #hide>\n <mat-icon svgIcon=\"arrow-right-bold\"></mat-icon>\n </ng-template>\n </button>\n</div>\n", styles: [".toggle-button{position:absolute;top:70px;right:0;z-index:10000;border-radius:15px 0 0 15px;border:1px solid black;background:#000}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i3.MatIconButton, selector: "button[mat-icon-button]", exportAs: ["matButton"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i4.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
227
116
|
}
|
|
228
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
117
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: ToggleWindowSidenavButtonComponent, decorators: [{
|
|
229
118
|
type: Component,
|
|
230
|
-
args: [{ selector: 'rxap-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
type: Optional
|
|
239
|
-
}, {
|
|
240
|
-
type: Inject,
|
|
241
|
-
args: [RXAP_LAYOUT_APPS_GRID]
|
|
242
|
-
}] }, { type: AppUrlService }, { type: i2$3.RxapAuthenticationService }]; } });
|
|
119
|
+
args: [{ selector: 'rxap-toggle-window-sidenav-button', changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
|
120
|
+
class: 'rxap-toggle-window-sidenav-button',
|
|
121
|
+
}, standalone: true, imports: [MatButtonModule, NgIf, MatIconModule], template: "<div class=\"toggle-button\">\n <button (click)=\"toggle()\" mat-icon-button>\n <ng-template [ngIfElse]=\"hide\" [ngIf]=\"!openWindowSidenav\">\n <mat-icon svgIcon=\"arrow-left-bold\"></mat-icon>\n </ng-template>\n <ng-template #hide>\n <mat-icon svgIcon=\"arrow-right-bold\"></mat-icon>\n </ng-template>\n </button>\n</div>\n", styles: [".toggle-button{position:absolute;top:70px;right:0;z-index:10000;border-radius:15px 0 0 15px;border:1px solid black;background:#000}\n"] }]
|
|
122
|
+
}], propDecorators: { openWindowSidenav: [{
|
|
123
|
+
type: Input
|
|
124
|
+
}], openWindowSidenavChange: [{
|
|
125
|
+
type: Output
|
|
126
|
+
}] } });
|
|
243
127
|
|
|
244
|
-
class
|
|
245
|
-
constructor(
|
|
246
|
-
this.
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
128
|
+
class VersionComponent {
|
|
129
|
+
constructor(version) {
|
|
130
|
+
this.version = version;
|
|
131
|
+
}
|
|
132
|
+
ngOnInit() {
|
|
133
|
+
this.modules = this.version.get();
|
|
134
|
+
this.subscription = this.version.update$.pipe(tap(() => this.modules = this.version.get())).subscribe();
|
|
135
|
+
}
|
|
136
|
+
ngOnDestroy() {
|
|
137
|
+
this.subscription?.unsubscribe();
|
|
250
138
|
}
|
|
251
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
252
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
139
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: VersionComponent, deps: [{ token: VersionService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
140
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.3", type: VersionComponent, isStandalone: true, selector: "rxap-version", ngImport: i0, template: "<div class=\"version flex flex-col gap-2\">\n <div *ngFor=\"let module of modules | keyvalue\" class=\"flex flex-col\">\n <span class=\"name grow-0\">{{module.value.name}}</span>\n <span class=\"semantic grow-0\">{{module.value.semantic}}</span>\n <span class=\"hash grow-0\">{{module.value.hash}}</span>\n </div>\n</div>\n", styles: [".version{width:100%;font-size:9px;padding:8px}.version .name{padding-bottom:12px;font-size:10px}\n"], dependencies: [{ kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "pipe", type: KeyValuePipe, name: "keyvalue" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
253
141
|
}
|
|
254
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
142
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: VersionComponent, decorators: [{
|
|
255
143
|
type: Component,
|
|
256
|
-
args: [{ selector: 'rxap-
|
|
257
|
-
|
|
258
|
-
MatProgressBarModule,
|
|
259
|
-
AsyncPipe,
|
|
260
|
-
], template: "<mat-progress-bar\n *ngIf=\"navigating$ | async\"\n color=\"accent\"\n mode=\"indeterminate\"\n></mat-progress-bar>\n" }]
|
|
261
|
-
}], ctorParameters: function () { return [{ type: i2$4.Router, decorators: [{
|
|
144
|
+
args: [{ selector: 'rxap-version', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [NgFor, KeyValuePipe], template: "<div class=\"version flex flex-col gap-2\">\n <div *ngFor=\"let module of modules | keyvalue\" class=\"flex flex-col\">\n <span class=\"name grow-0\">{{module.value.name}}</span>\n <span class=\"semantic grow-0\">{{module.value.semantic}}</span>\n <span class=\"hash grow-0\">{{module.value.hash}}</span>\n </div>\n</div>\n", styles: [".version{width:100%;font-size:9px;padding:8px}.version .name{padding-bottom:12px;font-size:10px}\n"] }]
|
|
145
|
+
}], ctorParameters: () => [{ type: i1$1.VersionService, decorators: [{
|
|
262
146
|
type: Inject,
|
|
263
|
-
args: [
|
|
264
|
-
}] }]
|
|
147
|
+
args: [VersionService]
|
|
148
|
+
}] }] });
|
|
265
149
|
|
|
266
|
-
class
|
|
267
|
-
constructor(
|
|
268
|
-
this.
|
|
150
|
+
class SidenavFooterDirective {
|
|
151
|
+
constructor(template) {
|
|
152
|
+
this.template = template;
|
|
269
153
|
}
|
|
270
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
271
|
-
static { this.ɵ
|
|
154
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: SidenavFooterDirective, deps: [{ token: TemplateRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
155
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.1.3", type: SidenavFooterDirective, isStandalone: true, selector: "[rxapSidenavFooter]", ngImport: i0 }); }
|
|
272
156
|
}
|
|
273
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
274
|
-
type:
|
|
275
|
-
args: [{
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
FormsModule,
|
|
281
|
-
NgFor,
|
|
282
|
-
MatOptionModule,
|
|
283
|
-
KeyValuePipe,
|
|
284
|
-
], template: "<ng-template [ngIf]=\"(language.languages | keyvalue).length\">\n <div>\n <mat-form-field appearance=\"outline\" class=\"language-selector\" rxapStopPropagation>\n <mat-label i18n>Select Language</mat-label>\n <mat-select (ngModelChange)=\"language.setLanguage($event)\" [ngModel]=\"language.selectedLanguage\">\n <mat-option *ngFor=\"let item of language.languages | keyvalue\" [value]=\"item.key\">{{item.value}}</mat-option>\n </mat-select>\n </mat-form-field>\n </div>\n</ng-template>\n", styles: [".language-selector{width:calc(100% - 32px);margin:0 16px}.language-selector ::ng-deep .mat-form-field-wrapper{padding-bottom:0}.language-selector ::ng-deep .mat-form-field-wrapper .mat-form-field-infix{padding:12px 0;border-width:6px}.language-selector ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-select-arrow-wrapper{transform:translateY(0)}\n"] }]
|
|
285
|
-
}], ctorParameters: function () { return [{ type: i1$3.LanguageSelectorService }]; } });
|
|
286
|
-
|
|
287
|
-
class SettingsButtonComponent {
|
|
288
|
-
constructor(theme, route, injector, changelogService) {
|
|
289
|
-
this.theme = theme;
|
|
290
|
-
this.route = route;
|
|
291
|
-
this.injector = injector;
|
|
292
|
-
this.changelogService = changelogService;
|
|
293
|
-
this.isDevMode = isDevMode();
|
|
294
|
-
this.items = signal([]);
|
|
295
|
-
this.savePreviewDensityValue = false;
|
|
296
|
-
this.currentDensityValue = null;
|
|
297
|
-
this.savePreviewTypographyValue = false;
|
|
298
|
-
this.currentTypographyValue = null;
|
|
299
|
-
this.savePreviewThemeValue = false;
|
|
300
|
-
this.currentThemeValue = null;
|
|
301
|
-
this.availableThemes = this.theme.getAvailableThemes();
|
|
302
|
-
this.availableTypographies = this.theme.getAvailableTypographies();
|
|
303
|
-
}
|
|
304
|
-
ngOnDestroy() {
|
|
305
|
-
this._subscription?.unsubscribe();
|
|
306
|
-
}
|
|
307
|
-
ngOnInit() {
|
|
308
|
-
this._subscription = this.route.data.pipe(map(data => this.getCustomMenuItems(data)), map(items => items.map(item => new ComponentPortal(item, undefined, this.injector))), tap(items => this.items.set(items))).subscribe();
|
|
309
|
-
}
|
|
310
|
-
getCustomMenuItems(data) {
|
|
311
|
-
if (data?.layout?.header?.menu?.items?.length) {
|
|
312
|
-
return data.layout.header.menu.items;
|
|
313
|
-
}
|
|
314
|
-
return [];
|
|
315
|
-
}
|
|
316
|
-
openChangelogDialog() {
|
|
317
|
-
this.changelogService.showChangelogDialog();
|
|
318
|
-
}
|
|
319
|
-
previewDensity(density) {
|
|
320
|
-
this.theme.applyDensity(density);
|
|
321
|
-
}
|
|
322
|
-
restoreDensity() {
|
|
323
|
-
this.theme.applyDensity(this.theme.density());
|
|
324
|
-
}
|
|
325
|
-
setDensity(density) {
|
|
326
|
-
this.theme.setDensity(density);
|
|
327
|
-
}
|
|
328
|
-
previewTypography(typography) {
|
|
329
|
-
this.theme.applyTypography(typography);
|
|
330
|
-
}
|
|
331
|
-
restoreTypography() {
|
|
332
|
-
this.theme.applyTypography(this.theme.typography());
|
|
333
|
-
}
|
|
334
|
-
setTypography(typography) {
|
|
335
|
-
this.theme.setTypography(typography);
|
|
336
|
-
}
|
|
337
|
-
previewTheme(theme) {
|
|
338
|
-
this.theme.applyTheme(theme);
|
|
339
|
-
}
|
|
340
|
-
restoreTheme() {
|
|
341
|
-
this.theme.applyTheme(this.theme.themeName());
|
|
342
|
-
}
|
|
343
|
-
setTheme(theme) {
|
|
344
|
-
this.theme.setTheme(theme);
|
|
345
|
-
}
|
|
346
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SettingsButtonComponent, deps: [{ token: i1$4.ThemeService }, { token: i2$4.ActivatedRoute }, { token: i0.Injector }, { token: i3$3.ChangelogService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
347
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SettingsButtonComponent, isStandalone: true, selector: "rxap-settings-button", ngImport: i0, template: "<button [matMenuTriggerFor]=\"menu\" mat-icon-button>\n <mat-icon svgIcon=\"cog\"></mat-icon>\n</button>\n\n<mat-menu #menu=\"matMenu\">\n <button (click)=\"theme.toggleDarkTheme()\" mat-menu-item>\n <mat-icon *ngIf=\"theme.darkMode()\" svgIcon=\"brightness-2\"></mat-icon>\n <mat-icon *ngIf=\"!theme.darkMode()\" svgIcon=\"brightness-5\"></mat-icon>\n <span i18n>Mode</span>\n </button>\n <button [matMenuTriggerFor]=\"themeMenu\" mat-menu-item>\n <mat-icon svgIcon=\"compare\"></mat-icon>\n <span i18n>Theme</span>\n </button>\n <rxap-language-selector></rxap-language-selector>\n <button (click)=\"openChangelogDialog()\" mat-menu-item>\n <mat-icon svgIcon=\"format-list-numbered\"></mat-icon>\n <span i18n>What's new</span>\n </button>\n <ng-container *ngFor=\"let item of items()\">\n <ng-template [cdkPortalOutlet]=\"item\"></ng-template>\n </ng-container>\n</mat-menu>\n\n<mat-menu #themeMenu=\"matMenu\" xPosition=\"before\">\n <button [matMenuTriggerFor]=\"themeDensityMenu\" mat-menu-item>\n <mat-icon svgIcon=\"move-resize\"></mat-icon>\n <span i18n>Density</span>\n </button>\n <button *ngIf=\"availableTypographies?.length\" [matMenuTriggerFor]=\"themeFontMenu\" mat-menu-item>\n <mat-icon svgIcon=\"format-font\"></mat-icon>\n <span i18n>Font</span>\n </button>\n <button *ngIf=\"availableThemes?.length\" [matMenuTriggerFor]=\"themePresetMenu\" mat-menu-item>\n <mat-icon svgIcon=\"shape-outline\"></mat-icon>\n <span i18n>Preset</span>\n </button>\n</mat-menu>\n\n<mat-menu #themeDensityMenu=\"matMenu\" xPosition=\"before\">\n <button (click)=\"setDensity(0)\" (mouseenter)=\"previewDensity(0)\" (mouseleave)=\"restoreDensity()\" mat-menu-item>\n <mat-icon svgIcon=\"size-l\"></mat-icon>\n <span i18n>Normal</span>\n </button>\n <button (click)=\"setDensity(-1)\" (mouseenter)=\"previewDensity(-1)\" (mouseleave)=\"restoreDensity()\" mat-menu-item>\n <mat-icon svgIcon=\"size-m\"></mat-icon>\n <span i18n>Dense</span>\n </button>\n <button (click)=\"setDensity(-2)\" (mouseenter)=\"previewDensity(-2)\" (mouseleave)=\"restoreDensity()\" mat-menu-item>\n <mat-icon svgIcon=\"size-s\"></mat-icon>\n <span i18n>Very Dense</span>\n </button>\n <button (click)=\"setDensity(-3)\" (mouseenter)=\"previewDensity(-3)\" (mouseleave)=\"restoreDensity()\" mat-menu-item>\n <mat-icon svgIcon=\"size-xs\"></mat-icon>\n <span i18n>Extreme Dense</span>\n </button>\n</mat-menu>\n<mat-menu #themeFontMenu=\"matMenu\" xPosition=\"before\">\n <ng-template [ngIf]=\"availableTypographies?.length\">\n <button (click)=\"setTypography(typographyName)\"\n (mouseenter)=\"previewTypography(typographyName)\"\n (mouseleave)=\"restoreTypography()\"\n *ngFor=\"let typographyName of availableTypographies\"\n mat-menu-item>\n {{ typographyName }}\n </button>\n </ng-template>\n</mat-menu>\n\n<mat-menu #themePresetMenu=\"matMenu\" xPosition=\"before\">\n <ng-template [ngIf]=\"availableThemes?.length\">\n <button (click)=\"setTheme(themeName)\"\n (mouseenter)=\"previewTheme(themeName)\"\n (mouseleave)=\"restoreTheme()\"\n *ngFor=\"let themeName of availableThemes\"\n mat-menu-item>\n {{ themeName }}\n </button>\n </ng-template>\n</mat-menu>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i4$2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i4$2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i3$1.MatIconButton, selector: "button[mat-icon-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i4.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "component", type: LanguageSelectorComponent, selector: "rxap-language-selector" }, { kind: "ngmodule", type: MatMenuModule }, { kind: "component", type: i7.MatMenu, selector: "mat-menu", exportAs: ["matMenu"] }, { kind: "component", type: i7.MatMenuItem, selector: "[mat-menu-item]", inputs: ["disabled", "disableRipple", "role"], exportAs: ["matMenuItem"] }, { kind: "directive", type: i7.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", exportAs: ["matMenuTrigger"] }, { kind: "ngmodule", type: PortalModule }, { kind: "directive", type: i3.CdkPortalOutlet, selector: "[cdkPortalOutlet]", inputs: ["cdkPortalOutlet"], outputs: ["attached"], exportAs: ["cdkPortalOutlet"] }] }); }
|
|
348
|
-
}
|
|
349
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SettingsButtonComponent, decorators: [{
|
|
350
|
-
type: Component,
|
|
351
|
-
args: [{ selector: 'rxap-settings-button', standalone: true, imports: [CommonModule, MatButtonModule, MatIconModule, LanguageSelectorComponent, MatMenuModule, PortalModule], template: "<button [matMenuTriggerFor]=\"menu\" mat-icon-button>\n <mat-icon svgIcon=\"cog\"></mat-icon>\n</button>\n\n<mat-menu #menu=\"matMenu\">\n <button (click)=\"theme.toggleDarkTheme()\" mat-menu-item>\n <mat-icon *ngIf=\"theme.darkMode()\" svgIcon=\"brightness-2\"></mat-icon>\n <mat-icon *ngIf=\"!theme.darkMode()\" svgIcon=\"brightness-5\"></mat-icon>\n <span i18n>Mode</span>\n </button>\n <button [matMenuTriggerFor]=\"themeMenu\" mat-menu-item>\n <mat-icon svgIcon=\"compare\"></mat-icon>\n <span i18n>Theme</span>\n </button>\n <rxap-language-selector></rxap-language-selector>\n <button (click)=\"openChangelogDialog()\" mat-menu-item>\n <mat-icon svgIcon=\"format-list-numbered\"></mat-icon>\n <span i18n>What's new</span>\n </button>\n <ng-container *ngFor=\"let item of items()\">\n <ng-template [cdkPortalOutlet]=\"item\"></ng-template>\n </ng-container>\n</mat-menu>\n\n<mat-menu #themeMenu=\"matMenu\" xPosition=\"before\">\n <button [matMenuTriggerFor]=\"themeDensityMenu\" mat-menu-item>\n <mat-icon svgIcon=\"move-resize\"></mat-icon>\n <span i18n>Density</span>\n </button>\n <button *ngIf=\"availableTypographies?.length\" [matMenuTriggerFor]=\"themeFontMenu\" mat-menu-item>\n <mat-icon svgIcon=\"format-font\"></mat-icon>\n <span i18n>Font</span>\n </button>\n <button *ngIf=\"availableThemes?.length\" [matMenuTriggerFor]=\"themePresetMenu\" mat-menu-item>\n <mat-icon svgIcon=\"shape-outline\"></mat-icon>\n <span i18n>Preset</span>\n </button>\n</mat-menu>\n\n<mat-menu #themeDensityMenu=\"matMenu\" xPosition=\"before\">\n <button (click)=\"setDensity(0)\" (mouseenter)=\"previewDensity(0)\" (mouseleave)=\"restoreDensity()\" mat-menu-item>\n <mat-icon svgIcon=\"size-l\"></mat-icon>\n <span i18n>Normal</span>\n </button>\n <button (click)=\"setDensity(-1)\" (mouseenter)=\"previewDensity(-1)\" (mouseleave)=\"restoreDensity()\" mat-menu-item>\n <mat-icon svgIcon=\"size-m\"></mat-icon>\n <span i18n>Dense</span>\n </button>\n <button (click)=\"setDensity(-2)\" (mouseenter)=\"previewDensity(-2)\" (mouseleave)=\"restoreDensity()\" mat-menu-item>\n <mat-icon svgIcon=\"size-s\"></mat-icon>\n <span i18n>Very Dense</span>\n </button>\n <button (click)=\"setDensity(-3)\" (mouseenter)=\"previewDensity(-3)\" (mouseleave)=\"restoreDensity()\" mat-menu-item>\n <mat-icon svgIcon=\"size-xs\"></mat-icon>\n <span i18n>Extreme Dense</span>\n </button>\n</mat-menu>\n<mat-menu #themeFontMenu=\"matMenu\" xPosition=\"before\">\n <ng-template [ngIf]=\"availableTypographies?.length\">\n <button (click)=\"setTypography(typographyName)\"\n (mouseenter)=\"previewTypography(typographyName)\"\n (mouseleave)=\"restoreTypography()\"\n *ngFor=\"let typographyName of availableTypographies\"\n mat-menu-item>\n {{ typographyName }}\n </button>\n </ng-template>\n</mat-menu>\n\n<mat-menu #themePresetMenu=\"matMenu\" xPosition=\"before\">\n <ng-template [ngIf]=\"availableThemes?.length\">\n <button (click)=\"setTheme(themeName)\"\n (mouseenter)=\"previewTheme(themeName)\"\n (mouseleave)=\"restoreTheme()\"\n *ngFor=\"let themeName of availableThemes\"\n mat-menu-item>\n {{ themeName }}\n </button>\n </ng-template>\n</mat-menu>\n" }]
|
|
352
|
-
}], ctorParameters: function () { return [{ type: i1$4.ThemeService }, { type: i2$4.ActivatedRoute }, { type: i0.Injector }, { type: i3$3.ChangelogService }]; } });
|
|
353
|
-
|
|
354
|
-
class SidenavToggleButtonComponent {
|
|
355
|
-
constructor(layoutComponentService) {
|
|
356
|
-
this.layoutComponentService = layoutComponentService;
|
|
357
|
-
this.opened = layoutComponentService.opened;
|
|
358
|
-
}
|
|
359
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SidenavToggleButtonComponent, deps: [{ token: LayoutComponentService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
360
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SidenavToggleButtonComponent, isStandalone: true, selector: "rxap-sidenav-toggle-button", ngImport: i0, template: "<button (click)=\"layoutComponentService.toggleOpened()\" mat-icon-button>\n <mat-icon *ngIf=\"!opened()\">menu</mat-icon>\n <mat-icon *ngIf=\"opened()\">menu_open</mat-icon>\n</button>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i3$1.MatIconButton, selector: "button[mat-icon-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i4.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
361
|
-
}
|
|
362
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SidenavToggleButtonComponent, decorators: [{
|
|
363
|
-
type: Component,
|
|
364
|
-
args: [{ selector: 'rxap-sidenav-toggle-button', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [
|
|
365
|
-
MatButtonModule,
|
|
366
|
-
NgIf,
|
|
367
|
-
MatIconModule,
|
|
368
|
-
], template: "<button (click)=\"layoutComponentService.toggleOpened()\" mat-icon-button>\n <mat-icon *ngIf=\"!opened()\">menu</mat-icon>\n <mat-icon *ngIf=\"opened()\">menu_open</mat-icon>\n</button>\n" }]
|
|
369
|
-
}], ctorParameters: function () { return [{ type: LayoutComponentService }]; } });
|
|
370
|
-
|
|
371
|
-
const EXTRACT_USERNAME_FROM_PROFILE = new InjectionToken('extract-username-from-profile', {
|
|
372
|
-
providedIn: 'root',
|
|
373
|
-
factory: () => (profile) => (profile ? profile.username ?? profile.email ?? profile.name : null) ?? null,
|
|
374
|
-
});
|
|
375
|
-
class UserProfileIconComponent {
|
|
376
|
-
constructor(userProfileService, authenticationService, extractUsernameFromProfile) {
|
|
377
|
-
this.userProfileService = userProfileService;
|
|
378
|
-
this.authenticationService = authenticationService;
|
|
379
|
-
this.username = toSignal(this.authenticationService.isAuthenticated$.pipe(filter$1(Boolean), switchMap$1(() => this.userProfileService.connect({
|
|
380
|
-
viewChange: this.authenticationService.isAuthenticated$.pipe(skip(1), filter$1(Boolean), distinctUntilChanged()),
|
|
381
|
-
})), filter$1(Boolean), map(extractUsernameFromProfile)), { initialValue: null });
|
|
382
|
-
}
|
|
383
|
-
async logout() {
|
|
384
|
-
await this.authenticationService.signOut();
|
|
385
|
-
}
|
|
386
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UserProfileIconComponent, deps: [{ token: i1$5.UserProfileDataSource }, { token: i2$3.RxapAuthenticationService }, { token: EXTRACT_USERNAME_FROM_PROFILE }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
387
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: UserProfileIconComponent, isStandalone: true, selector: "rxap-user-profile-icon", ngImport: i0, template: "<button [matMenuTriggerFor]=\"menu\"\n [disabled]=\"!username()\"\n class=\"profile-icon flex flex-row justify-center items-center\">\n <mat-icon class=\"avatar-icon\" svgIcon=\"account-circle\"></mat-icon>\n</button>\n\n<mat-menu #menu=\"matMenu\" [yPosition]=\"'below'\" class=\"!max-w-none\">\n <button mat-menu-item>\n <span class=\"flex flex-row gap-2\">\n <mat-icon svgIcon=\"account\"></mat-icon>\n <span>{{username()}}</span>\n </span>\n </button>\n <button (click)=\"logout()\" mat-menu-item>\n <span class=\"flex flex-row gap-2\">\n <mat-icon svgIcon=\"logout\"></mat-icon>\n <span i18n>Logout</span>\n </span>\n </button>\n</mat-menu>\n", styles: [".profile-icon{border-radius:100%;border:none;height:32px;width:32px;overflow:hidden;background-position:center center;background-repeat:no-repeat;background-size:cover}.profile-icon .avatar-icon{width:32px;height:32px;font-size:32px}.profile-icon:hover{cursor:pointer}.profile-icon:focus{outline:none}\n"], dependencies: [{ kind: "ngmodule", type: MatMenuModule }, { kind: "component", type: i7.MatMenu, selector: "mat-menu", exportAs: ["matMenu"] }, { kind: "component", type: i7.MatMenuItem, selector: "[mat-menu-item]", inputs: ["disabled", "disableRipple", "role"], exportAs: ["matMenuItem"] }, { kind: "directive", type: i7.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", exportAs: ["matMenuTrigger"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i4.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
388
|
-
}
|
|
389
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UserProfileIconComponent, decorators: [{
|
|
390
|
-
type: Component,
|
|
391
|
-
args: [{ selector: 'rxap-user-profile-icon', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [
|
|
392
|
-
MatMenuModule,
|
|
393
|
-
MatIconModule,
|
|
394
|
-
NgIf,
|
|
395
|
-
AsyncPipe,
|
|
396
|
-
], template: "<button [matMenuTriggerFor]=\"menu\"\n [disabled]=\"!username()\"\n class=\"profile-icon flex flex-row justify-center items-center\">\n <mat-icon class=\"avatar-icon\" svgIcon=\"account-circle\"></mat-icon>\n</button>\n\n<mat-menu #menu=\"matMenu\" [yPosition]=\"'below'\" class=\"!max-w-none\">\n <button mat-menu-item>\n <span class=\"flex flex-row gap-2\">\n <mat-icon svgIcon=\"account\"></mat-icon>\n <span>{{username()}}</span>\n </span>\n </button>\n <button (click)=\"logout()\" mat-menu-item>\n <span class=\"flex flex-row gap-2\">\n <mat-icon svgIcon=\"logout\"></mat-icon>\n <span i18n>Logout</span>\n </span>\n </button>\n</mat-menu>\n", styles: [".profile-icon{border-radius:100%;border:none;height:32px;width:32px;overflow:hidden;background-position:center center;background-repeat:no-repeat;background-size:cover}.profile-icon .avatar-icon{width:32px;height:32px;font-size:32px}.profile-icon:hover{cursor:pointer}.profile-icon:focus{outline:none}\n"] }]
|
|
397
|
-
}], ctorParameters: function () { return [{ type: i1$5.UserProfileDataSource }, { type: i2$3.RxapAuthenticationService }, { type: undefined, decorators: [{
|
|
398
|
-
type: Inject,
|
|
399
|
-
args: [EXTRACT_USERNAME_FROM_PROFILE]
|
|
400
|
-
}] }]; } });
|
|
401
|
-
|
|
402
|
-
class HeaderComponent {
|
|
403
|
-
constructor(headerComponentService, layoutComponentService, headerComponent) {
|
|
404
|
-
this.headerComponentService = headerComponentService;
|
|
405
|
-
this.layoutComponentService = layoutComponentService;
|
|
406
|
-
this.headerComponent = headerComponent;
|
|
407
|
-
this.color = undefined;
|
|
408
|
-
this.collapsable = layoutComponentService.collapsable;
|
|
409
|
-
this.opened = layoutComponentService.opened;
|
|
410
|
-
}
|
|
411
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: HeaderComponent, deps: [{ token: HeaderService }, { token: LayoutComponentService }, { token: RXAP_HEADER_COMPONENT, optional: true }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
412
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: HeaderComponent, isStandalone: true, selector: "rxap-header", inputs: { color: "color" }, ngImport: i0, template: "<mat-toolbar [color]=\"color\" [ngClass]=\"{ open: opened() }\" class=\"mat-elevation-z3 header\">\n <div class=\"w-full flex flex-row gap-x-4 justify-between items-center\">\n <rxap-sidenav-toggle-button *ngIf=\"!collapsable()\"></rxap-sidenav-toggle-button>\n <div class=\"grow\">\n <ng-content></ng-content>\n </div>\n <rxap-apps-button class=\"grow-0\"></rxap-apps-button>\n <rxap-settings-button class=\"grow-0\"></rxap-settings-button>\n <rxap-user-profile-icon class=\"grow-0\"></rxap-user-profile-icon>\n </div>\n</mat-toolbar>\n\n<rxap-navigation-progress-bar></rxap-navigation-progress-bar>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: MatToolbarModule }, { kind: "component", type: i2.MatToolbar, selector: "mat-toolbar", inputs: ["color"], exportAs: ["matToolbar"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "ngmodule", type: MatMenuModule }, { kind: "ngmodule", type: MatIconModule }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "ngmodule", type: MatSelectModule }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: MatOptionModule }, { kind: "ngmodule", type: MatSlideToggleModule }, { kind: "component", type: NavigationProgressBarComponent, selector: "rxap-navigation-progress-bar" }, { kind: "component", type: UserProfileIconComponent, selector: "rxap-user-profile-icon" }, { kind: "component", type: AppsButtonComponent, selector: "rxap-apps-button" }, { kind: "component", type: SettingsButtonComponent, selector: "rxap-settings-button" }, { kind: "component", type: SidenavToggleButtonComponent, selector: "rxap-sidenav-toggle-button" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
413
|
-
}
|
|
414
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: HeaderComponent, decorators: [{
|
|
415
|
-
type: Component,
|
|
416
|
-
args: [{ selector: 'rxap-header', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [
|
|
417
|
-
MatToolbarModule,
|
|
418
|
-
NgClass,
|
|
419
|
-
NgIf,
|
|
420
|
-
MatButtonModule,
|
|
421
|
-
MatMenuModule,
|
|
422
|
-
MatIconModule,
|
|
423
|
-
MatFormFieldModule,
|
|
424
|
-
StopPropagationDirective,
|
|
425
|
-
MatSelectModule,
|
|
426
|
-
FormsModule,
|
|
427
|
-
MatOptionModule,
|
|
428
|
-
DataSourceCollectionDirective,
|
|
429
|
-
MatSlideToggleModule,
|
|
430
|
-
AsyncPipe,
|
|
431
|
-
NavigationProgressBarComponent,
|
|
432
|
-
UserProfileIconComponent,
|
|
433
|
-
AppsButtonComponent,
|
|
434
|
-
SettingsButtonComponent,
|
|
435
|
-
SidenavToggleButtonComponent,
|
|
436
|
-
], template: "<mat-toolbar [color]=\"color\" [ngClass]=\"{ open: opened() }\" class=\"mat-elevation-z3 header\">\n <div class=\"w-full flex flex-row gap-x-4 justify-between items-center\">\n <rxap-sidenav-toggle-button *ngIf=\"!collapsable()\"></rxap-sidenav-toggle-button>\n <div class=\"grow\">\n <ng-content></ng-content>\n </div>\n <rxap-apps-button class=\"grow-0\"></rxap-apps-button>\n <rxap-settings-button class=\"grow-0\"></rxap-settings-button>\n <rxap-user-profile-icon class=\"grow-0\"></rxap-user-profile-icon>\n </div>\n</mat-toolbar>\n\n<rxap-navigation-progress-bar></rxap-navigation-progress-bar>\n" }]
|
|
437
|
-
}], ctorParameters: function () { return [{ type: i1.HeaderService, decorators: [{
|
|
438
|
-
type: Inject,
|
|
439
|
-
args: [HeaderService]
|
|
440
|
-
}] }, { type: LayoutComponentService }, { type: undefined, decorators: [{
|
|
441
|
-
type: Optional
|
|
442
|
-
}, {
|
|
157
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: SidenavFooterDirective, decorators: [{
|
|
158
|
+
type: Directive,
|
|
159
|
+
args: [{
|
|
160
|
+
selector: '[rxapSidenavFooter]',
|
|
161
|
+
standalone: true,
|
|
162
|
+
}]
|
|
163
|
+
}], ctorParameters: () => [{ type: i0.TemplateRef, decorators: [{
|
|
443
164
|
type: Inject,
|
|
444
|
-
args: [
|
|
445
|
-
}] }]
|
|
446
|
-
type: Input
|
|
447
|
-
}] } });
|
|
448
|
-
|
|
449
|
-
class SignOutComponent {
|
|
450
|
-
constructor(authenticationService) {
|
|
451
|
-
this.authenticationService = authenticationService;
|
|
452
|
-
}
|
|
453
|
-
async logout() {
|
|
454
|
-
await this.authenticationService.signOut();
|
|
455
|
-
}
|
|
456
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SignOutComponent, deps: [{ token: i2$3.RxapAuthenticationService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
457
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SignOutComponent, isStandalone: true, selector: "rxap-sign-out", ngImport: i0, template: "<button\n mat-icon-button\n (click)=\"logout()\"\n>\n <mat-icon svgIcon=\"logout\"></mat-icon>\n</button>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i3$1.MatIconButton, selector: "button[mat-icon-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i4.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
458
|
-
}
|
|
459
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SignOutComponent, decorators: [{
|
|
460
|
-
type: Component,
|
|
461
|
-
args: [{ selector: 'rxap-sign-out', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [MatButtonModule, MatIconModule], template: "<button\n mat-icon-button\n (click)=\"logout()\"\n>\n <mat-icon svgIcon=\"logout\"></mat-icon>\n</button>\n" }]
|
|
462
|
-
}], ctorParameters: function () { return [{ type: i2$3.RxapAuthenticationService }]; } });
|
|
165
|
+
args: [TemplateRef]
|
|
166
|
+
}] }] });
|
|
463
167
|
|
|
464
|
-
class
|
|
465
|
-
constructor(
|
|
466
|
-
this.
|
|
168
|
+
class SidenavHeaderDirective {
|
|
169
|
+
constructor(template) {
|
|
170
|
+
this.template = template;
|
|
467
171
|
}
|
|
468
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
469
|
-
static { this.ɵ
|
|
172
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: SidenavHeaderDirective, deps: [{ token: TemplateRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
173
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.1.3", type: SidenavHeaderDirective, isStandalone: true, selector: "[rxapSidenavHeader]", ngImport: i0 }); }
|
|
470
174
|
}
|
|
471
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
472
|
-
type:
|
|
473
|
-
args: [{
|
|
474
|
-
|
|
175
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: SidenavHeaderDirective, decorators: [{
|
|
176
|
+
type: Directive,
|
|
177
|
+
args: [{
|
|
178
|
+
selector: '[rxapSidenavHeader]',
|
|
179
|
+
standalone: true,
|
|
180
|
+
}]
|
|
181
|
+
}], ctorParameters: () => [{ type: i0.TemplateRef, decorators: [{
|
|
475
182
|
type: Inject,
|
|
476
|
-
args: [
|
|
477
|
-
}] }]
|
|
183
|
+
args: [TemplateRef]
|
|
184
|
+
}] }] });
|
|
478
185
|
|
|
479
186
|
class SidenavComponentService {
|
|
480
187
|
constructor(config) {
|
|
@@ -485,13 +192,13 @@ class SidenavComponentService {
|
|
|
485
192
|
toggleNavigationCollapse() {
|
|
486
193
|
this.collapsed$.next(!this.collapsed$.value);
|
|
487
194
|
}
|
|
488
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
489
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
195
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: SidenavComponentService, deps: [{ token: i1$2.ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
196
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: SidenavComponentService, providedIn: 'root' }); }
|
|
490
197
|
}
|
|
491
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
198
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: SidenavComponentService, decorators: [{
|
|
492
199
|
type: Injectable,
|
|
493
200
|
args: [{ providedIn: 'root' }]
|
|
494
|
-
}], ctorParameters:
|
|
201
|
+
}], ctorParameters: () => [{ type: i1$2.ConfigService }] });
|
|
495
202
|
|
|
496
203
|
class NavigationItemComponent {
|
|
497
204
|
get isActive() {
|
|
@@ -562,8 +269,8 @@ class NavigationItemComponent {
|
|
|
562
269
|
}
|
|
563
270
|
return item;
|
|
564
271
|
}
|
|
565
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
566
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
272
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: NavigationItemComponent, deps: [{ token: Router }, { token: SidenavComponentService }, { token: ElementRef }, { token: Renderer2 }, { token: Overlay }, { token: ViewContainerRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
273
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.3", type: NavigationItemComponent, isStandalone: true, selector: "li[rxap-navigation-item]", inputs: { level: "level", item: "item" }, host: { properties: { "class.active": "this.isActive" } }, viewQueries: [{ propertyName: "routerLinkActive", first: true, predicate: RouterLinkActive, descendants: true, static: true }], usesOnChanges: true, ngImport: i0, template: "<div [ngClass]=\"{\n 'border-l-4 text-accent-400 border-accent-600': active(),\n }\">\n <a [routerLink]=\"item.routerLink\"\n class=\"h-12 pl-4 pr-5 flex flex-row justify-between items-center gap-x-4\"\n matRipple\n routerLinkActive\n\n >\n <span\n [ngClass]=\"{\n 'pl-0': level === 0,\n 'pl-4': level === 1,\n 'pl-8': level === 2,\n 'pl-12': level === 3\n }\"\n class=\"grow whitespace-nowrap\"\n >\n {{ item.label }}\n </span>\n <mat-icon *ngIf=\"item.icon\" [rxapIcon]=\"item.icon\"></mat-icon>\n </a>\n\n <ng-container *ngIf=\"item.children?.length && active()\">\n\n <mat-divider></mat-divider>\n\n <ul [@sub-nav]\n [items]=\"children ?? []\"\n [level]=\"level + 1\"\n rxap-navigation\n >\n </ul>\n\n <mat-divider></mat-divider>\n\n </ng-container>\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: i0.forwardRef(() => RouterLinkActive), selector: "[routerLinkActive]", inputs: ["routerLinkActiveOptions", "ariaCurrentWhenActive", "routerLinkActive"], outputs: ["isActiveChange"], exportAs: ["routerLinkActive"] }, { kind: "directive", type: i0.forwardRef(() => RouterLink), selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "directive", type: i0.forwardRef(() => NgIf), selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: i0.forwardRef(() => MatRippleModule) }, { kind: "directive", type: i0.forwardRef(() => i1$3.MatRipple), selector: "[mat-ripple], [matRipple]", inputs: ["matRippleColor", "matRippleUnbounded", "matRippleCentered", "matRippleRadius", "matRippleAnimation", "matRippleDisabled", "matRippleTrigger"], exportAs: ["matRipple"] }, { kind: "ngmodule", type: i0.forwardRef(() => MatIconModule) }, { kind: "component", type: i0.forwardRef(() => i4.MatIcon), selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "directive", type: i0.forwardRef(() => IconDirective), selector: "mat-icon[rxapIcon]", inputs: ["rxapIcon"] }, { kind: "ngmodule", type: i0.forwardRef(() => MatDividerModule) }, { kind: "component", type: i0.forwardRef(() => i3$1.MatDivider), selector: "mat-divider", inputs: ["vertical", "inset"] }, { kind: "component", type: i0.forwardRef(() => NavigationComponent), selector: "ul[rxap-navigation]", inputs: ["items", "level", "root"] }, { kind: "directive", type: i0.forwardRef(() => NgClass), selector: "[ngClass]", inputs: ["class", "ngClass"] }], animations: [
|
|
567
274
|
trigger('sub-nav', [
|
|
568
275
|
transition(':enter', [
|
|
569
276
|
style({
|
|
@@ -581,7 +288,7 @@ class NavigationItemComponent {
|
|
|
581
288
|
]),
|
|
582
289
|
], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
583
290
|
}
|
|
584
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
291
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: NavigationItemComponent, decorators: [{
|
|
585
292
|
type: Component,
|
|
586
293
|
args: [{ selector: 'li[rxap-navigation-item]', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, animations: [
|
|
587
294
|
trigger('sub-nav', [
|
|
@@ -610,7 +317,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
610
317
|
forwardRef(() => NavigationComponent),
|
|
611
318
|
NgClass,
|
|
612
319
|
], template: "<div [ngClass]=\"{\n 'border-l-4 text-accent-400 border-accent-600': active(),\n }\">\n <a [routerLink]=\"item.routerLink\"\n class=\"h-12 pl-4 pr-5 flex flex-row justify-between items-center gap-x-4\"\n matRipple\n routerLinkActive\n\n >\n <span\n [ngClass]=\"{\n 'pl-0': level === 0,\n 'pl-4': level === 1,\n 'pl-8': level === 2,\n 'pl-12': level === 3\n }\"\n class=\"grow whitespace-nowrap\"\n >\n {{ item.label }}\n </span>\n <mat-icon *ngIf=\"item.icon\" [rxapIcon]=\"item.icon\"></mat-icon>\n </a>\n\n <ng-container *ngIf=\"item.children?.length && active()\">\n\n <mat-divider></mat-divider>\n\n <ul [@sub-nav]\n [items]=\"children ?? []\"\n [level]=\"level + 1\"\n rxap-navigation\n >\n </ul>\n\n <mat-divider></mat-divider>\n\n </ng-container>\n</div>\n" }]
|
|
613
|
-
}], ctorParameters:
|
|
320
|
+
}], ctorParameters: () => [{ type: i2.Router, decorators: [{
|
|
614
321
|
type: Inject,
|
|
615
322
|
args: [Router]
|
|
616
323
|
}] }, { type: SidenavComponentService, decorators: [{
|
|
@@ -628,7 +335,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
628
335
|
}] }, { type: i0.ViewContainerRef, decorators: [{
|
|
629
336
|
type: Inject,
|
|
630
337
|
args: [ViewContainerRef]
|
|
631
|
-
}] }]
|
|
338
|
+
}] }], propDecorators: { level: [{
|
|
632
339
|
type: Input
|
|
633
340
|
}], routerLinkActive: [{
|
|
634
341
|
type: ViewChild,
|
|
@@ -651,6 +358,13 @@ function IsNavigationItem(item) {
|
|
|
651
358
|
return (!!item && !!item['routerLink'] && !!item['label']);
|
|
652
359
|
}
|
|
653
360
|
|
|
361
|
+
const RXAP_NAVIGATION_CONFIG = new InjectionToken('rxap/layout/navigation-config');
|
|
362
|
+
const RXAP_NAVIGATION_CONFIG_INSERTS = new InjectionToken('rxap/layout/navigation-config-inserts');
|
|
363
|
+
const RXAP_FOOTER_COMPONENT = new InjectionToken('rxap/layout/footer-component');
|
|
364
|
+
const RXAP_HEADER_COMPONENT = new InjectionToken('rxap/layout/header-component');
|
|
365
|
+
const RXAP_LOGO_CONFIG = new InjectionToken('rxap/layout/logo-config');
|
|
366
|
+
const RXAP_LAYOUT_APPS_GRID = new InjectionToken('rxap/layout/apps-grid');
|
|
367
|
+
|
|
654
368
|
class NavigationService {
|
|
655
369
|
constructor(navigation, injector, inserts = null) {
|
|
656
370
|
this.injector = injector;
|
|
@@ -666,7 +380,7 @@ class NavigationService {
|
|
|
666
380
|
Object.entries(inserts).forEach(([id, insert]) => this.insert(id, insert, false));
|
|
667
381
|
}
|
|
668
382
|
this.updateNavigation();
|
|
669
|
-
this.config$ = this.navigation$.pipe(switchMap
|
|
383
|
+
this.config$ = this.navigation$.pipe(switchMap((navigationWithoutStatusCheck) => this.checkNavigationStatusProviders(navigationWithoutStatusCheck)));
|
|
670
384
|
}
|
|
671
385
|
/**
|
|
672
386
|
* @deprecated use add instead
|
|
@@ -723,7 +437,7 @@ class NavigationService {
|
|
|
723
437
|
return of(false);
|
|
724
438
|
})));
|
|
725
439
|
// TODO : dont wait for all status services to complete, but cancel waiting if one returns false
|
|
726
|
-
return combineLatest(isVisibleArray$).pipe(map((isVisibleArray) => isVisibleArray.reduce((acc, isVisible) => acc && isVisible, true)), map((isVisible) => (isVisible ? navigationItem : null)), switchMap
|
|
440
|
+
return combineLatest(isVisibleArray$).pipe(map((isVisibleArray) => isVisibleArray.reduce((acc, isVisible) => acc && isVisible, true)), map((isVisible) => (isVisible ? navigationItem : null)), switchMap((navigationItemOrNull) => {
|
|
727
441
|
if (navigationItemOrNull) {
|
|
728
442
|
if (navigationItemOrNull.children?.length) {
|
|
729
443
|
return this.checkNavigationStatusProviders(navigationItemOrNull.children).pipe(map((children) => ({
|
|
@@ -771,13 +485,13 @@ class NavigationService {
|
|
|
771
485
|
}
|
|
772
486
|
return navigation;
|
|
773
487
|
}
|
|
774
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
775
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
488
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: NavigationService, deps: [{ token: RXAP_NAVIGATION_CONFIG }, { token: INJECTOR }, { token: RXAP_NAVIGATION_CONFIG_INSERTS, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
489
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: NavigationService, providedIn: 'root' }); }
|
|
776
490
|
}
|
|
777
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
491
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: NavigationService, decorators: [{
|
|
778
492
|
type: Injectable,
|
|
779
493
|
args: [{ providedIn: 'root' }]
|
|
780
|
-
}], ctorParameters:
|
|
494
|
+
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
781
495
|
type: Inject,
|
|
782
496
|
args: [RXAP_NAVIGATION_CONFIG]
|
|
783
497
|
}] }, { type: undefined, decorators: [{
|
|
@@ -788,7 +502,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
788
502
|
}, {
|
|
789
503
|
type: Inject,
|
|
790
504
|
args: [RXAP_NAVIGATION_CONFIG_INSERTS]
|
|
791
|
-
}] }]
|
|
505
|
+
}] }] });
|
|
792
506
|
|
|
793
507
|
class NavigationComponent {
|
|
794
508
|
constructor(navigationService, cdr, sidenav) {
|
|
@@ -798,66 +512,507 @@ class NavigationComponent {
|
|
|
798
512
|
this.level = 0;
|
|
799
513
|
this._root = false;
|
|
800
514
|
}
|
|
801
|
-
set root(value) {
|
|
802
|
-
this._root = coerceBoolean(value);
|
|
515
|
+
set root(value) {
|
|
516
|
+
this._root = coerceBoolean(value);
|
|
517
|
+
}
|
|
518
|
+
ngOnInit() {
|
|
519
|
+
if (this._root) {
|
|
520
|
+
this.items = [];
|
|
521
|
+
this.subscription = this.navigationService.config$
|
|
522
|
+
.pipe(tap((navigation) => (this.items = navigation)), tap(() => this.cdr.detectChanges()))
|
|
523
|
+
.subscribe();
|
|
524
|
+
}
|
|
525
|
+
this.items ??= [];
|
|
526
|
+
}
|
|
527
|
+
ngOnDestroy() {
|
|
528
|
+
this.subscription?.unsubscribe();
|
|
529
|
+
}
|
|
530
|
+
// region type save item property
|
|
531
|
+
// required to check the type of the item property in the ngFor loop
|
|
532
|
+
isNavigationDividerItem(item) {
|
|
533
|
+
return item['divider'];
|
|
534
|
+
}
|
|
535
|
+
isNavigationItem(item) {
|
|
536
|
+
return !this.isNavigationDividerItem(item);
|
|
537
|
+
}
|
|
538
|
+
asNavigationItem(item) {
|
|
539
|
+
if (!this.isNavigationItem(item)) {
|
|
540
|
+
throw new Error('The item is not a NavigationItem');
|
|
541
|
+
}
|
|
542
|
+
return item;
|
|
543
|
+
}
|
|
544
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: NavigationComponent, deps: [{ token: NavigationService }, { token: ChangeDetectorRef }, { token: SidenavComponentService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
545
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.3", type: NavigationComponent, isStandalone: true, selector: "ul[rxap-navigation]", inputs: { items: "items", level: "level", root: "root" }, host: { properties: { "class.rxap-root-navigation": "this._root" }, classAttribute: "list-none dark:text-neutral-400 text-neutral-700" }, ngImport: i0, template: "<ng-template [ngForOf]=\"items\" let-item ngFor>\n <ng-template [ngIf]=\"isNavigationDividerItem(item)\">\n <mat-divider></mat-divider>\n <div *ngIf=\"(sidenav.collapsed$ | async) === false\" class=\"pl-5 h-6\">\n <span *ngIf=\"item.title\">{{item.title}}</span>\n </div>\n </ng-template>\n <ng-template [ngIf]=\"isNavigationItem(item)\">\n <li [item]=\"asNavigationItem(item)\" [level]=\"level\" class=\"dark:hover:text-white hover:text-black\"\n rxap-navigation-item></li>\n </ng-template>\n</ng-template>\n", styles: [""], dependencies: [{ kind: "directive", type: i0.forwardRef(() => NgFor), selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i0.forwardRef(() => NgIf), selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: i0.forwardRef(() => MatDividerModule) }, { kind: "component", type: i0.forwardRef(() => i3$1.MatDivider), selector: "mat-divider", inputs: ["vertical", "inset"] }, { kind: "component", type: i0.forwardRef(() => NavigationItemComponent), selector: "li[rxap-navigation-item]", inputs: ["level", "item"] }, { kind: "pipe", type: i0.forwardRef(() => AsyncPipe), name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
546
|
+
}
|
|
547
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: NavigationComponent, decorators: [{
|
|
548
|
+
type: Component,
|
|
549
|
+
args: [{ selector: 'ul[rxap-navigation]', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, standalone: true, host: {
|
|
550
|
+
class: 'list-none dark:text-neutral-400 text-neutral-700',
|
|
551
|
+
}, imports: [
|
|
552
|
+
NgFor,
|
|
553
|
+
NgIf,
|
|
554
|
+
MatDividerModule,
|
|
555
|
+
forwardRef(() => NavigationItemComponent),
|
|
556
|
+
AsyncPipe,
|
|
557
|
+
], template: "<ng-template [ngForOf]=\"items\" let-item ngFor>\n <ng-template [ngIf]=\"isNavigationDividerItem(item)\">\n <mat-divider></mat-divider>\n <div *ngIf=\"(sidenav.collapsed$ | async) === false\" class=\"pl-5 h-6\">\n <span *ngIf=\"item.title\">{{item.title}}</span>\n </div>\n </ng-template>\n <ng-template [ngIf]=\"isNavigationItem(item)\">\n <li [item]=\"asNavigationItem(item)\" [level]=\"level\" class=\"dark:hover:text-white hover:text-black\"\n rxap-navigation-item></li>\n </ng-template>\n</ng-template>\n" }]
|
|
558
|
+
}], ctorParameters: () => [{ type: NavigationService, decorators: [{
|
|
559
|
+
type: Inject,
|
|
560
|
+
args: [NavigationService]
|
|
561
|
+
}] }, { type: i0.ChangeDetectorRef, decorators: [{
|
|
562
|
+
type: Inject,
|
|
563
|
+
args: [ChangeDetectorRef]
|
|
564
|
+
}] }, { type: SidenavComponentService, decorators: [{
|
|
565
|
+
type: Inject,
|
|
566
|
+
args: [SidenavComponentService]
|
|
567
|
+
}] }], propDecorators: { items: [{
|
|
568
|
+
type: Input
|
|
569
|
+
}], level: [{
|
|
570
|
+
type: Input
|
|
571
|
+
}], _root: [{
|
|
572
|
+
type: HostBinding,
|
|
573
|
+
args: ['class.rxap-root-navigation']
|
|
574
|
+
}], root: [{
|
|
575
|
+
type: Input
|
|
576
|
+
}] } });
|
|
577
|
+
|
|
578
|
+
class SidenavComponent {
|
|
579
|
+
constructor(sidenav) {
|
|
580
|
+
this.sidenav = sidenav;
|
|
581
|
+
}
|
|
582
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: SidenavComponent, deps: [{ token: SidenavComponentService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
583
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.3", type: SidenavComponent, isStandalone: true, selector: "rxap-sidenav", host: { classAttribute: "rxap-layout-sidenav" }, queries: [{ propertyName: "sidenavFooterDirective", first: true, predicate: SidenavFooterDirective, descendants: true }, { propertyName: "sidenavHeaderDirective", first: true, predicate: SidenavHeaderDirective, descendants: true }], ngImport: i0, template: "<div [ngClass]=\"{ 'collapsed': sidenav.collapsed$ | async }\" class=\"rxap-container\">\n <div class=\"inner flex flex-col justify-between items-stretch\">\n <ng-template [ngIf]=\"sidenavHeaderDirective?.template\">\n <div [ngClass]=\"{ hidden: sidenav.collapsed$ | async }\" class=\"header grow-0\">\n <ng-container *ngTemplateOutlet=\"sidenavHeaderDirective?.template ?? null\"></ng-container>\n </div>\n <mat-divider [ngClass]=\"{ hidden: sidenav.collapsed$ | async }\" class=\"grow-0\"></mat-divider>\n </ng-template>\n <div class=\"nav-container grow\">\n <ul class=\"flex flex-col\" root rxap-navigation></ul>\n </div>\n <mat-divider class=\"grow-0\"></mat-divider>\n <button (click)=\"sidenav.toggleNavigationCollapse()\" [ngClass]=\"{ 'collapsed': sidenav.collapsed$ | async }\"\n class=\"sidebar-toggle grow-0\"\n mat-button>\n <span class=\"sidebar-toggle-inner flex flex-row items-center gap-4\">\n <mat-icon class=\"arrow grow-0\">double_arrow</mat-icon>\n <span [ngClass]=\"{ hidden: sidenav.collapsed$ | async }\" class=\"label grow-0\" i18n>Collapse sidebar</span>\n </span>\n </button>\n <ng-template [ngIf]=\"sidenavFooterDirective?.template ?? null\">\n <mat-divider [ngClass]=\"{ hidden: sidenav.collapsed$ | async }\" class=\"grow-0\"></mat-divider>\n <div [ngClass]=\"{ hidden: sidenav.collapsed$ | async }\" class=\"footer grow-0\">\n <ng-container *ngTemplateOutlet=\"sidenavFooterDirective?.template ?? null\"></ng-container>\n </div>\n </ng-template>\n </div>\n</div>\n", styles: [".rxap-container,.rxap-container .inner{height:100%}.rxap-container .inner .header{padding-bottom:12px}.rxap-container .inner .footer{padding-top:12px}.rxap-container .inner .nav-container{overflow-y:scroll;padding-top:12px}.rxap-container .inner .nav-container::-webkit-scrollbar{width:6px}.rxap-container .inner .nav-container::-webkit-scrollbar-track{border-radius:2px}.rxap-container .inner .nav-container::-webkit-scrollbar-thumb{border-radius:10px}.rxap-container .sidebar-toggle{min-height:48px}.rxap-container .sidebar-toggle .sidebar-toggle-inner{padding:0}.rxap-container .sidebar-toggle .arrow{transform:rotate(180deg)}.rxap-container .sidebar-toggle.collapsed .arrow{transform:initial}.rxap-container .sidebar-toggle.collapsed .sidebar-toggle-inner{justify-content:space-around!important}\n"], dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: MatDividerModule }, { kind: "component", type: i3$1.MatDivider, selector: "mat-divider", inputs: ["vertical", "inset"] }, { kind: "component", type: NavigationComponent, selector: "ul[rxap-navigation]", inputs: ["items", "level", "root"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i3.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", exportAs: ["matButton"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i4.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "pipe", type: AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
584
|
+
}
|
|
585
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: SidenavComponent, decorators: [{
|
|
586
|
+
type: Component,
|
|
587
|
+
args: [{ selector: 'rxap-sidenav', changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
|
588
|
+
class: 'rxap-layout-sidenav',
|
|
589
|
+
}, standalone: true, imports: [
|
|
590
|
+
NgClass,
|
|
591
|
+
NgIf,
|
|
592
|
+
NgTemplateOutlet,
|
|
593
|
+
MatDividerModule,
|
|
594
|
+
NavigationComponent,
|
|
595
|
+
MatButtonModule,
|
|
596
|
+
MatIconModule,
|
|
597
|
+
AsyncPipe,
|
|
598
|
+
], template: "<div [ngClass]=\"{ 'collapsed': sidenav.collapsed$ | async }\" class=\"rxap-container\">\n <div class=\"inner flex flex-col justify-between items-stretch\">\n <ng-template [ngIf]=\"sidenavHeaderDirective?.template\">\n <div [ngClass]=\"{ hidden: sidenav.collapsed$ | async }\" class=\"header grow-0\">\n <ng-container *ngTemplateOutlet=\"sidenavHeaderDirective?.template ?? null\"></ng-container>\n </div>\n <mat-divider [ngClass]=\"{ hidden: sidenav.collapsed$ | async }\" class=\"grow-0\"></mat-divider>\n </ng-template>\n <div class=\"nav-container grow\">\n <ul class=\"flex flex-col\" root rxap-navigation></ul>\n </div>\n <mat-divider class=\"grow-0\"></mat-divider>\n <button (click)=\"sidenav.toggleNavigationCollapse()\" [ngClass]=\"{ 'collapsed': sidenav.collapsed$ | async }\"\n class=\"sidebar-toggle grow-0\"\n mat-button>\n <span class=\"sidebar-toggle-inner flex flex-row items-center gap-4\">\n <mat-icon class=\"arrow grow-0\">double_arrow</mat-icon>\n <span [ngClass]=\"{ hidden: sidenav.collapsed$ | async }\" class=\"label grow-0\" i18n>Collapse sidebar</span>\n </span>\n </button>\n <ng-template [ngIf]=\"sidenavFooterDirective?.template ?? null\">\n <mat-divider [ngClass]=\"{ hidden: sidenav.collapsed$ | async }\" class=\"grow-0\"></mat-divider>\n <div [ngClass]=\"{ hidden: sidenav.collapsed$ | async }\" class=\"footer grow-0\">\n <ng-container *ngTemplateOutlet=\"sidenavFooterDirective?.template ?? null\"></ng-container>\n </div>\n </ng-template>\n </div>\n</div>\n", styles: [".rxap-container,.rxap-container .inner{height:100%}.rxap-container .inner .header{padding-bottom:12px}.rxap-container .inner .footer{padding-top:12px}.rxap-container .inner .nav-container{overflow-y:scroll;padding-top:12px}.rxap-container .inner .nav-container::-webkit-scrollbar{width:6px}.rxap-container .inner .nav-container::-webkit-scrollbar-track{border-radius:2px}.rxap-container .inner .nav-container::-webkit-scrollbar-thumb{border-radius:10px}.rxap-container .sidebar-toggle{min-height:48px}.rxap-container .sidebar-toggle .sidebar-toggle-inner{padding:0}.rxap-container .sidebar-toggle .arrow{transform:rotate(180deg)}.rxap-container .sidebar-toggle.collapsed .arrow{transform:initial}.rxap-container .sidebar-toggle.collapsed .sidebar-toggle-inner{justify-content:space-around!important}\n"] }]
|
|
599
|
+
}], ctorParameters: () => [{ type: SidenavComponentService }], propDecorators: { sidenavFooterDirective: [{
|
|
600
|
+
type: ContentChild,
|
|
601
|
+
args: [SidenavFooterDirective]
|
|
602
|
+
}], sidenavHeaderDirective: [{
|
|
603
|
+
type: ContentChild,
|
|
604
|
+
args: [SidenavHeaderDirective]
|
|
605
|
+
}] } });
|
|
606
|
+
|
|
607
|
+
class ReplaceRouterPathsService {
|
|
608
|
+
transform(routerLink) {
|
|
609
|
+
return of(routerLink);
|
|
610
|
+
}
|
|
611
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: ReplaceRouterPathsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
612
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: ReplaceRouterPathsService, providedIn: 'root' }); }
|
|
613
|
+
}
|
|
614
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: ReplaceRouterPathsService, decorators: [{
|
|
615
|
+
type: Injectable,
|
|
616
|
+
args: [{ providedIn: 'root' }]
|
|
617
|
+
}] });
|
|
618
|
+
|
|
619
|
+
class ReplaceRouterPathsPipe {
|
|
620
|
+
constructor(rrp) {
|
|
621
|
+
this.rrp = rrp;
|
|
622
|
+
}
|
|
623
|
+
transform(routerLink) {
|
|
624
|
+
return this.rrp.transform(routerLink);
|
|
625
|
+
}
|
|
626
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: ReplaceRouterPathsPipe, deps: [{ token: ReplaceRouterPathsService }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
627
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.1.3", ngImport: i0, type: ReplaceRouterPathsPipe, isStandalone: true, name: "replaceRouterPaths" }); }
|
|
628
|
+
}
|
|
629
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: ReplaceRouterPathsPipe, decorators: [{
|
|
630
|
+
type: Pipe,
|
|
631
|
+
args: [{
|
|
632
|
+
name: 'replaceRouterPaths',
|
|
633
|
+
standalone: true,
|
|
634
|
+
}]
|
|
635
|
+
}], ctorParameters: () => [{ type: ReplaceRouterPathsService }] });
|
|
636
|
+
|
|
637
|
+
class LayoutComponentService {
|
|
638
|
+
constructor(footerComponentService, headerComponentService, logoConfig = null, config, mediaMatcher) {
|
|
639
|
+
this.footerComponentService = footerComponentService;
|
|
640
|
+
this.headerComponentService = headerComponentService;
|
|
641
|
+
this.config = config;
|
|
642
|
+
this.currentThemeDensity = toSignal(ObserveCurrentThemeDensity());
|
|
643
|
+
const mobileQuery = mediaMatcher.matchMedia('(max-width: 959px)');
|
|
644
|
+
const mobile = mobileQuery.matches;
|
|
645
|
+
const initialCollapsable = this.config.get('navigation.collapsable', true);
|
|
646
|
+
const collapsable = initialCollapsable && !mobile;
|
|
647
|
+
const pinned = this.config.get('navigation.pinned', false);
|
|
648
|
+
const mode = this.config.get('navigation.mode', pinned || !collapsable ? 'side' : 'over');
|
|
649
|
+
const opened = this.config.get('navigation.opened', (!collapsable || pinned) && !mobile);
|
|
650
|
+
this.opened = signal(opened);
|
|
651
|
+
this.mode = signal(mode);
|
|
652
|
+
this.pinned = signal(pinned);
|
|
653
|
+
this.collapsable = signal(collapsable);
|
|
654
|
+
this.fixedBottomGap = computed(() => this.footerComponentService.portalCount() * (64 + (this.currentThemeDensity() ?? 0) * 4));
|
|
655
|
+
this.fixedTopGap = computed(() => this.headerComponentService.componentCount() * (64 + (this.currentThemeDensity() ?? 0) * 4));
|
|
656
|
+
this.logo = logoConfig ?? {
|
|
657
|
+
src: 'assets/logo.png',
|
|
658
|
+
width: 192,
|
|
659
|
+
};
|
|
660
|
+
mobileQuery.addEventListener('change', (event) => {
|
|
661
|
+
if (initialCollapsable) {
|
|
662
|
+
this.collapsable.set(!event.matches);
|
|
663
|
+
if (this.collapsable()) {
|
|
664
|
+
if (!this.pinned()) {
|
|
665
|
+
this.opened.set(false);
|
|
666
|
+
}
|
|
667
|
+
}
|
|
668
|
+
}
|
|
669
|
+
});
|
|
670
|
+
effect(() => {
|
|
671
|
+
if (this.pinned()) {
|
|
672
|
+
this.mode.set('side');
|
|
673
|
+
this.opened.set(true);
|
|
674
|
+
}
|
|
675
|
+
else {
|
|
676
|
+
this.mode.set('over');
|
|
677
|
+
this.opened.set(false);
|
|
678
|
+
}
|
|
679
|
+
}, { allowSignalWrites: true });
|
|
680
|
+
}
|
|
681
|
+
toggleOpened() {
|
|
682
|
+
this.opened.set(!this.opened());
|
|
683
|
+
}
|
|
684
|
+
togglePinned() {
|
|
685
|
+
this.pinned.set(!this.pinned());
|
|
686
|
+
}
|
|
687
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: LayoutComponentService, deps: [{ token: i1$1.FooterService }, { token: i1$1.HeaderService }, { token: RXAP_LOGO_CONFIG, optional: true }, { token: ConfigService }, { token: i2$1.MediaMatcher }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
688
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: LayoutComponentService, providedIn: 'root' }); }
|
|
689
|
+
}
|
|
690
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: LayoutComponentService, decorators: [{
|
|
691
|
+
type: Injectable,
|
|
692
|
+
args: [{ providedIn: 'root' }]
|
|
693
|
+
}], ctorParameters: () => [{ type: i1$1.FooterService }, { type: i1$1.HeaderService }, { type: undefined, decorators: [{
|
|
694
|
+
type: Optional
|
|
695
|
+
}, {
|
|
696
|
+
type: Inject,
|
|
697
|
+
args: [RXAP_LOGO_CONFIG]
|
|
698
|
+
}] }, { type: i1$2.ConfigService, decorators: [{
|
|
699
|
+
type: Inject,
|
|
700
|
+
args: [ConfigService]
|
|
701
|
+
}] }, { type: i2$1.MediaMatcher }] });
|
|
702
|
+
|
|
703
|
+
class FooterComponent {
|
|
704
|
+
constructor(footerService) {
|
|
705
|
+
this.footerService = footerService;
|
|
706
|
+
}
|
|
707
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: FooterComponent, deps: [{ token: i1$1.FooterService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
708
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.3", type: FooterComponent, isStandalone: true, selector: "rxap-footer", ngImport: i0, template: "<ng-template [ngIf]=\"footerService.portals()\" let-portals>\n <mat-toolbar *ngIf=\"portals.length\" class=\"footer mat-elevation-z1\">\n <mat-toolbar-row *ngFor=\"let portal of portals\">\n <ng-template [cdkPortalOutlet]=\"portal\"></ng-template>\n </mat-toolbar-row>\n </mat-toolbar>\n</ng-template>\n", styles: [""], dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: MatToolbarModule }, { kind: "component", type: i2$2.MatToolbar, selector: "mat-toolbar", inputs: ["color"], exportAs: ["matToolbar"] }, { kind: "directive", type: i2$2.MatToolbarRow, selector: "mat-toolbar-row", exportAs: ["matToolbarRow"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "ngmodule", type: PortalModule }, { kind: "directive", type: i1.CdkPortalOutlet, selector: "[cdkPortalOutlet]", inputs: ["cdkPortalOutlet"], outputs: ["attached"], exportAs: ["cdkPortalOutlet"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
709
|
+
}
|
|
710
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: FooterComponent, decorators: [{
|
|
711
|
+
type: Component,
|
|
712
|
+
args: [{ selector: 'rxap-footer', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [NgIf, MatToolbarModule, NgFor, PortalModule, AsyncPipe], template: "<ng-template [ngIf]=\"footerService.portals()\" let-portals>\n <mat-toolbar *ngIf=\"portals.length\" class=\"footer mat-elevation-z1\">\n <mat-toolbar-row *ngFor=\"let portal of portals\">\n <ng-template [cdkPortalOutlet]=\"portal\"></ng-template>\n </mat-toolbar-row>\n </mat-toolbar>\n</ng-template>\n" }]
|
|
713
|
+
}], ctorParameters: () => [{ type: i1$1.FooterService }] });
|
|
714
|
+
|
|
715
|
+
class AppUrlService {
|
|
716
|
+
constructor(config, localeId, authorizationService, environment) {
|
|
717
|
+
this.config = config;
|
|
718
|
+
this.localeId = localeId;
|
|
719
|
+
this.authorizationService = authorizationService;
|
|
720
|
+
this.environment = environment;
|
|
721
|
+
this._apps = this.config.get('navigation.apps', []);
|
|
722
|
+
}
|
|
723
|
+
getApp(appId) {
|
|
724
|
+
return this._apps.find(app => app.id === appId) ?? null;
|
|
725
|
+
}
|
|
726
|
+
getAppUrl(appId, path, infix = this.getPathPrefix()) {
|
|
727
|
+
const app = this.getApp(appId);
|
|
728
|
+
if (app) {
|
|
729
|
+
return JoinPath(app.href, infix, path);
|
|
730
|
+
}
|
|
731
|
+
return null;
|
|
732
|
+
}
|
|
733
|
+
getAppUrlOrThrow(appId, path) {
|
|
734
|
+
const url = this.getAppUrl(appId, path);
|
|
735
|
+
if (url) {
|
|
736
|
+
return url;
|
|
737
|
+
}
|
|
738
|
+
throw new Error(`Could not find app with id "${appId}"`);
|
|
739
|
+
}
|
|
740
|
+
navigate(appId, path) {
|
|
741
|
+
const url = this.getAppUrl(appId, path);
|
|
742
|
+
if (url) {
|
|
743
|
+
ClickOnLink(url);
|
|
744
|
+
}
|
|
745
|
+
}
|
|
746
|
+
async getAppList() {
|
|
747
|
+
const appList = this
|
|
748
|
+
._apps
|
|
749
|
+
.filter(app => !app.hidden)
|
|
750
|
+
.map(app => ({
|
|
751
|
+
...app,
|
|
752
|
+
href: JoinPath(app.href, this.getPathPrefix()),
|
|
753
|
+
}));
|
|
754
|
+
const filteredAppList = [];
|
|
755
|
+
for (const app of appList) {
|
|
756
|
+
if (await firstValueFrom(this.authorizationService.hasPermission$(app.permissions))) {
|
|
757
|
+
filteredAppList.push(app);
|
|
758
|
+
}
|
|
759
|
+
}
|
|
760
|
+
return filteredAppList;
|
|
761
|
+
}
|
|
762
|
+
getPathPrefix() {
|
|
763
|
+
if (this.environment.production && this.localeId) {
|
|
764
|
+
return this.localeId.replace(/-.+$/, '');
|
|
765
|
+
}
|
|
766
|
+
return '';
|
|
767
|
+
}
|
|
768
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: AppUrlService, deps: [{ token: i1$2.ConfigService }, { token: LOCALE_ID }, { token: i2$3.AuthorizationService }, { token: RXAP_ENVIRONMENT }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
769
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: AppUrlService, providedIn: 'root' }); }
|
|
770
|
+
}
|
|
771
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: AppUrlService, decorators: [{
|
|
772
|
+
type: Injectable,
|
|
773
|
+
args: [{ providedIn: 'root' }]
|
|
774
|
+
}], ctorParameters: () => [{ type: i1$2.ConfigService }, { type: undefined, decorators: [{
|
|
775
|
+
type: Inject,
|
|
776
|
+
args: [LOCALE_ID]
|
|
777
|
+
}] }, { type: i2$3.AuthorizationService }, { type: undefined, decorators: [{
|
|
778
|
+
type: Inject,
|
|
779
|
+
args: [RXAP_ENVIRONMENT]
|
|
780
|
+
}] }] });
|
|
781
|
+
|
|
782
|
+
class AppsButtonComponent {
|
|
783
|
+
constructor(grid, appUrlService, authenticationService) {
|
|
784
|
+
this.appUrlService = appUrlService;
|
|
785
|
+
this.authenticationService = authenticationService;
|
|
786
|
+
this.isOpen = false;
|
|
787
|
+
this.appList = signal([]);
|
|
788
|
+
}
|
|
789
|
+
ngOnInit() {
|
|
790
|
+
this._subscription = this.authenticationService.isAuthenticated$.pipe(filter(Boolean), switchMap$1(() => this.appUrlService.getAppList()), tap((apps) => this.appList.set(apps))).subscribe();
|
|
791
|
+
}
|
|
792
|
+
ngOnDestroy() {
|
|
793
|
+
this._subscription?.unsubscribe();
|
|
794
|
+
}
|
|
795
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: AppsButtonComponent, deps: [{ token: RXAP_LAYOUT_APPS_GRID, optional: true }, { token: AppUrlService }, { token: i2$4.RxapAuthenticationService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
796
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.3", type: AppsButtonComponent, isStandalone: true, selector: "rxap-apps-button", ngImport: i0, template: "<div *ngIf=\"appList()?.length\" class=\"flex flex-row items-center gap-8\">\n\n <div *ngIf=\"isOpen\" class=\"flex flex-row items-center gap-6\">\n\n <div *ngFor=\"let app of appList()\" class=\"h-10\">\n <a [href]=\"app.href\" mat-stroked-button>\n <span class=\"flex flex-row items-center gap-4\">\n <img *ngIf=\"app.image\" [alt]=\"app.label\" [ngSrc]=\"app.image\" height=\"40\" width=\"40\">\n <span class=\"label grow-0\">{{app.label}}</span>\n </span>\n </a>\n </div>\n\n </div>\n\n <button (click)=\"isOpen = !isOpen\" mat-icon-button>\n <mat-icon svgIcon=\"apps\"></mat-icon>\n </button>\n\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i3.MatAnchor, selector: "a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button]", exportAs: ["matButton", "matAnchor"] }, { kind: "component", type: i3.MatIconButton, selector: "button[mat-icon-button]", exportAs: ["matButton"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i4.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "directive", type: NgOptimizedImage, selector: "img[ngSrc]", inputs: ["ngSrc", "ngSrcset", "sizes", "width", "height", "loading", "priority", "loaderParams", "disableOptimizedSrcset", "fill", "src", "srcset"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
797
|
+
}
|
|
798
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: AppsButtonComponent, decorators: [{
|
|
799
|
+
type: Component,
|
|
800
|
+
args: [{ selector: 'rxap-apps-button', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [
|
|
801
|
+
NgIf,
|
|
802
|
+
NgFor,
|
|
803
|
+
MatButtonModule,
|
|
804
|
+
MatIconModule,
|
|
805
|
+
NgOptimizedImage,
|
|
806
|
+
], template: "<div *ngIf=\"appList()?.length\" class=\"flex flex-row items-center gap-8\">\n\n <div *ngIf=\"isOpen\" class=\"flex flex-row items-center gap-6\">\n\n <div *ngFor=\"let app of appList()\" class=\"h-10\">\n <a [href]=\"app.href\" mat-stroked-button>\n <span class=\"flex flex-row items-center gap-4\">\n <img *ngIf=\"app.image\" [alt]=\"app.label\" [ngSrc]=\"app.image\" height=\"40\" width=\"40\">\n <span class=\"label grow-0\">{{app.label}}</span>\n </span>\n </a>\n </div>\n\n </div>\n\n <button (click)=\"isOpen = !isOpen\" mat-icon-button>\n <mat-icon svgIcon=\"apps\"></mat-icon>\n </button>\n\n</div>\n" }]
|
|
807
|
+
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
808
|
+
type: Optional
|
|
809
|
+
}, {
|
|
810
|
+
type: Inject,
|
|
811
|
+
args: [RXAP_LAYOUT_APPS_GRID]
|
|
812
|
+
}] }, { type: AppUrlService }, { type: i2$4.RxapAuthenticationService }] });
|
|
813
|
+
|
|
814
|
+
class NavigationProgressBarComponent {
|
|
815
|
+
constructor(router) {
|
|
816
|
+
this.router = router;
|
|
817
|
+
this.navigating$ = this.router.events.pipe(filter(event => event instanceof NavigationStart ||
|
|
818
|
+
event instanceof NavigationEnd ||
|
|
819
|
+
event instanceof NavigationCancel), map(event => event instanceof NavigationStart));
|
|
820
|
+
}
|
|
821
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: NavigationProgressBarComponent, deps: [{ token: Router }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
822
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.3", type: NavigationProgressBarComponent, isStandalone: true, selector: "rxap-navigation-progress-bar", ngImport: i0, template: "<mat-progress-bar\n *ngIf=\"navigating$ | async\"\n color=\"accent\"\n mode=\"indeterminate\"\n></mat-progress-bar>\n", styles: [""], dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: MatProgressBarModule }, { kind: "component", type: i1$4.MatProgressBar, selector: "mat-progress-bar", inputs: ["color", "value", "bufferValue", "mode"], outputs: ["animationEnd"], exportAs: ["matProgressBar"] }, { kind: "pipe", type: AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
823
|
+
}
|
|
824
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: NavigationProgressBarComponent, decorators: [{
|
|
825
|
+
type: Component,
|
|
826
|
+
args: [{ selector: 'rxap-navigation-progress-bar', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [
|
|
827
|
+
NgIf,
|
|
828
|
+
MatProgressBarModule,
|
|
829
|
+
AsyncPipe,
|
|
830
|
+
], template: "<mat-progress-bar\n *ngIf=\"navigating$ | async\"\n color=\"accent\"\n mode=\"indeterminate\"\n></mat-progress-bar>\n" }]
|
|
831
|
+
}], ctorParameters: () => [{ type: i2.Router, decorators: [{
|
|
832
|
+
type: Inject,
|
|
833
|
+
args: [Router]
|
|
834
|
+
}] }] });
|
|
835
|
+
|
|
836
|
+
class LanguageSelectorComponent {
|
|
837
|
+
constructor(language) {
|
|
838
|
+
this.language = language;
|
|
839
|
+
}
|
|
840
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: LanguageSelectorComponent, deps: [{ token: i1$5.LanguageSelectorService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
841
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.3", type: LanguageSelectorComponent, isStandalone: true, selector: "rxap-language-selector", ngImport: i0, template: "<ng-template [ngIf]=\"(language.languages | keyvalue).length\">\n <div>\n <mat-form-field appearance=\"outline\" class=\"language-selector\" rxapStopPropagation>\n <mat-label i18n>Select Language</mat-label>\n <mat-select (ngModelChange)=\"language.setLanguage($event)\" [ngModel]=\"language.selectedLanguage\">\n <mat-option *ngFor=\"let item of language.languages | keyvalue\" [value]=\"item.key\">{{item.value}}</mat-option>\n </mat-select>\n </mat-form-field>\n </div>\n</ng-template>\n", styles: [".language-selector{width:calc(100% - 32px);margin:0 16px}.language-selector ::ng-deep .mat-form-field-wrapper{padding-bottom:0}.language-selector ::ng-deep .mat-form-field-wrapper .mat-form-field-infix{padding:12px 0;border-width:6px}.language-selector ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-select-arrow-wrapper{transform:translateY(0)}\n"], dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i2$5.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i2$5.MatLabel, selector: "mat-label" }, { kind: "directive", type: StopPropagationDirective, selector: "[rxapStopPropagation]" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i3$2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i1$3.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i5.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i5.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "ngmodule", type: MatOptionModule }, { kind: "pipe", type: KeyValuePipe, name: "keyvalue" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
842
|
+
}
|
|
843
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: LanguageSelectorComponent, decorators: [{
|
|
844
|
+
type: Component,
|
|
845
|
+
args: [{ selector: 'rxap-language-selector', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [
|
|
846
|
+
NgIf,
|
|
847
|
+
MatFormFieldModule,
|
|
848
|
+
StopPropagationDirective,
|
|
849
|
+
MatSelectModule,
|
|
850
|
+
FormsModule,
|
|
851
|
+
NgFor,
|
|
852
|
+
MatOptionModule,
|
|
853
|
+
KeyValuePipe,
|
|
854
|
+
], template: "<ng-template [ngIf]=\"(language.languages | keyvalue).length\">\n <div>\n <mat-form-field appearance=\"outline\" class=\"language-selector\" rxapStopPropagation>\n <mat-label i18n>Select Language</mat-label>\n <mat-select (ngModelChange)=\"language.setLanguage($event)\" [ngModel]=\"language.selectedLanguage\">\n <mat-option *ngFor=\"let item of language.languages | keyvalue\" [value]=\"item.key\">{{item.value}}</mat-option>\n </mat-select>\n </mat-form-field>\n </div>\n</ng-template>\n", styles: [".language-selector{width:calc(100% - 32px);margin:0 16px}.language-selector ::ng-deep .mat-form-field-wrapper{padding-bottom:0}.language-selector ::ng-deep .mat-form-field-wrapper .mat-form-field-infix{padding:12px 0;border-width:6px}.language-selector ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-select-arrow-wrapper{transform:translateY(0)}\n"] }]
|
|
855
|
+
}], ctorParameters: () => [{ type: i1$5.LanguageSelectorService }] });
|
|
856
|
+
|
|
857
|
+
class SettingsButtonComponent {
|
|
858
|
+
constructor(theme, route, injector, changelogService) {
|
|
859
|
+
this.theme = theme;
|
|
860
|
+
this.route = route;
|
|
861
|
+
this.injector = injector;
|
|
862
|
+
this.changelogService = changelogService;
|
|
863
|
+
this.isDevMode = isDevMode();
|
|
864
|
+
this.items = signal([]);
|
|
865
|
+
this.savePreviewDensityValue = false;
|
|
866
|
+
this.currentDensityValue = null;
|
|
867
|
+
this.savePreviewTypographyValue = false;
|
|
868
|
+
this.currentTypographyValue = null;
|
|
869
|
+
this.savePreviewThemeValue = false;
|
|
870
|
+
this.currentThemeValue = null;
|
|
871
|
+
this.availableThemes = this.theme.getAvailableThemes();
|
|
872
|
+
this.availableTypographies = this.theme.getAvailableTypographies();
|
|
873
|
+
}
|
|
874
|
+
ngOnDestroy() {
|
|
875
|
+
this._subscription?.unsubscribe();
|
|
876
|
+
}
|
|
877
|
+
ngOnInit() {
|
|
878
|
+
this._subscription = this.route.data.pipe(map(data => this.getCustomMenuItems(data)), map(items => items.map(item => new ComponentPortal(item, undefined, this.injector))), tap(items => this.items.set(items))).subscribe();
|
|
879
|
+
}
|
|
880
|
+
getCustomMenuItems(data) {
|
|
881
|
+
if (data?.layout?.header?.menu?.items?.length) {
|
|
882
|
+
return data.layout.header.menu.items;
|
|
883
|
+
}
|
|
884
|
+
return [];
|
|
885
|
+
}
|
|
886
|
+
openChangelogDialog() {
|
|
887
|
+
this.changelogService.showChangelogDialog();
|
|
888
|
+
}
|
|
889
|
+
previewDensity(density) {
|
|
890
|
+
this.theme.applyDensity(density);
|
|
891
|
+
}
|
|
892
|
+
restoreDensity() {
|
|
893
|
+
this.theme.applyDensity(this.theme.density());
|
|
894
|
+
}
|
|
895
|
+
setDensity(density) {
|
|
896
|
+
this.theme.setDensity(density);
|
|
897
|
+
}
|
|
898
|
+
previewTypography(typography) {
|
|
899
|
+
this.theme.applyTypography(typography);
|
|
900
|
+
}
|
|
901
|
+
restoreTypography() {
|
|
902
|
+
this.theme.applyTypography(this.theme.typography());
|
|
903
|
+
}
|
|
904
|
+
setTypography(typography) {
|
|
905
|
+
this.theme.setTypography(typography);
|
|
906
|
+
}
|
|
907
|
+
previewTheme(theme) {
|
|
908
|
+
this.theme.applyTheme(theme);
|
|
803
909
|
}
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
this.items = [];
|
|
807
|
-
this.subscription = this.navigationService.config$
|
|
808
|
-
.pipe(tap((navigation) => (this.items = navigation)), tap(() => this.cdr.detectChanges()))
|
|
809
|
-
.subscribe();
|
|
810
|
-
}
|
|
811
|
-
this.items ??= [];
|
|
910
|
+
restoreTheme() {
|
|
911
|
+
this.theme.applyTheme(this.theme.themeName());
|
|
812
912
|
}
|
|
813
|
-
|
|
814
|
-
this.
|
|
913
|
+
setTheme(theme) {
|
|
914
|
+
this.theme.setTheme(theme);
|
|
815
915
|
}
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
916
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: SettingsButtonComponent, deps: [{ token: i1$6.ThemeService }, { token: i2.ActivatedRoute }, { token: i0.Injector }, { token: i3$3.ChangelogService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
917
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.3", type: SettingsButtonComponent, isStandalone: true, selector: "rxap-settings-button", ngImport: i0, template: "<button [matMenuTriggerFor]=\"menu\" mat-icon-button>\n <mat-icon svgIcon=\"cog\"></mat-icon>\n</button>\n\n<mat-menu #menu=\"matMenu\">\n <button (click)=\"theme.toggleDarkTheme()\" mat-menu-item>\n <mat-icon *ngIf=\"theme.darkMode()\" svgIcon=\"brightness-2\"></mat-icon>\n <mat-icon *ngIf=\"!theme.darkMode()\" svgIcon=\"brightness-5\"></mat-icon>\n <span i18n>Mode</span>\n </button>\n <button [matMenuTriggerFor]=\"themeMenu\" mat-menu-item>\n <mat-icon svgIcon=\"compare\"></mat-icon>\n <span i18n>Theme</span>\n </button>\n <rxap-language-selector></rxap-language-selector>\n <button (click)=\"openChangelogDialog()\" mat-menu-item>\n <mat-icon svgIcon=\"format-list-numbered\"></mat-icon>\n <span i18n>What's new</span>\n </button>\n <ng-container *ngFor=\"let item of items()\">\n <ng-template [cdkPortalOutlet]=\"item\"></ng-template>\n </ng-container>\n</mat-menu>\n\n<mat-menu #themeMenu=\"matMenu\" xPosition=\"before\">\n <button [matMenuTriggerFor]=\"themeDensityMenu\" mat-menu-item>\n <mat-icon svgIcon=\"move-resize\"></mat-icon>\n <span i18n>Density</span>\n </button>\n <button *ngIf=\"availableTypographies?.length\" [matMenuTriggerFor]=\"themeFontMenu\" mat-menu-item>\n <mat-icon svgIcon=\"format-font\"></mat-icon>\n <span i18n>Font</span>\n </button>\n <button *ngIf=\"availableThemes?.length\" [matMenuTriggerFor]=\"themePresetMenu\" mat-menu-item>\n <mat-icon svgIcon=\"shape-outline\"></mat-icon>\n <span i18n>Preset</span>\n </button>\n</mat-menu>\n\n<mat-menu #themeDensityMenu=\"matMenu\" xPosition=\"before\">\n <button (click)=\"setDensity(0)\" (mouseenter)=\"previewDensity(0)\" (mouseleave)=\"restoreDensity()\" mat-menu-item>\n <mat-icon svgIcon=\"size-l\"></mat-icon>\n <span i18n>Normal</span>\n </button>\n <button (click)=\"setDensity(-1)\" (mouseenter)=\"previewDensity(-1)\" (mouseleave)=\"restoreDensity()\" mat-menu-item>\n <mat-icon svgIcon=\"size-m\"></mat-icon>\n <span i18n>Dense</span>\n </button>\n <button (click)=\"setDensity(-2)\" (mouseenter)=\"previewDensity(-2)\" (mouseleave)=\"restoreDensity()\" mat-menu-item>\n <mat-icon svgIcon=\"size-s\"></mat-icon>\n <span i18n>Very Dense</span>\n </button>\n <button (click)=\"setDensity(-3)\" (mouseenter)=\"previewDensity(-3)\" (mouseleave)=\"restoreDensity()\" mat-menu-item>\n <mat-icon svgIcon=\"size-xs\"></mat-icon>\n <span i18n>Extreme Dense</span>\n </button>\n</mat-menu>\n<mat-menu #themeFontMenu=\"matMenu\" xPosition=\"before\">\n <ng-template [ngIf]=\"availableTypographies?.length\">\n <button (click)=\"setTypography(typographyName)\"\n (mouseenter)=\"previewTypography(typographyName)\"\n (mouseleave)=\"restoreTypography()\"\n *ngFor=\"let typographyName of availableTypographies\"\n mat-menu-item>\n {{ typographyName }}\n </button>\n </ng-template>\n</mat-menu>\n\n<mat-menu #themePresetMenu=\"matMenu\" xPosition=\"before\">\n <ng-template [ngIf]=\"availableThemes?.length\">\n <button (click)=\"setTheme(themeName)\"\n (mouseenter)=\"previewTheme(themeName)\"\n (mouseleave)=\"restoreTheme()\"\n *ngFor=\"let themeName of availableThemes\"\n mat-menu-item>\n {{ themeName }}\n </button>\n </ng-template>\n</mat-menu>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i4$1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i4$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i3.MatIconButton, selector: "button[mat-icon-button]", exportAs: ["matButton"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i4.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "component", type: LanguageSelectorComponent, selector: "rxap-language-selector" }, { kind: "ngmodule", type: MatMenuModule }, { kind: "component", type: i7.MatMenu, selector: "mat-menu", inputs: ["backdropClass", "aria-label", "aria-labelledby", "aria-describedby", "xPosition", "yPosition", "overlapTrigger", "hasBackdrop", "class", "classList"], outputs: ["closed", "close"], exportAs: ["matMenu"] }, { kind: "component", type: i7.MatMenuItem, selector: "[mat-menu-item]", inputs: ["role", "disabled", "disableRipple"], exportAs: ["matMenuItem"] }, { kind: "directive", type: i7.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", inputs: ["mat-menu-trigger-for", "matMenuTriggerFor", "matMenuTriggerData", "matMenuTriggerRestoreFocus"], outputs: ["menuOpened", "onMenuOpen", "menuClosed", "onMenuClose"], exportAs: ["matMenuTrigger"] }, { kind: "ngmodule", type: PortalModule }, { kind: "directive", type: i1.CdkPortalOutlet, selector: "[cdkPortalOutlet]", inputs: ["cdkPortalOutlet"], outputs: ["attached"], exportAs: ["cdkPortalOutlet"] }] }); }
|
|
918
|
+
}
|
|
919
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: SettingsButtonComponent, decorators: [{
|
|
920
|
+
type: Component,
|
|
921
|
+
args: [{ selector: 'rxap-settings-button', standalone: true, imports: [CommonModule, MatButtonModule, MatIconModule, LanguageSelectorComponent, MatMenuModule, PortalModule], template: "<button [matMenuTriggerFor]=\"menu\" mat-icon-button>\n <mat-icon svgIcon=\"cog\"></mat-icon>\n</button>\n\n<mat-menu #menu=\"matMenu\">\n <button (click)=\"theme.toggleDarkTheme()\" mat-menu-item>\n <mat-icon *ngIf=\"theme.darkMode()\" svgIcon=\"brightness-2\"></mat-icon>\n <mat-icon *ngIf=\"!theme.darkMode()\" svgIcon=\"brightness-5\"></mat-icon>\n <span i18n>Mode</span>\n </button>\n <button [matMenuTriggerFor]=\"themeMenu\" mat-menu-item>\n <mat-icon svgIcon=\"compare\"></mat-icon>\n <span i18n>Theme</span>\n </button>\n <rxap-language-selector></rxap-language-selector>\n <button (click)=\"openChangelogDialog()\" mat-menu-item>\n <mat-icon svgIcon=\"format-list-numbered\"></mat-icon>\n <span i18n>What's new</span>\n </button>\n <ng-container *ngFor=\"let item of items()\">\n <ng-template [cdkPortalOutlet]=\"item\"></ng-template>\n </ng-container>\n</mat-menu>\n\n<mat-menu #themeMenu=\"matMenu\" xPosition=\"before\">\n <button [matMenuTriggerFor]=\"themeDensityMenu\" mat-menu-item>\n <mat-icon svgIcon=\"move-resize\"></mat-icon>\n <span i18n>Density</span>\n </button>\n <button *ngIf=\"availableTypographies?.length\" [matMenuTriggerFor]=\"themeFontMenu\" mat-menu-item>\n <mat-icon svgIcon=\"format-font\"></mat-icon>\n <span i18n>Font</span>\n </button>\n <button *ngIf=\"availableThemes?.length\" [matMenuTriggerFor]=\"themePresetMenu\" mat-menu-item>\n <mat-icon svgIcon=\"shape-outline\"></mat-icon>\n <span i18n>Preset</span>\n </button>\n</mat-menu>\n\n<mat-menu #themeDensityMenu=\"matMenu\" xPosition=\"before\">\n <button (click)=\"setDensity(0)\" (mouseenter)=\"previewDensity(0)\" (mouseleave)=\"restoreDensity()\" mat-menu-item>\n <mat-icon svgIcon=\"size-l\"></mat-icon>\n <span i18n>Normal</span>\n </button>\n <button (click)=\"setDensity(-1)\" (mouseenter)=\"previewDensity(-1)\" (mouseleave)=\"restoreDensity()\" mat-menu-item>\n <mat-icon svgIcon=\"size-m\"></mat-icon>\n <span i18n>Dense</span>\n </button>\n <button (click)=\"setDensity(-2)\" (mouseenter)=\"previewDensity(-2)\" (mouseleave)=\"restoreDensity()\" mat-menu-item>\n <mat-icon svgIcon=\"size-s\"></mat-icon>\n <span i18n>Very Dense</span>\n </button>\n <button (click)=\"setDensity(-3)\" (mouseenter)=\"previewDensity(-3)\" (mouseleave)=\"restoreDensity()\" mat-menu-item>\n <mat-icon svgIcon=\"size-xs\"></mat-icon>\n <span i18n>Extreme Dense</span>\n </button>\n</mat-menu>\n<mat-menu #themeFontMenu=\"matMenu\" xPosition=\"before\">\n <ng-template [ngIf]=\"availableTypographies?.length\">\n <button (click)=\"setTypography(typographyName)\"\n (mouseenter)=\"previewTypography(typographyName)\"\n (mouseleave)=\"restoreTypography()\"\n *ngFor=\"let typographyName of availableTypographies\"\n mat-menu-item>\n {{ typographyName }}\n </button>\n </ng-template>\n</mat-menu>\n\n<mat-menu #themePresetMenu=\"matMenu\" xPosition=\"before\">\n <ng-template [ngIf]=\"availableThemes?.length\">\n <button (click)=\"setTheme(themeName)\"\n (mouseenter)=\"previewTheme(themeName)\"\n (mouseleave)=\"restoreTheme()\"\n *ngFor=\"let themeName of availableThemes\"\n mat-menu-item>\n {{ themeName }}\n </button>\n </ng-template>\n</mat-menu>\n" }]
|
|
922
|
+
}], ctorParameters: () => [{ type: i1$6.ThemeService }, { type: i2.ActivatedRoute }, { type: i0.Injector }, { type: i3$3.ChangelogService }] });
|
|
923
|
+
|
|
924
|
+
class SidenavToggleButtonComponent {
|
|
925
|
+
constructor(layoutComponentService) {
|
|
926
|
+
this.layoutComponentService = layoutComponentService;
|
|
927
|
+
this.opened = layoutComponentService.opened;
|
|
820
928
|
}
|
|
821
|
-
|
|
822
|
-
|
|
929
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: SidenavToggleButtonComponent, deps: [{ token: LayoutComponentService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
930
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.3", type: SidenavToggleButtonComponent, isStandalone: true, selector: "rxap-sidenav-toggle-button", ngImport: i0, template: "<button (click)=\"layoutComponentService.toggleOpened()\" mat-icon-button>\n <mat-icon *ngIf=\"!opened()\">menu</mat-icon>\n <mat-icon *ngIf=\"opened()\">menu_open</mat-icon>\n</button>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i3.MatIconButton, selector: "button[mat-icon-button]", exportAs: ["matButton"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i4.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
931
|
+
}
|
|
932
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: SidenavToggleButtonComponent, decorators: [{
|
|
933
|
+
type: Component,
|
|
934
|
+
args: [{ selector: 'rxap-sidenav-toggle-button', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [
|
|
935
|
+
MatButtonModule,
|
|
936
|
+
NgIf,
|
|
937
|
+
MatIconModule,
|
|
938
|
+
], template: "<button (click)=\"layoutComponentService.toggleOpened()\" mat-icon-button>\n <mat-icon *ngIf=\"!opened()\">menu</mat-icon>\n <mat-icon *ngIf=\"opened()\">menu_open</mat-icon>\n</button>\n" }]
|
|
939
|
+
}], ctorParameters: () => [{ type: LayoutComponentService }] });
|
|
940
|
+
|
|
941
|
+
const EXTRACT_USERNAME_FROM_PROFILE = new InjectionToken('extract-username-from-profile', {
|
|
942
|
+
providedIn: 'root',
|
|
943
|
+
factory: () => (profile) => (profile ? profile.username ?? profile.email ?? profile.name : null) ?? null,
|
|
944
|
+
});
|
|
945
|
+
class UserProfileIconComponent {
|
|
946
|
+
constructor(userProfileService, authenticationService, extractUsernameFromProfile) {
|
|
947
|
+
this.userProfileService = userProfileService;
|
|
948
|
+
this.authenticationService = authenticationService;
|
|
949
|
+
this.username = toSignal(this.authenticationService.isAuthenticated$.pipe(filter$1(Boolean), switchMap(() => this.userProfileService.connect({
|
|
950
|
+
viewChange: this.authenticationService.isAuthenticated$.pipe(skip(1), filter$1(Boolean), distinctUntilChanged()),
|
|
951
|
+
})), filter$1(Boolean), map(extractUsernameFromProfile)), { initialValue: null });
|
|
823
952
|
}
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
throw new Error('The item is not a NavigationItem');
|
|
827
|
-
}
|
|
828
|
-
return item;
|
|
953
|
+
async logout() {
|
|
954
|
+
await this.authenticationService.signOut();
|
|
829
955
|
}
|
|
830
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
831
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
956
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: UserProfileIconComponent, deps: [{ token: i1$7.UserProfileDataSource }, { token: i2$4.RxapAuthenticationService }, { token: EXTRACT_USERNAME_FROM_PROFILE }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
957
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.3", type: UserProfileIconComponent, isStandalone: true, selector: "rxap-user-profile-icon", ngImport: i0, template: "<button [matMenuTriggerFor]=\"menu\"\n [disabled]=\"!username()\"\n class=\"profile-icon flex flex-row justify-center items-center\">\n <mat-icon class=\"avatar-icon\" svgIcon=\"account-circle\"></mat-icon>\n</button>\n\n<mat-menu #menu=\"matMenu\" [yPosition]=\"'below'\" class=\"!max-w-none\">\n <button mat-menu-item>\n <span class=\"flex flex-row gap-2\">\n <mat-icon svgIcon=\"account\"></mat-icon>\n <span>{{username()}}</span>\n </span>\n </button>\n <button (click)=\"logout()\" mat-menu-item>\n <span class=\"flex flex-row gap-2\">\n <mat-icon svgIcon=\"logout\"></mat-icon>\n <span i18n>Logout</span>\n </span>\n </button>\n</mat-menu>\n", styles: [".profile-icon{border-radius:100%;border:none;height:32px;width:32px;overflow:hidden;background-position:center center;background-repeat:no-repeat;background-size:cover}.profile-icon .avatar-icon{width:32px;height:32px;font-size:32px}.profile-icon:hover{cursor:pointer}.profile-icon:focus{outline:none}\n"], dependencies: [{ kind: "ngmodule", type: MatMenuModule }, { kind: "component", type: i7.MatMenu, selector: "mat-menu", inputs: ["backdropClass", "aria-label", "aria-labelledby", "aria-describedby", "xPosition", "yPosition", "overlapTrigger", "hasBackdrop", "class", "classList"], outputs: ["closed", "close"], exportAs: ["matMenu"] }, { kind: "component", type: i7.MatMenuItem, selector: "[mat-menu-item]", inputs: ["role", "disabled", "disableRipple"], exportAs: ["matMenuItem"] }, { kind: "directive", type: i7.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", inputs: ["mat-menu-trigger-for", "matMenuTriggerFor", "matMenuTriggerData", "matMenuTriggerRestoreFocus"], outputs: ["menuOpened", "onMenuOpen", "menuClosed", "onMenuClose"], exportAs: ["matMenuTrigger"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i4.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
832
958
|
}
|
|
833
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
959
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: UserProfileIconComponent, decorators: [{
|
|
834
960
|
type: Component,
|
|
835
|
-
args: [{ selector: '
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
NgFor,
|
|
961
|
+
args: [{ selector: 'rxap-user-profile-icon', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [
|
|
962
|
+
MatMenuModule,
|
|
963
|
+
MatIconModule,
|
|
839
964
|
NgIf,
|
|
840
|
-
MatDividerModule,
|
|
841
|
-
forwardRef(() => NavigationItemComponent),
|
|
842
965
|
AsyncPipe,
|
|
843
|
-
], template: "<
|
|
844
|
-
}], ctorParameters:
|
|
966
|
+
], template: "<button [matMenuTriggerFor]=\"menu\"\n [disabled]=\"!username()\"\n class=\"profile-icon flex flex-row justify-center items-center\">\n <mat-icon class=\"avatar-icon\" svgIcon=\"account-circle\"></mat-icon>\n</button>\n\n<mat-menu #menu=\"matMenu\" [yPosition]=\"'below'\" class=\"!max-w-none\">\n <button mat-menu-item>\n <span class=\"flex flex-row gap-2\">\n <mat-icon svgIcon=\"account\"></mat-icon>\n <span>{{username()}}</span>\n </span>\n </button>\n <button (click)=\"logout()\" mat-menu-item>\n <span class=\"flex flex-row gap-2\">\n <mat-icon svgIcon=\"logout\"></mat-icon>\n <span i18n>Logout</span>\n </span>\n </button>\n</mat-menu>\n", styles: [".profile-icon{border-radius:100%;border:none;height:32px;width:32px;overflow:hidden;background-position:center center;background-repeat:no-repeat;background-size:cover}.profile-icon .avatar-icon{width:32px;height:32px;font-size:32px}.profile-icon:hover{cursor:pointer}.profile-icon:focus{outline:none}\n"] }]
|
|
967
|
+
}], ctorParameters: () => [{ type: i1$7.UserProfileDataSource }, { type: i2$4.RxapAuthenticationService }, { type: undefined, decorators: [{
|
|
845
968
|
type: Inject,
|
|
846
|
-
args: [
|
|
847
|
-
}] }
|
|
969
|
+
args: [EXTRACT_USERNAME_FROM_PROFILE]
|
|
970
|
+
}] }] });
|
|
971
|
+
|
|
972
|
+
class HeaderComponent {
|
|
973
|
+
constructor(headerComponentService, layoutComponentService, headerComponent) {
|
|
974
|
+
this.headerComponentService = headerComponentService;
|
|
975
|
+
this.layoutComponentService = layoutComponentService;
|
|
976
|
+
this.headerComponent = headerComponent;
|
|
977
|
+
this.color = undefined;
|
|
978
|
+
this.collapsable = layoutComponentService.collapsable;
|
|
979
|
+
this.opened = layoutComponentService.opened;
|
|
980
|
+
}
|
|
981
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: HeaderComponent, deps: [{ token: HeaderService }, { token: LayoutComponentService }, { token: RXAP_HEADER_COMPONENT, optional: true }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
982
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.3", type: HeaderComponent, isStandalone: true, selector: "rxap-header", inputs: { color: "color" }, ngImport: i0, template: "<mat-toolbar [color]=\"color\" [ngClass]=\"{ open: opened() }\" class=\"mat-elevation-z3 header\">\n <div class=\"w-full flex flex-row gap-x-4 justify-between items-center\">\n <rxap-sidenav-toggle-button *ngIf=\"!collapsable()\"></rxap-sidenav-toggle-button>\n <div class=\"grow\">\n <ng-content></ng-content>\n </div>\n <rxap-apps-button class=\"grow-0\"></rxap-apps-button>\n <rxap-settings-button class=\"grow-0\"></rxap-settings-button>\n <rxap-user-profile-icon class=\"grow-0\"></rxap-user-profile-icon>\n </div>\n</mat-toolbar>\n\n<rxap-navigation-progress-bar></rxap-navigation-progress-bar>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: MatToolbarModule }, { kind: "component", type: i2$2.MatToolbar, selector: "mat-toolbar", inputs: ["color"], exportAs: ["matToolbar"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "ngmodule", type: MatMenuModule }, { kind: "ngmodule", type: MatIconModule }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "ngmodule", type: MatSelectModule }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: MatOptionModule }, { kind: "ngmodule", type: MatSlideToggleModule }, { kind: "component", type: NavigationProgressBarComponent, selector: "rxap-navigation-progress-bar" }, { kind: "component", type: UserProfileIconComponent, selector: "rxap-user-profile-icon" }, { kind: "component", type: AppsButtonComponent, selector: "rxap-apps-button" }, { kind: "component", type: SettingsButtonComponent, selector: "rxap-settings-button" }, { kind: "component", type: SidenavToggleButtonComponent, selector: "rxap-sidenav-toggle-button" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
983
|
+
}
|
|
984
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: HeaderComponent, decorators: [{
|
|
985
|
+
type: Component,
|
|
986
|
+
args: [{ selector: 'rxap-header', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [
|
|
987
|
+
MatToolbarModule,
|
|
988
|
+
NgClass,
|
|
989
|
+
NgIf,
|
|
990
|
+
MatButtonModule,
|
|
991
|
+
MatMenuModule,
|
|
992
|
+
MatIconModule,
|
|
993
|
+
MatFormFieldModule,
|
|
994
|
+
StopPropagationDirective,
|
|
995
|
+
MatSelectModule,
|
|
996
|
+
FormsModule,
|
|
997
|
+
MatOptionModule,
|
|
998
|
+
DataSourceCollectionDirective,
|
|
999
|
+
MatSlideToggleModule,
|
|
1000
|
+
AsyncPipe,
|
|
1001
|
+
NavigationProgressBarComponent,
|
|
1002
|
+
UserProfileIconComponent,
|
|
1003
|
+
AppsButtonComponent,
|
|
1004
|
+
SettingsButtonComponent,
|
|
1005
|
+
SidenavToggleButtonComponent,
|
|
1006
|
+
], template: "<mat-toolbar [color]=\"color\" [ngClass]=\"{ open: opened() }\" class=\"mat-elevation-z3 header\">\n <div class=\"w-full flex flex-row gap-x-4 justify-between items-center\">\n <rxap-sidenav-toggle-button *ngIf=\"!collapsable()\"></rxap-sidenav-toggle-button>\n <div class=\"grow\">\n <ng-content></ng-content>\n </div>\n <rxap-apps-button class=\"grow-0\"></rxap-apps-button>\n <rxap-settings-button class=\"grow-0\"></rxap-settings-button>\n <rxap-user-profile-icon class=\"grow-0\"></rxap-user-profile-icon>\n </div>\n</mat-toolbar>\n\n<rxap-navigation-progress-bar></rxap-navigation-progress-bar>\n" }]
|
|
1007
|
+
}], ctorParameters: () => [{ type: i1$1.HeaderService, decorators: [{
|
|
848
1008
|
type: Inject,
|
|
849
|
-
args: [
|
|
850
|
-
}] }, { type:
|
|
1009
|
+
args: [HeaderService]
|
|
1010
|
+
}] }, { type: LayoutComponentService }, { type: undefined, decorators: [{
|
|
1011
|
+
type: Optional
|
|
1012
|
+
}, {
|
|
851
1013
|
type: Inject,
|
|
852
|
-
args: [
|
|
853
|
-
}] }]
|
|
854
|
-
type: Input
|
|
855
|
-
}], level: [{
|
|
856
|
-
type: Input
|
|
857
|
-
}], _root: [{
|
|
858
|
-
type: HostBinding,
|
|
859
|
-
args: ['class.rxap-root-navigation']
|
|
860
|
-
}], root: [{
|
|
1014
|
+
args: [RXAP_HEADER_COMPONENT]
|
|
1015
|
+
}] }], propDecorators: { color: [{
|
|
861
1016
|
type: Input
|
|
862
1017
|
}] } });
|
|
863
1018
|
|
|
@@ -895,10 +1050,10 @@ class LayoutComponent {
|
|
|
895
1050
|
}
|
|
896
1051
|
});
|
|
897
1052
|
}
|
|
898
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
899
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1053
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: LayoutComponent, deps: [{ token: LayoutComponentService }, { token: RXAP_ENVIRONMENT }, { token: i2$6.IconLoaderService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1054
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.3", type: LayoutComponent, isStandalone: true, selector: "rxap-layout", viewQueries: [{ propertyName: "sidenav", first: true, predicate: MatSidenav, descendants: true, static: true }], ngImport: i0, template: "<rxap-status-indicator class=\"fixed bottom-0 right-0 z-10\"></rxap-status-indicator>\n<div class=\"flex flex-col h-screen justify-between\">\n <rxap-header class=\"z-10 w-full fixed top-0\"></rxap-header>\n <mat-sidenav-container [ngStyle]=\"{\n 'margin-top.px': fixedTopGap(),\n 'margin-bottom.px': fixedBottomGap(),\n }\" class=\"grow\">\n <mat-sidenav\n #matSidenav=\"matSidenav\"\n [fixedBottomGap]=\"fixedBottomGap()\"\n [fixedInViewport]=\"true\"\n [fixedTopGap]=\"fixedTopGap()\"\n [mode]=\"sidenavMode()\"\n [ngClass]=\"{ collapsable: collapsable() }\"\n class=\"sidenav\"\n [opened]=\"opened()\"\n >\n <div (mouseleave)=\"collapsable() && !pinned() && matSidenav.close()\"\n class=\"h-full py-2 flex flex-col items-center gap-y-5 justify-items-stretch\">\n\n <div (click)=\"layoutComponentService.togglePinned()\" *ngIf=\"collapsable()\"\n class=\"pl-2 self-stretch grow-0 flex flex-row justify-between items-center\">\n <span class=\"text-lg\" i18n>Navigation</span>\n <div class=\"flex flex-row items-center justify-center\" style=\"width: 64px\">\n <button mat-icon-button>\n <mat-icon *ngIf=\"!pinned()\">radio_button_unchecked</mat-icon>\n <mat-icon *ngIf=\"pinned()\">radio_button_checked</mat-icon>\n </button>\n </div>\n </div>\n\n <ul\n (mouseenter)=\"collapsable() && !pinned() && matSidenav.open()\"\n class=\"grow self-stretch\"\n root\n rxap-navigation\n >\n </ul>\n\n <img\n [src]=\"logoSrc\"\n [routerLink]=\"['/']\"\n [width]=\"logoWidth\"\n alt=\"logo\"\n class=\"grow-0 mx-16\"\n />\n <div class=\"grow-0 px-16\">\n <span>{{release}}</span>\n </div>\n </div>\n </mat-sidenav>\n <mat-sidenav-content [ngClass]=\"{ 'ml-16': collapsable() }\" class=\"p-4\">\n <router-outlet></router-outlet>\n </mat-sidenav-content>\n </mat-sidenav-container>\n <rxap-footer class=\"z-10 w-full fixed bottom-0\"></rxap-footer>\n</div>\n<!--<rxap-window-task-bar-container></rxap-window-task-bar-container>-->\n", styles: [":host .sidenav.collapsable:not(.mat-drawer-opened){transform:translate(calc(-100% + 64px))!important;visibility:visible!important;box-shadow:inherit!important;transition-property:transform;transition-delay:.25s;display:flex;border-right:solid 1px rgba(0,0,0,.12)}:host .sidenav.collapsable ::ng-deep .mat-drawer-inner-container::-webkit-scrollbar{display:none}\n"], dependencies: [{ kind: "component", type: HeaderComponent, selector: "rxap-header", inputs: ["color"] }, { kind: "ngmodule", type: MatSidenavModule }, { kind: "component", type: i3$4.MatSidenav, selector: "mat-sidenav", inputs: ["fixedInViewport", "fixedTopGap", "fixedBottomGap"], exportAs: ["matSidenav"] }, { kind: "component", type: i3$4.MatSidenavContainer, selector: "mat-sidenav-container", exportAs: ["matSidenavContainer"] }, { kind: "component", type: i3$4.MatSidenavContent, selector: "mat-sidenav-content" }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i4.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i3.MatIconButton, selector: "button[mat-icon-button]", exportAs: ["matButton"] }, { kind: "directive", type: RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: FooterComponent, selector: "rxap-footer" }, { kind: "ngmodule", type: MatMenuModule }, { kind: "component", type: NavigationComponent, selector: "ul[rxap-navigation]", inputs: ["items", "level", "root"] }, { kind: "directive", type: RouterOutlet, selector: "router-outlet", inputs: ["name"], outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }, { kind: "component", type: StatusIndicatorComponent, selector: "rxap-status-indicator" }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
900
1055
|
}
|
|
901
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1056
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: LayoutComponent, decorators: [{
|
|
902
1057
|
type: Component,
|
|
903
1058
|
args: [{ selector: 'rxap-layout', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [
|
|
904
1059
|
HeaderComponent,
|
|
@@ -917,180 +1072,54 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
917
1072
|
NgStyle,
|
|
918
1073
|
NgClass,
|
|
919
1074
|
], template: "<rxap-status-indicator class=\"fixed bottom-0 right-0 z-10\"></rxap-status-indicator>\n<div class=\"flex flex-col h-screen justify-between\">\n <rxap-header class=\"z-10 w-full fixed top-0\"></rxap-header>\n <mat-sidenav-container [ngStyle]=\"{\n 'margin-top.px': fixedTopGap(),\n 'margin-bottom.px': fixedBottomGap(),\n }\" class=\"grow\">\n <mat-sidenav\n #matSidenav=\"matSidenav\"\n [fixedBottomGap]=\"fixedBottomGap()\"\n [fixedInViewport]=\"true\"\n [fixedTopGap]=\"fixedTopGap()\"\n [mode]=\"sidenavMode()\"\n [ngClass]=\"{ collapsable: collapsable() }\"\n class=\"sidenav\"\n [opened]=\"opened()\"\n >\n <div (mouseleave)=\"collapsable() && !pinned() && matSidenav.close()\"\n class=\"h-full py-2 flex flex-col items-center gap-y-5 justify-items-stretch\">\n\n <div (click)=\"layoutComponentService.togglePinned()\" *ngIf=\"collapsable()\"\n class=\"pl-2 self-stretch grow-0 flex flex-row justify-between items-center\">\n <span class=\"text-lg\" i18n>Navigation</span>\n <div class=\"flex flex-row items-center justify-center\" style=\"width: 64px\">\n <button mat-icon-button>\n <mat-icon *ngIf=\"!pinned()\">radio_button_unchecked</mat-icon>\n <mat-icon *ngIf=\"pinned()\">radio_button_checked</mat-icon>\n </button>\n </div>\n </div>\n\n <ul\n (mouseenter)=\"collapsable() && !pinned() && matSidenav.open()\"\n class=\"grow self-stretch\"\n root\n rxap-navigation\n >\n </ul>\n\n <img\n [src]=\"logoSrc\"\n [routerLink]=\"['/']\"\n [width]=\"logoWidth\"\n alt=\"logo\"\n class=\"grow-0 mx-16\"\n />\n <div class=\"grow-0 px-16\">\n <span>{{release}}</span>\n </div>\n </div>\n </mat-sidenav>\n <mat-sidenav-content [ngClass]=\"{ 'ml-16': collapsable() }\" class=\"p-4\">\n <router-outlet></router-outlet>\n </mat-sidenav-content>\n </mat-sidenav-container>\n <rxap-footer class=\"z-10 w-full fixed bottom-0\"></rxap-footer>\n</div>\n<!--<rxap-window-task-bar-container></rxap-window-task-bar-container>-->\n", styles: [":host .sidenav.collapsable:not(.mat-drawer-opened){transform:translate(calc(-100% + 64px))!important;visibility:visible!important;box-shadow:inherit!important;transition-property:transform;transition-delay:.25s;display:flex;border-right:solid 1px rgba(0,0,0,.12)}:host .sidenav.collapsable ::ng-deep .mat-drawer-inner-container::-webkit-scrollbar{display:none}\n"] }]
|
|
920
|
-
}], ctorParameters:
|
|
1075
|
+
}], ctorParameters: () => [{ type: LayoutComponentService }, { type: undefined, decorators: [{
|
|
921
1076
|
type: Inject,
|
|
922
1077
|
args: [RXAP_ENVIRONMENT]
|
|
923
|
-
}] }, { type: i2$6.IconLoaderService }]
|
|
1078
|
+
}] }, { type: i2$6.IconLoaderService }], propDecorators: { sidenav: [{
|
|
924
1079
|
type: ViewChild,
|
|
925
1080
|
args: [MatSidenav, { static: true }]
|
|
926
1081
|
}] } });
|
|
927
1082
|
|
|
928
|
-
class
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
}
|
|
932
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ReplaceRouterPathsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
933
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ReplaceRouterPathsService, providedIn: 'root' }); }
|
|
934
|
-
}
|
|
935
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ReplaceRouterPathsService, decorators: [{
|
|
936
|
-
type: Injectable,
|
|
937
|
-
args: [{ providedIn: 'root' }]
|
|
938
|
-
}] });
|
|
939
|
-
|
|
940
|
-
class SidenavFooterDirective {
|
|
941
|
-
constructor(template) {
|
|
942
|
-
this.template = template;
|
|
943
|
-
}
|
|
944
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SidenavFooterDirective, deps: [{ token: TemplateRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
945
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: SidenavFooterDirective, isStandalone: true, selector: "[rxapSidenavFooter]", ngImport: i0 }); }
|
|
946
|
-
}
|
|
947
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SidenavFooterDirective, decorators: [{
|
|
948
|
-
type: Directive,
|
|
949
|
-
args: [{
|
|
950
|
-
selector: '[rxapSidenavFooter]',
|
|
951
|
-
standalone: true,
|
|
952
|
-
}]
|
|
953
|
-
}], ctorParameters: function () { return [{ type: i0.TemplateRef, decorators: [{
|
|
954
|
-
type: Inject,
|
|
955
|
-
args: [TemplateRef]
|
|
956
|
-
}] }]; } });
|
|
957
|
-
|
|
958
|
-
class SidenavHeaderDirective {
|
|
959
|
-
constructor(template) {
|
|
960
|
-
this.template = template;
|
|
1083
|
+
class SignOutComponent {
|
|
1084
|
+
constructor(authenticationService) {
|
|
1085
|
+
this.authenticationService = authenticationService;
|
|
961
1086
|
}
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
}
|
|
965
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SidenavHeaderDirective, decorators: [{
|
|
966
|
-
type: Directive,
|
|
967
|
-
args: [{
|
|
968
|
-
selector: '[rxapSidenavHeader]',
|
|
969
|
-
standalone: true,
|
|
970
|
-
}]
|
|
971
|
-
}], ctorParameters: function () { return [{ type: i0.TemplateRef, decorators: [{
|
|
972
|
-
type: Inject,
|
|
973
|
-
args: [TemplateRef]
|
|
974
|
-
}] }]; } });
|
|
975
|
-
|
|
976
|
-
class SidenavComponent {
|
|
977
|
-
constructor(sidenav) {
|
|
978
|
-
this.sidenav = sidenav;
|
|
1087
|
+
async logout() {
|
|
1088
|
+
await this.authenticationService.signOut();
|
|
979
1089
|
}
|
|
980
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
981
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1090
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: SignOutComponent, deps: [{ token: i2$4.RxapAuthenticationService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1091
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.3", type: SignOutComponent, isStandalone: true, selector: "rxap-sign-out", ngImport: i0, template: "<button\n mat-icon-button\n (click)=\"logout()\"\n>\n <mat-icon svgIcon=\"logout\"></mat-icon>\n</button>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i3.MatIconButton, selector: "button[mat-icon-button]", exportAs: ["matButton"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i4.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
982
1092
|
}
|
|
983
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1093
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: SignOutComponent, decorators: [{
|
|
984
1094
|
type: Component,
|
|
985
|
-
args: [{ selector: 'rxap-
|
|
986
|
-
|
|
987
|
-
}, standalone: true, imports: [
|
|
988
|
-
NgClass,
|
|
989
|
-
NgIf,
|
|
990
|
-
NgTemplateOutlet,
|
|
991
|
-
MatDividerModule,
|
|
992
|
-
NavigationComponent,
|
|
993
|
-
MatButtonModule,
|
|
994
|
-
MatIconModule,
|
|
995
|
-
AsyncPipe,
|
|
996
|
-
], template: "<div [ngClass]=\"{ 'collapsed': sidenav.collapsed$ | async }\" class=\"rxap-container\">\n <div class=\"inner flex flex-col justify-between items-stretch\">\n <ng-template [ngIf]=\"sidenavHeaderDirective?.template\">\n <div [ngClass]=\"{ hidden: sidenav.collapsed$ | async }\" class=\"header grow-0\">\n <ng-container *ngTemplateOutlet=\"sidenavHeaderDirective?.template ?? null\"></ng-container>\n </div>\n <mat-divider [ngClass]=\"{ hidden: sidenav.collapsed$ | async }\" class=\"grow-0\"></mat-divider>\n </ng-template>\n <div class=\"nav-container grow\">\n <ul class=\"flex flex-col\" root rxap-navigation></ul>\n </div>\n <mat-divider class=\"grow-0\"></mat-divider>\n <button (click)=\"sidenav.toggleNavigationCollapse()\" [ngClass]=\"{ 'collapsed': sidenav.collapsed$ | async }\"\n class=\"sidebar-toggle grow-0\"\n mat-button>\n <span class=\"sidebar-toggle-inner flex flex-row items-center gap-4\">\n <mat-icon class=\"arrow grow-0\">double_arrow</mat-icon>\n <span [ngClass]=\"{ hidden: sidenav.collapsed$ | async }\" class=\"label grow-0\" i18n>Collapse sidebar</span>\n </span>\n </button>\n <ng-template [ngIf]=\"sidenavFooterDirective?.template ?? null\">\n <mat-divider [ngClass]=\"{ hidden: sidenav.collapsed$ | async }\" class=\"grow-0\"></mat-divider>\n <div [ngClass]=\"{ hidden: sidenav.collapsed$ | async }\" class=\"footer grow-0\">\n <ng-container *ngTemplateOutlet=\"sidenavFooterDirective?.template ?? null\"></ng-container>\n </div>\n </ng-template>\n </div>\n</div>\n", styles: [".rxap-container,.rxap-container .inner{height:100%}.rxap-container .inner .header{padding-bottom:12px}.rxap-container .inner .footer{padding-top:12px}.rxap-container .inner .nav-container{overflow-y:scroll;padding-top:12px}.rxap-container .inner .nav-container::-webkit-scrollbar{width:6px}.rxap-container .inner .nav-container::-webkit-scrollbar-track{border-radius:2px}.rxap-container .inner .nav-container::-webkit-scrollbar-thumb{border-radius:10px}.rxap-container .sidebar-toggle{min-height:48px}.rxap-container .sidebar-toggle .sidebar-toggle-inner{padding:0}.rxap-container .sidebar-toggle .arrow{transform:rotate(180deg)}.rxap-container .sidebar-toggle.collapsed .arrow{transform:initial}.rxap-container .sidebar-toggle.collapsed .sidebar-toggle-inner{justify-content:space-around!important}\n"] }]
|
|
997
|
-
}], ctorParameters: function () { return [{ type: SidenavComponentService }]; }, propDecorators: { sidenavFooterDirective: [{
|
|
998
|
-
type: ContentChild,
|
|
999
|
-
args: [SidenavFooterDirective]
|
|
1000
|
-
}], sidenavHeaderDirective: [{
|
|
1001
|
-
type: ContentChild,
|
|
1002
|
-
args: [SidenavHeaderDirective]
|
|
1003
|
-
}] } });
|
|
1095
|
+
args: [{ selector: 'rxap-sign-out', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [MatButtonModule, MatIconModule], template: "<button\n mat-icon-button\n (click)=\"logout()\"\n>\n <mat-icon svgIcon=\"logout\"></mat-icon>\n</button>\n" }]
|
|
1096
|
+
}], ctorParameters: () => [{ type: i2$4.RxapAuthenticationService }] });
|
|
1004
1097
|
|
|
1005
|
-
class
|
|
1006
|
-
constructor(
|
|
1007
|
-
this.
|
|
1008
|
-
}
|
|
1009
|
-
ngOnInit() {
|
|
1010
|
-
this.modules = this.version.get();
|
|
1011
|
-
this.subscription = this.version.update$.pipe(tap(() => this.modules = this.version.get())).subscribe();
|
|
1012
|
-
}
|
|
1013
|
-
ngOnDestroy() {
|
|
1014
|
-
this.subscription?.unsubscribe();
|
|
1098
|
+
class ResetButtonComponent {
|
|
1099
|
+
constructor(resetService) {
|
|
1100
|
+
this.resetService = resetService;
|
|
1015
1101
|
}
|
|
1016
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1017
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1102
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: ResetButtonComponent, deps: [{ token: ResetService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1103
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.3", type: ResetButtonComponent, isStandalone: true, selector: "rxap-reset-button", ngImport: i0, template: "<button (click)=\"resetService.resetAll()\" mat-icon-button>\n <mat-icon svgIcon=\"refresh\"></mat-icon>\n</button>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i3.MatIconButton, selector: "button[mat-icon-button]", exportAs: ["matButton"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i4.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1018
1104
|
}
|
|
1019
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1105
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: ResetButtonComponent, decorators: [{
|
|
1020
1106
|
type: Component,
|
|
1021
|
-
args: [{ selector: 'rxap-
|
|
1022
|
-
}], ctorParameters:
|
|
1107
|
+
args: [{ selector: 'rxap-reset-button', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [MatButtonModule, MatIconModule], template: "<button (click)=\"resetService.resetAll()\" mat-icon-button>\n <mat-icon svgIcon=\"refresh\"></mat-icon>\n</button>\n" }]
|
|
1108
|
+
}], ctorParameters: () => [{ type: i1$1.ResetService, decorators: [{
|
|
1023
1109
|
type: Inject,
|
|
1024
|
-
args: [
|
|
1025
|
-
}] }]
|
|
1026
|
-
|
|
1027
|
-
class ToggleWindowSidenavButtonComponent {
|
|
1028
|
-
constructor() {
|
|
1029
|
-
this.openWindowSidenav = false;
|
|
1030
|
-
this.openWindowSidenavChange = new EventEmitter();
|
|
1031
|
-
}
|
|
1032
|
-
toggle() {
|
|
1033
|
-
this.openWindowSidenav = !this.openWindowSidenav;
|
|
1034
|
-
this.openWindowSidenavChange.emit(this.openWindowSidenav);
|
|
1035
|
-
}
|
|
1036
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ToggleWindowSidenavButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1037
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ToggleWindowSidenavButtonComponent, isStandalone: true, selector: "rxap-toggle-window-sidenav-button", inputs: { openWindowSidenav: "openWindowSidenav" }, outputs: { openWindowSidenavChange: "openWindowSidenavChange" }, host: { classAttribute: "rxap-toggle-window-sidenav-button" }, ngImport: i0, template: "<div class=\"toggle-button\">\n <button (click)=\"toggle()\" mat-icon-button>\n <ng-template [ngIfElse]=\"hide\" [ngIf]=\"!openWindowSidenav\">\n <mat-icon svgIcon=\"arrow-left-bold\"></mat-icon>\n </ng-template>\n <ng-template #hide>\n <mat-icon svgIcon=\"arrow-right-bold\"></mat-icon>\n </ng-template>\n </button>\n</div>\n", styles: [".toggle-button{position:absolute;top:70px;right:0;z-index:10000;border-radius:15px 0 0 15px;border:1px solid black;background:#000}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i3$1.MatIconButton, selector: "button[mat-icon-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i4.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1038
|
-
}
|
|
1039
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ToggleWindowSidenavButtonComponent, decorators: [{
|
|
1040
|
-
type: Component,
|
|
1041
|
-
args: [{ selector: 'rxap-toggle-window-sidenav-button', changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
|
1042
|
-
class: 'rxap-toggle-window-sidenav-button',
|
|
1043
|
-
}, standalone: true, imports: [MatButtonModule, NgIf, MatIconModule], template: "<div class=\"toggle-button\">\n <button (click)=\"toggle()\" mat-icon-button>\n <ng-template [ngIfElse]=\"hide\" [ngIf]=\"!openWindowSidenav\">\n <mat-icon svgIcon=\"arrow-left-bold\"></mat-icon>\n </ng-template>\n <ng-template #hide>\n <mat-icon svgIcon=\"arrow-right-bold\"></mat-icon>\n </ng-template>\n </button>\n</div>\n", styles: [".toggle-button{position:absolute;top:70px;right:0;z-index:10000;border-radius:15px 0 0 15px;border:1px solid black;background:#000}\n"] }]
|
|
1044
|
-
}], propDecorators: { openWindowSidenav: [{
|
|
1045
|
-
type: Input
|
|
1046
|
-
}], openWindowSidenavChange: [{
|
|
1047
|
-
type: Output
|
|
1048
|
-
}] } });
|
|
1110
|
+
args: [ResetService]
|
|
1111
|
+
}] }] });
|
|
1049
1112
|
|
|
1050
|
-
class
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
this.portals = new Map();
|
|
1054
|
-
this.subscription = new Subscription();
|
|
1055
|
-
}
|
|
1056
|
-
ngOnInit() {
|
|
1057
|
-
const components = this.service.getAll();
|
|
1058
|
-
for (const component of components) {
|
|
1059
|
-
this.add(component);
|
|
1060
|
-
}
|
|
1061
|
-
this.subscription.add(this.service.add$.pipe(tap(component => this.add(component))).subscribe());
|
|
1062
|
-
this.subscription.add(this.service.remove$.pipe(tap(component => this.remove(component))).subscribe());
|
|
1063
|
-
}
|
|
1064
|
-
ngOnDestroy() {
|
|
1065
|
-
this.subscription.unsubscribe();
|
|
1066
|
-
}
|
|
1067
|
-
trackBy(index, id) {
|
|
1068
|
-
return id;
|
|
1069
|
-
}
|
|
1070
|
-
add(component) {
|
|
1071
|
-
if (this.portals.has(component.id)) {
|
|
1072
|
-
throw new Error(`Component portal with id ${component.id} already exists`);
|
|
1073
|
-
}
|
|
1074
|
-
const portal = new ComponentPortal(component.component, component.viewContainerRef, component.injector, component.componentFactoryResolver);
|
|
1075
|
-
this.portals.set(component.id, portal);
|
|
1076
|
-
}
|
|
1077
|
-
remove(component) {
|
|
1078
|
-
if (this.portals.has(component.id)) {
|
|
1079
|
-
const portal = this.portals.get(component.id);
|
|
1080
|
-
this.portals.delete(component.id);
|
|
1081
|
-
portal.detach();
|
|
1082
|
-
}
|
|
1113
|
+
class AuthenticationServiceMock {
|
|
1114
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
1115
|
+
signOut() {
|
|
1083
1116
|
}
|
|
1084
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1085
|
-
static { this.ɵ
|
|
1117
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: AuthenticationServiceMock, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1118
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: AuthenticationServiceMock }); }
|
|
1086
1119
|
}
|
|
1087
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1088
|
-
type:
|
|
1089
|
-
|
|
1090
|
-
}], ctorParameters: function () { return [{ type: i1.WindowContainerSidenavService, decorators: [{
|
|
1091
|
-
type: Inject,
|
|
1092
|
-
args: [WindowContainerSidenavService]
|
|
1093
|
-
}] }]; } });
|
|
1120
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: AuthenticationServiceMock, decorators: [{
|
|
1121
|
+
type: Injectable
|
|
1122
|
+
}] });
|
|
1094
1123
|
|
|
1095
1124
|
class FooterDirective {
|
|
1096
1125
|
constructor(footerService, template, viewContainerRef) {
|
|
@@ -1107,16 +1136,16 @@ class FooterDirective {
|
|
|
1107
1136
|
this.footerService.removePortal(this._portal);
|
|
1108
1137
|
}
|
|
1109
1138
|
}
|
|
1110
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1111
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1139
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: FooterDirective, deps: [{ token: FooterService }, { token: TemplateRef }, { token: ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1140
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.1.3", type: FooterDirective, isStandalone: true, selector: "[rxapFooter]", ngImport: i0 }); }
|
|
1112
1141
|
}
|
|
1113
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1142
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: FooterDirective, decorators: [{
|
|
1114
1143
|
type: Directive,
|
|
1115
1144
|
args: [{
|
|
1116
1145
|
selector: '[rxapFooter]',
|
|
1117
1146
|
standalone: true,
|
|
1118
1147
|
}]
|
|
1119
|
-
}], ctorParameters:
|
|
1148
|
+
}], ctorParameters: () => [{ type: i1$1.FooterService, decorators: [{
|
|
1120
1149
|
type: Inject,
|
|
1121
1150
|
args: [FooterService]
|
|
1122
1151
|
}] }, { type: i0.TemplateRef, decorators: [{
|
|
@@ -1125,11 +1154,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1125
1154
|
}] }, { type: i0.ViewContainerRef, decorators: [{
|
|
1126
1155
|
type: Inject,
|
|
1127
1156
|
args: [ViewContainerRef]
|
|
1128
|
-
}] }]
|
|
1157
|
+
}] }] });
|
|
1158
|
+
|
|
1159
|
+
// region window-container-sidenav
|
|
1160
|
+
// endregion
|
|
1129
1161
|
|
|
1130
1162
|
/**
|
|
1131
1163
|
* Generated bundle index. Do not edit.
|
|
1132
1164
|
*/
|
|
1133
1165
|
|
|
1134
|
-
export { AppUrlService, AppsButtonComponent, EXTRACT_USERNAME_FROM_PROFILE, FooterComponent, FooterDirective, HeaderComponent, IsNavigationDividerItem, IsNavigationInsertItem, IsNavigationItem, LayoutComponent, LayoutComponentService, NavigationComponent, NavigationItemComponent, NavigationProgressBarComponent, NavigationService, RXAP_FOOTER_COMPONENT, RXAP_HEADER_COMPONENT, RXAP_LAYOUT_APPS_GRID, RXAP_LOGO_CONFIG, RXAP_NAVIGATION_CONFIG, RXAP_NAVIGATION_CONFIG_INSERTS, ReplaceRouterPathsService, ResetButtonComponent, SidenavComponent, SidenavComponentService, SidenavFooterDirective, SidenavHeaderDirective, SidenavToggleButtonComponent, SignOutComponent, ToggleWindowSidenavButtonComponent, UserProfileIconComponent, VersionComponent, WindowContainerSidenavComponent };
|
|
1166
|
+
export { AppUrlService, AppsButtonComponent, AuthenticationServiceMock, EXTRACT_USERNAME_FROM_PROFILE, FooterComponent, FooterDirective, HeaderComponent, IsNavigationDividerItem, IsNavigationInsertItem, IsNavigationItem, LanguageSelectorComponent, LayoutComponent, LayoutComponentService, NavigationComponent, NavigationItemComponent, NavigationProgressBarComponent, NavigationService, RXAP_FOOTER_COMPONENT, RXAP_HEADER_COMPONENT, RXAP_LAYOUT_APPS_GRID, RXAP_LOGO_CONFIG, RXAP_NAVIGATION_CONFIG, RXAP_NAVIGATION_CONFIG_INSERTS, ReplaceRouterPathsPipe, ReplaceRouterPathsService, ResetButtonComponent, SettingsButtonComponent, SidenavComponent, SidenavComponentService, SidenavFooterDirective, SidenavHeaderDirective, SidenavToggleButtonComponent, SignOutComponent, ToggleWindowSidenavButtonComponent, UserProfileIconComponent, VersionComponent, WindowContainerSidenavComponent };
|
|
1135
1167
|
//# sourceMappingURL=rxap-layout.mjs.map
|