website/src/html/post.rs

113 lines
2.9 KiB
Rust
Raw Normal View History

2024-07-22 23:08:11 +02:00
use camino::{Utf8Path, Utf8PathBuf};
2024-07-03 23:34:31 +02:00
use chrono::{DateTime, Utc};
2024-07-22 23:08:11 +02:00
use hauchiwa::{Bibliography, Content, Link, LinkDate, Linkable, Outline, Sack};
2024-07-03 23:34:31 +02:00
use hayagriva::Library;
2024-07-22 23:08:11 +02:00
use hypertext::{html_elements, maud_move, GlobalAttributes, Raw, Renderable};
2024-07-03 23:34:31 +02:00
use serde::Deserialize;
2024-04-28 00:26:19 +02:00
2024-07-03 23:34:31 +02:00
/// Represents a simple post.
#[derive(Deserialize, Debug, Clone)]
pub(crate) struct Post {
2024-09-08 15:38:21 +02:00
pub(crate) title: String,
#[serde(with = "super::isodate")]
pub(crate) date: DateTime<Utc>,
pub(crate) desc: Option<String>,
2024-07-03 23:34:31 +02:00
}
impl Content for Post {
2024-09-08 15:38:21 +02:00
fn parse_content(
content: &str,
sack: &Sack,
path: &Utf8Path,
library: Option<&Library>,
) -> (String, Outline, Bibliography) {
crate::text::md::parse(content, sack, path, library)
}
2024-07-03 23:34:31 +02:00
2024-09-08 15:38:21 +02:00
fn as_html(
&self,
parsed: &str,
sack: &Sack,
outline: Outline,
bibliography: Bibliography,
) -> String {
post(self, parsed, sack, outline, bibliography)
.render()
.into()
}
2024-07-03 23:34:31 +02:00
2024-09-08 15:38:21 +02:00
fn as_link(&self, path: Utf8PathBuf) -> Option<Linkable> {
Some(Linkable::Date(LinkDate {
link: Link {
path,
name: self.title.to_owned(),
desc: self.desc.to_owned(),
},
date: self.date.to_owned(),
}))
}
2024-07-03 23:34:31 +02:00
}
2024-04-13 15:26:52 +02:00
2024-07-05 13:59:07 +02:00
pub fn post<'s, 'p, 'html>(
2024-09-08 15:38:21 +02:00
metadata: &'p Post,
parsed: &'p str,
sack: &'s Sack,
outline: Outline,
bibliography: Bibliography,
2024-05-02 15:26:08 +02:00
) -> impl Renderable + 'html
2024-07-05 13:59:07 +02:00
where
2024-09-08 15:38:21 +02:00
's: 'html,
'p: 'html,
2024-04-13 15:26:52 +02:00
{
2024-08-25 12:13:07 +02:00
let main = maud_move!(
main {
(article(&metadata.title, parsed, sack, outline, bibliography))
}
);
2024-09-08 15:38:21 +02:00
crate::html::page(sack, main, metadata.title.clone())
2024-08-25 12:13:07 +02:00
}
pub fn article<'p, 's, 'html>(
2024-09-08 15:38:21 +02:00
title: &'p str,
parsed: &'p str,
_: &'s Sack,
outline: Outline,
bibliography: Bibliography,
2024-08-25 12:13:07 +02:00
) -> impl Renderable + 'html
where
2024-09-08 15:38:21 +02:00
's: 'html,
'p: 'html,
2024-08-25 12:13:07 +02:00
{
2024-09-08 15:38:21 +02:00
maud_move!(
div .wiki-main {
2024-04-13 15:26:52 +02:00
2024-09-08 15:38:21 +02:00
// Slide in/out for mobile
input #wiki-aside-shown type="checkbox" hidden;
2024-04-13 15:26:52 +02:00
2024-09-08 15:38:21 +02:00
aside .wiki-aside {
// Slide button
label .wiki-aside__slider for="wiki-aside-shown" {
img .wiki-icon src="/static/svg/double-arrow.svg" width="24" height="24";
}
(crate::html::misc::show_outline(outline))
}
2024-04-13 15:26:52 +02:00
2024-09-08 15:38:21 +02:00
article .wiki-article /*class:list={classlist)*/ {
header class="markdown" {
h1 #top { (title) }
}
section .wiki-article__markdown.markdown {
(Raw(parsed))
}
2024-04-28 00:26:19 +02:00
2024-09-08 15:38:21 +02:00
@if let Some(bib) = bibliography.0 {
(crate::html::misc::show_bibliography(bib))
}
script type="module" {(Raw(r#"import "lambda";"#))}
}
}
)
2024-04-13 15:26:52 +02:00
}