|
@@ -10,7 +10,7 @@
|
|
pub struct Config {
|
|
pub struct Config {
|
|
#[cfg(feature = "hydrate")]
|
|
#[cfg(feature = "hydrate")]
|
|
pub(crate) hydrate: bool,
|
|
pub(crate) hydrate: bool,
|
|
- pub(crate) rootname: String,
|
|
|
|
|
|
+ pub(crate) root: ConfigRoot,
|
|
pub(crate) cached_strings: Vec<String>,
|
|
pub(crate) cached_strings: Vec<String>,
|
|
pub(crate) default_panic_hook: bool,
|
|
pub(crate) default_panic_hook: bool,
|
|
}
|
|
}
|
|
@@ -20,7 +20,7 @@ impl Default for Config {
|
|
Self {
|
|
Self {
|
|
#[cfg(feature = "hydrate")]
|
|
#[cfg(feature = "hydrate")]
|
|
hydrate: false,
|
|
hydrate: false,
|
|
- rootname: "main".to_string(),
|
|
|
|
|
|
+ root: ConfigRoot::RootName("main".to_string()),
|
|
cached_strings: Vec::new(),
|
|
cached_strings: Vec::new(),
|
|
default_panic_hook: true,
|
|
default_panic_hook: true,
|
|
}
|
|
}
|
|
@@ -50,8 +50,18 @@ impl Config {
|
|
/// Set the name of the element that Dioxus will use as the root.
|
|
/// Set the name of the element that Dioxus will use as the root.
|
|
///
|
|
///
|
|
/// This is akin to calling React.render() on the element with the specified name.
|
|
/// This is akin to calling React.render() on the element with the specified name.
|
|
|
|
+ /// Note that this only works on the current document, i.e. `window.document`.
|
|
|
|
+ /// To use a different document (popup, iframe, ...) use [Self::rootelement] instead.
|
|
pub fn rootname(mut self, name: impl Into<String>) -> Self {
|
|
pub fn rootname(mut self, name: impl Into<String>) -> Self {
|
|
- self.rootname = name.into();
|
|
|
|
|
|
+ self.root = ConfigRoot::RootName(name.into());
|
|
|
|
+ self
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /// Set the element that Dioxus will use as root.
|
|
|
|
+ ///
|
|
|
|
+ /// This is akin to calling React.render() on the given element.
|
|
|
|
+ pub fn rootelement(mut self, elem: web_sys::Element) -> Self {
|
|
|
|
+ self.root = ConfigRoot::RootElement(elem);
|
|
self
|
|
self
|
|
}
|
|
}
|
|
|
|
|
|
@@ -72,3 +82,8 @@ impl Config {
|
|
self
|
|
self
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+pub(crate) enum ConfigRoot {
|
|
|
|
+ RootName(String),
|
|
|
|
+ RootElement(web_sys::Element),
|
|
|
|
+}
|