This is a crate which provides macros handlebars_resources_initialize!
and handlebars_response!
to statically include HBS (Handlebars) files from your Rust project and make them be the HTTP response sources quickly.
```rust
extern crate rocket;
use std::collections::HashMap;
use rocketincludehandlebars::{EtagIfNoneMatch, HandlebarsResponse};
handlebarsresourcesinitialize!( "index", "examples/views/index.hbs", "index2", "examples/views/index2.hbs" );
fn index() -> HandlebarsResponse { let mut map = HashMap::new();
map.insert("title", "Title");
map.insert("body", "Hello, world!");
handlebars_response!("index", &map)
}
fn index_2() -> HandlebarsResponse { let mut map = HashMap::new();
map.insert("title", "Title");
map.insert("body", "Hello, world!");
handlebars_response!("index2", &map)
}
fn indexstatic() -> HandlebarsResponse { handlebarsresponsestatic!( "index".tostring(), { let mut map = HashMap::new();
map.insert("title", "Title");
map.insert("body", "Hello, world!");
handlebars_response!("index", &map)
}
)
} ```
handlebars_resources_initialize!
is used for including HBS files into your executable binary file. You need to specify each file's ID and its path. For instance, the above example uses index to represent the file included-handlebars/index.hbs and index-2 to represent the file included-handlebars/index2.hbs. An ID cannot be repeating.handlebars_response!
is used for retrieving and rendering the file you input through the macro handlebars_resources_initialize!
as a HandlebarsResponse
instance with rendered HTML. When its respond_to
method is called, three HTTP headers, Content-Type, Content-Length and Etag, will be automatically added, and the rendered HTML can optionally be minified.handlebars_response_static!
is used for in-memory staticizing a HandlebarsResponse
instance by a given key.In order to reduce the compilation time, files are compiled into your executable binary file together, only when you are using the release profile.
See examples
.
https://crates.io/crates/rocket-include-handlebars
https://docs.rs/rocket-include-handlebars