Cells can now have color changed from parent component

This commit is contained in:
Emilia Allison 2023-05-11 18:39:25 -04:00
parent 817b09b602
commit b9cc4a6477
Signed by: emilia
GPG Key ID: 7A3F8997BFE894E0
2 changed files with 22 additions and 5 deletions

View File

@ -10,9 +10,9 @@ td.plate_cell {
border: 2px solid black; border: 2px solid black;
} }
td.plate_cell:hover { td.plate_cell:hover {
background: black; background: black !important;
} }
td.current_select { td.current_select {
background: lightblue; background: lightblue !important;
} }

View File

@ -25,7 +25,8 @@ pub fn SourcePlate(cx: Scope<SourcePlateProps>) -> Element {
style { style {
vec![STYLE].into_iter().map(|s| rsx!{s}) // This is stupid vec![STYLE].into_iter().map(|s| rsx!{s}) // This is stupid
} }
PlateSelectionIndicator {} SourcePlateSelectionIndicator {}
SourcePlateSelectionController {}
table { table {
draggable: "false", draggable: "false",
for i in 1..=cx.props.height { for i in 1..=cx.props.height {
@ -41,7 +42,7 @@ pub fn SourcePlate(cx: Scope<SourcePlateProps>) -> Element {
} }
#[inline_props] #[inline_props]
fn SourcePlateCell(cx: Scope<PlateCellProps>, i: u8, j: u8) -> Element { fn SourcePlateCell(cx: Scope<PlateCellProps>, i: u8, j: u8, color: Option<String>) -> Element {
let selection_state = use_shared_state::<SelectionState>(cx).unwrap(); let selection_state = use_shared_state::<SelectionState>(cx).unwrap();
let selected = in_square( let selected = in_square(
selection_state.read().m_start, selection_state.read().m_start,
@ -52,11 +53,16 @@ fn SourcePlateCell(cx: Scope<PlateCellProps>, i: u8, j: u8) -> Element {
true => "current_select", true => "current_select",
false => "", false => "",
}; };
let color_string = match color {
Some(c) => c.clone(),
None => "None".to_string()
};
cx.render(rsx! { cx.render(rsx! {
td { td {
class: "plate_cell {selected_class}", class: "plate_cell {selected_class}",
draggable: "false", draggable: "false",
style: "background: {color_string}",
onmousedown: move |_| { onmousedown: move |_| {
selection_state.write().m_start = Some((*i,*j)); selection_state.write().m_start = Some((*i,*j));
selection_state.write().m_end = None; selection_state.write().m_end = None;
@ -85,7 +91,8 @@ fn in_square(corner1: Option<(u8, u8)>, corner2: Option<(u8, u8)>, pt: (u8, u8))
} }
} }
fn PlateSelectionIndicator(cx: Scope) -> Element { // This is a dummy component for design purposes only
fn SourcePlateSelectionIndicator(cx: Scope) -> Element {
let selection_state = use_shared_state::<SelectionState>(cx).unwrap(); let selection_state = use_shared_state::<SelectionState>(cx).unwrap();
let start_str = match selection_state.read().m_start { let start_str = match selection_state.read().m_start {
Some(start) => format!("{},{}", start.0, start.1), Some(start) => format!("{},{}", start.0, start.1),
@ -100,3 +107,13 @@ fn PlateSelectionIndicator(cx: Scope) -> Element {
p { start_str ", and " end_str } p { start_str ", and " end_str }
}) })
} }
fn SourcePlateSelectionController(cx: Scope) -> Element {
cx.render(rsx! {
div {
button {
"Select"
}
}
})
}