mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-16 18:21:41 +00:00
295 lines
11 KiB
TypeScript
295 lines
11 KiB
TypeScript
![]() |
import { animate, group, query, style, transition, trigger } from '@angular/animations';
|
||
|
import { BreakpointObserver, Breakpoints } from '@angular/cdk/layout';
|
||
|
import { OverlayContainer } from '@angular/cdk/overlay';
|
||
|
import { Component, HostBinding, OnDestroy, ViewChild } from '@angular/core';
|
||
|
import { MatIconRegistry } from '@angular/material/icon';
|
||
|
import { MatDrawer } from '@angular/material/sidenav';
|
||
|
import { DomSanitizer } from '@angular/platform-browser';
|
||
|
import { Router, RouterOutlet } from '@angular/router';
|
||
|
import { TranslateService } from '@ngx-translate/core';
|
||
|
import { Observable, of, Subscription } from 'rxjs';
|
||
|
import { map } from 'rxjs/operators';
|
||
|
|
||
|
import { Org, UserProfile } from './proto/generated/auth_pb';
|
||
|
import { AuthUserService } from './services/auth-user.service';
|
||
|
import { AuthService } from './services/auth.service';
|
||
|
import { ThemeService } from './services/theme.service';
|
||
|
import { ToastService } from './services/toast.service';
|
||
|
import { UpdateService } from './services/update.service';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-root',
|
||
|
templateUrl: './app.component.html',
|
||
|
styleUrls: ['./app.component.scss'],
|
||
|
animations: [
|
||
|
trigger('accounts', [
|
||
|
transition(':enter', [
|
||
|
style({
|
||
|
transform: 'scale(.9) translateY(-10%)',
|
||
|
height: '200px',
|
||
|
opacity: 0,
|
||
|
}),
|
||
|
animate(
|
||
|
'.1s ease-out',
|
||
|
style({
|
||
|
transform: 'scale(1) translateY(0%)',
|
||
|
height: '*',
|
||
|
opacity: 1,
|
||
|
}),
|
||
|
),
|
||
|
]),
|
||
|
]),
|
||
|
trigger('routeAnimations', [
|
||
|
transition('HomePage => AddPage', [
|
||
|
style({ transform: 'translateX(100%)' }),
|
||
|
animate('250ms ease-in-out', style({ transform: 'translateX(0%)' })),
|
||
|
]),
|
||
|
transition('AddPage => HomePage', [animate('250ms', style({ transform: 'translateX(100%)' }))]),
|
||
|
transition('HomePage => DetailPage', [
|
||
|
query(':enter, :leave', style({ position: 'absolute', left: 0, right: 0 }), {
|
||
|
optional: true,
|
||
|
}),
|
||
|
group([
|
||
|
query(
|
||
|
':enter',
|
||
|
[
|
||
|
style({
|
||
|
transform: 'translateX(20%)',
|
||
|
opacity: 0.5,
|
||
|
}),
|
||
|
animate(
|
||
|
'.35s ease-in',
|
||
|
style({
|
||
|
transform: 'translateX(0%)',
|
||
|
opacity: 1,
|
||
|
}),
|
||
|
),
|
||
|
],
|
||
|
{
|
||
|
optional: true,
|
||
|
},
|
||
|
),
|
||
|
query(
|
||
|
':leave',
|
||
|
[style({ opacity: 1, width: '100%' }), animate('.35s ease-out', style({ opacity: 0 }))],
|
||
|
{
|
||
|
optional: true,
|
||
|
},
|
||
|
),
|
||
|
]),
|
||
|
]),
|
||
|
transition('DetailPage => HomePage', [
|
||
|
query(':enter, :leave', style({ position: 'absolute', left: 0, right: 0 }), {
|
||
|
optional: true,
|
||
|
}),
|
||
|
group([
|
||
|
query(
|
||
|
':enter',
|
||
|
[
|
||
|
style({
|
||
|
opacity: 0,
|
||
|
}),
|
||
|
animate(
|
||
|
'.35s ease-out',
|
||
|
style({
|
||
|
opacity: 1,
|
||
|
}),
|
||
|
),
|
||
|
],
|
||
|
{
|
||
|
optional: true,
|
||
|
},
|
||
|
),
|
||
|
query(
|
||
|
':leave',
|
||
|
[
|
||
|
style({ width: '100%', transform: 'translateX(0%)' }),
|
||
|
animate('.35s ease-in', style({ transform: 'translateX(30%)', opacity: 0 })),
|
||
|
],
|
||
|
{
|
||
|
optional: true,
|
||
|
},
|
||
|
),
|
||
|
]),
|
||
|
]),
|
||
|
]),
|
||
|
],
|
||
|
})
|
||
|
export class AppComponent implements OnDestroy {
|
||
|
@ViewChild('drawer')
|
||
|
public drawer!: MatDrawer;
|
||
|
public isHandset$: Observable<boolean> = this.breakpointObserver
|
||
|
.observe(Breakpoints.Handset)
|
||
|
.pipe(map(result => {
|
||
|
return result.matches;
|
||
|
}));
|
||
|
@HostBinding('class') public componentCssClass: string = 'dark-theme';
|
||
|
|
||
|
public showAccount: boolean = false;
|
||
|
public org!: Org.AsObject;
|
||
|
public orgs: Org.AsObject[] = [];
|
||
|
public profile!: UserProfile.AsObject;
|
||
|
public isDarkTheme: Observable<boolean> = of(true);
|
||
|
|
||
|
public orgLoading: boolean = false;
|
||
|
|
||
|
public showProjectSection: boolean = false;
|
||
|
public showOrgSection: boolean = false;
|
||
|
public showUserSection: boolean = false;
|
||
|
public iamreadwrite: boolean = false;
|
||
|
|
||
|
private authSub: Subscription = new Subscription();
|
||
|
private orgSub: Subscription = new Subscription();
|
||
|
|
||
|
constructor(
|
||
|
public translate: TranslateService,
|
||
|
public authService: AuthService,
|
||
|
private breakpointObserver: BreakpointObserver,
|
||
|
public overlayContainer: OverlayContainer,
|
||
|
private themeService: ThemeService,
|
||
|
public userService: AuthUserService,
|
||
|
public matIconRegistry: MatIconRegistry,
|
||
|
public domSanitizer: DomSanitizer,
|
||
|
private toast: ToastService,
|
||
|
private router: Router,
|
||
|
update: UpdateService,
|
||
|
) {
|
||
|
console.log('%cWait!', 'text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black; color: #5282c1; font-size: 50px');
|
||
|
console.log('%cInserting something here could give attackers access to your caos account.', 'color: red; font-size: 18px');
|
||
|
console.log('%cIf you don\'t know exactly what you\'re doing, close the window and stay on the safe side', 'font-size: 16px');
|
||
|
console.log('%cIf you know exactly what you are doing, you should work for us', 'font-size: 16px');
|
||
|
this.setLanguage();
|
||
|
|
||
|
this.matIconRegistry.addSvgIcon(
|
||
|
'mdi_account_check_outline',
|
||
|
this.domSanitizer.bypassSecurityTrustResourceUrl('assets/mdi/account-check-outline.svg'),
|
||
|
);
|
||
|
|
||
|
this.matIconRegistry.addSvgIcon(
|
||
|
'mdi_account_cancel',
|
||
|
this.domSanitizer.bypassSecurityTrustResourceUrl('assets/mdi/account-cancel-outline.svg'),
|
||
|
);
|
||
|
|
||
|
this.matIconRegistry.addSvgIcon(
|
||
|
'mdi_light_on',
|
||
|
this.domSanitizer.bypassSecurityTrustResourceUrl('assets/mdi/lightbulb-on-outline.svg'),
|
||
|
);
|
||
|
|
||
|
this.matIconRegistry.addSvgIcon(
|
||
|
'mdi_content_copy',
|
||
|
this.domSanitizer.bypassSecurityTrustResourceUrl('assets/mdi/content-copy.svg'),
|
||
|
);
|
||
|
|
||
|
this.matIconRegistry.addSvgIcon(
|
||
|
'mdi_light_off',
|
||
|
this.domSanitizer.bypassSecurityTrustResourceUrl('assets/mdi/lightbulb-off-outline.svg'),
|
||
|
);
|
||
|
|
||
|
this.matIconRegistry.addSvgIcon(
|
||
|
'mdi_radar',
|
||
|
this.domSanitizer.bypassSecurityTrustResourceUrl('assets/mdi/radar.svg'),
|
||
|
);
|
||
|
|
||
|
this.matIconRegistry.addSvgIcon(
|
||
|
'mdi_account_circle_outline',
|
||
|
this.domSanitizer.bypassSecurityTrustResourceUrl('assets/mdi/account-circle-outline.svg'),
|
||
|
);
|
||
|
|
||
|
this.matIconRegistry.addSvgIcon(
|
||
|
'mdi_lock_question',
|
||
|
this.domSanitizer.bypassSecurityTrustResourceUrl('assets/mdi/lock-question.svg'),
|
||
|
);
|
||
|
|
||
|
this.matIconRegistry.addSvgIcon(
|
||
|
'mdi_textbox_password',
|
||
|
this.domSanitizer.bypassSecurityTrustResourceUrl('assets/mdi/textbox-password.svg'),
|
||
|
);
|
||
|
|
||
|
this.matIconRegistry.addSvgIcon(
|
||
|
'mdi_lock_reset',
|
||
|
this.domSanitizer.bypassSecurityTrustResourceUrl('assets/mdi/lock-reset.svg'),
|
||
|
);
|
||
|
|
||
|
this.orgSub = this.authService.activeOrgChanged.subscribe(org => {
|
||
|
this.org = org;
|
||
|
this.loadPermissions();
|
||
|
});
|
||
|
|
||
|
this.authSub = this.authService.authenticationChanged.subscribe((authenticated) => {
|
||
|
if (authenticated) {
|
||
|
// this.userService.GetMyzitadelPermissions().pipe(take(1)).subscribe(perm => console.log(perm.toObject()));
|
||
|
this.loadPermissions();
|
||
|
this.authService.GetActiveOrg().then(org => {
|
||
|
this.org = org;
|
||
|
});
|
||
|
}
|
||
|
});
|
||
|
|
||
|
const theme = localStorage.getItem('theme');
|
||
|
if (theme) {
|
||
|
this.overlayContainer.getContainerElement().classList.add(theme);
|
||
|
this.componentCssClass = theme;
|
||
|
}
|
||
|
|
||
|
this.isDarkTheme = this.themeService.isDarkTheme;
|
||
|
this.isDarkTheme.subscribe(thema => this.onSetTheme(thema ? 'dark-theme' : 'light-theme'));
|
||
|
}
|
||
|
|
||
|
public ngOnDestroy(): void {
|
||
|
this.authSub.unsubscribe();
|
||
|
this.orgSub.unsubscribe();
|
||
|
}
|
||
|
|
||
|
public loadPermissions(): void {
|
||
|
this.userService.isAllowed(['iam.read', 'iam.write'], true).subscribe(allowed => this.iamreadwrite = allowed);
|
||
|
this.userService.isAllowed(['org.read']).subscribe(allowed => this.showOrgSection = allowed);
|
||
|
this.userService.isAllowed(['project.read']).subscribe(allowed => this.showProjectSection = allowed);
|
||
|
this.userService.isAllowed(['user.read']).subscribe(allowed => this.showUserSection = allowed);
|
||
|
}
|
||
|
|
||
|
public loadOrgs(): void {
|
||
|
this.orgLoading = true;
|
||
|
this.userService.SearchMyProjectOrgs(10, 0).then(res => {
|
||
|
this.orgs = res.toObject().resultList;
|
||
|
this.orgLoading = false;
|
||
|
}).catch(error => {
|
||
|
this.toast.showError(error.message);
|
||
|
this.orgLoading = false;
|
||
|
});
|
||
|
}
|
||
|
|
||
|
public prepareRoute(outlet: RouterOutlet): boolean {
|
||
|
return outlet && outlet.activatedRouteData && outlet.activatedRouteData.animation;
|
||
|
}
|
||
|
|
||
|
public closeAccountCard(): void {
|
||
|
if (this.showAccount) {
|
||
|
this.showAccount = false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public onSetTheme(theme: string): void {
|
||
|
localStorage.setItem('theme', theme);
|
||
|
this.overlayContainer.getContainerElement().classList.add(theme);
|
||
|
this.componentCssClass = theme;
|
||
|
}
|
||
|
|
||
|
private setLanguage(): void {
|
||
|
this.translate.addLangs(['en', 'de']);
|
||
|
this.translate.setDefaultLang('en');
|
||
|
|
||
|
this.authService.user.subscribe(userprofile => {
|
||
|
console.log(userprofile);
|
||
|
this.profile = userprofile;
|
||
|
const lang = userprofile.preferredLanguage.match(/en|de/) ? userprofile.preferredLanguage : 'en';
|
||
|
this.translate.use(lang);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
public setActiveOrg(org: Org.AsObject): void {
|
||
|
this.org = org;
|
||
|
this.authService.setActiveOrg(org);
|
||
|
this.router.navigate(['/']);
|
||
|
}
|
||
|
}
|