wikijs-fork/client/components/common/nav-header.vue

492 lines
18 KiB
Vue
Raw Normal View History

<template lang='pug'>
v-app-bar.nav-header(color='black', dark, app, :clipped-left='!$vuetify.rtl', :clipped-right='$vuetify.rtl', fixed, flat, :extended='searchIsShown && $vuetify.breakpoint.smAndDown')
2018-08-13 04:12:44 +00:00
v-toolbar(color='deep-purple', flat, slot='extension', v-if='searchIsShown && $vuetify.breakpoint.smAndDown')
v-text-field(
2019-03-09 23:43:32 +00:00
ref='searchFieldMobile'
v-model='search'
clearable
2018-08-13 04:12:44 +00:00
background-color='deep-purple'
2019-03-09 23:43:32 +00:00
color='white'
2019-09-13 00:50:31 +00:00
:label='$t(`common:header.search`)'
2019-03-09 23:43:32 +00:00
single-line
2018-08-13 04:12:44 +00:00
solo
flat
2019-03-09 23:43:32 +00:00
hide-details
2019-08-04 02:51:29 +00:00
prepend-inner-icon='mdi-magnify'
2019-03-09 23:43:32 +00:00
:loading='searchIsLoading'
2018-08-13 04:12:44 +00:00
@keyup.enter='searchEnter'
)
v-layout(row)
2019-07-29 04:50:03 +00:00
v-flex(xs6, md4)
v-toolbar.nav-header-inner(color='black', dark, flat, :class='$vuetify.rtl ? `pr-3` : `pl-3`')
v-avatar(tile, size='34', @click='goHome')
v-img.org-logo(:src='logoUrl')
//- v-menu(open-on-hover, offset-y, bottom, left, min-width='250', transition='slide-y-transition')
//- template(v-slot:activator='{ on }')
//- v-app-bar-nav-icon.btn-animate-app(v-on='on', :class='$vuetify.rtl ? `mx-0` : ``')
//- v-icon mdi-menu
//- v-list(nav, :light='!$vuetify.theme.dark', :dark='$vuetify.theme.dark', :class='$vuetify.theme.dark ? `grey darken-4` : ``')
//- v-list-item.pl-4(href='/')
//- v-list-item-avatar(size='24'): v-icon(color='blue') mdi-home
//- v-list-item-title.body-2 {{$t('common:header.home')}}
//- v-list-item.pl-4(@click='')
//- v-list-item-avatar(size='24'): v-icon(color='grey lighten-2') mdi-file-tree
//- v-list-item-content
//- v-list-item-title.body-2.grey--text.text--ligten-2 {{$t('common:header.siteMap')}}
//- v-list-item-subtitle.overline.grey--text.text--lighten-2 Coming soon
//- v-list-item.pl-4(href='/t')
//- v-list-item-avatar(size='24'): v-icon(color='teal') mdi-tag-multiple
//- v-list-item-title.body-2 {{$t('common:header.browseTags')}}
//- v-list-item.pl-4(@click='assets')
//- v-list-item-avatar(size='24'): v-icon(color='grey lighten-2') mdi-folder-multiple-image
//- v-list-item-content
//- v-list-item-title.body-2.grey--text.text--ligten-2 {{$t('common:header.imagesFiles')}}
//- v-list-item-subtitle.overline.grey--text.text--lighten-2 Coming soon
v-toolbar-title(:class='{ "mx-3": $vuetify.breakpoint.mdAndUp, "mx-0": $vuetify.breakpoint.smAndDown }')
span.subheading {{title}}
v-flex(md4, v-if='$vuetify.breakpoint.mdAndUp')
v-toolbar.nav-header-inner(color='black', dark, flat)
slot(name='mid')
transition(name='navHeaderSearch', v-if='searchIsShown')
v-text-field(
ref='searchField',
v-if='searchIsShown && $vuetify.breakpoint.mdAndUp',
v-model='search',
color='white',
2019-06-09 01:00:12 +00:00
:label='$t(`common:header.search`)',
single-line,
solo
flat
2019-09-02 19:33:40 +00:00
rounded
hide-details,
2019-07-29 04:50:03 +00:00
prepend-inner-icon='mdi-magnify',
:loading='searchIsLoading',
@keyup.enter='searchEnter'
@keyup.esc='searchClose'
@focus='searchFocus'
@blur='searchBlur'
@keyup.down='searchMove(`down`)'
@keyup.up='searchMove(`up`)'
)
2019-09-13 00:50:31 +00:00
v-tooltip(bottom)
template(v-slot:activator='{ on }')
v-btn.ml-2.mr-0(icon, v-on='on', href='/t')
v-icon(color='grey') mdi-tag-multiple
2019-09-13 00:50:31 +00:00
span {{$t('common:header.browseTags')}}
2019-07-29 04:50:03 +00:00
v-flex(xs6, md4)
v-toolbar.nav-header-inner.pr-4(color='black', dark, flat)
v-spacer
.navHeaderLoading.mr-3
v-progress-circular(indeterminate, color='blue', :size='22', :width='2' v-show='isLoading')
2019-09-13 00:50:31 +00:00
slot(name='actions')
2019-09-13 00:50:31 +00:00
//- (mobile) SEARCH TOGGLE
v-btn(
v-if='!hideSearch && $vuetify.breakpoint.smAndDown'
@click='searchToggle'
icon
)
2019-08-04 02:51:29 +00:00
v-icon(color='grey') mdi-magnify
2019-09-13 00:50:31 +00:00
//- LANGUAGES
template(v-if='mode === `view` && locales.length > 0')
v-menu(offset-y, bottom, transition='slide-y-transition', max-height='320px', min-width='210px', left)
2019-09-13 00:50:31 +00:00
template(v-slot:activator='{ on: menu }')
v-tooltip(bottom)
template(v-slot:activator='{ on: tooltip }')
v-btn(icon, v-on='{ ...menu, ...tooltip }', :class='$vuetify.rtl ? `ml-3` : ``', tile, height='64')
v-icon(color='grey') mdi-web
span {{$t('common:header.language')}}
v-list(nav)
template(v-for='(lc, idx) of locales')
v-list-item(@click='changeLocale(lc)')
v-list-item-action(style='min-width:auto;'): v-chip(:color='lc.code === locale ? `blue` : `grey`', small, label, dark) {{lc.code.toUpperCase()}}
2019-09-13 00:50:31 +00:00
v-list-item-title {{lc.name}}
v-divider(vertical)
//- PAGE ACTIONS
template(v-if='isAuthenticated && path && mode !== `edit`')
v-menu(offset-y, bottom, transition='slide-y-transition', left)
2019-09-13 00:50:31 +00:00
template(v-slot:activator='{ on: menu }')
v-tooltip(bottom)
template(v-slot:activator='{ on: tooltip }')
v-btn(icon, v-on='{ ...menu, ...tooltip }', :class='$vuetify.rtl ? `ml-3` : ``', tile, height='64')
v-icon(color='grey') mdi-file-document-edit-outline
span {{$t('common:header.pageActions')}}
v-list(nav, :light='!$vuetify.theme.dark', :dark='$vuetify.theme.dark', :class='$vuetify.theme.dark ? `grey darken-4` : ``')
.overline.pa-4.grey--text {{$t('common:header.currentPage')}}
v-list-item.pl-4(@click='pageView', v-if='mode !== `view`')
v-list-item-avatar(size='24'): v-icon(color='indigo') mdi-file-document-box-outline
v-list-item-title.body-2 {{$t('common:header.view')}}
v-list-item.pl-4(@click='pageEdit', v-if='mode !== `edit` && isAuthenticated')
v-list-item-avatar(size='24'): v-icon(color='indigo') mdi-file-document-edit-outline
v-list-item-title.body-2 {{$t('common:header.edit')}}
v-list-item.pl-4(@click='pageHistory', v-if='mode !== `history`')
2020-02-24 02:22:45 +00:00
v-list-item-avatar(size='24'): v-icon(color='indigo') mdi-history
2019-09-13 00:50:31 +00:00
v-list-item-content
2020-02-24 02:22:45 +00:00
v-list-item-title.body-2 {{$t('common:header.history')}}
2019-09-13 00:50:31 +00:00
v-list-item.pl-4(@click='pageSource', v-if='mode !== `source`')
v-list-item-avatar(size='24'): v-icon(color='indigo') mdi-code-tags
v-list-item-title.body-2 {{$t('common:header.viewSource')}}
v-list-item.pl-4(@click='pageMove', v-if='isAuthenticated')
v-list-item-avatar(size='24'): v-icon(color='indigo') mdi-content-save-move-outline
2019-09-13 00:50:31 +00:00
v-list-item-content
v-list-item-title.body-2 {{$t('common:header.move')}}
2019-09-13 00:50:31 +00:00
v-list-item.pl-4(@click='pageDelete', v-if='isAuthenticated')
v-list-item-avatar(size='24'): v-icon(color='red darken-2') mdi-trash-can-outline
v-list-item-title.body-2 {{$t('common:header.delete')}}
v-divider(vertical)
//- NEW PAGE
template(v-if='isAuthenticated && path && mode !== `edit`')
2019-09-13 00:50:31 +00:00
v-tooltip(bottom)
template(v-slot:activator='{ on }')
v-btn(icon, tile, height='64', v-on='on', @click='pageNew')
2020-03-21 23:18:08 +00:00
v-icon(color='grey') mdi-text-box-plus-outline
2019-09-13 00:50:31 +00:00
span {{$t('common:header.newPage')}}
v-divider(vertical)
//- ACCOUNT
v-menu(v-if='isAuthenticated', offset-y, bottom, min-width='300', transition='slide-y-transition', left)
2019-07-29 04:50:03 +00:00
template(v-slot:activator='{ on: menu }')
v-tooltip(bottom)
template(v-slot:activator='{ on: tooltip }')
2019-09-13 00:50:31 +00:00
v-btn(icon, v-on='{ ...menu, ...tooltip }', :class='$vuetify.rtl ? `ml-0` : ``', tile, height='64')
2019-07-29 04:50:03 +00:00
v-icon(v-if='picture.kind === `initials`', color='grey') mdi-account-circle
2019-08-11 04:12:07 +00:00
v-avatar(v-else-if='picture.kind === `image`', :size='34')
2019-07-29 04:50:03 +00:00
v-img(:src='picture.url')
span {{$t('common:header.account')}}
2019-09-08 16:39:05 +00:00
v-list(nav)
2019-08-11 04:12:07 +00:00
v-list-item.py-3.grey(:class='$vuetify.theme.dark ? `darken-4-l5` : `lighten-5`')
2019-07-29 04:50:03 +00:00
v-list-item-avatar
2019-01-12 23:33:30 +00:00
v-avatar.blue(v-if='picture.kind === `initials`', :size='40')
span.white--text.subheading {{picture.initials}}
v-avatar(v-else-if='picture.kind === `image`', :size='40')
v-img(:src='picture.url')
2019-07-29 04:50:03 +00:00
v-list-item-content
v-list-item-title {{name}}
2019-08-04 17:54:23 +00:00
v-list-item-subtitle {{email}}
2020-03-21 23:18:08 +00:00
//- v-list-item(href='/w', disabled)
//- v-list-item-action: v-icon(color='blue') mdi-view-compact-outline
//- v-list-item-content
//- v-list-item-title {{$t('common:header.myWiki')}}
//- v-list-item-subtitle.overline Coming soon
//- v-list-item(href='/p', disabled)
//- v-list-item-action: v-icon(color='blue') mdi-face-profile
//- v-list-item-content
//- v-list-item-title {{$t('common:header.profile')}}
//- v-list-item-subtitle.overline Coming soon
2019-09-13 00:50:31 +00:00
v-list-item(href='/a', v-if='isAuthenticated && isAdmin')
2020-03-21 23:18:08 +00:00
v-list-item-action.btn-animate-rotate: v-icon(:color='$vuetify.theme.dark ? `blue-grey lighten-3` : `blue-grey`') mdi-cog
v-list-item-title(:class='$vuetify.theme.dark ? `blue-grey--text text--lighten-3` : `blue-grey--text`') {{$t('common:header.admin')}}
2019-07-29 04:50:03 +00:00
v-list-item(@click='logout')
v-list-item-action: v-icon(color='red') mdi-logout
2019-09-08 16:39:05 +00:00
v-list-item-title.red--text {{$t('common:header.logout')}}
2019-01-12 23:33:30 +00:00
v-tooltip(v-else, left)
2019-07-29 04:50:03 +00:00
template(v-slot:activator='{ on }')
2019-08-11 04:12:07 +00:00
v-btn(icon, v-on='on', color='grey darken-3', href='/login')
2019-07-29 04:50:03 +00:00
v-icon(color='grey') mdi-account-circle
2019-06-09 01:00:12 +00:00
span {{$t('common:header.login')}}
2018-11-12 05:51:34 +00:00
page-selector(mode='create', v-model='newPageModal', :open-handler='pageNewCreate', :locale='locale')
page-selector(mode='move', v-model='movePageModal', :open-handler='pageMoveRename', :path='path', :locale='locale')
2019-01-26 23:35:56 +00:00
page-delete(v-model='deletePageModal', v-if='path && path.length')
.nav-header-dev(v-if='isDevMode')
v-icon mdi-alert
div
.overline DEVELOPMENT VERSION
.overline This code base is NOT for production use!
</template>
<script>
2019-03-09 05:51:02 +00:00
import { get, sync } from 'vuex-pathify'
2018-08-13 04:12:44 +00:00
import _ from 'lodash'
import Cookies from 'js-cookie'
2018-06-11 03:23:09 +00:00
2019-10-13 23:59:50 +00:00
import movePageMutation from 'gql/common/common-pages-mutation-move.gql'
/* global siteConfig, siteLangs */
2019-06-22 00:54:09 +00:00
export default {
2019-01-26 23:35:56 +00:00
components: {
PageDelete: () => import('./page-delete.vue')
},
props: {
dense: {
type: Boolean,
default: false
},
hideSearch: {
type: Boolean,
default: false
}
},
data() {
return {
menuIsShown: true,
searchIsShown: true,
2019-03-09 05:51:02 +00:00
searchAdvMenuShown: false,
2019-01-26 23:35:56 +00:00
newPageModal: false,
movePageModal: false,
2019-06-02 21:29:50 +00:00
deletePageModal: false,
locales: siteLangs,
isDevMode: false
}
},
computed: {
2019-03-09 05:51:02 +00:00
search: sync('site/search'),
2019-03-09 23:43:32 +00:00
searchIsFocused: sync('site/searchIsFocused'),
2019-03-09 05:51:02 +00:00
searchIsLoading: sync('site/searchIsLoading'),
searchRestrictLocale: sync('site/searchRestrictLocale'),
searchRestrictPath: sync('site/searchRestrictPath'),
2018-08-04 21:27:55 +00:00
isLoading: get('isLoading'),
2018-10-29 02:09:58 +00:00
title: get('site/title'),
logoUrl: get('site/logoUrl'),
path: get('page/path'),
2019-06-22 03:39:04 +00:00
locale: get('page/locale'),
2018-12-03 02:42:43 +00:00
mode: get('page/mode'),
name: get('user/name'),
email: get('user/email'),
pictureUrl: get('user/pictureUrl'),
isAuthenticated: get('user/authenticated'),
permissions: get('user/permissions'),
2019-09-27 04:02:26 +00:00
picture () {
2018-12-03 02:42:43 +00:00
if (this.pictureUrl && this.pictureUrl.length > 1) {
return {
kind: 'image',
url: this.pictureUrl
}
} else {
const nameParts = this.name.toUpperCase().split(' ')
let initials = _.head(nameParts).charAt(0)
if (nameParts.length > 1) {
initials += _.last(nameParts).charAt(0)
}
return {
kind: 'initials',
initials
}
}
},
2019-09-27 04:02:26 +00:00
isAdmin () {
return _.intersection(this.permissions, ['manage:system', 'write:users', 'manage:users', 'write:groups', 'manage:groups', 'manage:navigation', 'manage:theme', 'manage:api']).length > 0
2018-12-03 02:42:43 +00:00
}
},
2019-09-27 04:02:26 +00:00
created () {
2018-08-13 04:12:44 +00:00
if (this.hideSearch || this.dense || this.$vuetify.breakpoint.smAndDown) {
this.searchIsShown = false
}
},
2019-09-27 04:02:26 +00:00
mounted () {
this.$root.$on('pageEdit', () => {
this.pageEdit()
})
this.$root.$on('pageHistory', () => {
this.pageHistory()
})
this.$root.$on('pageSource', () => {
this.pageSource()
})
this.$root.$on('pageMove', () => {
this.pageMove()
})
this.$root.$on('pageDelete', () => {
this.pageDelete()
})
this.isDevMode = siteConfig.devMode === true
2019-09-27 04:02:26 +00:00
},
methods: {
2019-09-27 04:02:26 +00:00
searchFocus () {
2019-03-09 23:43:32 +00:00
this.searchIsFocused = true
},
2019-09-27 04:02:26 +00:00
searchBlur () {
2019-03-09 23:43:32 +00:00
this.searchIsFocused = false
},
2019-09-27 04:02:26 +00:00
searchClose () {
2019-03-09 23:43:32 +00:00
this.search = ''
this.searchBlur()
},
2019-09-27 04:02:26 +00:00
searchToggle () {
2018-08-13 04:12:44 +00:00
this.searchIsShown = !this.searchIsShown
if (this.searchIsShown) {
_.delay(() => {
this.$refs.searchFieldMobile.focus()
}, 200)
}
},
2019-09-27 04:02:26 +00:00
searchEnter () {
this.$root.$emit('searchEnter', true)
},
searchMove(dir) {
this.$root.$emit('searchMove', dir)
},
pageNew () {
2018-11-12 05:51:34 +00:00
this.newPageModal = true
},
pageNewCreate ({ path, locale }) {
2019-06-22 03:39:04 +00:00
window.location.assign(`/e/${locale}/${path}`)
},
pageView () {
2019-06-22 03:39:04 +00:00
window.location.assign(`/${this.locale}/${this.path}`)
},
pageEdit () {
2019-06-22 03:39:04 +00:00
window.location.assign(`/e/${this.locale}/${this.path}`)
},
pageHistory () {
2020-02-24 02:22:45 +00:00
window.location.assign(`/h/${this.locale}/${this.path}`)
},
pageSource () {
2019-06-22 03:39:04 +00:00
window.location.assign(`/s/${this.locale}/${this.path}`)
},
pageMove () {
this.movePageModal = true
},
2019-10-13 23:59:50 +00:00
async pageMoveRename ({ path, locale }) {
this.$store.commit(`loadingStart`, 'page-move')
try {
const resp = await this.$apollo.mutate({
mutation: movePageMutation,
variables: {
id: this.$store.get('page/id'),
destinationLocale: locale,
destinationPath: path
}
})
if (_.get(resp, 'data.pages.move.responseResult.succeeded', false)) {
window.location.replace(`/${locale}/${path}`)
} else {
throw new Error(_.get(resp, 'data.pages.move.responseResult.message', this.$t('common:error.unexpected')))
}
} catch (err) {
this.$store.commit('pushGraphError', err)
this.$store.commit(`loadingStop`, 'page-move')
}
},
pageDelete () {
2019-01-26 23:35:56 +00:00
this.deletePageModal = true
},
assets () {
2019-06-02 21:29:50 +00:00
// window.location.assign(`/f`)
this.$store.commit('showNotification', {
style: 'indigo',
message: `Coming soon...`,
2019-08-03 04:48:55 +00:00
icon: 'ferry'
2019-06-02 21:29:50 +00:00
})
},
2019-09-27 04:02:26 +00:00
async changeLocale (locale) {
2019-06-02 21:29:50 +00:00
await this.$i18n.i18next.changeLanguage(locale.code)
switch (this.mode) {
case 'view':
case 'history':
window.location.assign(`/${locale.code}/${this.path}`)
break
}
},
logout () {
Cookies.remove('jwt')
window.location.assign('/')
},
goHome () {
window.location.assign('/')
}
}
}
</script>
<style lang='scss'>
2018-08-13 04:12:44 +00:00
.nav-header {
//z-index: 1000;
2018-08-13 04:12:44 +00:00
.v-toolbar__extension {
padding: 0;
.v-toolbar__content {
padding: 0;
}
.v-text-field .v-input__prepend-inner {
padding: 0 14px 0 5px;
padding-right: 14px;
}
}
.org-logo {
cursor: pointer;
}
&-inner {
.v-toolbar__content {
padding: 0;
}
}
2019-03-09 05:51:02 +00:00
&-search-adv {
position: absolute;
top: 7px;
right: 12px;
border-radius: 4px !important;
2019-08-11 04:12:07 +00:00
@at-root .v-application--is-rtl & {
right: initial;
left: 12px;
}
2019-03-09 05:51:02 +00:00
&::before {
border-radius: 4px !important;
}
&:hover, &:focus {
position: absolute !important;
&::before {
border-radius: 4px;
}
}
}
&-dev {
background-color: mc('red', '600');
position: absolute;
top: 11px;
left: 255px;
padding: 5px 15px;
border-radius: 5px;
display: flex;
.v-icon {
margin-right: 15px;
}
.overline:nth-child(2) {
text-transform: none;
}
}
2018-08-13 04:12:44 +00:00
}
.navHeaderSearch {
&-enter-active, &-leave-active {
transition: opacity .25s ease, transform .25s ease;
opacity: 1;
}
&-enter-active {
transition-delay: .25s;
}
&-enter, &-leave-to {
opacity: 0;
transform: scale(.7, .7);
}
}
.navHeaderLoading { // To avoid search bar jumping
width: 22px;
}
</style>