Browse Source

бан лист говна

master
gsd 5 days ago
parent
commit
d15b30485a
  1. 47
      src/app/entities/ban/Ban.ts
  2. 2
      src/app/entities/profile/PlayerProfile.ts
  3. 36
      src/app/pages/profile-page/profile-page.component.html
  4. 31
      src/app/pages/profile-page/profile-page.component.ts
  5. 4
      src/styles.scss

47
src/app/entities/ban/Ban.ts

@ -1,19 +1,34 @@
export interface Ban { export class Ban {
id: number; id: number = 0;
steam_id: string; steam_id: string|undefined;
account_id: number; account_id: number|undefined;
player_name: string; player_name: string|undefined;
ban_length: number; ban_length: number=0;
ban_length_seconds: number; ban_length_seconds: number = 0;
ban_reason: string; ban_reason: string|undefined;
banned_by: string; banned_by: string|undefined;
banned_by_id: string; banned_by_id: string|undefined;
ip: string; ip: string|undefined;
timestamp: Date; timestamp: Date|undefined;
ban_utime: number; ban_utime: number = 0;
active: boolean; active: boolean|undefined;
unbanned_by_id: string; unbanned_by_id: string = "";
unbanned_timestamp: Date; unbanned_timestamp: Date|undefined;
admin_info: any; admin_info: any;
unbanned_admin_info: any; unbanned_admin_info: any;
static createFakeBanObject(reason: string, id: number = Number.MAX_VALUE) {
const b = new Ban();
b.id = id;
b.ban_reason = reason;
return b;
}
unbannedAfterTime(): boolean {
return this.unbanned_by_id == "STEAM_0:0:0";
}
unbannedByModerator(): boolean {
return !this.unbannedAfterTime();
}
} }

2
src/app/entities/profile/PlayerProfile.ts

