146 lines
3.2 KiB
Vue
146 lines
3.2 KiB
Vue
<template>
|
|
<div
|
|
class="theme-container"
|
|
:class="pageClasses"
|
|
@touchstart="onTouchStart"
|
|
@touchend="onTouchEnd"
|
|
>
|
|
<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"
|
|
#top
|
|
/>
|
|
<slot
|
|
name="sidebar-bottom"
|
|
#bottom
|
|
/>
|
|
</Sidebar>
|
|
<main class="page" style="padding-top: 2rem;">
|
|
<Content class="theme-default-content" style="padding-top: 0; margin-top: 0; padding-bottom: 1rem;"/>
|
|
<PageVssue style="max-width: 1000px; margin: auto; padding: 0 2.5rem;"></PageVssue>
|
|
</main>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Home from '@theme/components/Home.vue'
|
|
import Navbar from '@theme/components/Navbar.vue'
|
|
import Page from '@theme/components/Page.vue'
|
|
import Sidebar from '@theme/components/Sidebar.vue'
|
|
import { resolveSidebarItems } from '../theme/util'
|
|
|
|
export default {
|
|
components: { Home, Page, Sidebar, Navbar },
|
|
|
|
data () {
|
|
return {
|
|
isSidebarOpen: false
|
|
}
|
|
},
|
|
|
|
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 (
|
|
!frontmatter.home
|
|
&& frontmatter.sidebar !== false
|
|
&& this.sidebarItems.length
|
|
)
|
|
},
|
|
|
|
sidebarItems () {
|
|
return resolveSidebarItems(
|
|
this.$page,
|
|
this.$page.regularPath,
|
|
this.$site,
|
|
this.$localePath
|
|
)
|
|
},
|
|
|
|
pageClasses () {
|
|
const userPageClass = this.$page.frontmatter.pageClass
|
|
return [
|
|
{
|
|
'no-navbar': !this.shouldShowNavbar,
|
|
'sidebar-open': this.isSidebarOpen,
|
|
'no-sidebar': !this.shouldShowSidebar
|
|
},
|
|
userPageClass
|
|
]
|
|
}
|
|
},
|
|
|
|
mounted () {
|
|
this.$router.afterEach(() => {
|
|
this.isSidebarOpen = false
|
|
})
|
|
},
|
|
|
|
methods: {
|
|
toggleSidebar (to) {
|
|
this.isSidebarOpen = typeof to === 'boolean' ? to : !this.isSidebarOpen
|
|
this.$emit('toggle-sidebar', 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)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="stylus">
|
|
@require '../theme/styles/wrapper.styl'
|
|
|
|
.page
|
|
padding-bottom 2rem
|
|
display block
|
|
|
|
</style>
|