Add points and budget time graphs

pull/15/head
HardiReady 2017-10-28 22:50:54 +02:00
parent e294e3212e
commit 24f46b0f3c
8 changed files with 151 additions and 11 deletions

View File

@ -5,6 +5,7 @@ const express = require('express');
const logger = require('debug')('cc:logs'); const logger = require('debug')('cc:logs');
const routerHandling = require('../middleware/router-handling'); const routerHandling = require('../middleware/router-handling');
const decimalToTimeString = require('../tools/util').decimalToTimeString;
// Mongoose Model using mongoDB // Mongoose Model using mongoDB
const LogBudgetModel = require('../models/logs/budget'); const LogBudgetModel = require('../models/logs/budget');
@ -25,7 +26,13 @@ function processLogRequest(model, filter, res, next) {
err.status = require('./http-codes').notfound; err.status = require('./http-codes').notfound;
return next(err) return next(err)
} }
res.locals.items = log; const updatedTimeItems = [];
for (let i =0; i <log.length; i++) {
let item = log[i].toObject();
item.time = decimalToTimeString(item.time);
updatedTimeItems.push(item);
}
res.locals.items = updatedTimeItems;
next(); next();
}) })
} }

View File

@ -50,6 +50,10 @@ export interface War {
ptOpfor?: number; ptOpfor?: number;
playersBlufor?: number; playersBlufor?: number;
playersOpfor?: number; playersOpfor?: number;
budgetBlufor?: number;
budgetOpfor?: number;
endBudgetBlufor?: number;
endBudgetOpfor?: number;
players?: Player[]; players?: Player[];
campaign?: string; campaign?: string;
} }

View File

@ -11,7 +11,6 @@ export class LogsService {
} }
getBudgetLogs(warId: string, fraction = '') { getBudgetLogs(warId: string, fraction = '') {
console.log("CALL")
const params = new URLSearchParams(); const params = new URLSearchParams();
params.append('fraction', fraction); params.append('fraction', fraction);
return this.http.get(this.config.apiLogsPath + '/' + warId + '/budget', params) return this.http.get(this.config.apiLogsPath + '/' + warId + '/budget', params)

View File

@ -42,6 +42,15 @@
color: blue; color: blue;
} }
.chart-container {
width: 80%;
min-width: 500px;
height: 400px;
padding: 15px;
margin: 2%;
float: left;
}
/* ########### TABS ########### */ /* ########### TABS ########### */
:host /deep/ .nav-tabs { :host /deep/ .nav-tabs {
@ -54,7 +63,7 @@
} }
:host /deep/ .nav-link:hover { :host /deep/ .nav-link:hover {
background: aliceblue; background: #286090;
color: #000; color: #000;
} }

View File

@ -54,9 +54,9 @@
<tabset> <tabset>
<tab> <tab>
<template tabHeading> <ng-template tabHeading>
<img src="../../../assets/scoreboard-btn.png"> Scoreboard <img src="../../../assets/scoreboard-btn.png"> Scoreboard
</template> </ng-template>
<div class=vertical-spacer></div> <div class=vertical-spacer></div>
<ngx-datatable <ngx-datatable
[rows]="rows" [rows]="rows"
@ -91,10 +91,43 @@
</tab> </tab>
<tab (select)="loadFractionData()"> <tab (select)="loadFractionData()">
<template tabHeading> <ng-template tabHeading>
<img src="../../../assets/fraction-btn.png"> Fraktionen <img src="../../../assets/fraction-btn.png"> Fraktionen
</template> </ng-template>
I've got an HTML heading, and a select callback. Pretty cool! <div class="fade-in chart-container">
<ngx-charts-line-chart
[scheme]="colorScheme"
[results]="pointData"
[gradient]="gradient"
[xAxis]="xAxis"
[yAxis]="yAxis"
[legend]="legend"
[legendTitle]="legendTitle"
[showXAxisLabel]="showXAxisLabel"
[showYAxisLabel]="showYAxisLabel"
[yAxisLabel]="yAxisLabelPoints"
[autoScale]="autoscale"
[timeline]="timeline"
[roundDomains]="roundDomains">
</ngx-charts-line-chart>
</div>
<div class="fade-in chart-container">
<ngx-charts-line-chart
[scheme]="colorScheme"
[results]="budgetData"
[gradient]="gradient"
[xAxis]="xAxis"
[yAxis]="yAxis"
[legend]="legend"
[legendTitle]="legendTitle"
[showXAxisLabel]="showXAxisLabel"
[showYAxisLabel]="showYAxisLabel"
[yAxisLabel]="yAxisLabelBudget"
[autoScale]="autoscale"
[timeline]="timeline"
[roundDomains]="roundDomains">
</ngx-charts-line-chart>
</div>
</tab> </tab>
</tabset> </tabset>

