mirror of
https://github.com/danbulant/cushy
synced 2026-05-24 12:28:23 +00:00
54 lines
1.8 KiB
Rust
54 lines
1.8 KiB
Rust
use std::time::Duration;
|
|
|
|
use gooey::animation::{AnimationHandle, AnimationTarget, IntoAnimate, Spawn};
|
|
use gooey::value::{Dynamic, StringValue};
|
|
use gooey::widget::MakeWidget;
|
|
use gooey::{Run, WithClone};
|
|
|
|
fn main() -> gooey::Result {
|
|
let animation = Dynamic::new(AnimationHandle::new());
|
|
let value = Dynamic::new(50);
|
|
let label = value.map_each(|value| value.to_string());
|
|
|
|
// Gooey's animation system supports using a `Duration` as a step in
|
|
// animation to create a delay. This can also be used to call a function
|
|
// after a specified amount of time:
|
|
Duration::from_secs(1)
|
|
.on_complete(|| println!("Gooey animations are neat!"))
|
|
.launch();
|
|
|
|
"To 0"
|
|
.into_button()
|
|
.on_click(animate_to(&animation, &value, 0))
|
|
.and(label)
|
|
.and(
|
|
"To 100"
|
|
.into_button()
|
|
.on_click(animate_to(&animation, &value, 100)),
|
|
)
|
|
.into_columns()
|
|
.run()
|
|
}
|
|
|
|
fn animate_to(
|
|
animation: &Dynamic<AnimationHandle>,
|
|
value: &Dynamic<u8>,
|
|
target: u8,
|
|
) -> impl FnMut(()) {
|
|
(animation, value).with_clone(|(animation, value)| {
|
|
move |_| {
|
|
// Here we use spawn to schedule the animation, which returns an
|
|
// `AnimationHandle`. When dropped, the animation associated with
|
|
// the `AnimationHandle` will be cancelled. The effect is that this
|
|
// line of code will ensure we only keep one animation running at
|
|
// all times in this example, despite how many times the buttons are
|
|
// pressed.
|
|
animation.set(
|
|
value
|
|
.transition_to(target)
|
|
.over(Duration::from_secs(1))
|
|
.spawn(),
|
|
)
|
|
}
|
|
})
|
|
}
|