Skip to content

Commit 70da5f2

Browse files
authoredAug 5, 2022
fix(theme): hide doc footer if empty (#1126)
1 parent 8e190aa commit 70da5f2

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed
 

‎src/client/theme-default/components/VPDocFooter.vue

+9-3
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,21 @@ const { theme, page, frontmatter } = useData()
1313
const editLink = useEditLink()
1414
const control = usePrevNext()
1515
16+
const hasEditLink = computed(() => {
17+
return theme.value.editLink && frontmatter.value.editLink !== false
18+
})
1619
const hasLastUpdated = computed(() => {
1720
return page.value.lastUpdated && frontmatter.value.lastUpdated !== false
1821
})
22+
const showFooter = computed(() => {
23+
return hasEditLink.value || hasLastUpdated.value || control.value.prev || control.value.next
24+
})
1925
</script>
2026

2127
<template>
22-
<footer class="VPDocFooter">
23-
<div class="edit-info">
24-
<div v-if="theme.editLink && frontmatter.editLink !== false" class="edit-link">
28+
<footer v-if="showFooter" class="VPDocFooter">
29+
<div v-if="hasEditLink || hasLastUpdated" class="edit-info">
30+
<div v-if="hasEditLink" class="edit-link">
2531
<VPLink class="edit-link-button" :href="editLink.url" :no-icon="true">
2632
<VPIconEdit class="edit-link-icon" />
2733
{{ editLink.text }}

‎src/client/theme-default/support/sidebar.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ export function getSidebar(
2727
return []
2828
}
2929

30-
export function getFlatSideBarLinks(
31-
sidebar: DefaultTheme.SidebarGroup[]
32-
): DefaultTheme.SidebarItem[] {
33-
const links: DefaultTheme.SidebarItem[] = []
30+
export function getFlatSideBarLinks(sidebar: DefaultTheme.SidebarGroup[]) {
31+
const links: { text: string; link: string }[] = []
3432

3533
function recursivelyExtractLinks(items: DefaultTheme.SidebarItem[]) {
3634
for (const item of items) {
37-
item.link && links.push(item)
35+
if (item.link) {
36+
links.push({ ...item, link: item.link })
37+
}
3838
if ('items' in item) {
3939
recursivelyExtractLinks(item.items)
4040
}

0 commit comments

Comments
 (0)
Please sign in to comment.