use v6.e.PREVIEW; use HTML::Functional; use Render::Util; use Render::Head; use Render::Post; use Render::Foot; use DB::BlogMeta; use DB::Post; unit class Config; method generate-post(Int:D $id, Post:D $post, $db) { my $meta = $db.meta; my $content = $post.render-html; my $cactus-script = qq「 document.addEventListener('DOMContentLoaded', () => \{ initComments(\{ node: document.getElementById("comment-section"), defaultHomeserverUrl: "https://matrix.cactus.chat", serverName: "cactus.chat", siteName: "stranger.systems", commentSectionId: "post-$id" \})\})」; my $head = head [ # Generate the universal header components generate-head($meta, $post.title, $post.description); # Open graph tags for embedding meta :property, :content(^$post.title); meta :property, :content(post-link-abs $db.meta, $id, $post); meta :property, :content($db.meta.title); optl $post.description ~~ Str:D, -> {meta :property, :content(^ $post.description)}; meta :property, :content
; meta :property, :content($post.posted-at); $post.tags.map(-> $tag { meta :property, :content($tag) }); # Cactus comments support link :rel, :href, :type; script :src; # Only actually load the script if the post isn't hidden optl !$post.hidden, -> {script $cactus-script}; ]; my $body = body [ site-header $meta; article :class, [ # Only generate the post header if the post isn't special optl !$post.special, -> {post-header $id, $post, $db}; # If the post is special, wrap it in a special div do if $post.special { div :class, [ div :class, [ $content; ]; ]; } else { div :class, [ $content; ]; } ]; # Only actually have the comment section if the post isn't hidden optl !$post.hidden, -> {div :id, :class}; generate-footer; ]; my $html = html :lang, [ $head, $body ]; show-html $html } method generate-index($db) { my @most-recent = $db.sorted-posts .head(10) .grep(!*.value.hidden) .map(-> $pair { generate-blurb $pair.key, $db }); my $head = head [generate-head($db.meta);]; my $body = body [ site-header $db.meta; div :class, [ h1 "Recent Posts" ], @most-recent; generate-footer; ]; my $html = html :lang, [ $head, $body ]; show-html $html } method generate-archive($db) { my @most-recent = $db.sorted-posts .grep(!*.value.hidden) .map(-> $pair { generate-blurb $pair.key, $db }); my $head = head [generate-head($db.meta);]; my $body = body [ site-header $db.meta; div :class, [ h1 "All Posts" ], @most-recent; generate-footer; ]; my $html = html :lang, [ $head, $body ]; show-html $html } method generate-tag-blurb($db, $tag, $limit?) { sub post-to-link($id, $post) { my $desc = $post.description; my $link = post-link $id, $post; div :class, [ div :class, [ a :href($link), span [ h3 $post.title; ]; post-info $id, $post, $db; if $desc ~~ Str:D { div :class, [ p $post.description; ]; } else { [] } ]; ] } my @posts = $db.sorted-posts.grep(-> $a { $tag (elem) $a.value.tags }); if $limit { @posts.=head($limit); } if @posts { div :class, [ span :class, [ a :href("/tags/$tag.html"), [ icon 'hash'; $tag; ]; ]; div :class, @posts.map(-> $a {post-to-link $a.key, $a.value}); ] } else { [] } } method generate-tags-page($db, @tags) { my $head = head [generate-head($db.meta);]; my $body = body [ site-header $db.meta; div :class, [ h1 "Tags"; ], @tags.map(-> $tag {self.generate-tag-blurb($db, $tag, 4)}); generate-footer; ]; my $html = html :lang, [ $head, $body ]; show-html $html } method generate-tag-page($db, $tag) { my $head = head [generate-head($db.meta);]; my $body = body [ site-header $db.meta; self.generate-tag-blurb($db, $tag, 4); generate-footer; ]; my $html = html :lang, [ $head, $body ]; show-html $html }