diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 804c01f..9510bea 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -26,6 +26,7 @@ import { BanlistPageComponent } from './pages/banlist-page/banlist-page.componen import {BanService} from "./services/ban.service"; import {MatAutocompleteModule} from "@angular/material/autocomplete"; import {FormsModule} from "@angular/forms"; +import {ServerService} from "./services/server.service"; @NgModule({ declarations: [ @@ -58,7 +59,8 @@ import {FormsModule} from "@angular/forms"; providers: [ AnnonceService, PlayerService, - BanService + BanService, + ServerService ], bootstrap: [AppComponent] }) diff --git a/src/app/entities/servers/StatExporter.ts b/src/app/entities/servers/StatExporter.ts new file mode 100644 index 0000000..d3e102e --- /dev/null +++ b/src/app/entities/servers/StatExporter.ts @@ -0,0 +1,12 @@ +export class StatExporter { + data: T|null = null; + + fromData(res:any, field:string): StatExporter { + this.data = res[field]; + return this; + } + + export(): T|null { + return this.data; + } +} diff --git a/src/app/entities/servers/Statistic.ts b/src/app/entities/servers/Statistic.ts new file mode 100644 index 0000000..e6fb021 --- /dev/null +++ b/src/app/entities/servers/Statistic.ts @@ -0,0 +1,6 @@ +export interface Statistic { + player_max: number; + player_now: number; + total_servers: number; + working_servers: number; +} diff --git a/src/app/pages/main-page/main-page.component.html b/src/app/pages/main-page/main-page.component.html index 8e3f02b..d12726f 100644 --- a/src/app/pages/main-page/main-page.component.html +++ b/src/app/pages/main-page/main-page.component.html @@ -1,8 +1,8 @@
-
-
+
+
- - -

+
+
+
person -

Сейчас играют

-

- -

102

-
- -

+

Играет сейчас

+

+

{{statistic?.player_now}}

+
+
+
person -

Пик игроков за день

- - -

252

- - -

+

Максимум сегодня

+

+

{{statistic?.player_max}}

+
+
+
person -

Серверов работает

- - -

13|13

- - +

Серверов

+
+

{{statistic?.working_servers}}|{{statistic?.total_servers}}

+
+
diff --git a/src/app/pages/main-page/main-page.component.scss b/src/app/pages/main-page/main-page.component.scss index 94b13e2..47e3851 100644 --- a/src/app/pages/main-page/main-page.component.scss +++ b/src/app/pages/main-page/main-page.component.scss @@ -32,3 +32,87 @@ ::ng-deep .mat-autocomplete-panel { border-radius: 15px; } + +.img-in-header { + width: 15%; +} + +.main-content-in-header { + width: 65% +} + +@media only screen and (max-width: 600px) { + .img-in-header { + display: none; + } + + .main-content-in-header { + width: 100%; + } +} + +@media only screen and (min-width: 600px) { + .img-in-header { + display: none; + } + + .main-content-in-header { + width: 100%; + } +} + +@media only screen and (min-width: 768px) { + .img-in-header { + display: none; + } + + .main-content-in-header { + width: 100%; + } +} + +@media only screen and (min-width: 992px) { + .img-in-header { + display: unset; + width: 15%; + } + + .main-content-in-header { + width: 75%; + } +} + +@media only screen and (min-width: 1200px) { + .img-in-header { + display: unset; + width: 15%; + } + + .main-content-in-header { + width: 65%; + } +} + +.stats-container { + display: flex; + justify-content: space-between +} + +.stats-container-element { + display: flex; + justify-content: space-between; + border-radius: 15px; + border: 0 solid black; + background: rgba(255,255,255,0.25); + width: 30%; + align-items: center; + font-family: LatoBlack, Roboto, "Helvetica Neue", sans-serif; + font-size: 1em; + color: #fbf1d7; +} + +.stats-container-element-sub { + display: flex; + justify-content: flex-start; + align-items: center +} diff --git a/src/app/pages/main-page/main-page.component.ts b/src/app/pages/main-page/main-page.component.ts index ce6200c..243be79 100644 --- a/src/app/pages/main-page/main-page.component.ts +++ b/src/app/pages/main-page/main-page.component.ts @@ -5,6 +5,8 @@ import {Router} from "@angular/router"; import {AuthService} from "../../services/auth.service"; import {PlayerService} from "../../services/player.service"; import {MatSnackBar} from "@angular/material/snack-bar"; +import {ServerService} from "../../services/server.service"; +import {Statistic} from "../../entities/servers/Statistic"; @Component({ selector: 'app-main-page', @@ -26,14 +28,19 @@ export class MainPageComponent implements OnInit { search: string = ""; loading: boolean = false; public static SEARCH_HISTORY = "SEARCH_HISTORY"; + statistic: Statistic|null = null; constructor(private annoncesService: AnnonceService, protected authService: AuthService, protected playerService: PlayerService, private router: Router, - protected snack: MatSnackBar) { } + protected snack: MatSnackBar, + protected serverService: ServerService) { } ngOnInit(): void { + this.serverService.getStats("statistic").subscribe( + (res) => this.statistic = res.export() + ) } getAnnonces(type: any, limit: number = 3): Annonce[] { @@ -71,6 +78,11 @@ export class MainPageComponent implements OnInit { this.snack.open("Сначала стоит ввести данные об игроке"); return; } + if (!this.authService.isAuth()) { + this.snack.open("Сначала стоит войти в стим", "Закрыть", {duration: 3000}); + return; + } + this.search = search; this.loading = true; this.playerService.searchProfile(search).subscribe( diff --git a/src/app/services/server.service.ts b/src/app/services/server.service.ts new file mode 100644 index 0000000..efc4754 --- /dev/null +++ b/src/app/services/server.service.ts @@ -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> { + return this.http.get(`api/stats?filter=${filter}`).pipe( + map((res) => { + const d = new StatExporter(); + d.fromData(res, filter); + return d; + }) + ) + } +}