naive-ui/demo/pages/Layout.vue
XieZongChen 00ff423d62
feat(menu): add render-label prop (#191)
* feat: n-menu add renderLabel prop

* fix: optimization

* feat: add menu test and restructure menu renderLabel

* fix: optimization

* fix: optimization

* Apply suggestions from code review

* fix: optimization

* feat: Optimize code

* feat: Optimize demo docs

* fix: fixed path bug in site

* fix: fixed path bug in site

Co-authored-by: 07akioni <07akioni2@gmail.com>
2021-06-21 09:39:54 +08:00

92 lines
2.5 KiB
Vue

<template>
<n-layout
id="doc-layout"
:has-sider="showSider"
:position="isMobile ? 'static' : 'absolute'"
:style="{
top: isMobile ? '' : 'var(--header-height)'
}"
>
<n-layout-sider
:native-scrollbar="false"
:collapsed-width="0"
collapse-mode="transform"
bordered
show-trigger="bar"
trigger-style="top: calc(50% - var(--header-height));"
v-if="showSider"
>
<n-menu
:value="menuValue"
:options="options"
:render-label="renderMenuLabel"
/>
</n-layout-sider>
<n-layout
ref="layoutInstRef"
:native-scrollbar="false"
:position="isMobile || showSider ? 'static' : 'absolute'"
content-style="min-height: calc(100vh - var(--header-height)); display: flex; flex-direction: column;"
>
<router-view />
<site-footer />
</n-layout>
</n-layout>
</template>
<script>
// Frame component for components & docs page
import { computed, watch, toRef, ref } from 'vue'
import { useRoute } from 'vue-router'
import { findMenuValue } from '../utils/route'
import { useIsMobile, useIsTablet } from '../utils/composables'
import SiteFooter from './home/Footer.vue'
import { useDocOptions, useComponentOptions } from '../store'
import { renderMenuLabel } from '../store/menu-options'
import { useMemo } from 'vooks'
export default {
components: {
SiteFooter
},
setup () {
const route = useRoute()
const layoutInstRef = ref(null)
const docOptionsRef = useDocOptions()
const componentOptionsRef = useComponentOptions()
const optionsRef = computed(() =>
route.path.includes('/docs/')
? docOptionsRef.value
: componentOptionsRef.value
)
const menuValueRef = computed(() => {
return findMenuValue(optionsRef.value, route.path)
})
watch(toRef(route, 'path'), (value, oldValue) => {
const langAndThemeReg = /\/(zh-CN|en-US)\/(light|dark|os-theme)/g
// only theme & lang change do not restore the scroll status
if (
value.replace(langAndThemeReg, '') !==
oldValue.replace(langAndThemeReg, '')
) {
layoutInstRef.value.scrollTo(0, 0)
}
})
const isMobileRef = useIsMobile()
const isTabletRef = useIsTablet()
return {
renderMenuLabel,
showSider: useMemo(() => {
return !isMobileRef.value && !isTabletRef.value
}),
layoutInstRef,
options: optionsRef,
menuValue: menuValueRef,
isMobile: isMobileRef
}
}
}
</script>