13 changed files with 216 additions and 8 deletions
@ -0,0 +1,13 @@ |
|||||
|
export class ShityPaginator<T> { |
||||
|
data: T[] = []; |
||||
|
count: number = 0; |
||||
|
fromData(data:any, field: string): ShityPaginator<T> { |
||||
|
this.count = data.count; |
||||
|
this.data = data[field]; |
||||
|
return this; |
||||
|
} |
||||
|
|
||||
|
static newObj():ShityPaginator<any> { |
||||
|
return new ShityPaginator<any>() |
||||
|
} |
||||
|
} |
@ -0,0 +1,19 @@ |
|||||
|
export interface Ban { |
||||
|
id: number; |
||||
|
steam_id: string; |
||||
|
account_id: number; |
||||
|
player_name: string; |
||||
|
ban_length: number; |
||||
|
ban_length_seconds: number; |
||||
|
ban_reason: string; |
||||
|
banned_by: string; |
||||
|
banned_by_id: string; |
||||
|
ip: string; |
||||
|
timestamp: Date; |
||||
|
ban_utime: number; |
||||
|
active: boolean; |
||||
|
unbanned_by_id: string; |
||||
|
unbanned_timestamp: Date; |
||||
|
admin_info: any; |
||||
|
unbanned_admin_info: any; |
||||
|
} |
@ -0,0 +1,25 @@ |
|||||
|
<div class="content-in-center-header" style="flex-direction: column;"> |
||||
|
<h1>Бан лист</h1> |
||||
|
<h3>Скоро и ты сюда попадешь браток{{total==0?'':'как и остальные ' + total + ' карликов'}}</h3> |
||||
|
</div> |
||||
|
|
||||
|
<div class="content-in-center"> |
||||
|
<div class="content-in-border"> |
||||
|
<app-need-auth-to-continue *ngIf="authService.steamdata == null && loading == null"></app-need-auth-to-continue> |
||||
|
<div *ngIf="loading == false"> |
||||
|
<mat-accordion> |
||||
|
<mat-expansion-panel *ngFor="let ban of bans"> |
||||
|
<mat-expansion-panel-header> |
||||
|
<mat-panel-title> |
||||
|
<p>#{{ban.id}} {{ban.player_name}}</p> |
||||
|
</mat-panel-title> |
||||
|
<mat-panel-description> |
||||
|
<p>{{ban.timestamp | date:'dd/MM/YYYY hh:mm:ss'}}</p> |
||||
|
</mat-panel-description> |
||||
|
</mat-expansion-panel-header> |
||||
|
<p>А хуй знает я еще не приудмал</p> |
||||
|
</mat-expansion-panel> |
||||
|
</mat-accordion> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
@ -0,0 +1,36 @@ |
|||||
|
import { Component, OnInit } from '@angular/core'; |
||||
|
import {AuthService} from "../../services/auth.service"; |
||||
|
import {BanService} from "../../services/ban.service"; |
||||
|
import {Ban} from "../../entities/ban/Ban"; |
||||
|
|
||||
|
@Component({ |
||||
|
selector: 'app-banlist-page', |
||||
|
templateUrl: './banlist-page.component.html', |
||||
|
styleUrls: ['./banlist-page.component.scss'] |
||||
|
}) |
||||
|
export class BanlistPageComponent implements OnInit { |
||||
|
loading: boolean | null = null; |
||||
|
bans: Ban[] = []; |
||||
|
total: number = 0; |
||||
|
|
||||
|
constructor(public authService: AuthService, |
||||
|
private banService: BanService) { |
||||
|
} |
||||
|
|
||||
|
ngOnInit(): void { |
||||
|
if (this.authService.isAuth()) { |
||||
|
this.getBanList(); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
getBanList() { |
||||
|
this.loading = true; |
||||
|
this.banService.getBanList().subscribe( |
||||
|
(res) => { |
||||
|
this.bans = res.data; |
||||
|
this.total = res.count; |
||||
|
}, () => {}, () => this.loading = false |
||||
|
) |
||||
|
} |
||||
|
|
||||
|
} |
@ -0,0 +1,19 @@ |
|||||
|
import { Injectable } from '@angular/core'; |
||||
|
import {HttpClient} from "@angular/common/http"; |
||||
|
import {ShityPaginator} from "../entities/ShityPaginator"; |
||||
|
import {Ban} from "../entities/ban/Ban"; |
||||
|
import {map, Observable} from "rxjs"; |
||||
|
|
||||
|
@Injectable({ |
||||
|
providedIn: 'root' |
||||
|
}) |
||||
|
export class BanService { |
||||
|
|
||||
|
constructor(private http: HttpClient) { } |
||||
|
|
||||
|
getBanList(): Observable<ShityPaginator<Ban>> { |
||||
|
return this.http.get("api/web/banlist").pipe( |
||||
|
map((res) => ShityPaginator.newObj().fromData(res, "bans")) |
||||
|
) |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue