gamebrary/src/components/NavHeader.vue

101 lines
2.1 KiB
Vue
Raw Normal View History

2018-10-19 05:15:28 +00:00
<template lang="html">
2019-10-09 16:30:07 +00:00
<nav>
2018-11-21 02:43:10 +00:00
<router-link
tag="button"
class="logo"
2019-05-08 22:38:30 +00:00
:to="{ name: logoRoute }"
2018-11-21 02:43:10 +00:00
>
2019-01-11 21:27:07 +00:00
<img src='/static/gamebrary-logo.png' />
{{ title }}
2018-11-21 02:43:10 +00:00
</router-link>
2019-10-18 04:37:12 +00:00
<settings v-if="showSettings" />
2018-10-19 05:15:28 +00:00
</nav>
</template>
<script>
2019-07-10 23:25:58 +00:00
import Settings from '@/pages/Settings';
2019-10-09 16:30:07 +00:00
import { mapState } from 'vuex';
2018-10-19 05:15:28 +00:00
export default {
2019-02-05 07:31:40 +00:00
components: {
2019-07-10 23:25:58 +00:00
Settings,
2019-02-05 07:31:40 +00:00
},
2018-10-19 05:15:28 +00:00
computed: {
2019-02-21 18:54:13 +00:00
...mapState(['user', 'platform', 'settings']),
2019-05-08 22:38:30 +00:00
isLoggedIn() {
return this.user && this.user.email;
},
2019-10-18 04:37:12 +00:00
showSettings() {
return this.$route.name === 'game-board';
2019-05-08 22:38:30 +00:00
},
title() {
return this.$route.name === 'game-board' && this.platform
? this.platform.name
2019-07-10 23:25:58 +00:00
: 'Gamebrary';
},
2019-05-08 22:38:30 +00:00
logoRoute() {
2019-02-06 06:57:20 +00:00
if (this.$route.name === 'game-detail' && this.platform) {
return 'game-board';
}
2019-07-10 23:25:58 +00:00
if (this.$route.name === 'settings' && this.platform) {
return 'game-board';
}
2019-02-06 06:57:20 +00:00
if (this.$route.name === 'game-board') {
return 'platforms';
}
return null;
2019-01-11 21:52:08 +00:00
},
2018-10-19 05:15:28 +00:00
},
};
</script>
<style lang="scss" rel="stylesheet/scss" scoped>
2019-09-10 20:02:16 +00:00
@import "~styles/styles";
2018-10-19 05:15:28 +00:00
nav {
2018-11-08 03:49:04 +00:00
user-select: none;
width: 100vw;
2018-11-17 22:23:33 +00:00
height: $navHeight;
2018-10-19 05:15:28 +00:00
display: flex;
justify-content: space-between;
align-items: center;
2019-02-08 05:46:29 +00:00
padding: 0 $gp;
2019-10-09 16:30:07 +00:00
color: var(--header-text-color);
2018-10-29 23:53:49 +00:00
.logo {
2018-11-08 03:49:04 +00:00
height: $navHeight;
2018-10-29 23:53:49 +00:00
font-weight: bold;
2019-01-11 21:27:07 +00:00
display: flex;
align-items: center;
2019-02-08 05:46:29 +00:00
margin-left: -$gp;
text-transform: capitalize;
2019-01-11 21:27:07 +00:00
img {
height: 24px;
margin-right: $gp / 4;
}
2018-11-08 03:49:04 +00:00
}
}
2019-02-08 05:46:29 +00:00
img.avatar {
width: 30px;
height: 30px;
2019-03-29 20:51:30 +00:00
border-radius: $border-radius;
@media($small) {
width: 30px;
height: 30px;
2019-02-08 05:46:29 +00:00
}
2018-10-19 05:15:28 +00:00
}
</style>
2018-11-21 02:39:49 +00:00