6 changed files with 159 additions and 34 deletions
@ -0,0 +1,86 @@ |
|||||
|
<template> |
||||
|
<div> |
||||
|
<md-dialog :md-active.sync="show" @close="show=false"> |
||||
|
<div class="md-layout md-alignment-bottom-center"> |
||||
|
<div class="md-layout-item md-size-100 md-small-size-100 md-alignment-bottom-center rounded-only"> |
||||
|
<md-table v-model="gametime.mdData" md-card> |
||||
|
<md-table-row slot="md-table-row" slot-scope="{ item }"> |
||||
|
<md-table-cell md-label="Никнейм">{{ item.player_name }}</md-table-cell> |
||||
|
<md-table-cell md-label="Карта">{{ item.map }}</md-table-cell> |
||||
|
<md-table-cell md-label="Длительность">{{ $API.UNIX2FACTI_TIME(item.connect_duration) }}</md-table-cell> |
||||
|
<md-table-cell md-label="Отключился">{{ new Date(item.utime*1000).toLocaleString() }}</md-table-cell> |
||||
|
<md-table-cell md-label="Причина">{{ item.reason.substr(0, 30) }}</md-table-cell> |
||||
|
</md-table-row> |
||||
|
|
||||
|
<md-table-pagination |
||||
|
:md-page-size="rowsPerPage" |
||||
|
:md-page-options="[5, 10, 15]" |
||||
|
:md-update="update" |
||||
|
:md-data.sync="gametime" |
||||
|
:md-label="'Время игры на сервере '+this.srv" |
||||
|
:md-separator="'из'" |
||||
|
style="font-family: tf2build"/> |
||||
|
</md-table> |
||||
|
<md-button style="float: right" class="btn-colored" v-on:click="showMe(false)">Закрыть</md-button> |
||||
|
</div> |
||||
|
</div> |
||||
|
</md-dialog> |
||||
|
<md-dialog :md-active.sync="loading"> |
||||
|
<div class="md-layout md-alignment-bottom-center"> |
||||
|
<div class="md-layout-item md-size-100 md-small-size-100 md-alignment-bottom-center rounded-only"> |
||||
|
<h3 class="pidoras" style="text-align: center; padding: 2% 5%">Загрузка</h3> |
||||
|
</div> |
||||
|
</div> |
||||
|
</md-dialog> |
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
import axios from "axios"; |
||||
|
import Random from "@/api/Random"; |
||||
|
|
||||
|
export default { |
||||
|
name: "GametimeDialog", |
||||
|
data: () => ({ |
||||
|
show: false, |
||||
|
loading: false, |
||||
|
rowsPerPage: 15, |
||||
|
gametime: { |
||||
|
mdCount: 1, |
||||
|
mdPage: 1, |
||||
|
mdData: [] |
||||
|
}, |
||||
|
steam64: null, |
||||
|
srv: null |
||||
|
}), |
||||
|
methods: { |
||||
|
showMe(b, steam64, srv) { |
||||
|
//this.clearList(); |
||||
|
this.srv = srv; |
||||
|
this.steam64 = steam64; |
||||
|
if (b===true) this.update(1, this.rowsPerPage) |
||||
|
else this.show = b; |
||||
|
}, |
||||
|
clearList() { |
||||
|
this.gametime.mdCount = 1; |
||||
|
this.gametime.mdPage = 1; |
||||
|
this.gametime.mdData = [] |
||||
|
}, |
||||
|
update(page, limit) { |
||||
|
console.log(page, limit, this.rowsPerPage); |
||||
|
const offset = Math.abs((page-1) * limit); |
||||
|
this.loading = true; |
||||
|
axios.get(`api/profile/gametime/web?srv=${this.srv}&steam64=${this.steam64}&limit=${Math.abs(limit)}&offset=${offset}` + Random.getRndWebAppend()).then( |
||||
|
(response) => { |
||||
|
if (response.status === 200) { |
||||
|
this.gametime.mdData = response.data['array']; |
||||
|
this.gametime.mdCount = response.data['total']; |
||||
|
this.gametime.mdPage = page; |
||||
|
} else { console.log("cannot get gametime list");} |
||||
|
this.show = true; |
||||
|
} |
||||
|
).catch(() => {}).finally(() => this.loading = false) |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
</script> |
@ -0,0 +1,15 @@ |
|||||
|
<template> |
||||
|
<md-dialog> |
||||
|
<div class="md-layout md-alignment-bottom-center"> |
||||
|
<div class="md-layout-item md-size-100 md-small-size-100 md-alignment-bottom-center rounded-only"> |
||||
|
<h3 style="text-align: center">Загрузка</h3> |
||||
|
</div> |
||||
|
</div> |
||||
|
</md-dialog> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
export default { |
||||
|
name: "LoadingDialog" |
||||
|
} |
||||
|
</script> |
@ -1,3 +1,16 @@ |
|||||
.backfill { |
.backfill { |
||||
background: #3e3e3e; |
background: #3e3e3e; |
||||
|
} |
||||
|
|
||||
|
.pidoras { |
||||
|
background: |
||||
|
linear-gradient(rgba(255,0,0,1) 0%, rgba(255,154,0,1) 10%, rgba(208,222,33,1) 20%, rgba(79,220,74,1) 30%, rgba(63,218,216,1) 40%, rgba(47,201,226,1) 50%, rgba(28,127,238,1) 60%, rgba(95,21,242,1) 70%, rgba(186,12,248,1) 80%, rgba(251,7,217,1) 90%, rgba(255,0,0,1) 100%) |
||||
|
0 0/100% 200%; |
||||
|
animation: pidoras_key 2s linear infinite; |
||||
|
-webkit-background-clip: text; |
||||
|
-webkit-text-fill-color: transparent; |
||||
|
} |
||||
|
|
||||
|
@keyframes pidoras_key { |
||||
|
to {background-position:0 -200%} |
||||
} |
} |
Loading…
Reference in new issue