fix incremental router cache

This commit is contained in:
Evan Almloff 2023-07-08 12:22:54 -07:00
parent d94316f7dd
commit 73a45fb113
2 changed files with 11 additions and 4 deletions

View file

@ -12,9 +12,7 @@ where
use dioxus_router::prelude::RouterConfig;
#[cfg(feature = "ssr")]
let context: crate::prelude::DioxusServerContext = cx
.consume_context()
.expect("RouteWithCfg should be served by dioxus fullstack");
let context = crate::prelude::server_context();
let cfg = *cx.props;
render! {

View file

@ -42,7 +42,16 @@ where
if is_static {
match Rt::from_str(&full_path) {
Ok(route) => {
render_route(renderer, route, &mut tokio::io::sink(), |_| {}, wrapper).await?;
render_route(
renderer,
route,
&mut tokio::io::sink(),
|vdom| {
let _ = vdom.rebuild();
},
wrapper,
)
.await?;
}
Err(e) => {
log::info!("@ route: {}", full_path);