Generalize constraints to observables #48
2 changed files with 16 additions and 11 deletions
|
@ -120,6 +120,19 @@ pub struct Regulator {
|
|||
pub set_point_spec: Signal<String>
|
||||
glen marked this conversation as resolved
Outdated
|
||||
}
|
||||
|
||||
impl Regulator {
|
||||
pub fn try_specify_set_point(&self, spec: String) -> bool {
|
||||
match spec.parse::<f64>() {
|
||||
Err(_) if !spec.is_empty() => false,
|
||||
set_pt => {
|
||||
self.set_point.set(set_pt.ok());
|
||||
self.set_point_spec.set(spec);
|
||||
true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the velocity is expressed in uniform coordinates
|
||||
pub struct ElementMotion<'a> {
|
||||
pub key: ElementKey,
|
||||
|
|
|
@ -50,17 +50,9 @@ fn RegulatorInput(regulator: Regulator) -> View {
|
|||
},
|
||||
placeholder=regulator.measurement.with(|result| result.to_string()),
|
||||
bind:value=value,
|
||||
on:change=move |_| {
|
||||
let value_val = value.get_clone_untracked();
|
||||
match value_val.parse::<f64>() {
|
||||
Err(_) if !value_val.is_empty() => valid.set(false),
|
||||
set_pt => batch(|| {
|
||||
regulator.set_point.set(set_pt.ok());
|
||||
regulator.set_point_spec.set(value_val);
|
||||
valid.set(true);
|
||||
})
|
||||
};
|
||||
},
|
||||
on:change=move |_| valid.set(
|
||||
regulator.try_specify_set_point(value.get_clone_untracked())
|
||||
),
|
||||
on:keydown={
|
||||
move |event: KeyboardEvent| {
|
||||
match event.key().as_str() {
|
||||
|
|
Loading…
Add table
Reference in a new issue
Tiny writing nit: this is a "garden path" phrasing -- I read "format discussed above" and started looking for the format specification earlier in the file, since I was pretty sure I hadn't seen one. Maybe reword just a bit to avoid that trap I fell into?
Nice catch! I've changed "above" to "at" to resolve the ambiguity (
7cbd926
). Does that read all right to you?I agree unambiguous now. And hopefully this will change to an explicit anchor link when we get the doc system set up. So resolving.