mirror of
https://github.com/imezx/Warp.git
synced 2025-04-25 15:40:02 +00:00
100 lines
2.2 KiB
Vue
100 lines
2.2 KiB
Vue
|
<script setup lang="ts">
|
||
|
import { useScrollLock } from '@vueuse/core'
|
||
|
import { inBrowser } from 'vitepress'
|
||
|
import { ref } from 'vue'
|
||
|
import VPNavScreenAppearance from './VPNavScreenAppearance.vue'
|
||
|
import VPNavScreenMenu from './VPNavScreenMenu.vue'
|
||
|
import VPNavScreenSocialLinks from './VPNavScreenSocialLinks.vue'
|
||
|
import VPNavScreenTranslations from './VPNavScreenTranslations.vue'
|
||
|
|
||
|
defineProps<{
|
||
|
open: boolean
|
||
|
}>()
|
||
|
|
||
|
const screen = ref<HTMLElement | null>(null)
|
||
|
const isLocked = useScrollLock(inBrowser ? document.body : null)
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<transition
|
||
|
name="fade"
|
||
|
@enter="isLocked = true"
|
||
|
@after-leave="isLocked = false"
|
||
|
>
|
||
|
<div v-if="open" class="VPNavScreen" ref="screen" id="VPNavScreen">
|
||
|
<div class="container">
|
||
|
<slot name="nav-screen-content-before" />
|
||
|
<VPNavScreenMenu class="menu" />
|
||
|
<VPNavScreenTranslations class="translations" />
|
||
|
<VPNavScreenAppearance class="appearance" />
|
||
|
<VPNavScreenSocialLinks class="social-links" />
|
||
|
<slot name="nav-screen-content-after" />
|
||
|
</div>
|
||
|
</div>
|
||
|
</transition>
|
||
|
</template>
|
||
|
|
||
|
<style scoped>
|
||
|
.VPNavScreen {
|
||
|
position: fixed;
|
||
|
top: calc(var(--vp-nav-height) + var(--vp-layout-top-height, 0px) + 1px);
|
||
|
/*rtl:ignore*/
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
/*rtl:ignore*/
|
||
|
left: 0;
|
||
|
padding: 0 32px;
|
||
|
width: 100%;
|
||
|
background-color: var(--vp-nav-screen-bg-color);
|
||
|
overflow-y: auto;
|
||
|
transition: background-color 0.5s;
|
||
|
pointer-events: auto;
|
||
|
}
|
||
|
|
||
|
.VPNavScreen.fade-enter-active,
|
||
|
.VPNavScreen.fade-leave-active {
|
||
|
transition: opacity 0.25s;
|
||
|
}
|
||
|
|
||
|
.VPNavScreen.fade-enter-active .container,
|
||
|
.VPNavScreen.fade-leave-active .container {
|
||
|
transition: transform 0.25s ease;
|
||
|
}
|
||
|
|
||
|
.VPNavScreen.fade-enter-from,
|
||
|
.VPNavScreen.fade-leave-to {
|
||
|
opacity: 0;
|
||
|
}
|
||
|
|
||
|
.VPNavScreen.fade-enter-from .container,
|
||
|
.VPNavScreen.fade-leave-to .container {
|
||
|
transform: translateY(-8px);
|
||
|
}
|
||
|
|
||
|
@media (min-width: 768px) {
|
||
|
.VPNavScreen {
|
||
|
display: none;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
margin: 0 auto;
|
||
|
padding: 24px 0 96px;
|
||
|
max-width: 288px;
|
||
|
}
|
||
|
|
||
|
.menu + .translations,
|
||
|
.menu + .appearance,
|
||
|
.translations + .appearance {
|
||
|
margin-top: 24px;
|
||
|
}
|
||
|
|
||
|
.menu + .social-links {
|
||
|
margin-top: 16px;
|
||
|
}
|
||
|
|
||
|
.appearance + .social-links {
|
||
|
margin-top: 16px;
|
||
|
}
|
||
|
</style>
|