Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix template examples #133

Merged
merged 3 commits into from
Feb 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 6 additions & 10 deletions examples/templates/askama/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use std::net::SocketAddr;

use askama::Template;
use tokio::net::TcpListener;
use viz::{serve, BytesMut, Error, Request, Response, ResponseExt, Result, Router};
use viz::{serve, Error, Request, Response, ResponseExt, Result, Router};

#[derive(Template)]
#[template(path = "hello.html")]
Expand All @@ -13,15 +13,11 @@ struct HelloTemplate<'a> {
}

async fn index(_: Request) -> Result<Response> {
let mut buf = BytesMut::with_capacity(512);
buf.extend(
HelloTemplate { name: "world" }
.render()
.map_err(Error::boxed)?
.as_bytes(),
);

Ok(Response::html(buf.freeze()))
let body = HelloTemplate { name: "world" }
.render()
.map_err(Error::boxed)?;

Ok(Response::html(body))
}

#[tokio::main]
Expand Down
1 change: 0 additions & 1 deletion examples/templates/markup/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,3 @@ viz.workspace = true
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }

markup = "0.15"
v_htmlescape = "0.15"
13 changes: 6 additions & 7 deletions examples/templates/markup/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use std::net::SocketAddr;
use tokio::net::TcpListener;
use viz::{serve, BytesMut, Request, Response, ResponseExt, Result, Router};
use viz::{serve, Request, Response, ResponseExt, Result, Router};

pub struct Todo<'a> {
id: u64,
Expand All @@ -22,10 +22,9 @@ async fn index(_: Request) -> Result<Response> {
content: "Learn English",
},
];
let mut buf = BytesMut::with_capacity(512);
buf.extend(TodosTemplate { items }.to_string().as_bytes());
let body = TodosTemplate { items }.to_string();

Ok(Response::html(buf.freeze()))
Ok(Response::html(body))
}

#[tokio::main]
Expand All @@ -45,7 +44,7 @@ async fn main() -> Result<()> {

markup::define! {
TodosTemplate<'a>(items: Vec<Todo<'a>>) {
{markup::doctype()}
@markup::doctype()
html {
head {
title { "Todos" }
Expand All @@ -55,8 +54,8 @@ markup::define! {
tr { th { "ID" } th { "Content" } }
@for item in items {
tr {
td { {item.id} }
td { {markup::raw(v_htmlescape::escape(item.content).to_string())} }
td { @item.id }
td { @item.content }
}
}
}
Expand Down
43 changes: 20 additions & 23 deletions examples/templates/minijinja/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use minijinja::{context, path_loader, Environment};
use once_cell::sync::Lazy;
use serde::Serialize;
use tokio::net::TcpListener;
use viz::{serve, BytesMut, Error, Request, Response, ResponseExt, Result, Router};
use viz::{serve, Error, Request, Response, ResponseExt, Result, Router};

static TPLS: Lazy<Environment> = Lazy::new(|| {
let dir = env::var("CARGO_MANIFEST_DIR").map(PathBuf::from).unwrap();
Expand All @@ -23,28 +23,25 @@ struct User<'a> {
}

async fn index(_: Request) -> Result<Response> {
let mut buf = BytesMut::with_capacity(512);
buf.extend(
TPLS.get_template("index.html")
.map_err(Error::boxed)?
.render(context! {
title => "Viz.rs",
users => &vec![
User {
url: "https://github.com/rust-lang",
username: "rust-lang",
},
User {
url: "https://github.com/viz-rs",
username: "viz-rs",
},
],
})
.map_err(Error::boxed)?
.as_bytes(),
);

Ok(Response::html(buf.freeze()))
let body = TPLS
.get_template("index.html")
.map_err(Error::boxed)?
.render(context! {
title => "Viz.rs",
users => &vec![
User {
url: "https://github.com/rust-lang",
username: "rust-lang",
},
User {
url: "https://github.com/viz-rs",
username: "viz-rs",
},
],
})
.map_err(Error::boxed)?;

Ok(Response::html(body))
}

#[tokio::main]
Expand Down
2 changes: 1 addition & 1 deletion examples/templates/minijinja/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{% block body %}
<ul>
{% for user in users %}
<li><a href="{{ user.url | safe }}">{{ user.username }}</a></li>
<li><a href="{{ user.url }}">{{ user.username }}</a></li>
{% endfor %}
</ul>
{% endblock %}
11 changes: 3 additions & 8 deletions examples/templates/tera/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use once_cell::sync::Lazy;
use serde::Serialize;
use tera::{Context, Tera};
use tokio::net::TcpListener;
use viz::{serve, BytesMut, Error, Request, Response, ResponseExt, Result, Router};
use viz::{serve, Error, Request, Response, ResponseExt, Result, Router};

static TPLS: Lazy<Tera> =
Lazy::new(|| Tera::new("examples/templates/tera/templates/**/*").unwrap());
Expand All @@ -33,14 +33,9 @@ async fn index(_: Request) -> Result<Response> {
},
],
);
let mut buf = BytesMut::with_capacity(512);
buf.extend(
TPLS.render("index.html", &ctx)
.map_err(Error::boxed)?
.as_bytes(),
);
let body = TPLS.render("index.html", &ctx).map_err(Error::boxed)?;

Ok(Response::html(buf.freeze()))
Ok(Response::html(body))
}

#[tokio::main]
Expand Down
2 changes: 1 addition & 1 deletion examples/templates/tera/templates/index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<title>{% block title %}{% endblock title %}</title>
<ul>
{% for user in users -%}
<li><a href="{{ user.url | safe }}">{{ user.username }}</a></li>
<li><a href="{{ user.url }}">{{ user.username }}</a></li>
{%- endfor %}
</ul>
Loading