clubmanager/src/lib/hx_request.rs
Zynh0722 bfb697e3b9 handle hx-request for home page
TODO: I want to handle fragments from rust, not the ructe compilation
2023-11-05 11:32:59 -08:00

20 lines
492 B
Rust

use std::convert::Infallible;
use axum::{async_trait, extract::FromRequestParts, http::request::Parts};
const HX_REQUEST: &str = "HX-Request";
#[derive(Debug, Copy, Clone)]
pub struct HxRequest(pub bool);
#[async_trait]
impl<S> FromRequestParts<S> for HxRequest
where
S: Send + Sync,
{
type Rejection = Infallible;
async fn from_request_parts(parts: &mut Parts, _state: &S) -> Result<Self, Infallible> {
Ok(HxRequest(parts.headers.get(HX_REQUEST).is_some()))
}
}