265 lines
6.0 KiB
Vue
265 lines
6.0 KiB
Vue
<script lang="ts" setup>
|
|
import { useWindowScroll } from '@vueuse/core'
|
|
import { ref, watchPostEffect } from 'vue'
|
|
import { useData } from 'vitepress/dist/client/theme-default/composables/data'
|
|
import { useLocalNav } from 'vitepress/dist/client/theme-default/composables/local-nav'
|
|
import { useSidebar } from 'vitepress/dist/client/theme-default/composables/sidebar'
|
|
import VPNavBarAppearance from 'vitepress/dist/client/theme-default/components/VPNavBarAppearance.vue'
|
|
import VPNavBarExtra from 'vitepress/dist/client/theme-default/components/VPNavBarExtra.vue'
|
|
import VPNavBarHamburger from 'vitepress/dist/client/theme-default/components/VPNavBarHamburger.vue'
|
|
import VPNavBarMenu from 'vitepress/dist/client/theme-default/components/VPNavBarMenu.vue'
|
|
import VPNavBarSearch from 'vitepress/dist/client/theme-default/components/VPNavBarSearch.vue'
|
|
import VPNavBarSocialLinks from 'vitepress/dist/client/theme-default/components/VPNavBarSocialLinks.vue'
|
|
import CustomNavBarTitle from './CustomNavBarTitle.vue'
|
|
import VPNavBarTranslations from 'vitepress/dist/client/theme-default/components/VPNavBarTranslations.vue'
|
|
import CustomButton from './CustomButton.vue'
|
|
|
|
defineProps<{
|
|
isScreenOpen: boolean
|
|
}>()
|
|
|
|
defineEmits<{
|
|
(e: 'toggle-screen'): void
|
|
}>()
|
|
|
|
const { y } = useWindowScroll()
|
|
const { hasSidebar } = useSidebar()
|
|
const { hasLocalNav } = useLocalNav()
|
|
const { frontmatter } = useData()
|
|
|
|
const classes = ref<Record<string, boolean>>({})
|
|
const loginUrl = import.meta.env.VITE_LOGIN_URL
|
|
|
|
watchPostEffect(() => {
|
|
classes.value = {
|
|
'has-sidebar': hasSidebar.value,
|
|
'has-local-nav': hasLocalNav.value,
|
|
top: frontmatter.value.layout === 'home' && y.value === 0,
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div class="VPNavBar CustomNavbar" :class="classes">
|
|
<div class="wrapper">
|
|
<div class="container">
|
|
<div class="title">
|
|
<CustomNavBarTitle>
|
|
<template #nav-bar-title-before>
|
|
<slot name="nav-bar-title-before" />
|
|
</template>
|
|
<template #nav-bar-title-after>
|
|
<slot name="nav-bar-title-after" />
|
|
</template>
|
|
</CustomNavBarTitle>
|
|
</div>
|
|
|
|
<div class="content">
|
|
<div class="content-body">
|
|
<slot name="nav-bar-content-before" />
|
|
<VPNavBarMenu class="menu" />
|
|
<VPNavBarSearch class="search" />
|
|
<!-- <CustomButton text="Войти" size="small" :href="loginUrl" /> -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="divider">
|
|
<div class="divider-line" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.VPNavBar {
|
|
position: relative;
|
|
height: var(--vp-nav-height);
|
|
pointer-events: none;
|
|
white-space: nowrap;
|
|
transition: background-color 0.5s;
|
|
background-color: #ffffff;
|
|
|
|
.dark & {
|
|
background-color: #141414;
|
|
}
|
|
}
|
|
|
|
.VPNavBar.has-local-nav {
|
|
background-color: var(--vp-nav-bg-color);
|
|
}
|
|
|
|
@media (min-width: 960px) {
|
|
.VPNavBar.has-local-nav {
|
|
// background-color: transparent;
|
|
background-color: var(--vp-nav-bg-color);
|
|
}
|
|
|
|
.VPNavBar:not(.has-sidebar):not(.top) {
|
|
background-color: var(--vp-nav-bg-color);
|
|
}
|
|
}
|
|
|
|
.wrapper {
|
|
padding: 0 8px 0 24px;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.wrapper {
|
|
padding: 0 24px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 960px) {
|
|
.VPNavBar.has-sidebar .wrapper {
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin: 0 auto;
|
|
// max-width: calc(var(--vp-layout-max-width) - 64px);
|
|
height: var(--vp-nav-height);
|
|
pointer-events: none;
|
|
}
|
|
|
|
.container > .title,
|
|
.container > .content {
|
|
pointer-events: none;
|
|
}
|
|
|
|
.container :deep(*) {
|
|
pointer-events: auto;
|
|
}
|
|
|
|
@media (min-width: 960px) {
|
|
.VPNavBar.has-sidebar .container {
|
|
max-width: 100%;
|
|
}
|
|
}
|
|
|
|
.title {
|
|
flex-shrink: 0;
|
|
height: calc(var(--vp-nav-height) - 1px);
|
|
transition: background-color 0.5s;
|
|
}
|
|
|
|
@media (min-width: 960px) {
|
|
.VPNavBar.has-sidebar .title {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 2;
|
|
padding: 0 32px;
|
|
// width: var(--vp-sidebar-width);
|
|
height: var(--vp-nav-height);
|
|
background-color: transparent;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1440px) {
|
|
.VPNavBar.has-sidebar .title {
|
|
padding-left: 24px;
|
|
// width: calc((100% - (var(--vp-layout-max-width) - 64px)) / 2 + var(--vp-sidebar-width) - 32px);
|
|
}
|
|
}
|
|
|
|
.content {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
@media (min-width: 960px) {
|
|
.VPNavBar.has-sidebar .content {
|
|
position: relative;
|
|
z-index: 1;
|
|
padding-right: 32px;
|
|
padding-left: 0px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1440px) {
|
|
.VPNavBar.has-sidebar .content {
|
|
// padding-right: calc((100vw - var(--vp-layout-max-width)) / 2 + 32px);
|
|
// padding-left: calc((100vw - var(--vp-layout-max-width)) / 2 + var(--vp-sidebar-width));
|
|
}
|
|
}
|
|
|
|
.content-body {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
height: var(--vp-nav-height);
|
|
transition: background-color 0.5s;
|
|
}
|
|
|
|
@media (min-width: 960px) {
|
|
.VPNavBar:not(.top) .content-body {
|
|
position: relative;
|
|
background-color: var(--vp-nav-bg-color);
|
|
}
|
|
|
|
.VPNavBar:not(.has-sidebar):not(.top) .content-body {
|
|
background-color: transparent;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 767px) {
|
|
.content-body {
|
|
column-gap: 0.5rem;
|
|
}
|
|
}
|
|
|
|
.menu + .translations::before,
|
|
.menu + .appearance::before,
|
|
.menu + .social-links::before,
|
|
.translations + .appearance::before,
|
|
.appearance + .social-links::before {
|
|
margin-right: 8px;
|
|
margin-left: 8px;
|
|
width: 1px;
|
|
height: 24px;
|
|
background-color: var(--vp-c-divider);
|
|
content: "";
|
|
font-weight: 500;
|
|
font-size: 15px;
|
|
line-height: 20px;
|
|
letter-spacing: 0.2px;
|
|
}
|
|
|
|
.menu + .appearance::before,
|
|
.translations + .appearance::before {
|
|
margin-right: 16px;
|
|
}
|
|
|
|
.appearance + .social-links::before {
|
|
margin-left: 16px;
|
|
}
|
|
|
|
.social-links {
|
|
margin-right: -8px;
|
|
}
|
|
|
|
.divider {
|
|
width: 100%;
|
|
height: 1px;
|
|
}
|
|
|
|
.divider-line {
|
|
width: 100%;
|
|
height: 1px;
|
|
transition: background-color 0.5s;
|
|
background-color: rgba(25, 28, 52, 0.12);
|
|
|
|
.dark & {
|
|
background-color: rgba(255, 255, 255, 0.2);
|
|
}
|
|
}
|
|
|
|
.search {
|
|
justify-content: flex-end;
|
|
margin-right: 24px;
|
|
}
|
|
</style>
|