|
|
@ -1,10 +1,11 @@ |
|
|
|
import { Component, OnInit } from '@angular/core'; |
|
|
|
import {Component, OnInit, Pipe, PipeTransform} from '@angular/core'; |
|
|
|
import {ActivatedRoute} from "@angular/router"; |
|
|
|
import {PlayerService} from "../../services/player.service"; |
|
|
|
import {PlayerProfile} from "../../entities/profile/PlayerProfile"; |
|
|
|
import {MatSnackBar} from "@angular/material/snack-bar"; |
|
|
|
import {AuthService} from "../../services/auth.service"; |
|
|
|
import {ProfileRequestData} from "../../entities/profile/ProfileRequestData"; |
|
|
|
import {ActionService} from "../../services/action.service"; |
|
|
|
|
|
|
|
@Component({ |
|
|
|
selector: 'app-profile-page', |
|
|
@ -19,7 +20,8 @@ export class ProfilePageComponent implements OnInit { |
|
|
|
constructor(private route: ActivatedRoute, |
|
|
|
private playerService: PlayerService, |
|
|
|
private snack: MatSnackBar, |
|
|
|
public authService: AuthService) { } |
|
|
|
public authService: AuthService, |
|
|
|
public actionService: ActionService) { } |
|
|
|
|
|
|
|
ngOnInit(): void { |
|
|
|
const steam64: string|null = this.route.snapshot.paramMap.get("steam64"); |
|
|
@ -39,4 +41,49 @@ export class ProfilePageComponent implements OnInit { |
|
|
|
}, () => this.loading = false |
|
|
|
); |
|
|
|
} |
|
|
|
|
|
|
|
getLastplay() { |
|
|
|
if (this.profile == null || this.profile.steamids == null) return; |
|
|
|
if (this.profile.lastplay != null) return; |
|
|
|
if (this.profile.lastplay == null) { |
|
|
|
this.actionService.showSnack("Загрузка данных о последней игре", "Закрыть", 2); |
|
|
|
this.profile.lastplay = {'loading':{'loading':0}}; |
|
|
|
this.playerService.getProfile(this.profile.steamids?.steam64, [ProfileRequestData.LAST_PLAY]).subscribe( |
|
|
|
(res) => { |
|
|
|
this.profile != null ? this.profile.lastplay = res.lastplay : undefined; |
|
|
|
}, (err) => this.actionService.showSnack("Произошла ошибка во время загрузки") |
|
|
|
) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
getUsertime() { |
|
|
|
if (this.profile == null || this.profile.steamids == null) return; |
|
|
|
if (this.profile.gametime != null) return; |
|
|
|
if (this.profile.gametime == null) { |
|
|
|
this.actionService.showSnack("Загрузка данных о проведенном времени на сервере", "Закрыть", 2); |
|
|
|
this.profile.gametime = {'loading':{'loading':0}}; |
|
|
|
this.playerService.getProfile(this.profile.steamids?.steam64, [ProfileRequestData.USER_TIME]).subscribe( |
|
|
|
(res) => { |
|
|
|
this.profile != null ? this.profile.gametime = res.gametime : undefined; |
|
|
|
}, (err) => this.actionService.showSnack("Произошла ошибка во время загрузки") |
|
|
|
) |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
@Pipe({ |
|
|
|
name: "ValueServerMapDate", |
|
|
|
standalone: true |
|
|
|
}) |
|
|
|
export class ValueServerMapDatePipe implements PipeTransform { |
|
|
|
mapCleaner(name: string): string { |
|
|
|
// @ts-ignore
|
|
|
|
return name.split("/").pop().split(".ugc").shift(); |
|
|
|
} |
|
|
|
|
|
|
|
transform(value: {[name: string]: number}, createDate: boolean = true, delimiter: string = " - "): any { |
|
|
|
const keys = Object.keys(value); |
|
|
|
return `${this.mapCleaner(keys[0])}${delimiter}${createDate?(new Date(value[keys[0]]*1000)).toLocaleString():value[keys[0]]}`; |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|