use yew::prelude::*; use yewdux::prelude::*; use web_sys::HtmlDialogElement; use crate::components::states::MainState; use crate::data::plate_instances::PlateInstance; use crate::components::callbacks::new_plate_dialog_callbacks; #[derive(PartialEq, Properties)] pub struct NewPlateDialogProps { pub close_callback: Callback<()>, } #[function_component] pub fn NewPlateDialog(props: &NewPlateDialogProps) -> Html { let (_, dispatch) = use_store::(); let new_plate_callback = { let close_callback = props.close_callback.clone(); new_plate_dialog_callbacks::new_plate_callback(dispatch, close_callback) }; let onclose = { let close_callback = props.close_callback.clone(); new_plate_dialog_callbacks::onclose(close_callback) }; // This whole section is optional, only if you want the backdrop let dialog_ref = use_node_ref(); { let dialog_ref = dialog_ref.clone(); use_effect_with_deps( |dialog_ref| { dialog_ref .cast::() .unwrap() .show_modal() .ok(); }, dialog_ref, ); } html! {

{"Create a plate:"}

} } impl From<&PlateInstance> for String { fn from(value: &PlateInstance) -> Self { // Could have other formatting here format!("{}, {}", value.name, value.plate.plate_format) } }