yew/packages/yew-router/src/macro_helpers.rs
2021-12-26 21:38:05 +02:00

29 lines
953 B
Rust

use crate::utils::strip_slash_suffix;
use crate::Routable;
// re-export Router because the macro needs to access it
pub type Router = route_recognizer::Router<String>;
/// Build a `route_recognizer::Router` from a `Routable` type.
pub fn build_router<R: Routable>() -> Router {
let mut router = Router::new();
R::routes().iter().for_each(|path| {
let stripped_route = strip_slash_suffix(path);
router.add(stripped_route, path.to_string());
});
router
}
/// Use a `route_recognizer::Router` to build the route of a `Routable`
pub fn recognize_with_router<R: Routable>(router: &Router, pathname: &str) -> Option<R> {
let pathname = strip_slash_suffix(pathname);
let matched = router.recognize(pathname);
match matched {
Ok(matched) => R::from_path(matched.handler(), &matched.params().into_iter().collect())
.or_else(R::not_found_route),
Err(_) => R::not_found_route(),
}
}