add new page parameter GeekdocCollapseSection

master
Robert Kaussow 2020-11-16 22:47:50 +01:00
parent 8a297918e8
commit 5df0ba4b35
No known key found for this signature in database
GPG Key ID: 65362AE74AF98B61
12 changed files with 101 additions and 5 deletions

View File

@ -0,0 +1,5 @@
---
geekdocCollapseSection: true
---
Demo foldable menu entries

View File

@ -0,0 +1,7 @@
Level 1
<!-- spellchecker-disable -->
{{< toc-tree >}}
<!-- spellchecker-enable -->

View File

@ -0,0 +1,5 @@
---
title: Level 1.1
---
Level 1.1

View File

@ -0,0 +1,5 @@
---
title: Level 1.2
---
Level 1.2

View File

@ -0,0 +1,5 @@
---
geekdocCollapseSection: true
---
Level-2

View File

@ -0,0 +1,5 @@
---
title: Level 2.1
---
Level 2.1

View File

@ -0,0 +1,5 @@
---
title: Level 2.2
---
Level 2.2

View File

@ -0,0 +1,3 @@
---
weight: -10
---

View File

@ -1,4 +1,3 @@
---
title: Usage
weight: -10
weight: -20
---

View File

@ -207,6 +207,9 @@ geekdocHidden = true
# NOTE: Only applies when 'geekdocHidden = true'.
geekdocHiddenTocTree = true
# Set to true to make a section foldable in side menu (file-tree menu only)
geekdocCollapseSection = true
# Add an anchor link to headlines
geekdocAnchor = true
```
@ -251,6 +254,9 @@ geekdocHidden: true
# NOTE: Only applies when 'geekdocHidden: true'.
geekdocHiddenTocTree: true
# Set to true to make a section foldable in side menu (file-tree menu only)
geekdocCollapseSection: true
# Add an anchor link to headlines
geekdocAnchor: true
```

View File

@ -9,7 +9,18 @@
{{ range .sect.GroupBy "Weight" }}
{{ range .ByTitle }}
{{ if not .Params.GeekdocHidden }}
{{ $numberOfPages := (add (len .Pages) (len .Sections)) }}
{{ $isParent := and (ne $numberOfPages 0) (not .Params.GeekdocFlatSection) }}
{{ $isCurrent := eq $current . }}
{{ $isAncestor := .IsAncestor $current }}
{{ $id := substr (sha1 .Permalink) 0 8 }}
<li>
{{ if and $isParent .Params.GeekdocCollapseSection }}
<input type="checkbox" id="{{ printf "navtree-%s" $id }}" class="gdoc-nav__toggle" {{ if or $isCurrent $isAncestor }}checked{{ end }}>
<label for="{{ printf "navtree-%s" $id }}" class="flex justify-between">
{{ end }}
{{ if or .Content .Params.GeekdocFlatSection }}
<span class="flex">
<a href="{{ .RelPermalink }}" class="gdoc-nav__entry {{ if eq $current . }}is-active{{ end }}">
@ -19,9 +30,13 @@
{{ else }}
<span class="flex">{{ partial "title" . }}</span>
{{ end }}
{{ if and $isParent .Params.GeekdocCollapseSection }}
<svg class="icon keyborad_arrow_left"><use xlink:href="#keyborad_arrow_left"></use></svg>
<svg class="icon keyborad_arrow_down hidden"><use xlink:href="#keyborad_arrow_down"></use></svg>
</label>
{{ end }}
{{ $numberOfPages := (add (len .Pages) (len .Sections)) }}
{{ if and (ne $numberOfPages 0) (not .Params.GeekdocFlatSection) }}
{{ if $isParent }}
{{ template "tree-nav" dict "sect" .Pages "current" $current}}
{{ end }}
</li>

View File

@ -155,6 +155,7 @@ img {
margin: 0;
padding: 0;
list-style: none;
user-select: none;
ul {
padding-left: $padding-16;
@ -169,6 +170,39 @@ img {
}
}
&__toggle {
display: none;
& ~ label {
cursor: pointer;
.icon {
font-size: 0.7rem;
}
}
&:not(:checked) {
& ~ ul,
& ~ label .icon.keyborad_arrow_down {
display: none;
}
& ~ label .icon.keyborad_arrow_left {
display: block;
}
}
&:checked {
& ~ ul,
& ~ label .icon.keyborad_arrow_down {
display: block;
}
& ~ label .icon.keyborad_arrow_left {
display: none;
}
}
}
&__entry {
flex: 1;
color: $body-font-color;
@ -185,7 +219,9 @@ img {
}
&--main > ul > li > span,
&--main > ul > li > span > a {
&--main > ul > li > span > a,
&--main > ul > li > label,
&--main > ul > li > label > a {
font-weight: bold;
}