mirror of https://github.com/bra1n/townsquare.git
added vote time
This commit is contained in:
parent
873083b8d1
commit
be89d51ae6
|
@ -15,31 +15,42 @@
|
|||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<td>Time</td>
|
||||
<td>Nominator</td>
|
||||
<td>Nominee</td>
|
||||
<td>Type</td>
|
||||
<td>Votes</td>
|
||||
<td><font-awesome-icon icon="hand-paper" /> Hand up</td>
|
||||
<td>Majority</td>
|
||||
<td>
|
||||
<font-awesome-icon icon="user-friends" />
|
||||
Voters
|
||||
</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr v-for="(vote, index) in session.voteHistory" :key="index">
|
||||
<td>
|
||||
{{ vote.timestamp.getHours() }}:{{ vote.timestamp.getMinutes() }}
|
||||
</td>
|
||||
<td>{{ vote.nominator }}</td>
|
||||
<td>{{ vote.nominee }}</td>
|
||||
<td>{{ vote.type }}</td>
|
||||
<td>{{ vote.votes.length }}</td>
|
||||
<td>
|
||||
<font-awesome-icon icon="user-friends" />
|
||||
{{ vote.votes.join(", ") }}
|
||||
{{ vote.votes.length }}
|
||||
<font-awesome-icon icon="hand-paper" />
|
||||
</td>
|
||||
<td>
|
||||
{{ vote.majority }}
|
||||
<font-awesome-icon
|
||||
icon="check-square"
|
||||
v-if="vote.votes.length >= vote.majority"
|
||||
:icon="[
|
||||
'fas',
|
||||
vote.votes.length >= vote.majority ? 'check-square' : 'square'
|
||||
]"
|
||||
/>
|
||||
</td>
|
||||
<td>
|
||||
{{ vote.votes.join(", ") }}
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
@ -96,13 +107,13 @@ thead td {
|
|||
}
|
||||
|
||||
tbody {
|
||||
td:nth-child(1) {
|
||||
td:nth-child(2) {
|
||||
color: $townsfolk;
|
||||
}
|
||||
td:nth-child(2) {
|
||||
td:nth-child(3) {
|
||||
color: $demon;
|
||||
}
|
||||
td:nth-child(4) {
|
||||
td:nth-child(5) {
|
||||
text-align: center;
|
||||
}
|
||||
td:nth-child(6) {
|
||||
|
|
|
@ -72,8 +72,8 @@ const mutations = {
|
|||
addHistory(state, players) {
|
||||
if (!state.nomination || state.lockedVote <= players.length) return;
|
||||
const isBanishment = players[state.nomination[1]].role.team === "traveler";
|
||||
console.log(isBanishment);
|
||||
state.voteHistory.push({
|
||||
timestamp: new Date(),
|
||||
nominator: players[state.nomination[0]].name,
|
||||
nominee: players[state.nomination[1]].name,
|
||||
type: isBanishment ? "Banishment" : "Execution",
|
||||
|
|
Loading…
Reference in New Issue