gamebrary/src/components/Dock.vue
2021-04-28 16:39:14 -07:00

98 lines
2.2 KiB
Vue
Executable file

<template lang="html">
<nav
class="dock p-2 d-flex align-items-center justify-content-between w-100"
:class="{ 'position-fixed': isBoard }"
>
<div class="d-flex">
<b-button
title="Dashboard"
squared
variant="transparent"
v-b-toggle.menu
class="p-0 ml-2"
>
<img
src="/static/gamebrary-logo.png"
width="32"
/>
</b-button>
<portal-target name="logo" />
<span v-if="pageTitle && !isBoard" class="d-sm-none m-2">{{ pageTitle }}</span>
</div>
<portal-target name="dock" />
<global-search />
<sidebar />
</nav>
</template>
<script>
import { mapState, mapGetters } from 'vuex';
import PinnedBoards from '@/components/Board/PinnedBoards';
import Sidebar from '@/components/Sidebar';
import GlobalSearch from '@/components/GlobalSearch';
export default {
components: {
PinnedBoards,
Sidebar,
GlobalSearch,
},
computed: {
...mapState(['board', 'user', 'publicBoards']),
...mapGetters(['isBoardOwner']),
isBoard() {
return ['public-board', 'board'].includes(this.$route.name);
},
pageTitle() {
return this.$route.meta && this.$route.meta.title;
},
},
methods: {
// handleLogoClick() {
// if (!this.user) {
// if (this.$route.name === 'public-boards') {
// this.$bvModal.show('authModal');
// } else {
// this.$router.push({ name: 'public-boards' });
// }
// }
//
// if (this.user && this.$route.name !== 'dashboard') {
// this.$router.push({ name: 'home' });
// }
// },
// async pinBoard() {
// const payload = {
// ...this.board,
// pinned: !this.board.pinned,
// };
//
// this.$store.commit('SET_ACTIVE_BOARD', payload);
//
// await this.$store.dispatch('SAVE_BOARD')
// .catch(() => {
// this.$bvToast.toast('There was an error renaming list', { variant: 'danger' });
// });
//
// this.$bvToast.toast('Board settings saved');
// },
},
};
</script>
<style lang="scss" rel="stylesheet/scss" scoped>
.dock {
z-index: 1;
height: 54px;
}
</style>