2024-02-07 21:39:39 +00:00
|
|
|
import { AfterViewInit, ChangeDetectionStrategy, Component, HostListener, OnDestroy, OnInit } from '@angular/core';
|
2024-01-27 19:19:14 +01:00
|
|
|
import { combineLatest, EMPTY, merge, Observable, of, Subject, Subscription, timer } from 'rxjs';
|
|
|
|
import { catchError, delayWhen, filter, map, scan, share, shareReplay, startWith, switchMap, takeUntil, tap, throttleTime } from 'rxjs/operators';
|
2024-01-21 13:19:02 +01:00
|
|
|
import { AuditStatus, BlockExtended, CurrentPegs, OptimizedMempoolStats } from '../interfaces/node-api.interface';
|
2023-07-14 16:08:57 +09:00
|
|
|
import { MempoolInfo, TransactionStripped, ReplacementInfo } from '../interfaces/websocket.interface';
|
2020-09-26 22:46:26 +07:00
|
|
|
import { ApiService } from '../services/api.service';
|
2020-09-21 19:41:12 +07:00
|
|
|
import { StateService } from '../services/state.service';
|
2020-09-26 22:46:26 +07:00
|
|
|
import { WebsocketService } from '../services/websocket.service';
|
2020-09-28 16:32:48 +07:00
|
|
|
import { SeoService } from '../services/seo.service';
|
2020-09-21 19:41:12 +07:00
|
|
|
|
|
|
|
interface MempoolBlocksData {
|
|
|
|
blocks: number;
|
|
|
|
size: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface MempoolInfoData {
|
|
|
|
memPoolInfo: MempoolInfo;
|
|
|
|
vBytesPerSecond: number;
|
|
|
|
progressWidth: string;
|
2021-08-21 01:46:28 -03:00
|
|
|
progressColor: string;
|
2020-09-21 19:41:12 +07:00
|
|
|
}
|
|
|
|
|
2020-09-26 22:46:26 +07:00
|
|
|
interface MempoolStatsData {
|
|
|
|
mempool: OptimizedMempoolStats[];
|
|
|
|
weightPerSecond: any;
|
|
|
|
}
|
|
|
|
|
2020-09-21 19:41:12 +07:00
|
|
|
@Component({
|
|
|
|
selector: 'app-dashboard',
|
|
|
|
templateUrl: './dashboard.component.html',
|
|
|
|
styleUrls: ['./dashboard.component.scss'],
|
|
|
|
changeDetection: ChangeDetectionStrategy.OnPush
|
|
|
|
})
|
2023-07-25 15:03:39 +09:00
|
|
|
export class DashboardComponent implements OnInit, OnDestroy, AfterViewInit {
|
2022-02-12 00:15:13 +04:00
|
|
|
featuredAssets$: Observable<any>;
|
2020-09-21 19:41:12 +07:00
|
|
|
network$: Observable<string>;
|
|
|
|
mempoolBlocksData$: Observable<MempoolBlocksData>;
|
|
|
|
mempoolInfoData$: Observable<MempoolInfoData>;
|
2021-01-05 18:57:06 +07:00
|
|
|
mempoolLoadingStatus$: Observable<number>;
|
2020-09-21 19:41:12 +07:00
|
|
|
vBytesPerSecondLimit = 1667;
|
2020-09-26 02:11:30 +07:00
|
|
|
transactions$: Observable<TransactionStripped[]>;
|
2023-07-19 12:09:46 +09:00
|
|
|
blocks$: Observable<BlockExtended[]>;
|
2023-07-14 11:52:07 +09:00
|
|
|
replacements$: Observable<ReplacementInfo[]>;
|
2020-09-26 02:11:30 +07:00
|
|
|
latestBlockHeight: number;
|
2020-09-26 22:46:26 +07:00
|
|
|
mempoolTransactionsWeightPerSecondData: any;
|
|
|
|
mempoolStats$: Observable<MempoolStatsData>;
|
|
|
|
transactionsWeightPerSecondOptions: any;
|
2021-07-26 20:47:08 -03:00
|
|
|
isLoadingWebSocket$: Observable<boolean>;
|
2021-09-25 03:13:07 +04:00
|
|
|
liquidPegsMonth$: Observable<any>;
|
2024-01-21 13:19:02 +01:00
|
|
|
currentPeg$: Observable<CurrentPegs>;
|
|
|
|
auditStatus$: Observable<AuditStatus>;
|
2024-01-23 09:57:26 +01:00
|
|
|
auditUpdated$: Observable<boolean>;
|
2024-01-21 13:19:02 +01:00
|
|
|
liquidReservesMonth$: Observable<any>;
|
|
|
|
currentReserves$: Observable<CurrentPegs>;
|
|
|
|
fullHistory$: Observable<any>;
|
2024-01-26 20:43:34 +01:00
|
|
|
isLoad: boolean = true;
|
2024-02-07 21:39:39 +00:00
|
|
|
mempoolInfoSubscription: Subscription;
|
2023-02-15 16:22:06 +09:00
|
|
|
currencySubscription: Subscription;
|
|
|
|
currency: string;
|
2024-02-07 21:39:39 +00:00
|
|
|
incomingGraphHeight: number = 300;
|
2024-01-21 13:19:02 +01:00
|
|
|
private lastPegBlockUpdate: number = 0;
|
2024-01-26 18:52:07 +01:00
|
|
|
private lastPegAmount: string = '';
|
2024-01-21 13:19:02 +01:00
|
|
|
private lastReservesBlockUpdate: number = 0;
|
2020-09-21 19:41:12 +07:00
|
|
|
|
2024-02-08 03:57:11 +00:00
|
|
|
goggleResolution = 82;
|
|
|
|
goggleCycle = [
|
|
|
|
{ index: 0, name: 'All' },
|
2024-02-08 14:52:31 +08:00
|
|
|
{ index: 1, name: 'Consolidations', flag: 0b00000010_00000000_00000000_00000000_00000000n },
|
|
|
|
{ index: 2, name: 'Coinjoin', flag: 0b00000001_00000000_00000000_00000000_00000000n },
|
2024-02-08 03:57:11 +00:00
|
|
|
{ index: 3, name: '💩', flag: 0b00000100_00000000_00000000_00000000n | 0b00000010_00000000_00000000_00000000n | 0b00000001_00000000_00000000_00000000n },
|
|
|
|
];
|
|
|
|
goggleIndex = 0; // Math.floor(Math.random() * this.goggleCycle.length);
|
|
|
|
|
2024-01-27 19:19:14 +01:00
|
|
|
private destroy$ = new Subject();
|
|
|
|
|
2020-09-21 19:41:12 +07:00
|
|
|
constructor(
|
2021-08-05 02:03:52 +03:00
|
|
|
public stateService: StateService,
|
2020-09-26 22:46:26 +07:00
|
|
|
private apiService: ApiService,
|
|
|
|
private websocketService: WebsocketService,
|
2023-02-15 16:22:06 +09:00
|
|
|
private seoService: SeoService
|
2020-09-21 19:41:12 +07:00
|
|
|
) { }
|
|
|
|
|
2023-07-25 15:03:39 +09:00
|
|
|
ngAfterViewInit(): void {
|
2023-07-24 11:35:46 +09:00
|
|
|
this.stateService.focusSearchInputDesktop();
|
2023-07-24 10:18:00 +09:00
|
|
|
}
|
|
|
|
|
2023-02-15 16:22:06 +09:00
|
|
|
ngOnDestroy(): void {
|
2024-02-07 21:39:39 +00:00
|
|
|
this.mempoolInfoSubscription.unsubscribe();
|
2023-02-15 16:22:06 +09:00
|
|
|
this.currencySubscription.unsubscribe();
|
2023-07-14 16:08:57 +09:00
|
|
|
this.websocketService.stopTrackRbfSummary();
|
2024-01-27 19:19:14 +01:00
|
|
|
this.destroy$.next(1);
|
|
|
|
this.destroy$.complete();
|
2023-02-15 16:22:06 +09:00
|
|
|
}
|
|
|
|
|
2020-09-21 19:41:12 +07:00
|
|
|
ngOnInit(): void {
|
2024-02-07 21:39:39 +00:00
|
|
|
this.onResize();
|
2021-07-26 20:47:08 -03:00
|
|
|
this.isLoadingWebSocket$ = this.stateService.isLoadingWebSocket$;
|
2020-09-28 16:32:48 +07:00
|
|
|
this.seoService.resetTitle();
|
2023-08-30 20:26:07 +09:00
|
|
|
this.seoService.resetDescription();
|
2020-09-26 22:46:26 +07:00
|
|
|
this.websocketService.want(['blocks', 'stats', 'mempool-blocks', 'live-2h-chart']);
|
2023-07-14 16:08:57 +09:00
|
|
|
this.websocketService.startTrackRbfSummary();
|
2020-09-21 19:41:12 +07:00
|
|
|
this.network$ = merge(of(''), this.stateService.networkChanged$);
|
2021-08-21 01:46:28 -03:00
|
|
|
this.mempoolLoadingStatus$ = this.stateService.loadingIndicators$
|
|
|
|
.pipe(
|
|
|
|
map((indicators) => indicators.mempool !== undefined ? indicators.mempool : 100)
|
|
|
|
);
|
2020-09-21 19:41:12 +07:00
|
|
|
|
|
|
|
this.mempoolInfoData$ = combineLatest([
|
|
|
|
this.stateService.mempoolInfo$,
|
|
|
|
this.stateService.vbytesPerSecond$
|
2024-02-07 21:39:39 +00:00
|
|
|
]).pipe(
|
|
|
|
map(([mempoolInfo, vbytesPerSecond]) => {
|
|
|
|
const percent = Math.round((Math.min(vbytesPerSecond, this.vBytesPerSecondLimit) / this.vBytesPerSecondLimit) * 100);
|
|
|
|
|
|
|
|
let progressColor = 'bg-success';
|
|
|
|
if (vbytesPerSecond > 1667) {
|
|
|
|
progressColor = 'bg-warning';
|
|
|
|
}
|
|
|
|
if (vbytesPerSecond > 3000) {
|
|
|
|
progressColor = 'bg-danger';
|
|
|
|
}
|
|
|
|
|
|
|
|
const mempoolSizePercentage = (mempoolInfo.usage / mempoolInfo.maxmempool * 100);
|
|
|
|
let mempoolSizeProgress = 'bg-danger';
|
|
|
|
if (mempoolSizePercentage <= 50) {
|
|
|
|
mempoolSizeProgress = 'bg-success';
|
|
|
|
} else if (mempoolSizePercentage <= 75) {
|
|
|
|
mempoolSizeProgress = 'bg-warning';
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
memPoolInfo: mempoolInfo,
|
|
|
|
vBytesPerSecond: vbytesPerSecond,
|
|
|
|
progressWidth: percent + '%',
|
|
|
|
progressColor: progressColor,
|
|
|
|
mempoolSizeProgress: mempoolSizeProgress,
|
|
|
|
};
|
|
|
|
})
|
|
|
|
);
|
|
|
|
|
|
|
|
this.mempoolInfoSubscription = this.mempoolInfoData$.subscribe();
|
2021-08-25 17:18:27 -03:00
|
|
|
|
2020-09-21 19:41:12 +07:00
|
|
|
this.mempoolBlocksData$ = this.stateService.mempoolBlocks$
|
|
|
|
.pipe(
|
|
|
|
map((mempoolBlocks) => {
|
|
|
|
const size = mempoolBlocks.map((m) => m.blockSize).reduce((a, b) => a + b, 0);
|
|
|
|
const vsize = mempoolBlocks.map((m) => m.blockVSize).reduce((a, b) => a + b, 0);
|
|
|
|
|
|
|
|
return {
|
|
|
|
size: size,
|
2021-07-31 17:30:35 +03:00
|
|
|
blocks: Math.ceil(vsize / this.stateService.blockVSize)
|
2020-09-21 19:41:12 +07:00
|
|
|
};
|
|
|
|
})
|
|
|
|
);
|
2020-09-26 02:11:30 +07:00
|
|
|
|
2022-02-12 00:15:13 +04:00
|
|
|
this.featuredAssets$ = this.apiService.listFeaturedAssets$()
|
|
|
|
.pipe(
|
|
|
|
map((featured) => {
|
2022-02-16 17:32:12 +04:00
|
|
|
const newArray = [];
|
2022-02-12 00:15:13 +04:00
|
|
|
for (const feature of featured) {
|
2022-02-16 17:32:12 +04:00
|
|
|
if (feature.ticker !== 'L-BTC' && feature.asset) {
|
|
|
|
newArray.push(feature);
|
2022-02-12 00:15:13 +04:00
|
|
|
}
|
|
|
|
}
|
2022-02-16 17:32:12 +04:00
|
|
|
return newArray.slice(0, 4);
|
2022-02-13 00:46:42 +04:00
|
|
|
}),
|
2022-02-12 00:15:13 +04:00
|
|
|
);
|
|
|
|
|
2020-09-26 02:11:30 +07:00
|
|
|
this.transactions$ = this.stateService.transactions$
|
|
|
|
.pipe(
|
|
|
|
scan((acc, tx) => {
|
2022-01-24 20:51:30 +01:00
|
|
|
if (acc.find((t) => t.txid == tx.txid)) {
|
|
|
|
return acc;
|
|
|
|
}
|
2020-09-26 02:11:30 +07:00
|
|
|
acc.unshift(tx);
|
2021-01-12 00:15:52 +07:00
|
|
|
acc = acc.slice(0, 6);
|
2020-09-26 02:11:30 +07:00
|
|
|
return acc;
|
|
|
|
}, []),
|
|
|
|
);
|
2020-09-26 22:46:26 +07:00
|
|
|
|
2023-07-19 12:09:46 +09:00
|
|
|
this.blocks$ = this.stateService.blocks$
|
|
|
|
.pipe(
|
|
|
|
tap((blocks) => {
|
|
|
|
this.latestBlockHeight = blocks[0].height;
|
|
|
|
}),
|
|
|
|
switchMap((blocks) => {
|
|
|
|
if (this.stateService.env.MINING_DASHBOARD === true) {
|
|
|
|
for (const block of blocks) {
|
|
|
|
// @ts-ignore: Need to add an extra field for the template
|
|
|
|
block.extras.pool.logo = `/resources/mining-pools/` +
|
2023-07-28 13:45:04 +09:00
|
|
|
block.extras.pool.slug + '.svg';
|
2023-07-19 12:09:46 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return of(blocks.slice(0, 6));
|
|
|
|
})
|
|
|
|
);
|
|
|
|
|
2023-07-14 16:08:57 +09:00
|
|
|
this.replacements$ = this.stateService.rbfLatestSummary$;
|
2023-07-14 11:52:07 +09:00
|
|
|
|
2021-08-21 01:46:28 -03:00
|
|
|
this.mempoolStats$ = this.stateService.connectionState$
|
|
|
|
.pipe(
|
|
|
|
filter((state) => state === 2),
|
2023-07-29 15:16:28 +09:00
|
|
|
switchMap(() => this.apiService.list2HStatistics$().pipe(
|
|
|
|
catchError((e) => {
|
|
|
|
return of(null);
|
|
|
|
})
|
|
|
|
)),
|
2021-08-21 01:46:28 -03:00
|
|
|
switchMap((mempoolStats) => {
|
|
|
|
return merge(
|
|
|
|
this.stateService.live2Chart$
|
|
|
|
.pipe(
|
|
|
|
scan((acc, stats) => {
|
|
|
|
acc.unshift(stats);
|
|
|
|
acc = acc.slice(0, 120);
|
|
|
|
return acc;
|
|
|
|
}, mempoolStats)
|
|
|
|
),
|
|
|
|
of(mempoolStats)
|
|
|
|
);
|
|
|
|
}),
|
|
|
|
map((mempoolStats) => {
|
2023-07-29 15:16:28 +09:00
|
|
|
if (mempoolStats) {
|
|
|
|
return {
|
|
|
|
mempool: mempoolStats,
|
|
|
|
weightPerSecond: this.handleNewMempoolData(mempoolStats.concat([])),
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
2021-08-21 01:46:28 -03:00
|
|
|
}),
|
|
|
|
share(),
|
|
|
|
);
|
2021-09-25 03:13:07 +04:00
|
|
|
|
2021-12-27 22:54:45 +04:00
|
|
|
if (this.stateService.network === 'liquid' || this.stateService.network === 'liquidtestnet') {
|
2024-01-26 20:43:34 +01:00
|
|
|
this.auditStatus$ = this.stateService.blocks$.pipe(
|
2024-01-27 19:19:14 +01:00
|
|
|
takeUntil(this.destroy$),
|
2024-01-26 20:43:34 +01:00
|
|
|
throttleTime(40000),
|
|
|
|
delayWhen(_ => this.isLoad ? timer(0) : timer(2000)),
|
|
|
|
tap(() => this.isLoad = false),
|
|
|
|
switchMap(() => this.apiService.federationAuditSynced$()),
|
2024-01-27 19:19:14 +01:00
|
|
|
shareReplay(1)
|
2024-01-26 20:43:34 +01:00
|
|
|
);
|
|
|
|
|
2024-01-21 13:19:02 +01:00
|
|
|
////////// Pegs historical data //////////
|
2024-01-26 20:43:34 +01:00
|
|
|
this.liquidPegsMonth$ = this.auditStatus$.pipe(
|
|
|
|
throttleTime(60 * 60 * 1000),
|
|
|
|
switchMap(() => this.apiService.listLiquidPegsMonth$()),
|
|
|
|
map((pegs) => {
|
|
|
|
const labels = pegs.map(stats => stats.date);
|
|
|
|
const series = pegs.map(stats => parseFloat(stats.amount) / 100000000);
|
|
|
|
series.reduce((prev, curr, i) => series[i] = prev + curr, 0);
|
|
|
|
return {
|
|
|
|
series,
|
|
|
|
labels
|
|
|
|
};
|
|
|
|
}),
|
|
|
|
share(),
|
|
|
|
);
|
2024-01-21 13:19:02 +01:00
|
|
|
|
2024-01-26 20:43:34 +01:00
|
|
|
this.currentPeg$ = this.auditStatus$.pipe(
|
|
|
|
switchMap(_ =>
|
|
|
|
this.apiService.liquidPegs$().pipe(
|
|
|
|
filter((currentPegs) => currentPegs.lastBlockUpdate >= this.lastPegBlockUpdate),
|
|
|
|
tap((currentPegs) => {
|
|
|
|
this.lastPegBlockUpdate = currentPegs.lastBlockUpdate;
|
|
|
|
})
|
2024-01-21 13:19:02 +01:00
|
|
|
)
|
2024-01-26 20:43:34 +01:00
|
|
|
),
|
2024-01-21 13:19:02 +01:00
|
|
|
share()
|
|
|
|
);
|
|
|
|
|
|
|
|
////////// BTC Reserves historical data //////////
|
2024-01-26 18:52:07 +01:00
|
|
|
this.auditUpdated$ = combineLatest([
|
|
|
|
this.auditStatus$,
|
|
|
|
this.currentPeg$
|
|
|
|
]).pipe(
|
|
|
|
filter(([auditStatus, _]) => auditStatus.isAuditSynced === true),
|
|
|
|
map(([auditStatus, currentPeg]) => ({
|
|
|
|
lastBlockAudit: auditStatus.lastBlockAudit,
|
|
|
|
currentPegAmount: currentPeg.amount
|
2024-01-26 20:43:34 +01:00
|
|
|
})),
|
2024-01-26 18:52:07 +01:00
|
|
|
switchMap(({ lastBlockAudit, currentPegAmount }) => {
|
|
|
|
const blockAuditCheck = lastBlockAudit > this.lastReservesBlockUpdate;
|
|
|
|
const amountCheck = currentPegAmount !== this.lastPegAmount;
|
|
|
|
this.lastPegAmount = currentPegAmount;
|
|
|
|
return of(blockAuditCheck || amountCheck);
|
|
|
|
})
|
2024-01-23 09:57:26 +01:00
|
|
|
);
|
|
|
|
|
2024-01-26 20:43:34 +01:00
|
|
|
this.liquidReservesMonth$ = this.auditStatus$.pipe(
|
|
|
|
throttleTime(60 * 60 * 1000),
|
2024-01-21 13:19:02 +01:00
|
|
|
switchMap((auditStatus) => {
|
|
|
|
return auditStatus.isAuditSynced ? this.apiService.listLiquidReservesMonth$() : EMPTY;
|
|
|
|
}),
|
|
|
|
map(reserves => {
|
|
|
|
const labels = reserves.map(stats => stats.date);
|
|
|
|
const series = reserves.map(stats => parseFloat(stats.amount) / 100000000);
|
|
|
|
return {
|
|
|
|
series,
|
|
|
|
labels
|
|
|
|
};
|
|
|
|
}),
|
|
|
|
share()
|
|
|
|
);
|
|
|
|
|
2024-01-23 09:57:26 +01:00
|
|
|
this.currentReserves$ = this.auditUpdated$.pipe(
|
|
|
|
filter(auditUpdated => auditUpdated === true),
|
2024-01-26 18:52:07 +01:00
|
|
|
throttleTime(40000),
|
2024-01-21 13:19:02 +01:00
|
|
|
switchMap(_ =>
|
|
|
|
this.apiService.liquidReserves$().pipe(
|
2024-01-26 18:52:07 +01:00
|
|
|
filter((currentReserves) => currentReserves.lastBlockUpdate >= this.lastReservesBlockUpdate),
|
2024-01-21 13:19:02 +01:00
|
|
|
tap((currentReserves) => {
|
|
|
|
this.lastReservesBlockUpdate = currentReserves.lastBlockUpdate;
|
|
|
|
})
|
|
|
|
)
|
|
|
|
),
|
|
|
|
share()
|
|
|
|
);
|
|
|
|
|
|
|
|
this.fullHistory$ = combineLatest([this.liquidPegsMonth$, this.currentPeg$, this.liquidReservesMonth$.pipe(startWith(null)), this.currentReserves$.pipe(startWith(null))])
|
|
|
|
.pipe(
|
|
|
|
map(([liquidPegs, currentPeg, liquidReserves, currentReserves]) => {
|
|
|
|
liquidPegs.series[liquidPegs.series.length - 1] = parseFloat(currentPeg.amount) / 100000000;
|
|
|
|
|
|
|
|
if (liquidPegs.series.length === liquidReserves?.series.length) {
|
|
|
|
liquidReserves.series[liquidReserves.series.length - 1] = parseFloat(currentReserves?.amount) / 100000000;
|
|
|
|
} else if (liquidPegs.series.length === liquidReserves?.series.length + 1) {
|
|
|
|
liquidReserves.series.push(parseFloat(currentReserves?.amount) / 100000000);
|
2024-01-23 09:57:26 +01:00
|
|
|
liquidReserves.labels.push(liquidPegs.labels[liquidPegs.labels.length - 1]);
|
2024-01-21 13:19:02 +01:00
|
|
|
} else {
|
|
|
|
liquidReserves = {
|
|
|
|
series: [],
|
|
|
|
labels: []
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
liquidPegs,
|
|
|
|
liquidReserves
|
|
|
|
};
|
2024-01-23 09:57:26 +01:00
|
|
|
}),
|
|
|
|
share()
|
2024-01-21 13:19:02 +01:00
|
|
|
);
|
2021-09-25 03:13:07 +04:00
|
|
|
}
|
2023-02-15 16:22:06 +09:00
|
|
|
|
|
|
|
this.currencySubscription = this.stateService.fiatCurrency$.subscribe((fiat) => {
|
|
|
|
this.currency = fiat;
|
|
|
|
});
|
2020-09-26 22:46:26 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
handleNewMempoolData(mempoolStats: OptimizedMempoolStats[]) {
|
|
|
|
mempoolStats.reverse();
|
|
|
|
const labels = mempoolStats.map(stats => stats.added);
|
|
|
|
|
|
|
|
return {
|
|
|
|
labels: labels,
|
2021-12-11 10:38:13 +09:00
|
|
|
series: [mempoolStats.map((stats) => [stats.added * 1000, stats.vbytes_per_second])],
|
2020-09-26 22:46:26 +07:00
|
|
|
};
|
2020-09-26 02:11:30 +07:00
|
|
|
}
|
|
|
|
|
2022-02-04 12:51:45 +09:00
|
|
|
trackByBlock(index: number, block: BlockExtended) {
|
2020-09-26 02:11:30 +07:00
|
|
|
return block.height;
|
2020-09-21 19:41:12 +07:00
|
|
|
}
|
2024-02-07 21:39:39 +00:00
|
|
|
|
|
|
|
@HostListener('window:resize', ['$event'])
|
|
|
|
onResize(): void {
|
|
|
|
if (window.innerWidth >= 992) {
|
|
|
|
this.incomingGraphHeight = 300;
|
2024-02-08 03:57:11 +00:00
|
|
|
this.goggleResolution = 82;
|
2024-02-07 21:39:39 +00:00
|
|
|
} else if (window.innerWidth >= 768) {
|
|
|
|
this.incomingGraphHeight = 215;
|
2024-02-08 03:57:11 +00:00
|
|
|
this.goggleResolution = 80;
|
2024-02-07 21:39:39 +00:00
|
|
|
} else {
|
|
|
|
this.incomingGraphHeight = 180;
|
2024-02-08 03:57:11 +00:00
|
|
|
this.goggleResolution = 86;
|
2024-02-07 21:39:39 +00:00
|
|
|
}
|
|
|
|
}
|
2020-09-21 19:41:12 +07:00
|
|
|
}
|