2023-03-30 15:34:13 +00:00
|
|
|
#[allow(unused)]
|
|
|
|
use dioxus_core::prelude::*;
|
2023-03-28 18:35:17 +00:00
|
|
|
|
2023-03-30 15:34:13 +00:00
|
|
|
mod adapters;
|
2023-03-30 20:58:03 +00:00
|
|
|
#[cfg(feature = "ssr")]
|
2023-03-30 16:03:07 +00:00
|
|
|
mod serve;
|
2023-03-30 15:34:13 +00:00
|
|
|
mod server_fn;
|
|
|
|
|
|
|
|
pub mod prelude {
|
|
|
|
#[cfg(feature = "axum")]
|
|
|
|
pub use crate::adapters::axum_adapter::*;
|
2023-03-31 00:42:46 +00:00
|
|
|
#[cfg(feature = "salvo")]
|
|
|
|
pub use crate::adapters::salvo_adapter::*;
|
2023-03-31 14:40:58 +00:00
|
|
|
#[cfg(feature = "warp")]
|
|
|
|
pub use crate::adapters::warp_adapter::*;
|
2023-03-30 20:58:03 +00:00
|
|
|
#[cfg(feature = "ssr")]
|
2023-03-30 16:03:07 +00:00
|
|
|
pub use crate::serve::ServeConfig;
|
2023-03-30 15:34:13 +00:00
|
|
|
pub use crate::server_fn::{DioxusServerContext, ServerFn};
|
|
|
|
pub use server_fn::{self, ServerFn as _, ServerFnError};
|
|
|
|
pub use server_macro::*;
|
2023-03-28 18:35:17 +00:00
|
|
|
}
|
|
|
|
|
2023-03-30 15:34:13 +00:00
|
|
|
#[cfg(feature = "ssr")]
|
2023-03-31 00:42:46 +00:00
|
|
|
fn dioxus_ssr_html<P: 'static + Clone>(cfg: &serve::ServeConfig<P>) -> String {
|
2023-03-30 16:03:07 +00:00
|
|
|
use prelude::ServeConfig;
|
|
|
|
|
|
|
|
let ServeConfig {
|
|
|
|
app,
|
|
|
|
application_name,
|
|
|
|
base_path,
|
|
|
|
head,
|
2023-03-31 00:42:46 +00:00
|
|
|
props,
|
2023-03-30 16:03:07 +00:00
|
|
|
..
|
|
|
|
} = cfg;
|
|
|
|
|
|
|
|
let application_name = application_name.unwrap_or("dioxus");
|
|
|
|
|
2023-03-31 00:42:46 +00:00
|
|
|
let mut vdom = VirtualDom::new_with_props(*app, props.clone());
|
2023-03-30 15:34:13 +00:00
|
|
|
let _ = vdom.rebuild();
|
|
|
|
let renderered = dioxus_ssr::pre_render(&vdom);
|
|
|
|
let base_path = base_path.unwrap_or(".");
|
2023-03-30 16:03:07 +00:00
|
|
|
let head = head.unwrap_or(
|
|
|
|
r#"<title>Dioxus Application</title>
|
|
|
|
<meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<meta charset="UTF-8" />"#,
|
|
|
|
);
|
2023-03-30 15:34:13 +00:00
|
|
|
format!(
|
|
|
|
r#"
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
{head}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="main">
|
|
|
|
{renderered}
|
|
|
|
</div>
|
|
|
|
<script type="module">
|
|
|
|
import init from "/{base_path}/assets/dioxus/{application_name}.js";
|
|
|
|
init("/{base_path}/assets/dioxus/{application_name}_bg.wasm").then(wasm => {{
|
|
|
|
if (wasm.__wbindgen_start == undefined) {{
|
|
|
|
wasm.main();
|
|
|
|
}}
|
|
|
|
}});
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>"#
|
|
|
|
)
|
2023-03-28 18:35:17 +00:00
|
|
|
}
|