townsquare/src/components/Token.vue

150 lines
3.0 KiB
Vue
Raw Normal View History

<template>
<div class="token" @click="setRole" :class="[role.id]">
<span class="leaf-left" v-if="role.firstNight"></span>
<span class="leaf-right" v-if="role.otherNight"></span>
<span
v-if="role.reminders && role.reminders.length"
v-bind:class="['leaf-top' + role.reminders.length]"
></span>
<span class="leaf-orange" v-if="role.setup"></span>
<div class="name">{{ role.name }}</div>
<div class="ability" v-if="role.ability">
{{ role.ability }}
</div>
</div>
</template>
<script>
export default {
name: "Token",
props: {
role: {
type: Object,
required: true
}
},
data() {
return {};
},
methods: {
setRole() {
this.$emit("set-role");
}
}
};
</script>
<style scoped lang="scss">
.token {
border-radius: 50%;
height: 100%;
width: 100%;
background: url("../assets/token.png") center center;
background-size: 100%;
text-align: center;
border: 3px solid black;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
cursor: pointer;
&:before {
content: " ";
background-size: 100%;
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
}
span {
position: absolute;
width: 100%;
height: 100%;
background-size: 100%;
left: 0;
top: 0;
pointer-events: none;
&.leaf-left {
background-image: url("../assets/leaf-left.png");
}
&.leaf-orange {
background-image: url("../assets/leaf-orange.png");
}
&.leaf-right {
background-image: url("../assets/leaf-right.png");
}
&.leaf-top1 {
background-image: url("../assets/leaf-top1.png");
}
&.leaf-top2 {
background-image: url("../assets/leaf-top2.png");
}
&.leaf-top3 {
background-image: url("../assets/leaf-top3.png");
}
&.leaf-top4 {
background-image: url("../assets/leaf-top4.png");
}
&.leaf-top5 {
background-image: url("../assets/leaf-top5.png");
}
}
.ability {
2020-04-18 18:21:26 +00:00
display: flex;
position: absolute;
padding: 5px 10px;
top: 20px;
left: 110%;
width: 250px;
z-index: 25;
font-size: 80%;
2020-04-18 18:21:26 +00:00
background: rgba(0, 0, 0, 0.5);
border-radius: 10px;
border: 3px solid black;
2020-04-18 19:03:58 +00:00
filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
text-align: left;
2020-04-18 18:21:26 +00:00
justify-items: center;
align-content: center;
align-items: center;
pointer-events: none;
opacity: 0;
transition: opacity 200ms ease-in-out;
2020-04-18 18:21:26 +00:00
&:before {
content: " ";
border: 10px solid transparent;
width: 0;
height: 0;
border-right-color: black;
2020-04-18 18:21:26 +00:00
position: absolute;
margin-right: 2px;
right: 100%;
}
}
2020-04-18 19:03:58 +00:00
.name {
color: black;
font-weight: 600;
text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff,
1px 1px 0 #fff, 0 0 5px rgba(0, 0, 0, 0.75);
font-family: "Papyrus", serif;
position: absolute;
top: 73%;
width: 100%;
line-height: 100%;
}
&:hover .ability {
2020-04-18 18:21:26 +00:00
opacity: 1;
}
}
</style>