@ -16,7 +16,7 @@ export class PlayerProfile {
play_on: PlayOn|null = null; play_on: PlayOn|null = null;
attached_discords: any[]|null = null; attached_discords: any[]|null = null;
donates: any[]|null = null; donates: any[]|null = null;
ban_list: any[]|null = null; ban_list: Ban[]|null = null;
killfeed: any|null = null; killfeed: any|null = null;
killfeed_current: any = null; killfeed_current: any = null;
messages: number|null = null; messages: number|null = null;

36
src/app/pages/profile-page/profile-page.component.html

@ -112,16 +112,44 @@
</mat-list-item> </mat-list-item>
</mat-list> </mat-list>
</mat-expansion-panel> </mat-expansion-panel>
<mat-expansion-panel hideToggle> <!--История банов-->
<mat-expansion-panel hideToggle (click)="getBanList()">
<mat-expansion-panel-header> <mat-expansion-panel-header>
<mat-panel-title> <mat-panel-title>
История банов История банов
</mat-panel-title> </mat-panel-title>
</mat-expansion-panel-header> </mat-expansion-panel-header>
<div> <mat-progress-bar *ngIf="profile!=null &&profile.ban_list!=null&&profile.ban_list.length==1&&profile.ban_list[0].id == 0" mode="indeterminate"></mat-progress-bar>
<p>Тоже табличку</p> <mat-accordion>
</div> <mat-expansion-panel hideToggle *ngFor="let ban of profile.ban_list" expanded>
<mat-expansion-panel-header *ngIf="ban.id!=0">
<mat-panel-title>
{{ban.id==getMaxValue()?ban.ban_reason:ban.ban_utime*1000|date}}
</mat-panel-title>
</mat-expansion-panel-header>
<div *ngIf="ban.id !=getMaxValue()" class="container responsive-grid-100">
<mat-card>
<mat-card-title>#{{ban.id}}</mat-card-title>
<mat-card-subtitle>ид бана</mat-card-subtitle>
</mat-card>
<mat-card>
<mat-card-title>{{ban.ban_reason}}</mat-card-title>
<mat-card-subtitle>причина</mat-card-subtitle>
</mat-card>
<mat-card>
<mat-card-title>{{ban.ban_length>0?ban.ban_length + ' минут':'навсегда мог'}}</mat-card-title>
<mat-card-subtitle>{{ban.ban_length>0?'был':'остаться'}} в бане</mat-card-subtitle>
</mat-card>
<mat-card *ngIf="ban.unbanned_by_id != 'STEAM_0:0:0'">
<mat-card-title>разбанил модератор</mat-card-title>
<mat-card-subtitle>открыть профиль</mat-card-subtitle>
</mat-card>
</div>
<p *ngIf="ban.id==getMaxValue()">Круто у него это получилось</p>
</mat-expansion-panel>
</mat-accordion>
</mat-expansion-panel> </mat-expansion-panel>
<mat-expansion-panel hideToggle> <mat-expansion-panel hideToggle>
<mat-expansion-panel-header> <mat-expansion-panel-header>
<mat-panel-title> <mat-panel-title>

31
src/app/pages/profile-page/profile-page.component.ts

@ -6,6 +6,7 @@ import {MatSnackBar} from "@angular/material/snack-bar";
import {AuthService} from "../../services/auth.service"; import {AuthService} from "../../services/auth.service";
import {ProfileRequestData} from "../../entities/profile/ProfileRequestData"; import {ProfileRequestData} from "../../entities/profile/ProfileRequestData";
import {ActionService} from "../../services/action.service"; import {ActionService} from "../../services/action.service";
import {Ban} from "../../entities/ban/Ban";
@Component({ @Component({
selector: 'app-profile-page', selector: 'app-profile-page',
@ -45,7 +46,7 @@ export class ProfilePageComponent implements OnInit {
getLastplay() { getLastplay() {
if (this.profile == null || this.profile.steamids == null) return; if (this.profile == null || this.profile.steamids == null) return;
if (this.profile.lastplay != null) return; if (this.profile.lastplay != null) return;
if (this.profile.lastplay == null) { else {
this.actionService.showSnack("Загрузка данных о последней игре", "Закрыть", 2); this.actionService.showSnack("Загрузка данных о последней игре", "Закрыть", 2);
this.profile.lastplay = {'loading':{'loading':0}}; this.profile.lastplay = {'loading':{'loading':0}};
this.playerService.getProfile(this.profile.steamids?.steam64, [ProfileRequestData.LAST_PLAY]).subscribe( this.playerService.getProfile(this.profile.steamids?.steam64, [ProfileRequestData.LAST_PLAY]).subscribe(
@ -59,7 +60,7 @@ export class ProfilePageComponent implements OnInit {
getUsertime() { getUsertime() {
if (this.profile == null || this.profile.steamids == null) return; if (this.profile == null || this.profile.steamids == null) return;
if (this.profile.gametime != null) return; if (this.profile.gametime != null) return;
if (this.profile.gametime == null) { else {
this.actionService.showSnack("Загрузка данных о проведенном времени на сервере", "Закрыть", 2); this.actionService.showSnack("Загрузка данных о проведенном времени на сервере", "Закрыть", 2);
this.profile.gametime = {'loading':{'loading':0}}; this.profile.gametime = {'loading':{'loading':0}};
this.playerService.getProfile(this.profile.steamids?.steam64, [ProfileRequestData.USER_TIME]).subscribe( this.playerService.getProfile(this.profile.steamids?.steam64, [ProfileRequestData.USER_TIME]).subscribe(
@ -69,6 +70,32 @@ export class ProfilePageComponent implements OnInit {
) )
} }
} }
getBanList() {
if (this.profile == null || this.profile.steamids == null) return;
if (this.profile.ban_list != null) return;
else {
this.actionService.showSnack("Загрузка данных о прошлых банах");
this.profile.ban_list = [Ban.createFakeBanObject("", 0)];
this.playerService.getProfile(this.profile.steamids?.steam64, [ProfileRequestData.BAN_LIST]).subscribe(
(res) => {
if (res.ban_list != undefined) {
if (this.profile != null && res.ban_list.length > 0) {
this.profile.ban_list = [Ban.createFakeBanObject(`Был в бане ${res.ban_list.length} раз`)].concat(res.ban_list);
this.profile.ban_list.sort((b1,b2) => b2.id - b1.id)
}
} else {
// @ts-ignore
this.profile.ban_list = []
}
}
)
}
}
getMaxValue() {
return Number.MAX_VALUE;
}
} }
@Pipe({ @Pipe({

4
src/styles.scss

@ -145,7 +145,7 @@ span {
} }
@media only screen and (min-width: 992px) { @media only screen and (min-width: 992px) {
$screen-width: 70%; $screen-width: 80%;
.content-in-center { .content-in-center {
width: $screen-width; width: $screen-width;
@ -159,7 +159,7 @@ span {
} }
@media only screen and (min-width: 1200px) { @media only screen and (min-width: 1200px) {
$screen-width: 66%; $screen-width: 70%;
.content-in-center { .content-in-center {
width: $screen-width; width: $screen-width;

Loading…
Cancel
Save