7 changed files with 162 additions and 27 deletions
@ -0,0 +1,12 @@ |
|||
export class StatExporter<T> { |
|||
data: T|null = null; |
|||
|
|||
fromData(res:any, field:string): StatExporter<T> { |
|||
this.data = res[field]; |
|||
return this; |
|||
} |
|||
|
|||
export(): T|null { |
|||
return this.data; |
|||
} |
|||
} |
@ -0,0 +1,6 @@ |
|||
export interface Statistic { |
|||
player_max: number; |
|||
player_now: number; |
|||
total_servers: number; |
|||
working_servers: number; |
|||
} |
@ -0,0 +1,22 @@ |
|||
import { Injectable } from '@angular/core'; |
|||
import {HttpClient} from "@angular/common/http"; |
|||
import {map, Observable} from "rxjs"; |
|||
import {StatExporter} from "../entities/servers/StatExporter"; |
|||
|
|||
@Injectable({ |
|||
providedIn: 'root' |
|||
}) |
|||
export class ServerService { |
|||
|
|||
constructor(private http: HttpClient) { } |
|||
|
|||
getStats(filter: string): Observable<StatExporter<any>> { |
|||
return this.http.get(`api/stats?filter=${filter}`).pipe( |
|||
map((res) => { |
|||
const d = new StatExporter(); |
|||
d.fromData(res, filter); |
|||
return d; |
|||
}) |
|||
) |
|||
} |
|||
} |
Loading…
Reference in new issue