Add visible_bounds helper to widget::selector

This commit is contained in:
Héctor Ramón Jiménez 2025-08-27 10:54:53 +02:00
parent 445b6c8608
commit 7c1f193542
No known key found for this signature in database
GPG key ID: 4C07CEC81AFA161F

View file

@ -3,6 +3,8 @@ pub use iced_selector::Selector;
pub use iced_selector::target::{Bounded, Match, Target, Text};
use crate::core::Rectangle;
use crate::Task;
use crate::core::widget;
use crate::task;
@ -16,3 +18,13 @@ pub fn find_by_id(id: impl Into<widget::Id>) -> Task<Option<Match>> {
pub fn find_by_text(text: impl Into<String>) -> Task<Option<Text>> {
task::widget(Selector::find(text.into()))
}
/// Finds the visible bounds of the first [`Selector`] target.
pub fn visible_bounds<S>(selector: S) -> Task<Option<Rectangle>>
where
S: Selector + Send + 'static,
S::Output: Bounded + Clone + Send + 'static,
{
task::widget(selector.find())
.map(|target| target.as_ref().and_then(Bounded::visible_bounds))
}