|
|
@ -39,14 +39,14 @@ |
|
|
|
<div> |
|
|
|
<h3 style="text-align: center" class="sfi-current-player">Сейчас играет {{serverData['player_count']}}/{{serverData['max_players']}}</h3> |
|
|
|
<hr width="30%"> |
|
|
|
<md-table md-height="10"> |
|
|
|
<md-table-row> |
|
|
|
<md-table-head>Очки</md-table-head> |
|
|
|
<md-table-head>Никнейм</md-table-head> |
|
|
|
<md-table-head>Наиграно</md-table-head> |
|
|
|
<md-table v-model="players" md-sort="score" md-sort-order="desc" md-card md-fixed-header @md-selected="openPlayer" md-height="150px"> |
|
|
|
<md-table-row slot="md-table-row" slot-scope="{ item }" md-selectable="single"> |
|
|
|
<md-table-cell style="font-family: tf2secondary" md-label="Имя" md-sort-by="name">{{ item.name }}</md-table-cell> |
|
|
|
<md-table-cell style="font-family: tf2secondary" md-label="Очки" md-sort-by="score">{{ item.score }}</md-table-cell> |
|
|
|
<md-table-cell style="font-family: tf2secondary" md-label="Наиграно" md-sort-by="duration">{{ item.duration }}</md-table-cell> |
|
|
|
</md-table-row> |
|
|
|
<PlayerTableInfo v-for="player in serverData['players']" :key="player['steam']['steam2']" :player="player"/> |
|
|
|
</md-table> |
|
|
|
<PlayerExtendedInfo ref="pei" :player="selected_player"/> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -57,20 +57,23 @@ |
|
|
|
<script> |
|
|
|
import SteamSvg from "@/components/Others/CustomSvg/SteamSvg.vue"; |
|
|
|
import TerminalSvg from "@/components/Others/CustomSvg/TerminalSvg.vue"; |
|
|
|
import PlayerTableInfo from "@/components/TabsMenuElements/ServersView/Components/PlayerTableInfo.vue"; |
|
|
|
import PlayerExtendedInfo from "@/components/TabsMenuElements/ServersView/Components/PlayerExtendedInfo.vue"; |
|
|
|
|
|
|
|
export default { |
|
|
|
name: "ServerFullInfo", |
|
|
|
components: {PlayerTableInfo, TerminalSvg, SteamSvg}, |
|
|
|
components: {PlayerExtendedInfo, TerminalSvg, SteamSvg}, |
|
|
|
props: { |
|
|
|
serverData: Object, |
|
|
|
}, |
|
|
|
data: () => ({ |
|
|
|
showServerDialog: false, |
|
|
|
expandPlayers: false |
|
|
|
expandPlayers: false, |
|
|
|
players: [{score:0, name:"", duration:""}], |
|
|
|
selected_player: null |
|
|
|
}), |
|
|
|
methods: { |
|
|
|
openFIF() { |
|
|
|
this.players = this.serverData['players']; |
|
|
|
this.showServerDialog = true; |
|
|
|
}, |
|
|
|
closeFIF() { |
|
|
@ -82,6 +85,10 @@ export default { |
|
|
|
case 'workshop': return window.open(this.serverData['workshop'], '_blank').focus(); |
|
|
|
case 'fastdl': return window.open(`https://tf2.pblr-nyk.pro/tf/maps/${this.serverData['map']}.bsp.bz2`, '_blank').focus(); |
|
|
|
} |
|
|
|
}, |
|
|
|
openPlayer(item) { |
|
|
|
this.selected_player = item; |
|
|
|
this.$refs.pei.showPlayerDialog = true; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|