8 releases (4 breaking)

0.5.3 Dec 11, 2023
0.5.2 Nov 30, 2023
0.4.0 Nov 21, 2023
0.3.0 Nov 21, 2023
0.1.0 Nov 20, 2023

#191 in Template engine

Download history 2838/week @ 2023-12-24 2677/week @ 2023-12-31 2567/week @ 2024-01-07 2961/week @ 2024-01-14 3664/week @ 2024-01-21 3489/week @ 2024-01-28 3527/week @ 2024-02-04 3012/week @ 2024-02-11 2931/week @ 2024-02-18 2889/week @ 2024-02-25 3541/week @ 2024-03-03 1538/week @ 2024-03-10 1824/week @ 2024-03-17 1885/week @ 2024-03-24 1858/week @ 2024-03-31 1390/week @ 2024-04-07

7,139 downloads per month
Used in 5 crates (2 directly)

Apache-2.0

18KB
263 lines

rrgen

A microframework for declarative code generation and injection.

Getting started

Templates use Tera as a templating language (similar to liquid), and use a special metadata/body separation with frontmatter.

The first part of the template instructs what the template should do, and which injections it should perform.

The second part is the actual target file that's being generated.

Example template controller.t:

---
to: tests/fixtures/realistic/generated/controllers/{{name | snake_case }}.rs
injections:
- into: tests/fixtures/realistic/generated/controllers/mod.rs
  append: true
  content: "pub mod {{ name | snake_case }};"
- into: tests/fixtures/realistic/generated/app.rs
  after: "AppRoutes::"
  content: "            .add_route(controllers::{{ name | snake_case }}::routes())"
---
#![allow(clippy::unused_async)]
use axum::{extract::State, routing::get};
use rustyrails::{
    app::AppContext,
    controller::{format, Routes},
    Result,
};

pub async fn echo(req_body: String) -> String {
    req_body
}

pub async fn hello(State(ctx): State<AppContext>) -> Result<String> {
    // do something with context (database, etc)
    format::text("hello")
}

pub fn routes() -> Routes {
    Routes::new()
        .prefix("{{ name | snake_case }}")
        .add("/", get(hello))
        .add("/echo", get(echo))
}

Rendering a template will create one or more files, potentially inject into files, and is done like so:

use std::fs;
use rrgen::Rgen;
use serde_json::json;

let rrgen = RRgen::default();
let vars = json!({"name": "post"});

rrgen.generate(
    &fs::read_to_string("tests/fixtures/test1/template.t").unwrap(),
    &vars,
)
.unwrap();

vars will be variables that are exposed both for the frontmatter part and the body part.

Dependencies

~12MB
~214K SLoC