gamebrary/src/components/NavHeader/NavHeader.vue

112 lines
2.6 KiB
Vue
Raw Normal View History

2018-10-19 05:15:28 +00:00
<template lang="html">
2018-12-21 21:52:11 +00:00
<nav :class="{ dark: darkModeEnabled }">
2018-11-21 02:43:10 +00:00
<router-link
tag="button"
class="logo"
2019-01-24 06:16:08 +00:00
:to="{ name: homeRoute }"
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-04-01 20:16:45 +00:00
<modal popover>
2019-03-29 20:36:58 +00:00
<gravatar :email="user.email" class="avatar" v-if="user && user.email" />
<settings slot="content" v-if="settings && user" />
</modal>
2018-10-19 05:15:28 +00:00
</nav>
</template>
<script>
2018-12-21 21:52:11 +00:00
import { mapState, mapGetters } from 'vuex';
import Modal from '@/components/Modal/Modal';
2019-02-21 18:54:13 +00:00
import Settings from '@/components/Settings/Settings';
import Gravatar from 'vue-gravatar';
2018-10-19 05:15:28 +00:00
export default {
2019-02-05 07:31:40 +00:00
components: {
Gravatar,
2019-02-21 18:54:13 +00:00
Settings,
2019-02-05 07:31:40 +00:00
Modal,
},
2018-10-19 05:15:28 +00:00
computed: {
2019-02-21 18:54:13 +00:00
...mapState(['user', 'platform', 'settings']),
2018-12-21 21:52:11 +00:00
...mapGetters(['darkModeEnabled']),
title() {
if (this.$route.name === 'share-list') {
return this.$route.query && this.$route.query.list
? this.$route.query.list.split('-').join(' ')
: 'GAMEBRARY';
}
2019-02-16 04:45:14 +00:00
return this.$route.name === 'game-board' && this.platform
? this.platform.name
: 'GAMEBRARY';
},
2019-01-24 06:16:08 +00:00
homeRoute() {
if (this.$route.name === 'share-list') {
return null;
}
2019-02-06 06:57:20 +00:00
if (this.$route.name === 'game-detail' && this.platform) {
return 'game-board';
}
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-04-05 19:16:32 +00:00
@import "~styles/styles.scss";
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;
color: $color-darkest-gray;
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
}
2018-11-17 22:23:33 +00:00
&.dark {
color: $color-gray !important;
2018-10-19 05:15:28 +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