townsquare/src/App.vue

235 lines
5.1 KiB
Vue
Raw Normal View History

2020-04-01 20:57:14 +00:00
<template>
2020-04-22 19:21:54 +00:00
<div
id="app"
@keyup="keyup"
tabindex="-1"
2020-05-02 19:11:20 +00:00
v-bind:class="{ screenshot: grimoire.isScreenshot }"
v-bind:style="{
backgroundImage: grimoire.background
? `url('${grimoire.background}')`
: ''
}"
2020-04-22 19:21:54 +00:00
>
<transition name="blur">
2020-06-05 18:19:49 +00:00
<Intro v-if="!players.length"></Intro>
<TownInfo v-if="players.length && !session.nomination"></TownInfo>
<Vote v-if="session.nomination"></Vote>
</transition>
2020-05-03 21:05:17 +00:00
<TownSquare @screenshot="takeScreenshot"></TownSquare>
<Menu ref="menu"></Menu>
2020-05-27 19:42:09 +00:00
<EditionModal />
<RolesModal />
<ReferenceModal />
2020-06-04 16:23:33 +00:00
<Gradients />
2020-04-01 20:57:14 +00:00
</div>
</template>
<script>
2020-05-02 19:11:20 +00:00
import { mapState } from "vuex";
import TownSquare from "./components/TownSquare";
import TownInfo from "./components/TownInfo";
2020-05-02 19:11:20 +00:00
import Menu from "./components/Menu";
2020-05-03 21:05:17 +00:00
import RolesModal from "./components/modals/RolesModal";
import EditionModal from "./components/modals/EditionModal";
2020-05-02 19:33:44 +00:00
import Intro from "./components/Intro";
2020-05-27 19:42:09 +00:00
import ReferenceModal from "./components/modals/ReferenceModal";
2020-05-31 21:42:08 +00:00
import Vote from "./components/Vote";
2020-06-04 16:23:33 +00:00
import Gradients from "./components/Gradients";
2020-04-01 20:57:14 +00:00
2020-04-05 17:50:33 +00:00
export default {
components: {
2020-05-31 21:42:08 +00:00
Vote,
2020-05-27 19:42:09 +00:00
ReferenceModal,
2020-05-02 19:33:44 +00:00
Intro,
TownInfo,
2020-05-03 21:05:17 +00:00
TownSquare,
Menu,
EditionModal,
2020-06-04 16:23:33 +00:00
RolesModal,
Gradients
},
computed: {
...mapState(["grimoire", "session"]),
...mapState("players", ["players"])
},
2020-04-05 17:50:33 +00:00
methods: {
2020-05-02 19:11:20 +00:00
takeScreenshot(dimensions) {
this.$refs.menu.takeScreenshot(dimensions);
2020-04-11 21:02:04 +00:00
},
2020-04-11 20:55:37 +00:00
keyup({ key }) {
switch (key.toLocaleLowerCase()) {
2020-04-11 20:55:37 +00:00
case "g":
2020-05-02 19:11:20 +00:00
this.$store.commit("toggleGrimoire");
2020-04-11 20:55:37 +00:00
break;
case "a":
2020-05-02 19:11:20 +00:00
this.$refs.menu.addPlayer();
2020-04-11 20:55:37 +00:00
break;
2020-06-04 19:56:07 +00:00
case "h":
this.$refs.menu.hostSession();
break;
case "j":
this.$refs.menu.joinSession();
break;
2020-04-11 20:55:37 +00:00
case "r":
2020-05-27 19:42:09 +00:00
this.$store.commit("toggleModal", "reference");
2020-04-11 20:55:37 +00:00
break;
case "e":
if (this.session.isSpectator) return;
2020-05-02 19:11:20 +00:00
this.$store.commit("toggleModal", "edition");
break;
case "c":
if (this.session.isSpectator) return;
2020-05-02 19:11:20 +00:00
this.$store.commit("toggleModal", "roles");
break;
2020-06-04 19:56:07 +00:00
case "escape":
this.$store.commit("toggleModal");
2020-04-11 20:55:37 +00:00
}
2020-04-09 20:14:48 +00:00
}
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">
@import "vars";
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
@font-face {
font-family: PiratesBay;
src: url("assets/fonts/piratesbay.ttf");
font-display: swap;
}
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-28 19:47:28 +00:00
a {
color: $townsfolk;
&:hover {
color: $demon;
}
}
h1,
h2,
h3,
h4,
h5 {
2020-04-18 19:03:58 +00:00
margin: 0;
text-align: center;
font-family: PiratesBay, sans-serif;
letter-spacing: 1px;
font-weight: normal;
2020-04-18 19:03:58 +00:00
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
2020-04-05 17:50:33 +00:00
#app {
height: 100%;
background-position: center center;
background-size: cover;
2020-04-28 19:47:28 +00:00
display: flex;
align-items: center;
align-content: center;
justify-content: center;
2020-04-05 17:50:33 +00:00
}
2020-04-01 20:57:14 +00:00
.blur-enter-active,
.blur-leave-active {
2020-06-05 18:19:49 +00:00
transition: all 250ms;
filter: blur(0);
}
.blur-enter,
.blur-leave-to {
2020-06-05 18:19:49 +00:00
opacity: 0;
2020-06-05 20:12:51 +00:00
filter: blur(20px);
2020-06-05 18:19:49 +00:00
}
// Buttons
.button-group {
display: flex;
align-items: center;
justify-content: center;
align-content: center;
.button {
margin: 5px 0;
border-radius: 0;
&:first-child {
border-top-left-radius: 15px;
border-bottom-left-radius: 15px;
}
&:last-child {
border-top-right-radius: 15px;
border-bottom-right-radius: 15px;
}
}
}
.button {
padding: 0;
border: solid 0.125em transparent;
border-radius: 15px;
box-shadow: inset 0 1px 1px #9c9c9c, 0 0 10px #000;
background: radial-gradient(
at 0 -15%,
rgba(#fff, 0.07) 70%,
rgba(#fff, 0) 71%
)
0 0/ 80% 90% no-repeat content-box,
linear-gradient(#4e4e4e, #040404) content-box,
linear-gradient(#292929, #010101) border-box;
color: white;
font-weight: bold;
text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
line-height: 40px;
margin: 5px auto;
cursor: pointer;
transition: all 200ms;
2020-06-07 21:43:26 +00:00
white-space: nowrap;
&:hover {
color: red;
}
&.disabled {
color: gray;
cursor: default;
}
&:before,
&:after {
content: " ";
display: inline-block;
width: 10px;
height: 10px;
}
}
2020-04-01 20:57:14 +00:00
</style>