townsquare/src/components/modals/FabledModal.vue

63 lines
1.3 KiB
Vue

<template>
<Modal v-if="modals.fabled && fabled.length" @close="toggleModal('fabled')">
<h3>
Choose a fabled character to add to the game
</h3>
<ul class="tokens">
<li v-for="role in fabled" :key="role.id" @click="setFabled(role)">
<Token :role="role" />
</li>
</ul>
</Modal>
</template>
<script>
import { mapMutations, mapState } from "vuex";
import Modal from "./Modal";
import Token from "../Token";
export default {
components: { Token, Modal },
computed: {
...mapState(["modals", "fabled", "grimoire"]),
fabled() {
const fabled = [];
this.$store.state.fabled.forEach(role => {
// don't show fabled that are already in play
if (
!this.$store.state.players.fabled.some(fable => fable.id === role.id)
) {
fabled.push(role);
}
});
return fabled;
}
},
methods: {
setFabled(role) {
this.$store.commit("players/setFabled", {
fabled: role
});
this.$store.commit("toggleModal", "fabled");
},
...mapMutations(["toggleModal"])
}
};
</script>
<style scoped lang="scss">
@import "../../vars.scss";
ul.tokens li {
border-radius: 50%;
width: 8vw;
margin: 0.5%;
transition: transform 500ms ease;
&:hover {
transform: scale(1.2);
z-index: 10;
}
}
</style>