gamebrary/src/components/PageHeader.vue

141 lines
3.2 KiB
Vue
Raw Normal View History

2018-10-19 05:15:28 +00:00
<template lang="html">
2020-10-14 00:37:42 +00:00
<nav
class="position-fixed d-flex flex-column p-0 vh-100 text-center"
:class="{ 'bg-dark text-white': nightMode }"
>
2020-09-28 23:26:19 +00:00
<router-link :to="{ name: 'dashboard' }" class="mt-2 mb-3">
2020-10-14 00:37:42 +00:00
<img
:src="`/static/gamebrary-logo${nightMode ? '' : '-dark'}.png`"
width="32"
/>
2020-09-26 00:09:20 +00:00
</router-link>
2020-10-21 17:33:22 +00:00
<board-switcher />
2020-09-26 00:41:18 +00:00
<div class="mt-auto">
2020-10-08 18:11:28 +00:00
<b-button
variant="link"
:title="$t('navMenu.tags')"
:to="{ name: 'tags' }"
v-b-tooltip.hover.right
>
2020-10-08 18:11:28 +00:00
<icon name="tag" />
</b-button>
2020-10-31 17:44:07 +00:00
<b-button
variant="link"
:title="$t('navMenu.notes')"
:to="{ name: 'notes' }"
v-b-tooltip.hover.right
>
<icon name="note" />
</b-button>
2020-10-08 18:11:28 +00:00
<b-button
variant="link"
:title="$t('navMenu.wallpapers')"
:to="{ name: 'wallpapers' }"
v-b-tooltip.hover.right
>
<icon name="image" />
</b-button>
<b-button
variant="link"
:title="$t('navMenu.language')"
:to="{ name: 'language' }"
v-b-tooltip.hover.right
>
<icon name="globe" />
</b-button>
<b-button
variant="link"
:title="$t('navMenu.releases')"
:to="{ name: 'releases' }"
v-b-tooltip.hover.right
>
<icon name="megaphone" />
</b-button>
<b-button
variant="link"
:title="$t('navMenu.about')"
:to="{ name: 'about' }"
v-b-tooltip.hover.right
>
<icon name="info" />
</b-button>
2020-09-30 02:36:27 +00:00
<b-button
2020-10-14 00:37:42 +00:00
variant="link"
2020-10-14 23:49:05 +00:00
:title="$t('navMenu.theme')"
2020-10-14 00:37:42 +00:00
v-b-tooltip.hover.right
@click="toggleTheme"
>
<icon :name="nightMode ? 'moon' : 'sun'" />
</b-button>
2020-10-14 00:37:42 +00:00
2020-11-02 20:37:38 +00:00
<!-- <b-button
2020-10-31 17:44:07 +00:00
:title="$t('navMenu.upgrade')"
2020-10-22 21:53:41 +00:00
:to="{ name: 'upgrade' }"
2020-10-31 17:44:07 +00:00
variant="link"
2020-10-22 21:53:41 +00:00
v-b-tooltip.hover.right
>
<icon name="star-fill" />
2020-11-02 20:37:38 +00:00
</b-button> -->
2020-10-22 21:53:41 +00:00
2020-10-05 18:42:04 +00:00
<router-link
:title="$t('settings.account')"
class="mb-2 mt-3 d-block"
:to="{ name: 'account' }"
>
<b-avatar
v-if="user && user.photoURL"
2020-10-21 17:33:22 +00:00
v-b-tooltip.hover.right
small
2020-10-21 17:33:22 +00:00
variant="info"
badge-variant="danger"
2020-10-08 18:11:28 +00:00
:title="$t('navMenu.account')"
:badge="notification"
:src="user.photoURL"
/>
</router-link>
</div>
2020-09-26 00:09:20 +00:00
</nav>
2018-10-19 05:15:28 +00:00
</template>
<script>
2020-09-01 17:47:56 +00:00
import { mapState, mapGetters } from 'vuex';
2020-10-21 17:33:22 +00:00
import BoardSwitcher from '@/components/Board/BoardSwitcher';
2018-10-19 05:15:28 +00:00
export default {
components: {
2020-10-21 17:33:22 +00:00
BoardSwitcher,
},
2019-11-08 19:56:03 +00:00
computed: {
2020-09-26 00:09:20 +00:00
...mapState(['board', 'user', 'notification', 'settings']),
2020-10-21 17:33:22 +00:00
...mapGetters(['nightMode']),
2019-11-08 19:56:03 +00:00
},
2020-10-14 00:37:42 +00:00
methods: {
toggleTheme() {
this.$store.commit('UPDATE_SETTING', { key: 'nightMode', value: !this.nightMode });
this.$store.dispatch('SAVE_SETTINGS', this.settings)
.catch(() => {
this.$bvToast.toast('There was an error saving your settings', { title: 'Error', variant: 'danger' });
});
},
},
2018-10-19 05:15:28 +00:00
};
</script>
2020-09-26 00:09:20 +00:00
<style lang="scss" rel="stylesheet/scss" scoped>
nav {
width: 50px;
2020-09-30 02:36:27 +00:00
z-index: 1;
2020-09-26 00:09:20 +00:00
}
</style>