|
|
@ -3,6 +3,8 @@ import {AnnonceService} from "../../services/AnnonceService"; |
|
|
|
import {Annonce} from "../../entities/Annonce"; |
|
|
|
import {Router} from "@angular/router"; |
|
|
|
import {AuthService} from "../../services/auth.service"; |
|
|
|
import {PlayerService} from "../../services/player.service"; |
|
|
|
import {MatSnackBar} from "@angular/material/snack-bar"; |
|
|
|
|
|
|
|
@Component({ |
|
|
|
selector: 'app-main-page', |
|
|
@ -21,11 +23,15 @@ export class MainPageComponent implements OnInit { |
|
|
|
{ico: 'live_help', name: 'О нас', url: 'abot'} |
|
|
|
] |
|
|
|
|
|
|
|
search: string|null = null; |
|
|
|
search: string = ""; |
|
|
|
loading: boolean = false; |
|
|
|
public static SEARCH_HISTORY = "SEARCH_HISTORY"; |
|
|
|
|
|
|
|
constructor(private annoncesService: AnnonceService, |
|
|
|
protected authService: AuthService, |
|
|
|
private router: Router) { } |
|
|
|
protected playerService: PlayerService, |
|
|
|
private router: Router, |
|
|
|
protected snack: MatSnackBar) { } |
|
|
|
|
|
|
|
ngOnInit(): void { |
|
|
|
} |
|
|
@ -46,17 +52,36 @@ export class MainPageComponent implements OnInit { |
|
|
|
} |
|
|
|
|
|
|
|
getSearchHistory(limit: number = 5) { |
|
|
|
const SEARCH_HISTORY = "SEARCH_HISTORY"; |
|
|
|
if (localStorage.getItem(SEARCH_HISTORY) == null) |
|
|
|
localStorage.setItem(SEARCH_HISTORY, JSON.stringify(["отдыхаем", "#1488", "<@88005553535>", "STEAM:0:0:1337228"])) |
|
|
|
if (localStorage.getItem(MainPageComponent.SEARCH_HISTORY) == null) |
|
|
|
localStorage.setItem(MainPageComponent.SEARCH_HISTORY, JSON.stringify(["отдыхаем", "#1488", "<@88005553535>", "STEAM:0:0:1337228"])) |
|
|
|
|
|
|
|
let sh: string = "[]"; |
|
|
|
if (localStorage.getItem(SEARCH_HISTORY) != null) |
|
|
|
if (localStorage.getItem(MainPageComponent.SEARCH_HISTORY) != null) |
|
|
|
{ // @ts-ignore
|
|
|
|
sh = localStorage.getItem(SEARCH_HISTORY); |
|
|
|
sh = localStorage.getItem(MainPageComponent.SEARCH_HISTORY); |
|
|
|
} |
|
|
|
const res: string[] = JSON.parse(sh) |
|
|
|
return res.slice(res.length - limit < 0?0:res.length - limit, res.length); |
|
|
|
} |
|
|
|
|
|
|
|
addToSearchHistory(search: string) {} |
|
|
|
|
|
|
|
searchPlayer(search: string) { |
|
|
|
if (search.length == 0) { |
|
|
|
this.snack.open("Сначала стоит ввести данные об игроке"); |
|
|
|
return; |
|
|
|
} |
|
|
|
this.search = search; |
|
|
|
this.loading = true; |
|
|
|
this.playerService.searchProfile(search).subscribe( |
|
|
|
(res) => { |
|
|
|
if (res.steam64 != null) |
|
|
|
this.router.navigate(['profile', res.steam64]) |
|
|
|
else |
|
|
|
this.snack.open(`Игрок с данными ${search} не найден`, "Закрыть", {duration: 3000}) |
|
|
|
}, |
|
|
|
(err) => this.snack.open("Нельзя выполнить поиск, сервер прислал ошибку", "Закрыть", {duration: 3000}), |
|
|
|
() => this.loading = false |
|
|
|
) |
|
|
|
} |
|
|
|
} |
|
|
|