Replace try_set with set_if_ok

This commit is contained in:
Aaron Fenyes 2025-03-03 11:43:43 -08:00
parent 874c823dbe
commit 894931a6e7
2 changed files with 11 additions and 10 deletions

View file

@ -181,13 +181,11 @@ pub struct Regulator {
} }
impl Regulator { impl Regulator {
pub fn try_set(&self, set_pt_spec: String) -> bool { /* TO DO */
match SpecifiedValue::try_from(set_pt_spec) { // if it's called for, add a `set` method that takes a bare SpecifiedValue
Ok(set_pt) => { pub fn set_if_ok<E>(&self, set_pt_result: Result<SpecifiedValue, E>) {
self.set_point.set(set_pt); if let Ok(set_pt) = set_pt_result {
true self.set_point.set(set_pt);
}
Err(_) => false
} }
} }
} }

View file

@ -13,6 +13,7 @@ use crate::{
ElementKey, ElementKey,
Regulator, Regulator,
RegulatorKey, RegulatorKey,
SpecifiedValue,
SpecifiedValue::* SpecifiedValue::*
} }
}; };
@ -55,9 +56,11 @@ fn RegulatorInput(regulator: Regulator) -> View {
}, },
placeholder=regulator.measurement.with(|result| result.to_string()), placeholder=regulator.measurement.with(|result| result.to_string()),
bind:value=value, bind:value=value,
on:change=move |_| valid.set( on:change=move |_| {
regulator.try_set(value.get_clone_untracked()) let set_pt_result = SpecifiedValue::try_from(value.get_clone_untracked());
), valid.set(set_pt_result.is_ok());
regulator.set_if_ok(set_pt_result);
},
on:keydown={ on:keydown={
move |event: KeyboardEvent| { move |event: KeyboardEvent| {
match event.key().as_str() { match event.key().as_str() {