townsquare/src/App.vue

197 lines
4.8 KiB
Vue
Raw Normal View History

2020-04-01 20:57:14 +00:00
<template>
2020-04-09 20:14:48 +00:00
<div id="app" @keyup="keyup" tabindex="-1">
<TownInfo :players="players"></TownInfo>
2020-04-05 19:50:06 +00:00
<TownSquare
:is-public="isPublic"
:players="players"
:roles="roles"
></TownSquare>
2020-04-01 20:57:14 +00:00
<div class="controls">
<font-awesome-icon icon="cogs" @click="isControlOpen = !isControlOpen"/>
<ul v-if="isControlOpen">
<li v-on:click="togglePublic">
2020-04-09 20:14:48 +00:00
Toggle <em>G</em>rimoire
</li>
<li v-on:click="addPlayer" v-if="players.length < 20">
2020-04-09 20:14:48 +00:00
<em>A</em>dd Player
</li>
<li v-on:click="togglePublic" v-if="players.length > 4">
Select Roles
</li>
<li v-on:click="randomizeSeatings" v-if="players.length > 2">
2020-04-09 20:14:48 +00:00
<em>R</em>andomize Seatings
</li>
</ul>
2020-04-01 20:57:14 +00:00
</div>
</div>
</template>
<script>
import TownSquare from "./components/TownSquare";
import TownInfo from "./components/TownInfo";
2020-04-05 19:50:06 +00:00
import rolesJSON from "./roles";
const roles = new Map(
rolesJSON
2020-04-08 20:42:51 +00:00
.filter(r => r.set === (window.location.hash.substr(1) || "TB"))
2020-04-05 19:50:06 +00:00
.sort((a, b) => b.team.localeCompare(a.team))
.map(role => [role.id, role])
);
2020-04-01 20:57:14 +00:00
2020-04-05 17:50:33 +00:00
export default {
components: {
TownSquare,
TownInfo
2020-04-05 19:50:06 +00:00
},
2020-04-05 17:50:33 +00:00
data: () => ({
2020-04-05 19:50:06 +00:00
isPublic: true,
isControlOpen: false,
2020-04-05 19:50:06 +00:00
players: [
// {
// name: "Steffen",
// role: roles.get("baron"),
// reminders: [{ role: "imp", name: "Die" }]
// },
2020-04-08 20:42:51 +00:00
// { name: "Tino", role: roles.get("beggar"), reminders: [] },
// { name: "Basti", role: roles.get("chef"), reminders: [] },
// { name: "Bernd", role: roles.get("ravenkeeper"), reminders: [] },
// { name: "Tim", role: roles.get("drunk"), reminders: [] },
// { name: "Yann", role: roles.get("librarian"), reminders: [] },
// { name: "Marie", role: roles.get("empath"), reminders: [] },
// { name: "Bogdan", role: roles.get("scarletwoman"), reminders: [] },
// { name: "Sean", role: roles.get("recluse"), reminders: [] },
// { name: "Petra", role: roles.get("undertaker"), reminders: [] }
2020-04-05 19:50:06 +00:00
],
roles,
set: "TB"
2020-04-05 17:50:33 +00:00
}),
methods: {
togglePublic() {
this.isPublic = !this.isPublic;
this.isControlOpen = false;
2020-04-05 19:50:06 +00:00
},
addPlayer() {
const name = prompt("Player name");
if (name) {
this.players.push({
name,
role: {},
reminders: []
});
}
},
randomizeSeatings() {
if (confirm("Are you sure you want to randomize seatings?")) {
this.players = this.players
.map(a => [Math.random(), a])
.sort((a, b) => a[0] - b[0])
.map(a => a[1]);
}
2020-04-09 20:14:48 +00:00
},
keyup({ key }) {
switch (key) {
case "g":
this.togglePublic();
break;
case "a":
this.addPlayer();
break;
case "r":
this.randomizeSeatings();
break;
}
}
},
mounted() {
if (localStorage.players) {
this.players = JSON.parse(localStorage.players);
}
},
watch: {
players: {
handler(newPlayers) {
console.log("new player", newPlayers);
localStorage.players = JSON.stringify(newPlayers);
},
deep: true
2020-04-01 20:57:14 +00:00
}
}
2020-04-05 17:50:33 +00:00
};
2020-04-01 20:57:14 +00:00
</script>
<style lang="scss">
2020-04-05 17:50:33 +00:00
@font-face {
font-family: "Papyrus";
src: url("assets/fonts/papyrus.eot"); /* IE9*/
src: url("assets/fonts/papyrus.eot?#iefix") format("embedded-opentype"),
/* IE6-IE8 */ url("assets/fonts/papyrus.woff2") format("woff2"),
/* chrome firefox */ url("assets/fonts/papyrus.woff") format("woff"),
/* chrome firefox */ url("assets/fonts/papyrus.ttf") format("truetype"),
/* chrome firefox opera Safari, Android, iOS 4.2+*/
url("assets/fonts/papyrus.svg#PapyrusW01") format("svg"); /* iOS 4.1- */
}
2020-04-01 20:57:14 +00:00
2020-04-05 17:50:33 +00:00
html,
body {
font-size: 1.2em;
line-height: 1.4;
background: url("assets/background.jpg") center center;
background-size: cover;
color: white;
height: 100%;
font-family: "Roboto Condensed", sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
padding: 0;
margin: 0;
2020-04-09 20:14:48 +00:00
overflow: hidden;
2020-04-05 17:50:33 +00:00
}
2020-04-01 20:57:14 +00:00
2020-04-05 19:50:06 +00:00
* {
box-sizing: border-box;
position: relative;
}
2020-04-05 17:50:33 +00:00
#app {
height: 100%;
}
2020-04-01 20:57:14 +00:00
2020-04-05 17:50:33 +00:00
// Controls
.controls {
position: absolute;
right: 0;
top: 0;
text-align: right;
padding: 10px;
svg {
cursor: pointer;
}
ul {
display: flex;
list-style-type: none;
padding: 0;
margin: 0;
flex-direction: column;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 0 10px black;
li {
padding: 5px 10px;
color: white;
text-align: center;
background: rgba(0, 0, 0, 0.7);
margin-bottom: 1px;
cursor: pointer;
&:hover {
background-color: red;
}
2020-04-09 20:14:48 +00:00
em {
text-decoration: underline;
font-style: normal;
font-weight: bold;
}
2020-04-05 19:50:06 +00:00
}
}
}
2020-04-01 20:57:14 +00:00
</style>