plate-tool/src/components/plates/plate_container.rs

73 lines
2.3 KiB
Rust
Raw Normal View History

2023-05-21 16:45:12 +00:00
#![allow(non_snake_case)]
use wasm_bindgen::prelude::Closure;
2023-06-16 02:23:12 +00:00
use wasm_bindgen::JsCast;
use yew::prelude::*;
2023-05-24 15:20:12 +00:00
2023-05-24 20:10:33 +00:00
use crate::data::plate_instances::PlateInstance;
2023-05-21 16:45:12 +00:00
use super::destination_plate::DestinationPlate;
2023-06-01 17:04:03 +00:00
use super::source_plate::SourcePlate;
2023-05-21 16:45:12 +00:00
#[derive(Properties, PartialEq)]
pub struct PlateContainerProps {
2023-05-24 20:10:33 +00:00
pub source_dims: Option<PlateInstance>,
pub destination_dims: Option<PlateInstance>,
}
2023-05-21 16:45:12 +00:00
#[function_component]
pub fn PlateContainer(props: &PlateContainerProps) -> Html {
2023-06-16 02:23:12 +00:00
let cell_height = {
let height = web_sys::window()
.unwrap()
.inner_height()
.unwrap()
.as_f64()
.unwrap();
let width = web_sys::window()
.unwrap()
.inner_width()
.unwrap()
.as_f64()
.unwrap();
if let (Some(src_d), Some(dest_d)) = (&props.source_dims, &props.destination_dims) {
let h = (0.78 * height) / (src_d.plate.size().0 + dest_d.plate.size().0) as f64;
let w = (0.90 * width) / (src_d.plate.size().1 + dest_d.plate.size().1) as f64;
f64::min(w, h)
} else {
1f64
}
};
2023-06-16 02:23:12 +00:00
let resize_trigger = use_force_update();
let onresize = Closure::<dyn FnMut(_)>::new(move |_: Event| {
resize_trigger.force_update();
});
web_sys::window()
.unwrap()
.set_onresize(Some(onresize.as_ref().unchecked_ref()));
onresize.forget(); // Magic!
html! {
<div class="plate_container">
2023-05-24 20:10:33 +00:00
if let Some(spi) = props.source_dims.clone() {
2023-05-24 22:39:38 +00:00
if let Some(dpi) = props.destination_dims.clone() {
<div class="plate_container--source">
2023-05-24 20:10:33 +00:00
<h2>{spi.name.clone()}</h2>
<SourcePlate source_plate={spi.clone()} destination_plate={dpi.clone()}
cell_height={cell_height}/>
2023-05-24 20:10:33 +00:00
</div>
<div class="plate_container--destination">
2023-05-24 20:10:33 +00:00
<h2>{dpi.name.clone()}</h2>
<DestinationPlate source_plate={spi.clone()} destination_plate={dpi.clone()}
cell_height={cell_height}/>
2023-05-24 20:10:33 +00:00
</div>
2023-05-24 15:42:54 +00:00
} else {
<h2>{"No Destination Plate Selected"}</h2>
}
2023-05-24 22:39:38 +00:00
} else {
<h2>{"No Source Plate Selected"}</h2>
}
</div>
}
2023-05-21 16:45:12 +00:00
}