60 lines
1.7 KiB
TypeScript
60 lines
1.7 KiB
TypeScript
import {Component, OnInit, OnDestroy} from '@angular/core';
|
|
import {ActivatedRoute, NavigationStart, Router} from '@angular/router';
|
|
import {VariablesService} from '../_helpers/services/variables.service';
|
|
|
|
@Component({
|
|
selector: 'app-sidebar',
|
|
templateUrl: './sidebar.component.html',
|
|
styleUrls: ['./sidebar.component.scss']
|
|
})
|
|
export class SidebarComponent implements OnInit, OnDestroy {
|
|
walletSubRouting;
|
|
|
|
walletActive: number;
|
|
|
|
constructor(
|
|
private route: ActivatedRoute,
|
|
private router: Router,
|
|
private variablesService: VariablesService
|
|
) {
|
|
}
|
|
|
|
ngOnInit() {
|
|
if (this.router.url.indexOf('/wallet/') !== -1) {
|
|
const localPathArr = this.router.url.split('/');
|
|
if (localPathArr.length >= 3) {
|
|
this.walletActive = parseInt(localPathArr[2], 10);
|
|
}
|
|
} else if (this.router.url.indexOf('/details') !== -1) {
|
|
this.walletActive = this.variablesService.currentWallet.wallet_id;
|
|
} else {
|
|
this.walletActive = null;
|
|
}
|
|
|
|
this.walletSubRouting = this.router.events.subscribe((event) => {
|
|
if (event instanceof NavigationStart) {
|
|
if (event.url.indexOf('/wallet/') !== -1) {
|
|
const localPathArr = event.url.split('/');
|
|
if (localPathArr.length >= 3) {
|
|
this.walletActive = parseInt(localPathArr[2], 10);
|
|
}
|
|
} else if (event.url.indexOf('/details') !== -1) {
|
|
this.walletActive = this.variablesService.currentWallet.wallet_id;
|
|
} else {
|
|
this.walletActive = null;
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
ngOnDestroy() {
|
|
this.walletSubRouting.unsubscribe();
|
|
}
|
|
|
|
logOut() {
|
|
this.variablesService.stopCountdown();
|
|
this.variablesService.appPass = '';
|
|
this.router.navigate(['/login'], {queryParams: {type: 'auth'}});
|
|
}
|
|
|
|
}
|