Skip to content

Commit

Permalink
Add accordions to docs menu
Browse files Browse the repository at this point in the history
Signed-off-by: Rafael-gc <[email protected]>
  • Loading branch information
Rafael-gc committed Jul 3, 2024
1 parent bff8ec1 commit 38a1fa7
Showing 1 changed file with 74 additions and 54 deletions.
128 changes: 74 additions & 54 deletions site/layouts/partials/tree.html
Original file line number Diff line number Diff line change
@@ -1,61 +1,81 @@
<section class="tree-menu">
<input type="text" name="filter" data-tree-filter placeholder="Filter links" />
<ul class="tree-root">
{{- $here := .dir }}
{{- range (readDir $here) }}
{{ if in .Name "image" }}
{{ else }}
{{- $fullPath := (printf "%s%s" $here .Name) }}
{{- $fullUrl := replace $fullPath "/content" "" }}
{{- $stat := os.Stat $fullPath }}
{{ if $stat.IsDir }}
{{- template "treemenu" dict "path" $fullPath "url" $fullUrl "root" $.root "depth" 1 }}
{{ end }}
{{ end }}
{{- end -}}
</ul>
</section>
{{ define "treemenu" }}
{{ $nextDepth := add .depth 1 }}
{{- $activeLink := $.root.Permalink }}
{{- $className := "" }}
{{- $deprecated := true }}
{{- with $.root.Site.GetPage .url }}
{{- if not .Params.deprecated }}
{{- $deprecated = false }}
{{- $branchLink := .Permalink }}
{{- if in $activeLink $branchLink }}
{{- $className = "tree-branch-active" -}}
{{ end }}
{{- if eq $activeLink $branchLink }}
{{- $className = "tree-active tree-branch-active" -}}
{{- end -}}
<li data-depth="{{ $.depth }}" class="{{ $className }}">
<a href="{{ .Permalink }}">{{ .Title }}</a>
{{- end }}
{{- end }}
{{- if not $deprecated }}
<ul class="tree-branch">
{{- range (readDir .path) }}
{{- if in .Name "image" | or (eq .Name "_index.md") }}
{{- else }}
{{- $fullPath := (printf "%s/%s" $.path .Name) }}
<input type="text" name="filter" data-tree-filter placeholder="Filter links" />
<ul class="tree-root">
{{- $here := .dir }}
{{- range (readDir $here) }}
{{- if not (in .Name "image") }}
{{- $fullPath := (printf "%s%s" $here .Name) }}
{{- $fullUrl := replace $fullPath "/content" "" }}
{{- $fullUrl = replace $fullUrl ".md" "" }}
{{- $stat := os.Stat $fullPath }}
{{- if $stat.IsDir }}
{{- template "treemenu" dict "path" $fullPath "url" $fullUrl "root" $.root "depth" $nextDepth }}
{{- else }}
{{- with $.root.Site.GetPage $fullUrl }}
{{- $link := printf "%s" .Permalink }}
<li{{- if in $activeLink $link }} class="tree-active"{{ end }}>
<a href="{{ .Permalink }}">{{ .Title }}</a>
</li>
{{- end }}
{{- template "treemenu" dict "path" $fullPath "url" $fullUrl "root" $.root "depth" 1 }}
{{- end }}
{{- end }}
{{- end }}
</ul>
</li>
{{- end }}
{{ end }}
</ul>
</section>

{{ define "treemenu" }}
{{ $nextDepth := add .depth 1 }}
{{ $activeLink := $.root.Permalink }}
{{ $className := "" }}
{{ $deprecated := true }}
{{ with $.root.Site.GetPage .url }}
{{ if not .Params.deprecated }}
{{ $deprecated = false }}
{{ $branchLink := .Permalink }}
{{ if in $activeLink $branchLink }}
{{ $className = "tree-branch-active" }}
{{ end }}
{{ if eq $activeLink $branchLink }}
{{ $className = "tree-active tree-branch-active" }}
{{ end }}
<li data-depth="{{ $.depth }}" class="{{ $className }}">
<a href="{{ .Permalink }}" data-toggle="tree-branch">{{ .Title }}</a>
{{ if lt $.depth 3 }}
<ul class="tree-branch" style="display:none;">
{{ range (readDir $.path) }}
{{ if not (in .Name "image" | or (eq .Name "_index.md")) }}
{{ $fullPath := printf "%s/%s" $.path .Name }}
{{ $fullUrl := replace $fullPath "/content" "" }}
{{ $fullUrl = replace $fullUrl ".md" "" }}
{{ $stat := os.Stat $fullPath }}
{{ if $stat.IsDir }}
{{ template "treemenu" dict "path" $fullPath "url" $fullUrl "root" $.root "depth" $nextDepth }}
{{ else }}
{{ with $.root.Site.GetPage $fullUrl }}
{{ $link := printf "%s" .Permalink }}
<li{{ if in $activeLink $link }} class="tree-active"{{ end }}>
<a href="{{ .Permalink }}">{{ .Title }}</a>
</li>
{{ end }}
{{ end }}
{{ end }}
{{ end }}
</ul>
{{ end }}
</li>
{{ end }}
{{ end }}
{{ end }}
<script>
document.addEventListener('DOMContentLoaded', function() {
const toggles = document.querySelectorAll('[data-toggle="tree-branch"]');

toggles.forEach(function(toggle) {
toggle.addEventListener("mouseover", function(event) {
const branch = this.nextElementSibling;
if (branch && branch.classList.contains('tree-branch')) {
branch.style.display = "block";
}
});

toggle.parentElement.addEventListener("mouseleave", function(event) {
const branch = toggle.nextElementSibling;
if (branch && branch.classList.contains('tree-branch')) {
branch.style.display = "block";
}
});
});
});
</script>

0 comments on commit 38a1fa7

Please sign in to comment.