|
|
@ -39,18 +39,14 @@ |
|
|
|
<div> |
|
|
|
<h3 style="text-align: center" class="sfi-current-player">Сейчас играет {{serverData['player_count']}}/{{serverData['max_players']}}</h3> |
|
|
|
<hr width="30%"> |
|
|
|
<table v-if="serverData['players'].length > 0" style="margin-left: auto; margin-right: auto; height: 20em; padding-left: 10%; padding-right: 10%; padding-bottom: 5%"> |
|
|
|
<thead> |
|
|
|
<tr> |
|
|
|
<th style="text-align: left; font-family: tf2secondary; font-size: 2em; color: #131213" class="server-table-padding">Имя</th> |
|
|
|
<th style="text-align: center; font-family: tf2secondary; font-size: 2em; color: #131213" class="server-table-padding">Очки</th> |
|
|
|
<th style="text-align: center; font-family: tf2secondary; font-size: 2em; color: #131213" class="server-table-padding">Время игры</th> |
|
|
|
</tr> |
|
|
|
</thead> |
|
|
|
<tbody> |
|
|
|
<PlayerTableInfo v-for="player_data in serverData['players']" :key="player_data['name']" :player="player_data"/> |
|
|
|
</tbody> |
|
|
|
</table> |
|
|
|
<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-row> |
|
|
|
<PlayerTableInfo v-for="player in serverData['players']" :key="player['steam']['steam2']" :player="player"/> |
|
|
|
</md-table> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -59,18 +55,19 @@ |
|
|
|
</template> |
|
|
|
|
|
|
|
<script> |
|
|
|
import PlayerTableInfo from "@/components/TabsMenuElements/ServersView/Components/PlayerTableInfo.vue"; |
|
|
|
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"; |
|
|
|
|
|
|
|
export default { |
|
|
|
name: "ServerFullInfo", |
|
|
|
components: {TerminalSvg, SteamSvg, PlayerTableInfo}, |
|
|
|
components: {PlayerTableInfo, TerminalSvg, SteamSvg}, |
|
|
|
props: { |
|
|
|
serverData: Object, |
|
|
|
}, |
|
|
|
data: () => ({ |
|
|
|
showServerDialog: false |
|
|
|
showServerDialog: false, |
|
|
|
expandPlayers: false |
|
|
|
}), |
|
|
|
methods: { |
|
|
|
openFIF() { |
|
|
@ -115,34 +112,6 @@ export default { |
|
|
|
padding: 2% 0%; |
|
|
|
} |
|
|
|
|
|
|
|
table { |
|
|
|
display: flex; |
|
|
|
flex-flow: column; |
|
|
|
height: 100%; |
|
|
|
width: 100%; |
|
|
|
} |
|
|
|
|
|
|
|
table thead { |
|
|
|
/* head takes the height it requires, |
|
|
|
and it's not scaled when table is resized */ |
|
|
|
flex: 0 0 auto; |
|
|
|
width: calc(100% - 0.9em); |
|
|
|
} |
|
|
|
table tbody { |
|
|
|
/* body takes all the remaining available space */ |
|
|
|
flex: 1 1 auto; |
|
|
|
display: block; |
|
|
|
overflow-y: scroll; |
|
|
|
} |
|
|
|
|
|
|
|
table tbody tr { |
|
|
|
width: 100%; |
|
|
|
} |
|
|
|
table thead, table tbody tr { |
|
|
|
display: table; |
|
|
|
table-layout: fixed; |
|
|
|
} |
|
|
|
|
|
|
|
.server-info-rounded { |
|
|
|
border-radius: 20px; |
|
|
|
border: 5px solid black; |
|
|
|