mirror of https://github.com/vuejs/vitepress
close #640 Co-authored-by: Kia King Ishii <kia.king.08@gmail.com>pull/665/head
parent
7d89b61b92
commit
e32936b6ae
@ -1,38 +1,109 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { useData } from 'vitepress'
|
import { ref, onMounted } from 'vue'
|
||||||
import { DefaultTheme } from '../config'
|
import { DefaultTheme } from '../config'
|
||||||
|
import VPIconPlusSquare from './icons/VPIconPlusSquare.vue'
|
||||||
|
import VPIconMinusSquare from './icons/VPIconMinusSquare.vue'
|
||||||
import VPSidebarLink from './VPSidebarLink.vue'
|
import VPSidebarLink from './VPSidebarLink.vue'
|
||||||
|
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
text: string
|
text: string
|
||||||
items: DefaultTheme.SidebarItem[]
|
items: DefaultTheme.SidebarItem[]
|
||||||
|
collapsible?: boolean
|
||||||
|
collapsed?: boolean
|
||||||
}>()
|
}>()
|
||||||
|
|
||||||
const { page } = useData()
|
const collapsed = ref(!!props.collapsed)
|
||||||
|
|
||||||
|
function toggle() {
|
||||||
|
collapsed.value = !collapsed.value
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<section class="VPSidebarGroup">
|
<section class="VPSidebarGroup" :class="{ collapsible, collapsed }">
|
||||||
<div class="title">
|
<div class="title" role="button" @click="toggle">
|
||||||
<h2 class="title-text">{{ text }}</h2>
|
<h2 class="title-text">{{ text }}</h2>
|
||||||
|
<div class="action">
|
||||||
|
<VPIconMinusSquare class="icon minus" />
|
||||||
|
<VPIconPlusSquare class="icon plus" />
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<template v-for="item in items" :key="item.link">
|
<div class="items">
|
||||||
<VPSidebarLink :item="item" />
|
<template v-for="item in items" :key="item.link">
|
||||||
</template>
|
<VPSidebarLink :item="item" />
|
||||||
|
</template>
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.title {
|
.title {
|
||||||
padding: 6px 0;
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: flex-start;
|
||||||
|
z-index: 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.VPSidebarGroup.collapsible .title {
|
||||||
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.title-text {
|
.title-text {
|
||||||
|
padding-top: 6px;
|
||||||
|
padding-bottom: 6px;
|
||||||
line-height: 20px;
|
line-height: 20px;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
color: var(--vp-c-text-1);
|
color: var(--vp-c-text-1);
|
||||||
transition: color 0.5s;
|
}
|
||||||
|
|
||||||
|
.action {
|
||||||
|
display: none;
|
||||||
|
position: relative;
|
||||||
|
margin-right: -8px;
|
||||||
|
border-radius: 4px;
|
||||||
|
width: 32px;
|
||||||
|
height: 32px;
|
||||||
|
color: var(--vp-c-text-3);
|
||||||
|
transition: color 0.25s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.VPSidebarGroup.collapsible .action {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title:hover .action {
|
||||||
|
color: var(--vp-c-text-2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon {
|
||||||
|
position: absolute;
|
||||||
|
top: 8px;
|
||||||
|
left: 8px;
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
fill: currentColor;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon.minus { opacity: 1; }
|
||||||
|
.icon.plus { opacity: 0; }
|
||||||
|
|
||||||
|
.VPSidebarGroup.collapsed .icon.minus { opacity: 0; }
|
||||||
|
.VPSidebarGroup.collapsed .icon.plus { opacity: 1; }
|
||||||
|
|
||||||
|
.items {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.VPSidebarGroup.collapsed .items {
|
||||||
|
margin-bottom: -22px;
|
||||||
|
max-height: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 960px) {
|
||||||
|
.VPSidebarGroup.collapsed .items {
|
||||||
|
margin-bottom: -14px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -0,0 +1,5 @@
|
|||||||
|
<template>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
||||||
|
<path d="M22,13H2a1,1,0,0,1,0-2H22a1,1,0,0,1,0,2Z" />
|
||||||
|
</svg>
|
||||||
|
</template>
|
@ -0,0 +1,6 @@
|
|||||||
|
<template>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24">
|
||||||
|
<path d="M19,2H5C3.3,2,2,3.3,2,5v14c0,1.7,1.3,3,3,3h14c1.7,0,3-1.3,3-3V5C22,3.3,20.7,2,19,2zM20,19c0,0.6-0.4,1-1,1H5c-0.6,0-1-0.4-1-1V5c0-0.6,0.4-1,1-1h14c0.6,0,1,0.4,1,1V19z" />
|
||||||
|
<path d="M16,11H8c-0.6,0-1,0.4-1,1s0.4,1,1,1h8c0.6,0,1-0.4,1-1S16.6,11,16,11z" />
|
||||||
|
</svg>
|
||||||
|
</template>
|
@ -0,0 +1,6 @@
|
|||||||
|
<template>
|
||||||
|
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
||||||
|
<path d="M19,2H5C3.3,2,2,3.3,2,5v14c0,1.7,1.3,3,3,3h14c1.7,0,3-1.3,3-3V5C22,3.3,20.7,2,19,2z M20,19c0,0.6-0.4,1-1,1H5c-0.6,0-1-0.4-1-1V5c0-0.6,0.4-1,1-1h14c0.6,0,1,0.4,1,1V19z" />
|
||||||
|
<path d="M16,11h-3V8c0-0.6-0.4-1-1-1s-1,0.4-1,1v3H8c-0.6,0-1,0.4-1,1s0.4,1,1,1h3v3c0,0.6,0.4,1,1,1s1-0.4,1-1v-3h3c0.6,0,1-0.4,1-1S16.6,11,16,11z" />
|
||||||
|
</svg>
|
||||||
|
</template>
|
Loading…
Reference in new issue