Headless CMS and Content Managment Hub
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

203 lines
6.3 KiB

/*
* Squidex Headless CMS
*
* @license
* Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved.
*/
import { Component, OnDestroy, OnInit } from '@angular/core';
import { Subscription } from 'rxjs';
import { filter, map, switchMap } from 'rxjs/operators';
import {
AppDto,
AppsState,
AuthService,
DateTime,
fadeAnimation,
HistoryEventDto,
HistoryService,
UsagesService
} from '@app/shared';
const COLORS = [
' 51, 137, 213',
'211, 50, 50',
'131, 211, 50',
' 50, 211, 131',
' 50, 211, 211',
' 50, 131, 211',
' 50, 50, 211',
' 50, 211, 50',
'131, 50, 211',
'211, 50, 211',
'211, 50, 131'
];
@Component({
selector: 'sqx-dashboard-page',
styleUrls: ['./dashboard-page.component.scss'],
templateUrl: './dashboard-page.component.html',
animations: [
fadeAnimation
]
})
export class DashboardPageComponent implements OnDestroy, OnInit {
private subscriptions: Subscription[] = [];
public profileDisplayName = '';
public chartStorageCount: any;
public chartStorageSize: any;
public chartCallsCount: any;
public chartCallsPerformance: any;
public app = this.appsState.selectedApp.pipe(filter(x => !!x), map(x => <AppDto>x));
public chartOptions = {
responsive: true,
scales: {
xAxes: [{
display: true,
stacked: true
}],
yAxes: [{
ticks: {
beginAtZero: true
},
stacked: true
}]
},
maintainAspectRatio: false
};
public history: HistoryEventDto[] = [];
public assetsCurrent = 0;
public assetsMax = 0;
public callsCurrent = 0;
public callsMax = 0;
constructor(
public readonly appsState: AppsState,
public readonly authState: AuthService,
private readonly historyService: HistoryService,
private readonly usagesService: UsagesService
) {
}
public ngOnDestroy() {
for (let subscription of this.subscriptions) {
subscription.unsubscribe();
}
this.subscriptions = [];
}
public ngOnInit() {
this.subscriptions.push(
this.app.pipe(
switchMap(app => this.usagesService.getTodayStorage(app.name)))
.subscribe(dto => {
this.assetsCurrent = dto.size;
this.assetsMax = dto.maxAllowed;
}));
this.subscriptions.push(
this.app.pipe(
switchMap(app => this.usagesService.getMonthCalls(app.name)))
.subscribe(dto => {
this.callsCurrent = dto.count;
this.callsMax = dto.maxAllowed;
}));
this.subscriptions.push(
this.app.pipe(
switchMap(app => this.historyService.getHistory(app.name, '')))
.subscribe(dto => {
this.history = dto;
}));
this.subscriptions.push(
this.app.pipe(
switchMap(app => this.usagesService.getStorageUsages(app.name, DateTime.today().addDays(-20), DateTime.today())))
.subscribe(dtos => {
const labels = createLabels(dtos);
this.chartStorageCount = {
labels,
datasets: [
{
label: 'All',
lineTension: 0,
fill: false,
backgroundColor: `rgba(${COLORS[0]}, 0.6)`,
borderColor: `rgba(${COLORS[0]}, 1)`,
borderWidth: 1,
data: dtos.map(x => x.count)
}
]
};
this.chartStorageSize = {
labels,
datasets: [
{
label: 'All',
lineTension: 0,
fill: false,
backgroundColor: `rgba(${COLORS[0]}, 0.6)`,
borderColor: `rgba(${COLORS[0]}, 1)`,
borderWidth: 1,
data: dtos.map(x => Math.round(100 * (x.size / (1024 * 1024))) / 100)
}
]
};
}));
this.subscriptions.push(
this.app.pipe(
switchMap(app => this.usagesService.getCallsUsages(app.name, DateTime.today().addDays(-20), DateTime.today())))
.subscribe(dtos => {
const labels = createLabelsFromSet(dtos);
this.chartCallsCount = {
labels,
datasets: Object.keys(dtos).map((k, i) => (
{
label: label(k),
backgroundColor: `rgba(${COLORS[i]}, 0.6)`,
borderColor: `rgba(${COLORS[i]}, 1)`,
borderWidth: 1,
data: dtos[k].map(x => x.count)
}))
};
this.chartCallsPerformance = {
labels,
datasets: Object.keys(dtos).map((k, i) => (
{
label: label(k),
backgroundColor: `rgba(${COLORS[i]}, 0.6)`,
borderColor: `rgba(${COLORS[i]}, 1)`,
borderWidth: 1,
data: dtos[k].map(x => x.averageMs)
}))
};
}));
}
}
function label(category: string) {
return category === '*' ? 'All Clients' : category;
}
function createLabels(dtos: { date: DateTime }[]): string[] {
return dtos.map(d => d.date.toStringFormat('M-DD'));
}
function createLabelsFromSet(dtos: { [category: string]: { date: DateTime }[] }): string[] {
return createLabels(dtos[Object.keys(dtos)[0]]);
}