mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-11-03 23:15:24 +00:00
e93231c590
Lazy loading
179 lines
6.4 KiB
TypeScript
179 lines
6.4 KiB
TypeScript
import { Component, OnInit, AfterViewInit, OnDestroy, ViewChild, HostListener } from '@angular/core';
|
|
import { Router } 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 LNDActions from './lnd/store/lnd.actions';
|
|
import * as fromLNDReducer from './lnd/store/lnd.reducers';
|
|
import * as RTLActions from './store/rtl.actions';
|
|
import * as fromRTLReducer 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: true }) sideNavigation: any;
|
|
@ViewChild('settingSidenav', { static: true }) settingSidenav: any;
|
|
public selNode: Node;
|
|
public settings: Settings;
|
|
public information: GetInfo = {};
|
|
public flgLoading: Array<Boolean | 'error'> = [true]; // 0: Info
|
|
public flgCopied = false;
|
|
public appConfig: RTLConfiguration;
|
|
public accessKey = '';
|
|
public smallScreen = false;
|
|
unsubs: Array<Subject<void>> = [new Subject(), new Subject(), new Subject(), new Subject()];
|
|
|
|
constructor(private logger: LoggerService, private store: Store<fromRTLReducer.State>, private lndStore: Store<fromLNDReducer.LNDState>, private actions$: Actions,
|
|
private userIdle: UserIdleService, private router: Router) {}
|
|
|
|
ngOnInit() {
|
|
this.store.dispatch(new RTLActions.FetchRTLConfig());
|
|
this.accessKey = this.readAccessKey();
|
|
this.lndStore.select('lnd')
|
|
.pipe(takeUntil(this.unsubs[3]))
|
|
.subscribe(lndStore => {
|
|
this.information = lndStore ? lndStore.information : {};
|
|
this.flgLoading[0] = (undefined !== this.information.identity_pubkey) ? false : true;
|
|
this.logger.info(lndStore);
|
|
});
|
|
this.store.select('rtlRoot')
|
|
.pipe(takeUntil(this.unsubs[0]))
|
|
.subscribe(rtlStore => {
|
|
this.selNode = rtlStore.selNode;
|
|
this.settings = this.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);
|
|
if (!sessionStorage.getItem('token')) {
|
|
this.flgLoading[0] = false;
|
|
}
|
|
});
|
|
if (sessionStorage.getItem('token')) {
|
|
this.lndStore.dispatch(new LNDActions.FetchInfo());
|
|
}
|
|
this.actions$
|
|
.pipe(
|
|
takeUntil(this.unsubs[1]),
|
|
filter((action) => action.type === RTLActions.INIT_APP_DATA || action.type === RTLActions.SET_RTL_CONFIG)
|
|
).subscribe((actionPayload: (RTLActions.InitAppData | 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]);
|
|
}
|
|
}
|
|
if (
|
|
this.settings.menu === 'Horizontal' ||
|
|
this.settings.menuType === 'Compact' ||
|
|
this.settings.menuType === 'Mini') {
|
|
this.settingSidenav.toggle(); // To dynamically update the width to 100% after side nav is closed
|
|
setTimeout(() => { this.settingSidenav.toggle(); }, 100);
|
|
}
|
|
} else if (actionPayload.type === RTLActions.INIT_APP_DATA) {
|
|
this.lndStore.dispatch(new LNDActions.FetchInfo());
|
|
}
|
|
});
|
|
this.actions$
|
|
.pipe(
|
|
takeUntil(this.unsubs[1]),
|
|
filter((action) => action.type === LNDActions.SET_INFO)
|
|
).subscribe((infoData: LNDActions.SetInfo) => {
|
|
if (undefined !== infoData.payload.identity_pubkey) {
|
|
this.initializeRemainingData();
|
|
}
|
|
});
|
|
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();
|
|
}
|
|
|
|
initializeRemainingData() {
|
|
this.lndStore.dispatch(new LNDActions.FetchPeers());
|
|
this.lndStore.dispatch(new LNDActions.FetchBalance('channels'));
|
|
this.lndStore.dispatch(new LNDActions.FetchFees());
|
|
this.lndStore.dispatch(new LNDActions.FetchNetwork());
|
|
this.lndStore.dispatch(new LNDActions.FetchChannels({routeParam: 'all'}));
|
|
this.lndStore.dispatch(new LNDActions.FetchChannels({routeParam: 'pending'}));
|
|
this.lndStore.dispatch(new LNDActions.FetchInvoices({num_max_invoices: 25, reversed: true}));
|
|
this.lndStore.dispatch(new LNDActions.FetchPayments());
|
|
}
|
|
|
|
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();
|
|
});
|
|
}
|
|
}
|