use dioxus::prelude::*;
use freya_elements::{
elements as dioxus_elements,
events::{
KeyboardEvent,
MouseEvent,
},
};
use freya_hooks::{
use_animation,
use_applied_theme,
use_focus,
use_platform,
AnimNum,
Ease,
Function,
SwitchThemeWith,
};
use winit::window::CursorIcon;
#[derive(Props, Clone, PartialEq)]
pub struct SwitchProps {
pub theme: Option<SwitchThemeWith>,
pub enabled: bool,
pub ontoggled: EventHandler<()>,
}
#[derive(Debug, Default, PartialEq, Clone, Copy)]
pub enum SwitchStatus {
#[default]
Idle,
Hovering,
}
#[allow(non_snake_case)]
pub fn Switch(props: SwitchProps) -> Element {
let animation = use_animation(|ctx| {
ctx.with(
AnimNum::new(0., 25.)
.time(300)
.function(Function::Expo)
.ease(Ease::Out),
)
});
let theme = use_applied_theme!(&props.theme, switch);
let platform = use_platform();
let mut status = use_signal(SwitchStatus::default);
let mut focus = use_focus();
let focus_id = focus.attribute();
use_drop(move || {
if *status.read() == SwitchStatus::Hovering {
platform.set_cursor(CursorIcon::default());
}
});
let onmousedown = |e: MouseEvent| {
e.stop_propagation();
};
let onmouseleave = move |e: MouseEvent| {
e.stop_propagation();
*status.write() = SwitchStatus::Idle;
platform.set_cursor(CursorIcon::default());
};
let onmouseenter = move |e: MouseEvent| {
e.stop_propagation();
*status.write() = SwitchStatus::Hovering;
platform.set_cursor(CursorIcon::Pointer);
};
let onclick = move |e: MouseEvent| {
e.stop_propagation();
focus.focus();
props.ontoggled.call(());
};
let onkeydown = move |e: KeyboardEvent| {
if focus.validate_keydown(&e) {
props.ontoggled.call(());
}
};
let (offset_x, background, circle) = {
if props.enabled {
(
animation.get().read().as_f32(),
theme.enabled_background,
theme.enabled_thumb_background,
)
} else {
(
animation.get().read().as_f32(),
theme.background,
theme.thumb_background,
)
}
};
let border = if focus.is_selected() {
if props.enabled {
format!("2 solid {}", theme.enabled_focus_border_fill)
} else {
format!("2 solid {}", theme.focus_border_fill)
}
} else {
"none".to_string()
};
use_memo(use_reactive(&props.enabled, move |enabled| {
if enabled {
animation.start();
} else if animation.peek_has_run_yet() {
animation.reverse();
}
}));
rsx!(
rect {
margin: "{theme.margin}",
width: "50",
height: "25",
padding: "1",
corner_radius: "50",
background: "{background}",
border: "{border}",
onmousedown,
onmouseenter,
onmouseleave,
onkeydown,
onclick,
focus_id,
rect {
width: "100%",
height: "100%",
offset_x: "{offset_x}",
padding: "2.5",
corner_radius: "50",
rect {
background: "{circle}",
width: "18",
height: "18",
corner_radius: "50",
}
}
}
)
}
#[cfg(test)]
mod test {
use dioxus::prelude::use_signal;
use freya::prelude::*;
use freya_testing::prelude::*;
#[tokio::test]
pub async fn switch() {
fn switch_app() -> Element {
let mut enabled = use_signal(|| false);
rsx!(
Switch {
enabled: *enabled.read(),
ontoggled: move |_| {
enabled.toggle();
}
}
label {
"{enabled}"
}
)
}
let mut utils = launch_test(switch_app);
let root = utils.root();
let label = root.get(1);
utils.wait_for_update().await;
assert_eq!(label.get(0).text(), Some("false"));
utils.push_event(PlatformEvent::Mouse {
name: EventName::Click,
cursor: (15.0, 15.0).into(),
button: Some(MouseButton::Left),
});
utils.wait_for_update().await;
assert_eq!(label.get(0).text(), Some("true"));
utils.push_event(PlatformEvent::Mouse {
name: EventName::Click,
cursor: (15.0, 15.0).into(),
button: Some(MouseButton::Left),
});
utils.wait_for_update().await;
assert_eq!(label.get(0).text(), Some("false"));
}
}