195 lines
4.5 KiB
Vue
195 lines
4.5 KiB
Vue
<template>
|
|
<div
|
|
class="theme-container"
|
|
:class="pageClasses"
|
|
@touchstart="onTouchStart"
|
|
@touchend="onTouchEnd">
|
|
<transition name="fade">
|
|
<Loading v-if="firstLoad"></Loading>
|
|
<Password v-else-if="!isHasKey"></Password>
|
|
<div v-else>
|
|
<Navbar
|
|
v-if="shouldShowNavbar"
|
|
@toggle-sidebar="toggleSidebar"/>
|
|
|
|
<div
|
|
class="sidebar-mask"
|
|
@click="toggleSidebar(false)"></div>
|
|
|
|
<Sidebar
|
|
:items="sidebarItems"
|
|
@toggle-sidebar="toggleSidebar">
|
|
<slot
|
|
name="sidebar-top"
|
|
slot="top"/>
|
|
<slot
|
|
name="sidebar-bottom"
|
|
slot="bottom"/>
|
|
</Sidebar>
|
|
|
|
<Password v-if="!isHasPageKey" :isPage="true"></Password>
|
|
<div v-else>
|
|
<slot></slot>
|
|
<Valine :isComment="isComment"></Valine>
|
|
</div>
|
|
</div>
|
|
</transition>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Navbar from '@theme/components/Navbar.vue'
|
|
import Sidebar from '@theme/components/Sidebar.vue'
|
|
import { resolveSidebarItems } from '../util'
|
|
import Password from '@theme/components/Password'
|
|
import Loading from '@theme/components/Loading'
|
|
import Valine from '@theme/components/Valine/'
|
|
import { setTimeout } from 'timers'
|
|
|
|
export default {
|
|
components: { Sidebar, Navbar, Password, Valine, Loading },
|
|
|
|
props: ['sidebar', 'isComment'],
|
|
|
|
data () {
|
|
return {
|
|
isSidebarOpen: false,
|
|
isHasKey: true,
|
|
isHasPageKey: true,
|
|
firstLoad: true
|
|
}
|
|
},
|
|
|
|
computed: {
|
|
shouldShowNavbar () {
|
|
const { themeConfig } = this.$site
|
|
const { frontmatter } = this.$page
|
|
if (
|
|
frontmatter.navbar === false ||
|
|
themeConfig.navbar === false) {
|
|
return false
|
|
}
|
|
return (
|
|
this.$title ||
|
|
themeConfig.logo ||
|
|
themeConfig.repo ||
|
|
themeConfig.nav ||
|
|
this.$themeLocaleConfig.nav
|
|
)
|
|
},
|
|
|
|
shouldShowSidebar () {
|
|
const { frontmatter } = this.$page
|
|
return (
|
|
this.sidebar !== false &&
|
|
!frontmatter.home &&
|
|
frontmatter.sidebar !== false &&
|
|
this.sidebarItems.length
|
|
)
|
|
},
|
|
|
|
sidebarItems () {
|
|
return resolveSidebarItems(
|
|
this.$page,
|
|
this.$page.regularPath,
|
|
this.$site,
|
|
this.$localePath
|
|
)
|
|
},
|
|
|
|
pageClasses () {
|
|
const userPageClass = this.$frontmatter.pageClass
|
|
return [
|
|
{
|
|
'no-navbar': !this.shouldShowNavbar,
|
|
'sidebar-open': this.isSidebarOpen,
|
|
'no-sidebar': !this.shouldShowSidebar
|
|
},
|
|
userPageClass
|
|
]
|
|
}
|
|
},
|
|
|
|
mounted () {
|
|
this.$router.afterEach(() => {
|
|
this.isSidebarOpen = false
|
|
})
|
|
|
|
this.hasKey()
|
|
this.hasPageKey()
|
|
this.handleLoading()
|
|
},
|
|
|
|
methods: {
|
|
hasKey () {
|
|
const keyPage = this.$themeConfig.keyPage
|
|
if (!keyPage) {
|
|
this.isHasKey = true
|
|
return
|
|
}
|
|
|
|
const keys = keyPage.keys
|
|
this.isHasKey = keys && keys.indexOf(sessionStorage.getItem('key')) > -1
|
|
},
|
|
hasPageKey () {
|
|
const pageKeys = this.$frontmatter.keys
|
|
if (!pageKeys) {
|
|
this.isHasPageKey = true
|
|
return
|
|
}
|
|
|
|
this.isHasPageKey = pageKeys && pageKeys.indexOf(sessionStorage.getItem('pageKey')) > -1
|
|
},
|
|
toggleSidebar (to) {
|
|
this.isSidebarOpen = typeof to === 'boolean' ? to : !this.isSidebarOpen
|
|
},
|
|
|
|
// side swipe
|
|
onTouchStart (e) {
|
|
this.touchStart = {
|
|
x: e.changedTouches[0].clientX,
|
|
y: e.changedTouches[0].clientY
|
|
}
|
|
},
|
|
|
|
onTouchEnd (e) {
|
|
const dx = e.changedTouches[0].clientX - this.touchStart.x
|
|
const dy = e.changedTouches[0].clientY - this.touchStart.y
|
|
if (Math.abs(dx) > Math.abs(dy) && Math.abs(dx) > 40) {
|
|
if (dx > 0 && this.touchStart.x <= 80) {
|
|
this.toggleSidebar(true)
|
|
} else {
|
|
this.toggleSidebar(false)
|
|
}
|
|
}
|
|
},
|
|
|
|
handleLoading () {
|
|
const time = this.$frontmatter.home && sessionStorage.getItem('firstLoad') == undefined ? 1000 : 0
|
|
setTimeout(() => {
|
|
this.firstLoad = false
|
|
if (sessionStorage.getItem('firstLoad') == undefined) sessionStorage.setItem('firstLoad', false)
|
|
}, time)
|
|
}
|
|
},
|
|
|
|
watch: {
|
|
$frontmatter (newVal, oldVal) {
|
|
if (newVal.home) {
|
|
this.hasKey()
|
|
this.hasPageKey()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="stylus" scoped>
|
|
.fade-enter-active, .fade-leave-active {
|
|
transition: opacity .5s;
|
|
}
|
|
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
|
|
opacity: 0;
|
|
}
|
|
</style>
|