import { Component, OnInit, AfterViewInit, OnDestroy, ViewChild, HostListener } from '@angular/core'; import { Router, ActivatedRoute } from '@angular/router'; import { Subject } from 'rxjs'; import { takeUntil, filter } from 'rxjs/operators'; import { Store } from '@ngrx/store'; import { Actions } from '@ngrx/effects'; import { UserIdleService } from 'angular-user-idle'; import * as sha256 from 'sha256'; import { LoggerService } from './shared/services/logger.service'; import { RTLConfiguration, Settings, Node } from './shared/models/RTLconfig'; import { GetInfo } from './shared/models/lndModels'; import * as RTLActions from './store/rtl.actions'; import * as fromApp from './store/rtl.reducers'; @Component({ selector: 'rtl-app', templateUrl: './app.component.html', styleUrls: ['./app.component.scss'] }) export class AppComponent implements OnInit, AfterViewInit, OnDestroy { @ViewChild('sideNavigation', { static: false }) sideNavigation: any; @ViewChild('settingSidenav', { static: true }) settingSidenav: any; public settings: Settings; public information: GetInfo = {}; public flgLoading: Array = [true]; public flgCopied = false; public appConfig: RTLConfiguration; public accessKey = ''; public smallScreen = false; unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject()]; constructor(private logger: LoggerService, private store: Store, private actions$: Actions, private userIdle: UserIdleService, private router: Router, private activatedRoute: ActivatedRoute) {} ngOnInit() { this.store.dispatch(new RTLActions.FetchRTLConfig()); this.accessKey = this.readAccessKey(); this.store.select('rtlRoot') .pipe(takeUntil(this.unSubs[0])) .subscribe(rtlStore => { this.settings = rtlStore.selNode.settings; this.appConfig = rtlStore.appConfig; if (window.innerWidth <= 768) { this.settings.menu = 'Vertical'; this.settings.flgSidenavOpened = false; this.settings.flgSidenavPinned = false; } if (window.innerWidth <= 414) { this.smallScreen = true; } this.logger.info(this.settings); }); this.actions$ .pipe( takeUntil(this.unSubs[3]), filter(action => action.type === RTLActions.SET_RTL_CONFIG) ).subscribe((actionPayload: RTLActions.SetRTLConfig) => { if (actionPayload.type === RTLActions.SET_RTL_CONFIG) { if (!sessionStorage.getItem('token')) { if (+actionPayload.payload.sso.rtlSSO) { this.store.dispatch(new RTLActions.Signin(sha256(this.accessKey))); } else { this.router.navigate([this.appConfig.sso.logoutRedirectLink], { relativeTo: this.activatedRoute }); } } if ( this.settings.menu === 'Horizontal' || this.settings.menuType === 'Compact' || this.settings.menuType === 'Mini') { this.settingSidenav.toggle(); setTimeout(() => { this.settingSidenav.toggle(); }, 100); } } }); this.userIdle.startWatching(); this.userIdle.onTimerStart().subscribe(count => {}); this.userIdle.onTimeout().subscribe(() => { if (sessionStorage.getItem('token')) { this.logger.warn('Time limit exceeded for session inactivity! Logging out!'); this.store.dispatch(new RTLActions.OpenAlert({ width: '75%', data: { type: 'WARN', titleMessage: 'Time limit exceeded for session inactivity! Logging out!' }})); this.store.dispatch(new RTLActions.Signout()); this.userIdle.resetTimer(); } }); } private readAccessKey() { const url = window.location.href; return url.substring(url.lastIndexOf('access-key=') + 11).trim(); } ngAfterViewInit() { if (!this.settings.flgSidenavPinned) { this.sideNavigation.close(); this.settingSidenav.toggle(); } if (window.innerWidth <= 768) { this.sideNavigation.close(); this.settingSidenav.toggle(); } } @HostListener('window:resize') public onWindowResize(): void { if (window.innerWidth <= 768) { this.settings.menu = 'Vertical'; this.settings.flgSidenavOpened = false; this.settings.flgSidenavPinned = false; } } sideNavToggle() { this.sideNavigation.toggle(); } onNavigationClicked(event: any) { if (window.innerWidth <= 414) { this.sideNavigation.close(); } } copiedText(payload) { this.flgCopied = true; setTimeout(() => {this.flgCopied = false; }, 5000); this.logger.info('Copied Text: ' + payload); } ngOnDestroy() { this.unSubs.forEach(unsub => { unsub.next(); unsub.complete(); }); } }