use dioxus::prelude::*;
use freya_elements::{
elements as dioxus_elements,
events::{
keyboard::Key,
KeyboardEvent,
MouseEvent,
WheelEvent,
},
};
use freya_hooks::{
use_applied_theme,
use_focus,
use_node,
ScrollBarThemeWith,
ScrollViewThemeWith,
};
use super::use_scroll_controller::ScrollController;
use crate::{
get_container_size,
get_corrected_scroll_position,
get_scroll_position_from_cursor,
get_scroll_position_from_wheel,
get_scrollbar_pos_and_size,
is_scrollbar_visible,
manage_key_event,
scroll_views::use_scroll_controller::{
use_scroll_controller,
ScrollConfig,
},
Axis,
ScrollBar,
ScrollThumb,
SCROLL_SPEED_MULTIPLIER,
};
#[derive(Props, Clone, PartialEq)]
pub struct ScrollViewProps {
pub theme: Option<ScrollViewThemeWith>,
pub scrollbar_theme: Option<ScrollBarThemeWith>,
pub children: Element,
#[props(default = "vertical".to_string(), into)]
pub direction: String,
#[props(default = true, into)]
pub show_scrollbar: bool,
#[props(default = true, into)]
pub scroll_with_arrows: bool,
pub scroll_controller: Option<ScrollController>,
}
#[allow(non_snake_case)]
pub fn ScrollView(props: ScrollViewProps) -> Element {
let mut clicking_scrollbar = use_signal::<Option<(Axis, f64)>>(|| None);
let mut clicking_shift = use_signal(|| false);
let mut clicking_alt = use_signal(|| false);
let mut scroll_controller = props
.scroll_controller
.unwrap_or_else(|| use_scroll_controller(ScrollConfig::default));
let (mut scrolled_x, mut scrolled_y) = scroll_controller.into();
let (node_ref, size) = use_node();
let mut focus = use_focus();
let theme = use_applied_theme!(&props.theme, scroll_view);
let scrollbar_theme = use_applied_theme!(&props.scrollbar_theme, scroll_bar);
let padding = &theme.padding;
let user_container_width = &theme.width;
let user_container_height = &theme.height;
let user_direction = &props.direction;
let show_scrollbar = props.show_scrollbar;
let scroll_with_arrows = props.scroll_with_arrows;
scroll_controller.use_apply(size.inner.width, size.inner.height);
let direction_is_vertical = user_direction == "vertical";
let vertical_scrollbar_is_visible =
is_scrollbar_visible(show_scrollbar, size.inner.height, size.area.height());
let horizontal_scrollbar_is_visible =
is_scrollbar_visible(show_scrollbar, size.inner.width, size.area.width());
let container_width = get_container_size(vertical_scrollbar_is_visible, &scrollbar_theme.size);
let container_height =
get_container_size(horizontal_scrollbar_is_visible, &scrollbar_theme.size);
let corrected_scrolled_y = get_corrected_scroll_position(
size.inner.height,
size.area.height(),
*scrolled_y.read() as f32,
);
let corrected_scrolled_x = get_corrected_scroll_position(
size.inner.width,
size.area.width(),
*scrolled_x.read() as f32,
);
let (scrollbar_y, scrollbar_height) =
get_scrollbar_pos_and_size(size.inner.height, size.area.height(), corrected_scrolled_y);
let (scrollbar_x, scrollbar_width) =
get_scrollbar_pos_and_size(size.inner.width, size.area.width(), corrected_scrolled_x);
let onwheel = move |e: WheelEvent| {
let speed_multiplier = if *clicking_alt.peek() {
SCROLL_SPEED_MULTIPLIER
} else {
1.0
};
let wheel_movement = e.get_delta_y() as f32 * speed_multiplier;
let scroll_vertically_or_not = (direction_is_vertical && !*clicking_shift.peek())
|| !direction_is_vertical && *clicking_shift.peek();
if scroll_vertically_or_not {
let scroll_position_y = get_scroll_position_from_wheel(
wheel_movement,
size.inner.height,
size.area.height(),
corrected_scrolled_y,
);
if *scrolled_y.peek() != scroll_position_y {
e.stop_propagation();
*scrolled_y.write() = scroll_position_y;
} else {
return;
}
} else {
let scroll_position_x = get_scroll_position_from_wheel(
wheel_movement,
size.inner.width,
size.area.width(),
corrected_scrolled_x,
);
if *scrolled_x.peek() != scroll_position_x {
e.stop_propagation();
*scrolled_x.write() = scroll_position_x;
} else {
return;
}
}
focus.focus();
};
let onmouseover = move |e: MouseEvent| {
let clicking_scrollbar = clicking_scrollbar.peek();
if let Some((Axis::Y, y)) = *clicking_scrollbar {
let coordinates = e.get_element_coordinates();
let cursor_y = coordinates.y - y - size.area.min_y() as f64;
let scroll_position = get_scroll_position_from_cursor(
cursor_y as f32,
size.inner.height,
size.area.height(),
);
*scrolled_y.write() = scroll_position;
} else if let Some((Axis::X, x)) = *clicking_scrollbar {
let coordinates = e.get_element_coordinates();
let cursor_x = coordinates.x - x - size.area.min_x() as f64;
let scroll_position = get_scroll_position_from_cursor(
cursor_x as f32,
size.inner.width,
size.area.width(),
);
*scrolled_x.write() = scroll_position;
}
if clicking_scrollbar.is_some() {
focus.focus();
}
};
let onkeydown = move |e: KeyboardEvent| {
match &e.key {
Key::Shift => {
clicking_shift.set(true);
}
Key::Alt => {
clicking_alt.set(true);
}
k => {
if !focus.is_focused() {
return;
}
if !scroll_with_arrows
&& (k == &Key::ArrowUp
|| k == &Key::ArrowRight
|| k == &Key::ArrowDown
|| k == &Key::ArrowLeft)
{
return;
}
let x = corrected_scrolled_x;
let y = corrected_scrolled_y;
let inner_height = size.inner.height;
let inner_width = size.inner.width;
let viewport_height = size.area.height();
let viewport_width = size.area.width();
let (x, y) = manage_key_event(
e,
(x, y),
inner_height,
inner_width,
viewport_height,
viewport_width,
);
scrolled_x.set(x as i32);
scrolled_y.set(y as i32);
}
};
};
let onkeyup = move |e: KeyboardEvent| {
if e.key == Key::Shift {
clicking_shift.set(false);
} else if e.key == Key::Alt {
clicking_alt.set(false);
}
};
let onmousedown_y = move |e: MouseEvent| {
let coordinates = e.get_element_coordinates();
*clicking_scrollbar.write() = Some((Axis::Y, coordinates.y));
};
let onmousedown_x = move |e: MouseEvent| {
let coordinates = e.get_element_coordinates();
*clicking_scrollbar.write() = Some((Axis::X, coordinates.x));
};
let onclick = move |_: MouseEvent| {
if clicking_scrollbar.peek().is_some() {
*clicking_scrollbar.write() = None;
}
};
let horizontal_scrollbar_size = if horizontal_scrollbar_is_visible {
&scrollbar_theme.size
} else {
"0"
};
let vertical_scrollbar_size = if vertical_scrollbar_is_visible {
&scrollbar_theme.size
} else {
"0"
};
let is_scrolling_x = clicking_scrollbar
.read()
.as_ref()
.map(|f| f.0 == Axis::X)
.unwrap_or_default();
let is_scrolling_y = clicking_scrollbar
.read()
.as_ref()
.map(|f| f.0 == Axis::Y)
.unwrap_or_default();
let focus_id = focus.attribute();
rsx!(
rect {
role: "scrollView",
overflow: "clip",
direction: "horizontal",
width: "{user_container_width}",
height: "{user_container_height}",
onglobalclick: onclick,
onglobalmouseover: onmouseover,
onkeydown,
onkeyup,
focus_id,
rect {
direction: "vertical",
width: "{container_width}",
height: "{container_height}",
rect {
overflow: "clip",
padding: "{padding}",
height: "100%",
width: "100%",
direction: "{user_direction}",
offset_y: "{corrected_scrolled_y}",
offset_x: "{corrected_scrolled_x}",
reference: node_ref,
onwheel: onwheel,
{props.children}
}
ScrollBar {
width: "100%",
height: "{horizontal_scrollbar_size}",
offset_x: "{scrollbar_x}",
clicking_scrollbar: is_scrolling_x,
theme: props.scrollbar_theme.clone(),
ScrollThumb {
clicking_scrollbar: is_scrolling_x,
onmousedown: onmousedown_x,
width: "{scrollbar_width}",
height: "100%",
theme: props.scrollbar_theme.clone().clone()
}
}
}
ScrollBar {
width: "{vertical_scrollbar_size}",
height: "100%",
offset_y: "{scrollbar_y}",
clicking_scrollbar: is_scrolling_y,
theme: props.scrollbar_theme.clone(),
ScrollThumb {
clicking_scrollbar: is_scrolling_y,
onmousedown: onmousedown_y,
width: "100%",
height: "{scrollbar_height}",
theme: props.scrollbar_theme
}
}
}
)
}
#[cfg(test)]
mod test {
use freya::prelude::*;
use freya_testing::prelude::*;
#[tokio::test]
pub async fn scroll_view_wheel() {
fn scroll_view_wheel_app() -> Element {
rsx!(
ScrollView {
rect {
height: "200",
width: "200",
},
rect {
height: "200",
width: "200",
},
rect {
height: "200",
width: "200",
}
rect {
height: "200",
width: "200",
}
}
)
}
let mut utils = launch_test(scroll_view_wheel_app);
let root = utils.root();
let content = root.get(0).get(0).get(0);
utils.wait_for_update().await;
assert!(content.get(0).is_visible()); assert!(content.get(1).is_visible()); assert!(content.get(2).is_visible()); assert!(!content.get(3).is_visible()); utils.push_event(PlatformEvent::Wheel {
name: EventName::Wheel,
scroll: (0., -300.).into(),
cursor: (5., 5.).into(),
});
utils.wait_for_update().await;
assert!(!content.get(0).is_visible()); assert!(content.get(1).is_visible()); assert!(content.get(2).is_visible()); assert!(content.get(3).is_visible()); }
#[tokio::test]
pub async fn scroll_view_scrollbar() {
fn scroll_view_scrollbar_app() -> Element {
rsx!(
ScrollView {
rect {
height: "200",
width: "200",
},
rect {
height: "200",
width: "200",
},
rect {
height: "200",
width: "200",
}
rect {
height: "200",
width: "200",
}
}
)
}
let mut utils = launch_test(scroll_view_scrollbar_app);
let root = utils.root();
let content = root.get(0).get(0).get(0);
utils.wait_for_update().await;
assert!(content.get(0).is_visible()); assert!(content.get(1).is_visible()); assert!(content.get(2).is_visible()); assert!(!content.get(3).is_visible()); utils.push_event(PlatformEvent::Mouse {
name: EventName::MouseOver,
cursor: (490., 20.).into(),
button: Some(MouseButton::Left),
});
utils.push_event(PlatformEvent::Mouse {
name: EventName::MouseDown,
cursor: (490., 20.).into(),
button: Some(MouseButton::Left),
});
utils.push_event(PlatformEvent::Mouse {
name: EventName::MouseOver,
cursor: (490., 320.).into(),
button: Some(MouseButton::Left),
});
utils.push_event(PlatformEvent::Mouse {
name: EventName::Click,
cursor: (490., 320.).into(),
button: Some(MouseButton::Left),
});
utils.wait_for_update().await;
assert!(!content.get(0).is_visible()); assert!(content.get(1).is_visible()); assert!(content.get(2).is_visible()); assert!(content.get(3).is_visible()); for _ in 0..5 {
utils.push_event(PlatformEvent::Keyboard {
name: EventName::KeyDown,
key: Key::ArrowUp,
code: Code::ArrowUp,
modifiers: Modifiers::default(),
});
utils.wait_for_update().await;
}
assert!(content.get(0).is_visible());
assert!(content.get(1).is_visible());
assert!(content.get(2).is_visible());
assert!(!content.get(3).is_visible());
utils.push_event(PlatformEvent::Keyboard {
name: EventName::KeyDown,
key: Key::End,
code: Code::End,
modifiers: Modifiers::default(),
});
utils.wait_for_update().await;
assert!(!content.get(0).is_visible());
assert!(content.get(1).is_visible());
assert!(content.get(2).is_visible());
assert!(content.get(3).is_visible());
}
}