2024-02-24 01:38:04 +00:00
|
|
|
use std::{collections::HashMap, ops::Deref};
|
|
|
|
|
2023-05-04 16:39:46 +00:00
|
|
|
use dioxus::html::geometry::euclid::Vector3D;
|
2023-04-27 23:00:43 +00:00
|
|
|
use dioxus::prelude::*;
|
2024-01-19 00:27:43 +00:00
|
|
|
use dioxus_core::prelude::consume_context;
|
2023-04-27 23:00:43 +00:00
|
|
|
use dioxus_desktop::DesktopContext;
|
|
|
|
|
2024-02-24 01:38:04 +00:00
|
|
|
#[path = "./utils.rs"]
|
|
|
|
mod utils;
|
|
|
|
|
2024-01-31 01:33:14 +00:00
|
|
|
pub fn main() {
|
2024-02-24 01:38:04 +00:00
|
|
|
utils::check_app_exits(app);
|
2024-01-31 01:33:14 +00:00
|
|
|
}
|
|
|
|
|
2024-02-24 01:38:04 +00:00
|
|
|
static RECEIVED_EVENTS: GlobalSignal<usize> = Signal::global(|| 0);
|
2023-05-04 16:04:06 +00:00
|
|
|
|
2024-02-24 01:38:04 +00:00
|
|
|
fn app() -> Element {
|
|
|
|
let desktop_context: DesktopContext = consume_context();
|
2023-05-04 16:04:06 +00:00
|
|
|
|
2024-02-24 01:38:04 +00:00
|
|
|
let received = RECEIVED_EVENTS();
|
|
|
|
let expected = utils::EXPECTED_EVENTS();
|
2023-05-04 16:04:06 +00:00
|
|
|
|
2024-03-02 07:37:46 +00:00
|
|
|
use_effect(move || {
|
|
|
|
println!("expecting {} events", utils::EXPECTED_EVENTS());
|
|
|
|
});
|
|
|
|
|
2024-02-24 01:38:04 +00:00
|
|
|
if expected != 0 && received == expected {
|
|
|
|
println!("all events recieved");
|
|
|
|
desktop_context.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
rsx! {
|
|
|
|
div {
|
|
|
|
test_mounted {}
|
|
|
|
test_button {}
|
|
|
|
test_mouse_move_div {}
|
|
|
|
test_mouse_click_div {}
|
|
|
|
test_mouse_dblclick_div {}
|
|
|
|
test_mouse_down_div {}
|
|
|
|
test_mouse_up_div {}
|
|
|
|
test_mouse_scroll_div {}
|
|
|
|
test_key_down_div {}
|
|
|
|
test_key_up_div {}
|
|
|
|
test_key_press_div {}
|
|
|
|
test_focus_in_div {}
|
|
|
|
test_focus_out_div {}
|
|
|
|
test_form_input {}
|
2024-03-02 07:37:46 +00:00
|
|
|
test_form_submit {}
|
|
|
|
test_select_multiple_options {}
|
2024-02-24 01:38:04 +00:00
|
|
|
}
|
|
|
|
}
|
2023-04-27 23:00:43 +00:00
|
|
|
}
|
|
|
|
|
2024-02-24 01:38:04 +00:00
|
|
|
fn test_mounted() -> Element {
|
2024-03-02 07:37:46 +00:00
|
|
|
use_hook(|| utils::EXPECTED_EVENTS.with_mut(|x| *x += 1));
|
|
|
|
|
2024-02-24 01:38:04 +00:00
|
|
|
rsx! {
|
|
|
|
div {
|
|
|
|
width: "100px",
|
|
|
|
height: "100px",
|
|
|
|
onmounted: move |evt| async move {
|
|
|
|
let rect = evt.get_client_rect().await.unwrap();
|
|
|
|
println!("rect: {:?}", rect);
|
|
|
|
assert_eq!(rect.width(), 100.0);
|
|
|
|
assert_eq!(rect.height(), 100.0);
|
|
|
|
RECEIVED_EVENTS.with_mut(|x| *x += 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-04-27 23:00:43 +00:00
|
|
|
|
2024-02-24 01:38:04 +00:00
|
|
|
fn test_button() -> Element {
|
|
|
|
utils::mock_event(
|
2023-04-27 23:00:43 +00:00
|
|
|
"button",
|
|
|
|
r#"new MouseEvent("click", {
|
2024-02-24 01:38:04 +00:00
|
|
|
view: window,
|
|
|
|
bubbles: true,
|
|
|
|
cancelable: true,
|
|
|
|
button: 0,
|
2023-07-21 22:36:25 +00:00
|
|
|
})"#,
|
2023-04-27 23:00:43 +00:00
|
|
|
);
|
2024-02-24 01:38:04 +00:00
|
|
|
|
|
|
|
rsx! {
|
|
|
|
button {
|
|
|
|
id: "button",
|
|
|
|
onclick: move |event| {
|
|
|
|
println!("{:?}", event.data);
|
|
|
|
assert!(event.data.modifiers().is_empty());
|
|
|
|
assert!(event.data.held_buttons().is_empty());
|
|
|
|
assert_eq!(
|
|
|
|
event.data.trigger_button(),
|
|
|
|
Some(dioxus_html::input_data::MouseButton::Primary),
|
|
|
|
);
|
|
|
|
RECEIVED_EVENTS.with_mut(|x| *x += 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_mouse_move_div() -> Element {
|
|
|
|
utils::mock_event(
|
2023-04-27 23:00:43 +00:00
|
|
|
"mouse_move_div",
|
|
|
|
r#"new MouseEvent("mousemove", {
|
2023-07-21 22:36:25 +00:00
|
|
|
view: window,
|
|
|
|
bubbles: true,
|
|
|
|
cancelable: true,
|
|
|
|
buttons: 2,
|
|
|
|
})"#,
|
2023-05-04 16:39:46 +00:00
|
|
|
);
|
2024-02-24 01:38:04 +00:00
|
|
|
|
|
|
|
rsx! {
|
|
|
|
div {
|
|
|
|
id: "mouse_move_div",
|
|
|
|
onmousemove: move |event| {
|
|
|
|
println!("{:?}", event.data);
|
|
|
|
assert!(event.data.modifiers().is_empty());
|
|
|
|
assert!(
|
|
|
|
event
|
|
|
|
.data
|
|
|
|
.held_buttons()
|
|
|
|
.contains(dioxus_html::input_data::MouseButton::Secondary),
|
|
|
|
);
|
|
|
|
RECEIVED_EVENTS.with_mut(|x| *x += 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_mouse_click_div() -> Element {
|
|
|
|
utils::mock_event(
|
2023-04-27 23:00:43 +00:00
|
|
|
"mouse_click_div",
|
|
|
|
r#"new MouseEvent("click", {
|
2023-07-21 22:36:25 +00:00
|
|
|
view: window,
|
|
|
|
bubbles: true,
|
|
|
|
cancelable: true,
|
|
|
|
buttons: 2,
|
|
|
|
button: 2,
|
|
|
|
})"#,
|
2023-04-27 23:00:43 +00:00
|
|
|
);
|
2024-02-24 01:38:04 +00:00
|
|
|
|
|
|
|
rsx! {
|
|
|
|
div {
|
|
|
|
id: "mouse_click_div",
|
|
|
|
onclick: move |event| {
|
|
|
|
println!("{:?}", event.data);
|
|
|
|
assert!(event.data.modifiers().is_empty());
|
|
|
|
assert!(
|
|
|
|
event
|
|
|
|
.data
|
|
|
|
.held_buttons()
|
|
|
|
.contains(dioxus_html::input_data::MouseButton::Secondary),
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
event.data.trigger_button(),
|
|
|
|
Some(dioxus_html::input_data::MouseButton::Secondary),
|
|
|
|
);
|
|
|
|
RECEIVED_EVENTS.with_mut(|x| *x += 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_mouse_dblclick_div() -> Element {
|
|
|
|
utils::mock_event(
|
2023-04-27 23:00:43 +00:00
|
|
|
"mouse_dblclick_div",
|
|
|
|
r#"new MouseEvent("dblclick", {
|
2023-07-21 22:36:25 +00:00
|
|
|
view: window,
|
|
|
|
bubbles: true,
|
|
|
|
cancelable: true,
|
|
|
|
buttons: 1|2,
|
|
|
|
button: 2,
|
|
|
|
})"#,
|
2023-04-27 23:00:43 +00:00
|
|
|
);
|
2024-02-24 01:38:04 +00:00
|
|
|
|
|
|
|
rsx! {
|
|
|
|
div {
|
|
|
|
id: "mouse_dblclick_div",
|
|
|
|
ondoubleclick: move |event| {
|
|
|
|
println!("{:?}", event.data);
|
|
|
|
assert!(event.data.modifiers().is_empty());
|
|
|
|
assert!(
|
|
|
|
event.data.held_buttons().contains(dioxus_html::input_data::MouseButton::Primary),
|
|
|
|
);
|
|
|
|
assert!(
|
|
|
|
event
|
|
|
|
.data
|
|
|
|
.held_buttons()
|
|
|
|
.contains(dioxus_html::input_data::MouseButton::Secondary),
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
event.data.trigger_button(),
|
|
|
|
Some(dioxus_html::input_data::MouseButton::Secondary),
|
|
|
|
);
|
|
|
|
RECEIVED_EVENTS.with_mut(|x| *x += 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_mouse_down_div() -> Element {
|
|
|
|
utils::mock_event(
|
2023-04-27 23:00:43 +00:00
|
|
|
"mouse_down_div",
|
|
|
|
r#"new MouseEvent("mousedown", {
|
2023-07-21 22:36:25 +00:00
|
|
|
view: window,
|
|
|
|
bubbles: true,
|
|
|
|
cancelable: true,
|
|
|
|
buttons: 2,
|
|
|
|
button: 2,
|
|
|
|
})"#,
|
2023-04-27 23:00:43 +00:00
|
|
|
);
|
2024-02-24 01:38:04 +00:00
|
|
|
|
|
|
|
rsx! {
|
|
|
|
div {
|
|
|
|
id: "mouse_down_div",
|
|
|
|
onmousedown: move |event| {
|
|
|
|
println!("{:?}", event.data);
|
|
|
|
assert!(event.data.modifiers().is_empty());
|
|
|
|
assert!(
|
|
|
|
event
|
|
|
|
.data
|
|
|
|
.held_buttons()
|
|
|
|
.contains(dioxus_html::input_data::MouseButton::Secondary),
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
event.data.trigger_button(),
|
|
|
|
Some(dioxus_html::input_data::MouseButton::Secondary),
|
|
|
|
);
|
|
|
|
RECEIVED_EVENTS.with_mut(|x| *x += 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_mouse_up_div() -> Element {
|
|
|
|
utils::mock_event(
|
2023-04-27 23:00:43 +00:00
|
|
|
"mouse_up_div",
|
|
|
|
r#"new MouseEvent("mouseup", {
|
2023-07-21 22:36:25 +00:00
|
|
|
view: window,
|
|
|
|
bubbles: true,
|
|
|
|
cancelable: true,
|
|
|
|
buttons: 0,
|
|
|
|
button: 0,
|
|
|
|
})"#,
|
2023-04-27 23:00:43 +00:00
|
|
|
);
|
2024-02-24 01:38:04 +00:00
|
|
|
|
|
|
|
rsx! {
|
|
|
|
div {
|
|
|
|
id: "mouse_up_div",
|
|
|
|
onmouseup: move |event| {
|
|
|
|
println!("{:?}", event.data);
|
|
|
|
assert!(event.data.modifiers().is_empty());
|
|
|
|
assert!(event.data.held_buttons().is_empty());
|
|
|
|
assert_eq!(
|
|
|
|
event.data.trigger_button(),
|
|
|
|
Some(dioxus_html::input_data::MouseButton::Primary),
|
|
|
|
);
|
|
|
|
RECEIVED_EVENTS.with_mut(|x| *x += 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_mouse_scroll_div() -> Element {
|
|
|
|
utils::mock_event(
|
2023-04-27 23:00:43 +00:00
|
|
|
"wheel_div",
|
|
|
|
r#"new WheelEvent("wheel", {
|
2023-07-21 22:36:25 +00:00
|
|
|
view: window,
|
|
|
|
deltaX: 1.0,
|
|
|
|
deltaY: 2.0,
|
|
|
|
deltaZ: 3.0,
|
|
|
|
deltaMode: 0x00,
|
|
|
|
bubbles: true,
|
|
|
|
})"#,
|
2023-04-27 23:00:43 +00:00
|
|
|
);
|
2024-02-24 01:38:04 +00:00
|
|
|
|
|
|
|
rsx! {
|
|
|
|
div {
|
|
|
|
id: "wheel_div",
|
|
|
|
width: "100px",
|
|
|
|
height: "100px",
|
|
|
|
background_color: "red",
|
|
|
|
onwheel: move |event| {
|
|
|
|
println!("{:?}", event.data);
|
|
|
|
let dioxus_html::geometry::WheelDelta::Pixels(delta) = event.data.delta() else {
|
|
|
|
panic!("Expected delta to be in pixels") };
|
|
|
|
assert_eq!(delta, Vector3D::new(1.0, 2.0, 3.0));
|
|
|
|
RECEIVED_EVENTS.with_mut(|x| *x += 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_key_down_div() -> Element {
|
|
|
|
utils::mock_event(
|
2023-04-27 23:00:43 +00:00
|
|
|
"key_down_div",
|
|
|
|
r#"new KeyboardEvent("keydown", {
|
2023-07-21 22:36:25 +00:00
|
|
|
key: "a",
|
|
|
|
code: "KeyA",
|
|
|
|
location: 0,
|
|
|
|
repeat: true,
|
|
|
|
keyCode: 65,
|
|
|
|
charCode: 97,
|
|
|
|
char: "a",
|
|
|
|
charCode: 0,
|
|
|
|
altKey: false,
|
|
|
|
ctrlKey: false,
|
|
|
|
metaKey: false,
|
|
|
|
shiftKey: false,
|
2024-01-23 15:33:28 +00:00
|
|
|
isComposing: true,
|
2023-07-21 22:36:25 +00:00
|
|
|
which: 65,
|
|
|
|
bubbles: true,
|
|
|
|
})"#,
|
2023-04-27 23:00:43 +00:00
|
|
|
);
|
2024-02-24 01:38:04 +00:00
|
|
|
rsx! {
|
|
|
|
input {
|
|
|
|
id: "key_down_div",
|
|
|
|
onkeydown: move |event| {
|
|
|
|
println!("{:?}", event.data);
|
|
|
|
assert!(event.data.modifiers().is_empty());
|
|
|
|
assert_eq!(event.data.key().to_string(), "a");
|
|
|
|
assert_eq!(event.data.code().to_string(), "KeyA");
|
|
|
|
assert_eq!(event.data.location(), Location::Standard);
|
|
|
|
assert!(event.data.is_auto_repeating());
|
|
|
|
assert!(event.data.is_composing());
|
|
|
|
RECEIVED_EVENTS.with_mut(|x| *x += 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fn test_key_up_div() -> Element {
|
|
|
|
utils::mock_event(
|
2023-04-27 23:00:43 +00:00
|
|
|
"key_up_div",
|
|
|
|
r#"new KeyboardEvent("keyup", {
|
2023-07-21 22:36:25 +00:00
|
|
|
key: "a",
|
|
|
|
code: "KeyA",
|
|
|
|
location: 0,
|
|
|
|
repeat: false,
|
|
|
|
keyCode: 65,
|
|
|
|
charCode: 97,
|
|
|
|
char: "a",
|
|
|
|
charCode: 0,
|
|
|
|
altKey: false,
|
|
|
|
ctrlKey: false,
|
|
|
|
metaKey: false,
|
|
|
|
shiftKey: false,
|
|
|
|
isComposing: false,
|
|
|
|
which: 65,
|
|
|
|
bubbles: true,
|
|
|
|
})"#,
|
2023-04-27 23:00:43 +00:00
|
|
|
);
|
2024-02-24 01:38:04 +00:00
|
|
|
|
|
|
|
rsx! {
|
|
|
|
input {
|
|
|
|
id: "key_up_div",
|
|
|
|
onkeyup: move |event| {
|
|
|
|
println!("{:?}", event.data);
|
|
|
|
assert!(event.data.modifiers().is_empty());
|
|
|
|
assert_eq!(event.data.key().to_string(), "a");
|
|
|
|
assert_eq!(event.data.code().to_string(), "KeyA");
|
|
|
|
assert_eq!(event.data.location(), Location::Standard);
|
|
|
|
assert!(!event.data.is_auto_repeating());
|
|
|
|
assert!(!event.data.is_composing());
|
|
|
|
RECEIVED_EVENTS.with_mut(|x| *x += 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fn test_key_press_div() -> Element {
|
|
|
|
utils::mock_event(
|
2023-04-27 23:00:43 +00:00
|
|
|
"key_press_div",
|
|
|
|
r#"new KeyboardEvent("keypress", {
|
2023-07-21 22:36:25 +00:00
|
|
|
key: "a",
|
|
|
|
code: "KeyA",
|
|
|
|
location: 0,
|
|
|
|
repeat: false,
|
|
|
|
keyCode: 65,
|
|
|
|
charCode: 97,
|
|
|
|
char: "a",
|
|
|
|
charCode: 0,
|
|
|
|
altKey: false,
|
|
|
|
ctrlKey: false,
|
|
|
|
metaKey: false,
|
|
|
|
shiftKey: false,
|
|
|
|
isComposing: false,
|
|
|
|
which: 65,
|
|
|
|
bubbles: true,
|
|
|
|
})"#,
|
2023-04-27 23:00:43 +00:00
|
|
|
);
|
2024-02-24 01:38:04 +00:00
|
|
|
rsx! {
|
|
|
|
input {
|
|
|
|
id: "key_press_div",
|
|
|
|
onkeypress: move |event| {
|
|
|
|
println!("{:?}", event.data);
|
|
|
|
assert!(event.data.modifiers().is_empty());
|
|
|
|
assert_eq!(event.data.key().to_string(), "a");
|
|
|
|
assert_eq!(event.data.code().to_string(), "KeyA");
|
|
|
|
assert_eq!(event.data.location(), Location::Standard);
|
|
|
|
assert!(!event.data.is_auto_repeating());
|
|
|
|
assert!(!event.data.is_composing());
|
|
|
|
RECEIVED_EVENTS.with_mut(|x| *x += 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_focus_in_div() -> Element {
|
|
|
|
utils::mock_event(
|
2023-04-27 23:00:43 +00:00
|
|
|
"focus_in_div",
|
2023-04-27 23:36:28 +00:00
|
|
|
r#"new FocusEvent("focusin", {bubbles: true})"#,
|
2023-04-27 23:00:43 +00:00
|
|
|
);
|
2024-02-24 01:38:04 +00:00
|
|
|
|
|
|
|
rsx! {
|
|
|
|
input {
|
|
|
|
id: "focus_in_div",
|
|
|
|
onfocusin: move |event| {
|
|
|
|
println!("{:?}", event.data);
|
|
|
|
RECEIVED_EVENTS.with_mut(|x| *x += 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_focus_out_div() -> Element {
|
|
|
|
utils::mock_event(
|
2023-04-27 23:00:43 +00:00
|
|
|
"focus_out_div",
|
2023-04-27 23:36:28 +00:00
|
|
|
r#"new FocusEvent("focusout",{bubbles: true})"#,
|
2023-04-27 23:00:43 +00:00
|
|
|
);
|
2024-02-24 01:38:04 +00:00
|
|
|
rsx! {
|
|
|
|
input {
|
|
|
|
id: "focus_out_div",
|
|
|
|
onfocusout: move |event| {
|
|
|
|
println!("{:?}", event.data);
|
|
|
|
RECEIVED_EVENTS.with_mut(|x| *x += 1);
|
|
|
|
}
|
|
|
|
}
|
2024-02-06 01:58:13 +00:00
|
|
|
}
|
2024-02-24 01:38:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn test_form_input() -> Element {
|
|
|
|
let mut values = use_signal(|| HashMap::new());
|
|
|
|
|
|
|
|
utils::mock_event_with_extra(
|
|
|
|
"form-username",
|
2024-03-02 07:37:46 +00:00
|
|
|
r#"new Event("input", { bubbles: true, cancelable: true, composed: true })"#,
|
2024-02-24 01:38:04 +00:00
|
|
|
r#"element.value = "hello";"#,
|
|
|
|
);
|
|
|
|
|
2024-03-02 07:37:46 +00:00
|
|
|
let set_username = move |ev: FormEvent| {
|
2024-02-24 01:38:04 +00:00
|
|
|
values.set(ev.values());
|
2024-03-02 07:37:46 +00:00
|
|
|
|
|
|
|
// The value of the input should match
|
|
|
|
assert_eq!(ev.value(), "hello");
|
|
|
|
|
|
|
|
// And then the value the form gives us should also match
|
2024-02-24 01:38:04 +00:00
|
|
|
values.with_mut(|x| {
|
2024-03-02 07:37:46 +00:00
|
|
|
assert_eq!(x.get("username").unwrap().deref(), "hello");
|
|
|
|
assert_eq!(x.get("full-name").unwrap().deref(), "lorem");
|
|
|
|
assert_eq!(x.get("password").unwrap().deref(), "ipsum");
|
|
|
|
assert_eq!(x.get("color").unwrap().deref(), "red");
|
2024-02-24 01:38:04 +00:00
|
|
|
});
|
2024-03-02 07:37:46 +00:00
|
|
|
RECEIVED_EVENTS.with_mut(|x| *x += 1);
|
2024-02-24 01:38:04 +00:00
|
|
|
};
|
2023-04-27 23:00:43 +00:00
|
|
|
|
2024-01-16 19:18:46 +00:00
|
|
|
rsx! {
|
2023-04-27 23:00:43 +00:00
|
|
|
div {
|
2024-02-24 01:38:04 +00:00
|
|
|
h1 { "Form" }
|
|
|
|
form {
|
|
|
|
id: "form",
|
2024-03-02 07:37:46 +00:00
|
|
|
oninput: move |ev| {
|
|
|
|
values.set(ev.values());
|
|
|
|
},
|
|
|
|
onsubmit: move |ev| {
|
|
|
|
println!("{:?}", ev);
|
|
|
|
},
|
2024-02-24 01:38:04 +00:00
|
|
|
input {
|
|
|
|
r#type: "text",
|
|
|
|
name: "username",
|
|
|
|
id: "form-username",
|
2024-03-02 07:37:46 +00:00
|
|
|
oninput: set_username,
|
2023-04-27 23:00:43 +00:00
|
|
|
}
|
2024-03-02 07:37:46 +00:00
|
|
|
input { r#type: "text", name: "full-name", value: "lorem" }
|
|
|
|
input { r#type: "password", name: "password", value: "ipsum" }
|
|
|
|
input { r#type: "radio", name: "color", value: "red", checked: true }
|
2024-02-24 01:38:04 +00:00
|
|
|
input { r#type: "radio", name: "color", value: "blue" }
|
|
|
|
button { r#type: "submit", value: "Submit", "Submit the form" }
|
2023-04-27 23:00:43 +00:00
|
|
|
}
|
|
|
|
}
|
2024-01-05 01:05:36 +00:00
|
|
|
}
|
2023-04-27 23:00:43 +00:00
|
|
|
}
|
2024-03-02 07:37:46 +00:00
|
|
|
|
|
|
|
fn test_form_submit() -> Element {
|
|
|
|
let mut values = use_signal(|| HashMap::new());
|
|
|
|
|
|
|
|
utils::mock_event_with_extra(
|
|
|
|
"form-submitter",
|
|
|
|
r#"new Event("submit", { bubbles: true, cancelable: true, composed: true })"#,
|
|
|
|
r#"element.submit();"#,
|
|
|
|
);
|
|
|
|
|
|
|
|
let set_values = move |ev: FormEvent| {
|
|
|
|
values.set(ev.values());
|
|
|
|
values.with_mut(|x| {
|
|
|
|
assert_eq!(x.get("username").unwrap().deref(), "goodbye");
|
|
|
|
assert_eq!(x.get("full-name").unwrap().deref(), "lorem");
|
|
|
|
assert_eq!(x.get("password").unwrap().deref(), "ipsum");
|
|
|
|
assert_eq!(x.get("color").unwrap().deref(), "red");
|
|
|
|
});
|
|
|
|
RECEIVED_EVENTS.with_mut(|x| *x += 1);
|
|
|
|
};
|
|
|
|
|
|
|
|
rsx! {
|
|
|
|
div {
|
|
|
|
h1 { "Form" }
|
|
|
|
form {
|
|
|
|
id: "form-submitter",
|
|
|
|
onsubmit: set_values,
|
|
|
|
input { r#type: "text", name: "username", id: "username", value: "goodbye" }
|
|
|
|
input { r#type: "text", name: "full-name", value: "lorem" }
|
|
|
|
input { r#type: "password", name: "password", value: "ipsum" }
|
|
|
|
input { r#type: "radio", name: "color", value: "red", checked: true }
|
|
|
|
input { r#type: "radio", name: "color", value: "blue" }
|
|
|
|
button { r#type: "submit", value: "Submit", "Submit the form" }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_select_multiple_options() -> Element {
|
|
|
|
utils::mock_event_with_extra(
|
|
|
|
"select-many",
|
|
|
|
r#"new Event("input", { bubbles: true, cancelable: true, composed: true })"#,
|
|
|
|
r#"
|
|
|
|
document.getElementById('usa').selected = true;
|
|
|
|
document.getElementById('canada').selected = true;
|
|
|
|
document.getElementById('mexico').selected = false;
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
|
|
|
|
rsx! {
|
|
|
|
select {
|
|
|
|
id: "select-many",
|
|
|
|
name: "country",
|
|
|
|
multiple: true,
|
|
|
|
oninput: move |ev| {
|
|
|
|
let values = ev.value();
|
|
|
|
let values = values.split(',').collect::<Vec<_>>();
|
|
|
|
assert_eq!(values, vec!["usa", "canada"]);
|
|
|
|
RECEIVED_EVENTS.with_mut(|x| *x += 1);
|
|
|
|
},
|
|
|
|
option { id: "usa", value: "usa", "USA" }
|
|
|
|
option { id: "canada", value: "canada", "Canada" }
|
|
|
|
option { id: "mexico", value: "mexico", selected: true, "Mexico" }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|