mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
c6a2e5b6c8
* use head elements and new manganis syntax in examples * only enable desktop workspace example scraping during a dioxus release --------- Co-authored-by: Jonathan Kelley <jkelleyrtp@gmail.com>
42 lines
1.2 KiB
Rust
42 lines
1.2 KiB
Rust
//! Read the size of elements using the MountedData struct.
|
|
//!
|
|
//! Whenever an Element is finally mounted to the Dom, its data is available to be read.
|
|
//! These fields can typically only be read asynchronously, since various renderers need to release the main thread to
|
|
//! perform layout and painting.
|
|
|
|
use std::rc::Rc;
|
|
|
|
use dioxus::{html::geometry::euclid::Rect, prelude::*};
|
|
|
|
fn main() {
|
|
launch(app);
|
|
}
|
|
|
|
fn app() -> Element {
|
|
let mut div_element = use_signal(|| None as Option<Rc<MountedData>>);
|
|
let mut dimensions = use_signal(Rect::zero);
|
|
|
|
let read_dims = move |_| async move {
|
|
let read = div_element.read();
|
|
let client_rect = read.as_ref().map(|el| el.get_client_rect());
|
|
|
|
if let Some(client_rect) = client_rect {
|
|
if let Ok(rect) = client_rect.await {
|
|
dimensions.set(rect);
|
|
}
|
|
}
|
|
};
|
|
|
|
rsx!(
|
|
head::Link { rel: "stylesheet", href: asset!("./examples/assets/read_size.css") }
|
|
div {
|
|
width: "50%",
|
|
height: "50%",
|
|
background_color: "red",
|
|
onmounted: move |cx| div_element.set(Some(cx.data())),
|
|
"This element is {dimensions():?}"
|
|
}
|
|
|
|
button { onclick: read_dims, "Read dimensions" }
|
|
)
|
|
}
|