2020-11-01 18:36:00 +01:00
|
|
|
<template>
|
|
|
|
<nav
|
|
|
|
:class="{'has-background': background}"
|
|
|
|
aria-label="main navigation"
|
|
|
|
class="navbar main-theme is-fixed-top"
|
|
|
|
role="navigation"
|
|
|
|
>
|
|
|
|
<div class="navbar-brand">
|
|
|
|
<router-link :to="{name: 'home'}" class="navbar-item logo">
|
2021-10-03 20:48:02 +02:00
|
|
|
<img width="164" height="48" alt="Vikunja" :src="logoUrl" />
|
2020-11-01 18:36:00 +01:00
|
|
|
</router-link>
|
|
|
|
<a
|
|
|
|
@click="$store.commit('toggleMenu')"
|
|
|
|
class="menu-show-button"
|
|
|
|
@shortkey="() => $store.commit('toggleMenu')"
|
|
|
|
v-shortkey="['ctrl', 'e']"
|
|
|
|
>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<a
|
|
|
|
@click="$store.commit('toggleMenu')"
|
|
|
|
class="menu-show-button"
|
|
|
|
>
|
|
|
|
</a>
|
2021-06-24 01:24:57 +02:00
|
|
|
<div class="list-title" ref="listTitle" :style="{'display': currentList.id ? '': 'none'}">
|
|
|
|
<template v-if="currentList.id">
|
|
|
|
<h1
|
|
|
|
:style="{ 'opacity': currentList.title === '' ? '0': '1' }"
|
|
|
|
class="title">
|
2021-07-09 10:22:20 +02:00
|
|
|
{{ currentList.title === '' ? $t('misc.loading') : getListTitle(currentList) }}
|
2021-06-24 01:24:57 +02:00
|
|
|
</h1>
|
2021-01-30 17:17:04 +01:00
|
|
|
|
2021-06-24 01:24:57 +02:00
|
|
|
<list-settings-dropdown v-if="canWriteCurrentList && currentList.id !== -1" :list="currentList"/>
|
|
|
|
</template>
|
2020-11-01 18:36:00 +01:00
|
|
|
</div>
|
2021-01-30 17:17:04 +01:00
|
|
|
|
2020-11-01 18:36:00 +01:00
|
|
|
<div class="navbar-end">
|
|
|
|
<update/>
|
2021-05-30 20:30:08 +02:00
|
|
|
<a
|
|
|
|
@click="openQuickActions"
|
|
|
|
class="trigger-button pr-0"
|
|
|
|
@shortkey="openQuickActions"
|
|
|
|
v-shortkey="['ctrl', 'k']"
|
|
|
|
>
|
|
|
|
<icon icon="search"/>
|
|
|
|
</a>
|
2021-02-21 16:13:58 +01:00
|
|
|
<notifications/>
|
2020-11-01 18:36:00 +01:00
|
|
|
<div class="user">
|
2021-07-28 22:58:12 +02:00
|
|
|
<img :src="userAvatar" alt="" class="avatar" width="40" height="40"/>
|
2021-06-23 22:08:20 +02:00
|
|
|
<dropdown class="is-right" ref="usernameDropdown">
|
2021-08-19 19:55:13 +02:00
|
|
|
<template #trigger>
|
2021-01-30 17:17:04 +01:00
|
|
|
<x-button
|
|
|
|
type="secondary"
|
2021-01-17 18:57:57 +01:00
|
|
|
:shadow="false">
|
2020-11-21 22:25:00 +01:00
|
|
|
<span class="username">{{ userInfo.name !== '' ? userInfo.name : userInfo.username }}</span>
|
2020-11-01 18:36:00 +01:00
|
|
|
<span class="icon is-small">
|
2021-01-17 18:57:57 +01:00
|
|
|
<icon icon="chevron-down"/>
|
|
|
|
</span>
|
|
|
|
</x-button>
|
2021-01-30 17:17:04 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<router-link :to="{name: 'user.settings'}" class="dropdown-item">
|
2021-06-24 01:24:57 +02:00
|
|
|
{{ $t('user.settings.title') }}
|
2021-01-30 17:17:04 +01:00
|
|
|
</router-link>
|
|
|
|
<a
|
|
|
|
:href="imprintUrl"
|
|
|
|
class="dropdown-item"
|
|
|
|
target="_blank"
|
2021-07-28 22:58:12 +02:00
|
|
|
rel="noreferrer noopener nofollow"
|
2021-01-30 17:17:04 +01:00
|
|
|
v-if="imprintUrl">
|
2021-06-24 01:24:57 +02:00
|
|
|
{{ $t('navigation.imprint') }}
|
2021-01-30 17:17:04 +01:00
|
|
|
</a>
|
|
|
|
<a
|
|
|
|
:href="privacyPolicyUrl"
|
|
|
|
class="dropdown-item"
|
|
|
|
target="_blank"
|
2021-07-28 22:58:12 +02:00
|
|
|
rel="noreferrer noopener nofollow"
|
2021-01-30 17:17:04 +01:00
|
|
|
v-if="privacyPolicyUrl">
|
2021-06-24 01:24:57 +02:00
|
|
|
{{ $t('navigation.privacy') }}
|
2021-01-30 17:17:04 +01:00
|
|
|
</a>
|
2021-04-18 19:32:31 +02:00
|
|
|
<a @click="$store.commit('keyboardShortcutsActive', true)" class="dropdown-item">
|
2021-06-24 01:24:57 +02:00
|
|
|
{{ $t('keyboardShortcuts.title') }}
|
2021-04-18 19:32:31 +02:00
|
|
|
</a>
|
2021-07-06 17:05:35 +02:00
|
|
|
<router-link :to="{name: 'about'}" class="dropdown-item">
|
|
|
|
{{ $t('about.title') }}
|
|
|
|
</router-link>
|
2021-01-30 17:17:04 +01:00
|
|
|
<a @click="logout()" class="dropdown-item">
|
2021-06-24 01:24:57 +02:00
|
|
|
{{ $t('user.auth.logout') }}
|
2021-01-30 17:17:04 +01:00
|
|
|
</a>
|
|
|
|
</dropdown>
|
2020-11-01 18:36:00 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import {mapState} from 'vuex'
|
2021-05-30 20:30:08 +02:00
|
|
|
import {CURRENT_LIST, QUICK_ACTIONS_ACTIVE} from '@/store/mutation-types'
|
2021-09-10 16:21:33 +02:00
|
|
|
import Rights from '@/models/constants/rights.json'
|
2021-07-25 15:27:15 +02:00
|
|
|
import Update from '@/components/home/update.vue'
|
|
|
|
import ListSettingsDropdown from '@/components/list/list-settings-dropdown.vue'
|
|
|
|
import Dropdown from '@/components/misc/dropdown.vue'
|
|
|
|
import Notifications from '@/components/notifications/notifications.vue'
|
2020-11-01 18:36:00 +01:00
|
|
|
|
2021-10-03 20:48:02 +02:00
|
|
|
import logoUrl from '@/assets/logo-full.svg'
|
|
|
|
import logoFullPrideUrl from '@/assets/logo-full-pride.svg'
|
|
|
|
|
2020-11-01 18:36:00 +01:00
|
|
|
export default {
|
|
|
|
name: 'topNavigation',
|
|
|
|
components: {
|
2021-02-21 16:13:58 +01:00
|
|
|
Notifications,
|
2021-01-30 17:17:04 +01:00
|
|
|
Dropdown,
|
|
|
|
ListSettingsDropdown,
|
2020-11-01 18:36:00 +01:00
|
|
|
Update,
|
|
|
|
},
|
2021-10-03 20:48:02 +02:00
|
|
|
computed: {
|
|
|
|
logoUrl() {
|
|
|
|
return (new Date()).getMonth() === 5 ? logoFullPrideUrl : logoUrl
|
|
|
|
},
|
|
|
|
...mapState({
|
|
|
|
userInfo: state => state.auth.info,
|
|
|
|
userAvatar: state => state.auth.avatarUrl,
|
|
|
|
userAuthenticated: state => state.auth.authenticated,
|
|
|
|
currentList: CURRENT_LIST,
|
|
|
|
background: 'background',
|
|
|
|
imprintUrl: state => state.config.legal.imprintUrl,
|
|
|
|
privacyPolicyUrl: state => state.config.legal.privacyPolicyUrl,
|
|
|
|
canWriteCurrentList: state => state.currentList.maxRight > Rights.READ,
|
|
|
|
}),
|
|
|
|
},
|
2021-06-23 22:08:20 +02:00
|
|
|
mounted() {
|
2021-06-24 01:24:57 +02:00
|
|
|
this.$nextTick(() => {
|
|
|
|
if (typeof this.$refs.usernameDropdown === 'undefined' || typeof this.$refs.listTitle === 'undefined') {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
const usernameWidth = this.$refs.usernameDropdown.$el.clientWidth
|
|
|
|
this.$refs.listTitle.style.setProperty('--nav-username-width', `${usernameWidth}px`)
|
|
|
|
})
|
2021-06-23 22:08:20 +02:00
|
|
|
},
|
2020-11-01 18:36:00 +01:00
|
|
|
methods: {
|
|
|
|
logout() {
|
|
|
|
this.$store.dispatch('auth/logout')
|
|
|
|
this.$router.push({name: 'user.login'})
|
|
|
|
},
|
2021-05-30 20:30:08 +02:00
|
|
|
openQuickActions() {
|
|
|
|
this.$store.commit(QUICK_ACTIONS_ACTIVE, true)
|
|
|
|
},
|
2020-11-01 18:36:00 +01:00
|
|
|
},
|
|
|
|
}
|
|
|
|
</script>
|
2021-10-18 14:21:02 +02:00
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2021-10-18 14:33:23 +02:00
|
|
|
$vikunja-nav-logo-full-width: 164px;
|
|
|
|
|
|
|
|
.navbar {
|
|
|
|
z-index: 4 !important;
|
|
|
|
|
|
|
|
.navbar-brand {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
.logo img {
|
|
|
|
width: $vikunja-nav-logo-full-width;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.is-dark .navbar-brand > .navbar-item {
|
|
|
|
@media screen and (max-width: $tablet) {
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar.main-theme {
|
|
|
|
background: $light-background;
|
|
|
|
z-index: 5 !important;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
@media screen and (max-width: $desktop) {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 1.75rem;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-end {
|
|
|
|
margin-left: 0;
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: $tablet) {
|
|
|
|
.navbar-brand {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user {
|
|
|
|
width: $user-dropdown-width-mobile;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
::v-deep.dropdown-trigger {
|
|
|
|
line-height: 1;
|
|
|
|
|
|
|
|
.button {
|
|
|
|
padding: 0 0.25rem;
|
|
|
|
height: 1rem;
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
width: .5rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.username {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar {
|
|
|
|
// FIXME: notifications should provide a slot for the icon instead, so that we can style it as we want
|
|
|
|
::v-deep {
|
|
|
|
.trigger-button {
|
|
|
|
cursor: pointer;
|
|
|
|
color: $grey-400;
|
|
|
|
padding: .5rem;
|
|
|
|
font-size: 1.25rem;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
> * > .trigger-button {
|
|
|
|
width: $navbar-icon-width;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.user {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
span {
|
|
|
|
font-family: $vikunja-font;
|
|
|
|
}
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
border-radius: 100%;
|
|
|
|
vertical-align: middle;
|
|
|
|
height: 40px;
|
|
|
|
}
|
|
|
|
|
2021-10-20 13:03:54 +02:00
|
|
|
::v-deep .dropdown-trigger .button {
|
2021-10-18 14:33:23 +02:00
|
|
|
background: none;
|
|
|
|
|
|
|
|
&:focus:not(:active), &:active {
|
|
|
|
outline: none !important;
|
|
|
|
box-shadow: none !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-18 14:21:02 +02:00
|
|
|
.list-title {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
$edit-icon-width: 1rem;
|
|
|
|
|
|
|
|
@media screen and (min-width: $tablet) {
|
|
|
|
// We need a fixed width for overflowing ellipsis to work
|
|
|
|
--nav-username-width: 0;
|
|
|
|
width: calc(100vw - #{$user-dropdown-width-mobile} - #{2 * $hamburger-menu-icon-spacing} - #{$hamburger-menu-icon-width} - #{$edit-icon-width} - #{2 * $navbar-icon-width} - #{$vikunja-nav-logo-full-width} - var(--nav-username-width));
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: $tablet) {
|
|
|
|
// We need a fixed width for overflowing ellipsis to work
|
|
|
|
width: calc(100vw - #{$user-dropdown-width-mobile} - #{2 * $hamburger-menu-icon-spacing} - #{$hamburger-menu-icon-width} - #{$edit-icon-width} - #{2 * $navbar-icon-width});
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
::v-deep.dropdown-trigger {
|
|
|
|
color: $grey-400;
|
|
|
|
margin-left: 1rem;
|
|
|
|
height: 1rem;
|
|
|
|
width: 1rem;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|