View File

@ -31,10 +31,32 @@ export class WarDetailComponent {
sortDescending: 'glyphicon glyphicon-triangle-bottom', sortDescending: 'glyphicon glyphicon-triangle-bottom',
}; };
pointData: any[] = [];
budgetData: any[] = [];
colorScheme = {
domain: ['#0000FF', '#B22222']
};
yAxisLabelPoints = 'Punkte';
yAxisLabelBudget = 'Budget';
gradient = false;
yAxis = true;
xAxis = true;
legend = false;
legendTitle = false;
showXAxisLabel = false;
showYAxisLabel = true;
autoscale = true;
timeline = false;
roundDomains = true;
fractionInitialized: boolean = false;
constructor(private route: ActivatedRoute, constructor(private route: ActivatedRoute,
private router: Router, private router: Router,
private warService: WarService) { private warService: WarService,
Object.assign(this, this.playerChart) private logsService: LogsService) {
} }
ngOnInit() { ngOnInit() {
@ -55,6 +77,7 @@ export class WarDetailComponent {
"value": war.playersBlufor "value": war.playersBlufor
} }
]; ];
Object.assign(this, [this.playerChart, this.pointData, this.budgetData]);
this.scrollOverviewTop(); this.scrollOverviewTop();
}); });
} }
@ -84,7 +107,72 @@ export class WarDetailComponent {
} }
loadFractionData() { loadFractionData() {
console.log('load data from server') if (!this.fractionInitialized) {
const tmpPointData = [
{
"name": "NATO",
"series": []
},
{
"name": "CSAT",
"series": []
}
];
const tmpBudgetData = JSON.parse(JSON.stringify(tmpPointData));
const tmpKillData = JSON.parse(JSON.stringify(tmpPointData));
const tmpFrienlyFireData = JSON.parse(JSON.stringify(tmpPointData));
const tmpTransportData = JSON.parse(JSON.stringify(tmpPointData));
const tmpReviveData = JSON.parse(JSON.stringify(tmpPointData));
const tmpStabilizeData = JSON.parse(JSON.stringify(tmpPointData));
const tmpFlagCaptureData = JSON.parse(JSON.stringify(tmpPointData));
// POINTS
this.logsService.getPointsLogs(this.war._id).subscribe((data) => {
data.forEach(pointEntry => {
const dateObj = new Date(this.war.date);
const time = pointEntry.time.split(':');
dateObj.setHours(time[0]);
dateObj.setMinutes(time[1]);
tmpPointData[0].series.push({
"name": dateObj,
"value": pointEntry.ptBlufor
});
tmpPointData[1].series.push({
"name": dateObj,
"value": pointEntry.ptOpfor
});
});
this.pointData = tmpPointData;
});
// BUDGET
this.logsService.getBudgetLogs(this.war._id).subscribe((data) => {
const dateObj = new Date(this.war.date);
dateObj.setHours(0);
dateObj.setMinutes(0);
tmpBudgetData[0].series.push({
"name": dateObj,
"value": this.war.budgetBlufor
});
tmpBudgetData[1].series.push({
"name": dateObj,
"value": this.war.budgetOpfor
});
data.forEach(budgetEntry => {
const time = budgetEntry.time.split(':');
const dateObj = new Date(this.war.date);
dateObj.setHours(time[0]);
dateObj.setMinutes(time[1]);
tmpBudgetData[budgetEntry.fraction === 'BLUFOR' ? 0 : 1].series.push({
"name": dateObj,
"value": budgetEntry.newBudget
});
});
this.budgetData = tmpBudgetData;
});
this.fractionInitialized = true;
}
} }
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 797 B