#web-framework #web #http #framework

axum-flash

Web framework that focuses on ergonomics and modularity

10 releases (breaking)

0.8.0 Nov 28, 2023
0.7.0 May 23, 2023
0.6.0 Nov 25, 2022
0.4.0 Apr 1, 2022
0.1.1 Nov 21, 2021

#2278 in Web programming

Download history 44/week @ 2023-12-14 28/week @ 2023-12-21 27/week @ 2023-12-28 60/week @ 2024-01-04 58/week @ 2024-01-11 47/week @ 2024-01-18 25/week @ 2024-01-25 30/week @ 2024-02-01 79/week @ 2024-02-08 85/week @ 2024-02-15 185/week @ 2024-02-22 59/week @ 2024-02-29 63/week @ 2024-03-07 76/week @ 2024-03-14 118/week @ 2024-03-21 115/week @ 2024-03-28

380 downloads per month
Used in htmx-components

MIT license

17KB
313 lines

axum-flash

One-time notifications (aka flash messages) for axum.

Build status Crates.io Documentation

More information about this crate can be found in the crate documentation.


lib.rs:

One-time notifications (aka flash messages) for axum.

Example

use axum::{
    response::{IntoResponse, Redirect},
    extract::FromRef,
    routing::get,
    Router,
};
use axum_flash::{IncomingFlashes, Flash, Key};

#[derive(Clone)]
struct AppState {
    flash_config: axum_flash::Config,
}

let app_state = AppState {
    // The key should probably come from configuration
    flash_config: axum_flash::Config::new(Key::generate()),
};

// Our state type must implement this trait. That is how the config
// is passed to axum-flash in a type safe way.
impl FromRef<AppState> for axum_flash::Config {
    fn from_ref(state: &AppState) -> axum_flash::Config {
        state.flash_config.clone()
    }
}

let app = Router::new()
    .route("/", get(root))
    .route("/set-flash", get(set_flash))
    .with_state(app_state);

async fn root(flashes: IncomingFlashes) -> IncomingFlashes {
    for (level, text) in &flashes {
        // ...
    }

    // The flashes must be returned so the cookie is removed
    flashes
}

async fn set_flash(flash: Flash) -> (Flash, Redirect) {
    (
        // The flash must be returned so the cookie is set
        flash.debug("Hi from flash!"),
        Redirect::to("/"),
    )
}

Dependencies

~7MB
~130K SLoC