mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-04-23 10:58:13 +08:00
165 lines
3.2 KiB
Vue
165 lines
3.2 KiB
Vue
<script lang="ts" setup>
|
|
import { usePageData } from '@vuepress/client'
|
|
import { useWindowScroll } from '@vueuse/core'
|
|
import { computed, onMounted, ref } from 'vue'
|
|
import type {
|
|
PlumeThemePageData,
|
|
} from '../../shared/index.js'
|
|
import { useSidebar, useThemeLocaleData } from '../composables/index.js'
|
|
import IconAlignLeft from './icons/IconAlignLeft.vue'
|
|
import LocalNavOutlineDropdown from './LocalNavOutlineDropdown.vue'
|
|
|
|
defineProps<{
|
|
open: boolean
|
|
}>()
|
|
|
|
defineEmits<(e: 'openMenu') => void>()
|
|
|
|
const page = usePageData<PlumeThemePageData>()
|
|
const themeData = useThemeLocaleData()
|
|
|
|
const { hasSidebar } = useSidebar()
|
|
const { y } = useWindowScroll()
|
|
|
|
const navHeight = ref(0)
|
|
|
|
const headers = computed(() => page.value.headers)
|
|
const empty = computed(() => {
|
|
return headers.value.length === 0 && !hasSidebar.value
|
|
})
|
|
|
|
onMounted(() => {
|
|
navHeight.value = Number.parseInt(
|
|
getComputedStyle(document.documentElement).getPropertyValue(
|
|
'--vp-nav-height',
|
|
),
|
|
)
|
|
})
|
|
|
|
const classes = computed(() => {
|
|
return {
|
|
'local-nav': true,
|
|
'fixed': empty.value,
|
|
'reached-top': y.value >= navHeight.value,
|
|
}
|
|
})
|
|
|
|
const showLocalNav = computed(() => {
|
|
return (hasSidebar.value || page.value.isBlogPost) && (!empty.value || y.value >= navHeight.value)
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div v-if="showLocalNav" :class="classes">
|
|
<button
|
|
class="menu"
|
|
:class="{ hidden: page.isBlogPost }"
|
|
:disabled="page.isBlogPost"
|
|
:aria-expanded="open"
|
|
aria-controls="SidebarNav"
|
|
@click="$emit('openMenu')"
|
|
>
|
|
<IconAlignLeft class="menu-icon" />
|
|
<span class="menu-text"> {{ themeData.sidebarMenuLabel || 'Menu' }} </span>
|
|
</button>
|
|
|
|
<LocalNavOutlineDropdown :headers="headers" :nav-height="navHeight" />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.local-nav {
|
|
position: sticky;
|
|
top: 0;
|
|
|
|
/* rtl:ignore */
|
|
left: 0;
|
|
z-index: var(--vp-z-index-local-nav);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
padding-top: var(--vp-layout-top-height, 0);
|
|
background-color: var(--vp-local-nav-bg-color);
|
|
border-top: 1px solid var(--vp-c-gutter);
|
|
border-bottom: 1px solid var(--vp-c-gutter);
|
|
transition:
|
|
border-color 0.5s,
|
|
background-color 0.5s;
|
|
}
|
|
|
|
.local-nav.fixed {
|
|
position: fixed;
|
|
}
|
|
|
|
.local-nav.reached-top {
|
|
border-top-color: transparent;
|
|
}
|
|
|
|
@media (width >= 960px) {
|
|
.local-nav {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media print {
|
|
.local-nav {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.menu {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 12px 24px 11px;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
line-height: 24px;
|
|
color: var(--vp-c-text-2);
|
|
transition: color 0.5s;
|
|
}
|
|
|
|
.menu.hidden {
|
|
visibility: hidden;
|
|
}
|
|
|
|
.menu:hover {
|
|
color: var(--vp-c-text-1);
|
|
transition: color 0.25s;
|
|
}
|
|
|
|
@media (width >= 768px) {
|
|
.menu {
|
|
padding: 0 32px;
|
|
}
|
|
}
|
|
|
|
.menu-icon {
|
|
width: 16px;
|
|
height: 16px;
|
|
margin-right: 8px;
|
|
fill: currentcolor;
|
|
}
|
|
|
|
.top-link {
|
|
display: block;
|
|
padding: 12px 24px 11px;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
line-height: 24px;
|
|
color: var(--vp-c-text-2);
|
|
transition: color 0.5s;
|
|
}
|
|
|
|
.top-link:hover {
|
|
color: var(--vp-c-text-1);
|
|
transition: color 0.25s;
|
|
}
|
|
|
|
@media (width >= 768px) {
|
|
.top-link {
|
|
padding: 12px 32px 11px;
|
|
}
|
|
}
|
|
</style>
|