{ config, options, lib, pkgs, ... }:
let
inherit (lib)
mkOption
types
;
in
{
config.templates.html = {
dom = document:
eval = lib.evalModules {
class = "DOM";
modules = [ document (import ./dom.nix) ];
};
__toString = _: toString eval.config;
value = eval.config;
markdown = { name, body }:
commonmark = pkgs.runCommand "${name}.html"
buildInputs = [ pkgs.cmark ];
} ''
cmark ${builtins.toFile "${name}.md" body} > $out
'';
builtins.readFile commonmark;
nav = { menu, page }:
render-item = item:
if item ? menu then ''
<li><span>${item.menu.label}</span>
${lib.indent " " (item.menu.outputs.html page)}
</li>
''
else if item ? page then ''<li><a href="${page.link item.page}">${item.page.title}</a></li>''
else ''<li><a href="${item.link.url}">${item.link.label}</a></li>''
<nav>
<ul>
${with lib; indent " " (join "\n" (map render-item menu.items))}
</ul>
</nav>
config.templates.files = fs: with lib;
foldl'
# TODO: create static redirects from `tail <collection>.locations`
(acc: elem: acc // (mapAttrs' (type: value: {
name = head elem.locations + optionalString (type != "") ".${type}";
value = if isStorePath value then value else
builtins.toFile
(elem.name + optionalString (type != "") ".${type}")
(toString value);
}))
elem.outputs)
{ }
fs;
}