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' />
|
2019-03-28 21:23:09 +00:00
|
|
|
|
|
|
|
{{ title }}
|
2018-11-21 02:43:10 +00:00
|
|
|
</router-link>
|
|
|
|
|
2019-03-28 21:23:09 +00:00
|
|
|
<modal padded popover>
|
2019-03-29 20:36:58 +00:00
|
|
|
<gravatar :email="user.email" class="avatar" v-if="user && user.email" />
|
2019-03-28 21:23:09 +00:00
|
|
|
|
|
|
|
<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';
|
2019-03-28 21:23:09 +00:00
|
|
|
import Modal from '@/components/Modal/Modal';
|
2019-02-21 18:54:13 +00:00
|
|
|
import Settings from '@/components/Settings/Settings';
|
2019-03-28 21:23:09 +00:00
|
|
|
import Gravatar from 'vue-gravatar';
|
2018-10-19 05:15:28 +00:00
|
|
|
|
|
|
|
export default {
|
2019-02-05 07:31:40 +00:00
|
|
|
components: {
|
2019-03-28 21:23:09 +00:00
|
|
|
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']),
|
2018-10-25 06:33:15 +00:00
|
|
|
|
2019-03-28 21:23:09 +00:00
|
|
|
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
|
|
|
|
2019-02-21 03:05:18 +00:00
|
|
|
return this.$route.name === 'game-board' && this.platform
|
|
|
|
? this.platform.name
|
|
|
|
: 'GAMEBRARY';
|
|
|
|
},
|
|
|
|
|
2019-01-24 06:16:08 +00:00
|
|
|
homeRoute() {
|
2019-03-28 21:23:09 +00:00
|
|
|
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>
|
|
|
|
@import "~styles/styles.scss";
|
|
|
|
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;
|
2019-01-17 06:22:30 +00:00
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
2019-02-08 05:46:29 +00:00
|
|
|
padding: 0 $gp;
|
2019-03-28 21:23:09 +00:00
|
|
|
color: $color-darkest-gray;
|
2018-10-25 06:33:15 +00:00
|
|
|
|
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;
|
2019-03-28 21:23:09 +00:00
|
|
|
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-03-28 21:23:09 +00:00
|
|
|
}
|
2019-02-08 05:46:29 +00:00
|
|
|
|
2019-03-28 21:23:09 +00:00
|
|
|
img.avatar {
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
border-radius: 100%;
|
|
|
|
border: 1px solid $color-darkest-gray;
|
|
|
|
|
|
|
|
@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
|
|
|
|