mirror of
https://github.com/imezx/Warp.git
synced 2025-04-25 15:40:02 +00:00
96 lines
2.9 KiB
Vue
96 lines
2.9 KiB
Vue
|
<script setup lang="ts">
|
||
|
import NotFound from '../NotFound.vue'
|
||
|
import { useData } from '../composables/data'
|
||
|
import { useSidebar } from '../composables/sidebar'
|
||
|
import VPDoc from './VPDoc.vue'
|
||
|
import VPHome from './VPHome.vue'
|
||
|
import VPPage from './VPPage.vue'
|
||
|
|
||
|
const { page, frontmatter } = useData()
|
||
|
const { hasSidebar } = useSidebar()
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div
|
||
|
class="VPContent"
|
||
|
id="VPContent"
|
||
|
:class="{
|
||
|
'has-sidebar': hasSidebar,
|
||
|
'is-home': frontmatter.layout === 'home'
|
||
|
}"
|
||
|
>
|
||
|
<slot name="not-found" v-if="page.isNotFound"><NotFound /></slot>
|
||
|
|
||
|
<VPPage v-else-if="frontmatter.layout === 'page'">
|
||
|
<template #page-top><slot name="page-top" /></template>
|
||
|
<template #page-bottom><slot name="page-bottom" /></template>
|
||
|
</VPPage>
|
||
|
|
||
|
<VPHome v-else-if="frontmatter.layout === 'home'">
|
||
|
<template #home-hero-before><slot name="home-hero-before" /></template>
|
||
|
<template #home-hero-info><slot name="home-hero-info" /></template>
|
||
|
<template #home-hero-image><slot name="home-hero-image" /></template>
|
||
|
<template #home-hero-after><slot name="home-hero-after" /></template>
|
||
|
<template #home-features-before><slot name="home-features-before" /></template>
|
||
|
<template #home-features-after><slot name="home-features-after" /></template>
|
||
|
</VPHome>
|
||
|
|
||
|
<component
|
||
|
v-else-if="frontmatter.layout && frontmatter.layout !== 'doc'"
|
||
|
:is="frontmatter.layout"
|
||
|
/>
|
||
|
|
||
|
<VPDoc v-else>
|
||
|
<template #doc-top><slot name="doc-top" /></template>
|
||
|
<template #doc-bottom><slot name="doc-bottom" /></template>
|
||
|
|
||
|
<template #doc-footer-before><slot name="doc-footer-before" /></template>
|
||
|
<template #doc-before><slot name="doc-before" /></template>
|
||
|
<template #doc-after><slot name="doc-after" /></template>
|
||
|
|
||
|
<template #aside-top><slot name="aside-top" /></template>
|
||
|
<template #aside-outline-before><slot name="aside-outline-before" /></template>
|
||
|
<template #aside-outline-after><slot name="aside-outline-after" /></template>
|
||
|
<template #aside-ads-before><slot name="aside-ads-before" /></template>
|
||
|
<template #aside-ads-after><slot name="aside-ads-after" /></template>
|
||
|
<template #aside-bottom><slot name="aside-bottom" /></template>
|
||
|
</VPDoc>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<style scoped>
|
||
|
.VPContent {
|
||
|
flex-grow: 1;
|
||
|
flex-shrink: 0;
|
||
|
margin: var(--vp-layout-top-height, 0px) auto 0;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.VPContent.is-home {
|
||
|
width: 100%;
|
||
|
max-width: 100%;
|
||
|
}
|
||
|
|
||
|
.VPContent.has-sidebar {
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
@media (min-width: 960px) {
|
||
|
.VPContent {
|
||
|
padding-top: var(--vp-nav-height);
|
||
|
}
|
||
|
|
||
|
.VPContent.has-sidebar {
|
||
|
margin: var(--vp-layout-top-height, 0px) 0 0;
|
||
|
padding-left: var(--vp-sidebar-width);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media (min-width: 1440px) {
|
||
|
.VPContent.has-sidebar {
|
||
|
padding-right: calc((100vw - var(--vp-layout-max-width)) / 2);
|
||
|
padding-left: calc((100vw - var(--vp-layout-max-width)) / 2 + var(--vp-sidebar-width));
|
||
|
}
|
||
|
}
|
||
|
</style>
|