maw 0.31.0

A simple and efficient web framework for Rust.
Documentation
use std::path::Path;
#[cfg(debug_assertions)]
use std::sync::{Arc, Mutex};

use minijinja::Environment;

// I tried using minijinja's built-in `AutoReload`, but it makes it painful to work with
// so I implemented my own simple version here. When in debug mode, the templates are cleared
// from the environment before each render, forcing them to be reloaded from disk.
// this is obviously slower, but it's very convenient for development.

#[derive(Clone)]
pub struct Jinja(
    #[cfg(debug_assertions)] Arc<Mutex<Environment<'static>>>,
    #[cfg(not(debug_assertions))] Environment<'static>,
);

impl Default for Jinja {
    fn default() -> Self {
        let env = Environment::new();

        #[cfg(debug_assertions)]
        return Self(Arc::new(Mutex::new(env)));

        #[cfg(not(debug_assertions))]
        Self(env)
    }
}

impl Jinja {
    pub fn new(path: impl AsRef<Path>) -> Self {
        let mut env = Environment::new();
        env.set_loader(minijinja::path_loader(path));

        #[cfg(debug_assertions)]
        return Self(Arc::new(Mutex::new(env)));

        #[cfg(not(debug_assertions))]
        Self(env)
    }

    pub fn render(
        &self,
        name: &str,
        ctx: impl serde::Serialize,
    ) -> Result<String, minijinja::Error> {
        #[cfg(debug_assertions)]
        {
            let mut env = self.0.lock().unwrap();
            env.clear_templates();
            env.get_template(name)?.render(&ctx)
        }

        #[cfg(not(debug_assertions))]
        self.0.get_template(name)?.render(&ctx)
    }

    pub fn render_str(
        &self,
        source: &str,
        ctx: impl serde::Serialize,
    ) -> Result<String, minijinja::Error> {
        #[cfg(debug_assertions)]
        {
            let env = self.0.lock().unwrap();
            env.render_str(source, &ctx)
        }

        #[cfg(not(debug_assertions))]
        self.0.render_str(source, &ctx)
    }

    #[cfg(debug_assertions)]
    pub fn with(&mut self, f: impl FnOnce(&mut Environment<'static>)) {
        f(&mut self.0.lock().unwrap());
    }

    #[cfg(not(debug_assertions))]
    pub fn with(&mut self, f: impl FnOnce(&mut Environment<'static>)) {
        f(&mut self.0);
    }
}