diff --git a/src/render.rs b/src/render.rs index fee897f28..4087dd45d 100644 --- a/src/render.rs +++ b/src/render.rs @@ -29,12 +29,30 @@ impl Message for IndexPage { type Result = Result; } +#[derive(Debug, Serialize)] +struct IndexThread { + id: i32, + title: String, + posted: DateTime, + author_name: String, +} + impl Handler for Renderer { type Result = Result; fn handle(&mut self, msg: IndexPage, _: &mut Self::Context) -> Self::Result { + let threads: Vec = msg.threads + .into_iter() + .map(|thread| IndexThread { + id: thread.id, + title: escape_html(&thread.title), + posted: thread.posted, + author_name: thread.author_name, + }) + .collect(); + let mut ctx = Context::new(); - ctx.add("threads", &msg.threads); + ctx.add("threads", &threads); Ok(self.tera.render("index.html", &ctx)?) } }