forked from StudioInfinity/dyna3
Bring back try_set
as inline code
This essentially reverts commit 894931a
and then inlines `try_set` in
the one place where it's used. If we ever want to reuse that code, we'll
factor it out again.
This commit is contained in:
parent
84bfdefccb
commit
6eeeb1c6fd
2 changed files with 9 additions and 13 deletions
|
@ -124,16 +124,6 @@ pub struct Regulator {
|
|||
pub set_point: Signal<SpecifiedValue>
|
||||
}
|
||||
|
||||
impl Regulator {
|
||||
/* TO DO */
|
||||
// if it's called for, add a `set` method that takes a bare SpecifiedValue
|
||||
pub fn set_if_ok<E>(&self, set_pt_result: Result<SpecifiedValue, E>) {
|
||||
if let Ok(set_pt) = set_pt_result {
|
||||
self.set_point.set(set_pt);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the velocity is expressed in uniform coordinates
|
||||
pub struct ElementMotion<'a> {
|
||||
pub key: ElementKey,
|
||||
|
|
|
@ -57,9 +57,15 @@ fn RegulatorInput(regulator: Regulator) -> View {
|
|||
placeholder=regulator.measurement.with(|result| result.to_string()),
|
||||
bind:value=value,
|
||||
on:change=move |_| {
|
||||
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);
|
||||
valid.set(
|
||||
match SpecifiedValue::try_from(value.get_clone_untracked()) {
|
||||
Ok(set_pt) => {
|
||||
regulator.set_point.set(set_pt);
|
||||
true
|
||||
}
|
||||
Err(_) => false
|
||||
}
|
||||
)
|
||||
},
|
||||
on:keydown={
|
||||
move |event: KeyboardEvent| {
|
||||
|
|
Loading…
Add table
Reference in a new issue