townsquare/src/components/modals/VoteHistoryModal.vue
Pingumask 67ff3ddf6a Upgrade node to 22, bundle with vite
Updated docker compose for --watch usage
2024-12-09 22:26:20 +01:00

187 lines
4 KiB
Vue

<template>
<Modal
class="vote-history"
v-if="modals.voteHistory && (session.voteHistory || !session.isSpectator)"
@close="toggleModal('voteHistory')"
>
<font-awesome-icon
@click="clearVoteHistory"
icon="trash-alt"
class="clear"
title="Clear vote history"
v-if="session.isSpectator"
/>
<h3>{{ locale.modal.voteHistory.title }}</h3>
<template v-if="!session.isSpectator">
<div class="options">
<div class="option" @click="setRecordVoteHistory">
<font-awesome-icon
:icon="[
'fas',
session.isVoteHistoryAllowed ? 'check-square' : 'square',
]"
/>
{{ locale.modal.voteHistory.accessibility }}
</div>
<div class="option" @click="clearVoteHistory">
<font-awesome-icon icon="trash-alt" />
{{ locale.modal.voteHistory.clear }}
</div>
</div>
</template>
<table>
<thead>
<tr>
<td>{{ locale.modal.voteHistory.time }}</td>
<td>{{ locale.modal.voteHistory.nominator }}</td>
<td>{{ locale.modal.voteHistory.nominee }}</td>
<td>{{ locale.modal.voteHistory.type }}</td>
<td>{{ locale.modal.voteHistory.votes }}</td>
<td>{{ locale.modal.voteHistory.majority }}</td>
<td>
<font-awesome-icon icon="user-friends" />
{{ locale.modal.voteHistory.voters }}
</td>
</tr>
</thead>
<tbody>
<tr v-for="(vote, index) in session.voteHistory" :key="index">
<td>
{{ vote.timestamp.getHours().toString().padStart(2, "0") }}:{{
vote.timestamp.getMinutes().toString().padStart(2, "0")
}}
</td>
<td>{{ vote.nominator }}</td>
<td>{{ vote.nominee }}</td>
<td>{{ vote.type }}</td>
<td>
{{ vote.votes == null ? "?" : vote.votes.length }}
<font-awesome-icon icon="hand-paper" />
</td>
<td v-if="vote.nominee">
{{ vote.majority }}
<font-awesome-icon
:icon="[
'fas',
vote.votes == null
? 'minus-square'
: vote.votes.length >= vote.majority
? 'check-square'
: 'square',
]"
/>
</td>
<td v-else></td>
<td>
{{
vote.votes == null
? locale.modal.voteHistory.hiddenVote
: vote.votes.join(", ")
}}
</td>
</tr>
</tbody>
</table>
</Modal>
</template>
<script>
import Modal from "./Modal.vue";
import { mapMutations, mapState } from "vuex";
export default {
components: {
Modal,
},
computed: {
...mapState(["session", "modals", "locale"]),
},
methods: {
clearVoteHistory() {
this.$store.commit("session/clearVoteHistory");
},
setRecordVoteHistory() {
this.$store.commit(
"session/setVoteHistoryAllowed",
!this.session.isVoteHistoryAllowed,
);
},
...mapMutations(["toggleModal"]),
},
};
</script>
<style lang="scss" scoped>
@use "../../vars.scss" as *;
.clear {
position: absolute;
left: 20px;
top: 15px;
cursor: pointer;
&:hover {
color: red;
}
}
.options {
display: flex;
justify-content: center;
align-items: center;
justify-content: center;
align-content: center;
}
.option {
color: white;
text-decoration: none;
margin: 0 15px;
&:hover {
color: red;
cursor: pointer;
}
}
h3 {
margin: 0 40px 0 10px;
svg {
vertical-align: middle;
}
}
table {
border-spacing: 10px 0;
margin-left: auto;
margin-right: auto;
}
thead td {
font-weight: bold;
border-bottom: 1px solid white;
text-align: center;
padding: 0 3px;
}
tbody {
td:nth-child(2) {
color: $townsfolk;
}
td:nth-child(3) {
color: $demon;
}
td:nth-child(5) {
text-align: center;
}
td:nth-child(6) {
text-align: center;
}
}
</style>