use std::ops::Deref;
use crate::html::{Component, NodeRef, Scope, Scoped};
use gloo_utils::document;
use std::rc::Rc;
use web_sys::Element;
#[derive(Debug)]
pub struct AppHandle<COMP: Component> {
pub(crate) scope: Scope<COMP>,
}
impl<COMP> AppHandle<COMP>
where
COMP: Component,
{
pub(crate) fn mount_with_props(element: Element, props: Rc<COMP::Properties>) -> Self {
clear_element(&element);
let app = Self {
scope: Scope::new(None),
};
app.scope
.mount_in_place(element, NodeRef::default(), NodeRef::default(), props);
app
}
pub(crate) fn mount_as_body_with_props(props: Rc<COMP::Properties>) -> Self {
let html_element = document().document_element().unwrap();
let body_element = document().body().expect("no body node found");
html_element
.remove_child(&body_element)
.expect("can't remove body child");
Self::mount_with_props(html_element, props)
}
pub fn destroy(mut self) {
self.scope.destroy()
}
}
impl<COMP> Deref for AppHandle<COMP>
where
COMP: Component,
{
type Target = Scope<COMP>;
fn deref(&self) -> &Self::Target {
&self.scope
}
}
fn clear_element(element: &Element) {
while let Some(child) = element.last_child() {
element.remove_child(&child).expect("can't remove a child");
}
}