mirror of
https://github.com/RealOrangeOne/notes.git
synced 2024-11-18 15:49:04 +00:00
Use tags as navigation
It looks odd when there's multiple open, but that's ok
This commit is contained in:
parent
c988131d09
commit
5ec923590a
7 changed files with 60 additions and 34 deletions
|
@ -1,5 +1,4 @@
|
||||||
nav:
|
nav:
|
||||||
- README.md
|
- README.md
|
||||||
- tags.md
|
|
||||||
- colophon.md
|
- colophon.md
|
||||||
- ...
|
- ...
|
||||||
|
|
|
@ -4,7 +4,7 @@ hide: [toc]
|
||||||
|
|
||||||
# Colophon
|
# Colophon
|
||||||
|
|
||||||
This site is built with [`mkdocs`](https://www.mkdocs.org/) and [`mkdocs-material`](https://squidfunk.github.io/mkdocs-material/). Sure, it's designed for docs, but with a few modifications (like the [`tags`](https://squidfunk.github.io/mkdocs-material/plugins/tags/) plugin) it can be used for notes.
|
This site is built with [`mkdocs`](https://www.mkdocs.org/) and [`mkdocs-material`](https://squidfunk.github.io/mkdocs-material/). Sure, it's designed for docs, but with a few modifications (like the [`tags`](https://squidfunk.github.io/mkdocs-material/plugins/tags/) plugin) it can be used for notes. I made some fairly large modifications to how tags work, so the sidebar is structured by tag rather than by directory (directories are fairly arbitrary, and might get removed entirely in future).
|
||||||
|
|
||||||
It's been through a few iterations in the past, starting with [`gatsby-theme-code-notes`](https://github.com/mrmartineau/gatsby-theme-code-notes/), on to [`hugo-theme-notes`](https://github.com/RealOrangeOne/hugo-theme-notes/), and finally here.
|
It's been through a few iterations in the past, starting with [`gatsby-theme-code-notes`](https://github.com/mrmartineau/gatsby-theme-code-notes/), on to [`hugo-theme-notes`](https://github.com/RealOrangeOne/hugo-theme-notes/), and finally here.
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
---
|
---
|
||||||
template: all.html
|
|
||||||
hide: [toc]
|
hide: [toc]
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
hide: [toc]
|
|
||||||
---
|
|
||||||
|
|
||||||
# Tags
|
|
|
@ -1,4 +1,8 @@
|
||||||
import jinja2
|
import jinja2
|
||||||
|
from mkdocs.structure.nav import Navigation, Section
|
||||||
|
from collections import defaultdict
|
||||||
|
from mkdocs.utils import meta
|
||||||
|
from mkdocs.plugins import event_priority
|
||||||
|
|
||||||
@jinja2.pass_context
|
@jinja2.pass_context
|
||||||
def get_page(context, slug):
|
def get_page(context, slug):
|
||||||
|
@ -10,17 +14,18 @@ def get_page(context, slug):
|
||||||
raise ValueError("Unable to find page for '%s'", slug)
|
raise ValueError("Unable to find page for '%s'", slug)
|
||||||
|
|
||||||
|
|
||||||
|
def get_notes_from_nav(nav: Navigation):
|
||||||
|
notes_section = next(item for item in nav if item.is_section and item.title == "Notes")
|
||||||
|
|
||||||
|
notes = [item for item in nav.pages if item.is_page and notes_section in item.ancestors and item.file.src_uri != "notes/index.md"]
|
||||||
|
|
||||||
|
return notes_section, notes
|
||||||
|
|
||||||
|
|
||||||
@jinja2.pass_context
|
@jinja2.pass_context
|
||||||
def get_notes(context):
|
def get_notes(context):
|
||||||
notes = []
|
notes_section, notes = get_notes_from_nav(context["nav"])
|
||||||
for page in context["nav"].pages:
|
|
||||||
if not page.file.src_uri.startswith("notes/"):
|
|
||||||
continue
|
|
||||||
|
|
||||||
if page.file.src_uri == "notes/index.md":
|
|
||||||
continue
|
|
||||||
|
|
||||||
notes.append(page)
|
|
||||||
return sorted(notes, key=lambda p: p.meta["git_creation_date_localized_raw_iso_date"], reverse=True)
|
return sorted(notes, key=lambda p: p.meta["git_creation_date_localized_raw_iso_date"], reverse=True)
|
||||||
|
|
||||||
|
|
||||||
|
@ -28,3 +33,48 @@ def on_env(env, config, files):
|
||||||
env.tests["startswith"] = str.startswith
|
env.tests["startswith"] = str.startswith
|
||||||
env.globals["get_page"] = get_page
|
env.globals["get_page"] = get_page
|
||||||
env.globals["get_notes"] = get_notes
|
env.globals["get_notes"] = get_notes
|
||||||
|
|
||||||
|
|
||||||
|
class TagSection(Section):
|
||||||
|
"""
|
||||||
|
A modified section which is active if any of its children are active
|
||||||
|
(regardless of what mkdocs tells it).
|
||||||
|
"""
|
||||||
|
@property
|
||||||
|
def active(self):
|
||||||
|
return any(c.active for c in self.children)
|
||||||
|
|
||||||
|
@active.setter
|
||||||
|
def active(self, value: bool):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
@event_priority(100)
|
||||||
|
def on_nav(nav: Navigation, config, files):
|
||||||
|
"""
|
||||||
|
Structure the nav sections by
|
||||||
|
"""
|
||||||
|
notes_section, notes = get_notes_from_nav(nav)
|
||||||
|
|
||||||
|
notes_page = notes_section.children[0]
|
||||||
|
|
||||||
|
pages_to_tag = defaultdict(list)
|
||||||
|
|
||||||
|
orphan_pages = []
|
||||||
|
|
||||||
|
for note in notes:
|
||||||
|
with open(note.file.abs_src_path) as f:
|
||||||
|
_, metadata = meta.get_data(f.read())
|
||||||
|
|
||||||
|
if tags := metadata.get("tags"):
|
||||||
|
for tag in tags:
|
||||||
|
pages_to_tag[tag].append(note)
|
||||||
|
else:
|
||||||
|
orphan_pages.append(note)
|
||||||
|
|
||||||
|
tag_sections = [
|
||||||
|
TagSection(tag, pages)
|
||||||
|
for tag, pages in pages_to_tag.items()
|
||||||
|
]
|
||||||
|
|
||||||
|
notes_section.children = tag_sections + orphan_pages + [notes_page]
|
||||||
|
|
|
@ -95,12 +95,11 @@ plugins:
|
||||||
order_by: title
|
order_by: title
|
||||||
- tags:
|
- tags:
|
||||||
enabled: true
|
enabled: true
|
||||||
tags_file: tags.md
|
tags_file: notes/index.md
|
||||||
- git-revision-date-localized:
|
- git-revision-date-localized:
|
||||||
enable_creation_date: true
|
enable_creation_date: true
|
||||||
fallback_to_build_date: true
|
fallback_to_build_date: true
|
||||||
exclude:
|
exclude:
|
||||||
- tags.md
|
|
||||||
- README.md
|
- README.md
|
||||||
- notes/index.md
|
- notes/index.md
|
||||||
- minify_html
|
- minify_html
|
||||||
|
|
|
@ -1,16 +0,0 @@
|
||||||
{% extends "base.html" %}
|
|
||||||
|
|
||||||
{% block content %}
|
|
||||||
{{ super() }}
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
{% for page in get_notes() %}
|
|
||||||
<li>
|
|
||||||
<a href="{{ page.url }}">{{ page.title }}</a> - {{ page.meta.git_creation_date_localized_raw_iso_date }}
|
|
||||||
{% for tag in page.meta.tags %}
|
|
||||||
<span class="md-tag">{{ tag }}</span>
|
|
||||||
{% endfor %}
|
|
||||||
</li>
|
|
||||||
{% endfor %}
|
|
||||||
</ul>
|
|
||||||
{% endblock %}
|
|
Loading…
Reference in a new issue