Merge pull request #292 from TomPridham/feature/accessibility-web
add some accessibility features to web widgets
This commit is contained in:
commit
08e13e00f1
|
@ -28,6 +28,7 @@ pub struct Checkbox<Message> {
|
||||||
is_checked: bool,
|
is_checked: bool,
|
||||||
on_toggle: Rc<dyn Fn(bool) -> Message>,
|
on_toggle: Rc<dyn Fn(bool) -> Message>,
|
||||||
label: String,
|
label: String,
|
||||||
|
id: Option<String>,
|
||||||
width: Length,
|
width: Length,
|
||||||
style: Box<dyn StyleSheet>,
|
style: Box<dyn StyleSheet>,
|
||||||
}
|
}
|
||||||
|
@ -51,6 +52,7 @@ impl<Message> Checkbox<Message> {
|
||||||
is_checked,
|
is_checked,
|
||||||
on_toggle: Rc::new(f),
|
on_toggle: Rc::new(f),
|
||||||
label: label.into(),
|
label: label.into(),
|
||||||
|
id: None,
|
||||||
width: Length::Shrink,
|
width: Length::Shrink,
|
||||||
style: Default::default(),
|
style: Default::default(),
|
||||||
}
|
}
|
||||||
|
@ -71,6 +73,14 @@ impl<Message> Checkbox<Message> {
|
||||||
self.style = style.into();
|
self.style = style.into();
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Sets the id of the [`Checkbox`].
|
||||||
|
///
|
||||||
|
/// [`Checkbox`]: struct.Checkbox.html
|
||||||
|
pub fn id(mut self, id: impl Into<String>) -> Self {
|
||||||
|
self.id = Some(id.into());
|
||||||
|
self
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<Message> Widget<Message> for Checkbox<Message>
|
impl<Message> Widget<Message> for Checkbox<Message>
|
||||||
|
@ -85,7 +95,8 @@ where
|
||||||
) -> dodrio::Node<'b> {
|
) -> dodrio::Node<'b> {
|
||||||
use dodrio::builder::*;
|
use dodrio::builder::*;
|
||||||
|
|
||||||
let checkbox_label = bumpalo::format!(in bump, "{}", self.label);
|
let checkbox_label =
|
||||||
|
bumpalo::format!(in bump, "{}", self.label).into_bump_str();
|
||||||
|
|
||||||
let event_bus = bus.clone();
|
let event_bus = bus.clone();
|
||||||
let on_toggle = self.on_toggle.clone();
|
let on_toggle = self.on_toggle.clone();
|
||||||
|
@ -95,7 +106,15 @@ where
|
||||||
|
|
||||||
let spacing_class = style_sheet.insert(bump, css::Rule::Spacing(5));
|
let spacing_class = style_sheet.insert(bump, css::Rule::Spacing(5));
|
||||||
|
|
||||||
label(bump)
|
let (label, input) = if let Some(id) = &self.id {
|
||||||
|
let id = bumpalo::format!(in bump, "{}", id).into_bump_str();
|
||||||
|
|
||||||
|
(label(bump).attr("for", id), input(bump).attr("id", id))
|
||||||
|
} else {
|
||||||
|
(label(bump), input(bump))
|
||||||
|
};
|
||||||
|
|
||||||
|
label
|
||||||
.attr(
|
.attr(
|
||||||
"class",
|
"class",
|
||||||
bumpalo::format!(in bump, "{} {}", row_class, spacing_class)
|
bumpalo::format!(in bump, "{} {}", row_class, spacing_class)
|
||||||
|
@ -108,7 +127,7 @@ where
|
||||||
)
|
)
|
||||||
.children(vec![
|
.children(vec![
|
||||||
// TODO: Checkbox styling
|
// TODO: Checkbox styling
|
||||||
input(bump)
|
input
|
||||||
.attr("type", "checkbox")
|
.attr("type", "checkbox")
|
||||||
.bool_attr("checked", self.is_checked)
|
.bool_attr("checked", self.is_checked)
|
||||||
.on("click", move |_root, vdom, _event| {
|
.on("click", move |_root, vdom, _event| {
|
||||||
|
@ -118,8 +137,7 @@ where
|
||||||
vdom.schedule_render();
|
vdom.schedule_render();
|
||||||
})
|
})
|
||||||
.finish(),
|
.finish(),
|
||||||
span(bump).children(vec![
|
text(checkbox_label),
|
||||||
text(checkbox_label.into_bump_str())]).finish(),
|
|
||||||
])
|
])
|
||||||
.finish()
|
.finish()
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,9 @@ pub struct Image {
|
||||||
/// The image path
|
/// The image path
|
||||||
pub handle: Handle,
|
pub handle: Handle,
|
||||||
|
|
||||||
|
/// The alt text of the image
|
||||||
|
pub alt: String,
|
||||||
|
|
||||||
/// The width of the image
|
/// The width of the image
|
||||||
pub width: Length,
|
pub width: Length,
|
||||||
|
|
||||||
|
@ -36,6 +39,7 @@ impl Image {
|
||||||
pub fn new<T: Into<Handle>>(handle: T) -> Self {
|
pub fn new<T: Into<Handle>>(handle: T) -> Self {
|
||||||
Image {
|
Image {
|
||||||
handle: handle.into(),
|
handle: handle.into(),
|
||||||
|
alt: Default::default(),
|
||||||
width: Length::Shrink,
|
width: Length::Shrink,
|
||||||
height: Length::Shrink,
|
height: Length::Shrink,
|
||||||
}
|
}
|
||||||
|
@ -56,6 +60,14 @@ impl Image {
|
||||||
self.height = height;
|
self.height = height;
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Sets the alt text of the [`Image`].
|
||||||
|
///
|
||||||
|
/// [`Image`]: struct.Image.html
|
||||||
|
pub fn alt(mut self, alt: impl Into<String>) -> Self {
|
||||||
|
self.alt = alt.into();
|
||||||
|
self
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<Message> Widget<Message> for Image {
|
impl<Message> Widget<Message> for Image {
|
||||||
|
@ -70,8 +82,10 @@ impl<Message> Widget<Message> for Image {
|
||||||
let src = bumpalo::format!(in bump, "{}", match self.handle.data.as_ref() {
|
let src = bumpalo::format!(in bump, "{}", match self.handle.data.as_ref() {
|
||||||
Data::Path(path) => path.to_str().unwrap_or("")
|
Data::Path(path) => path.to_str().unwrap_or("")
|
||||||
});
|
});
|
||||||
|
let alt = bumpalo::format!(in bump, "{}", self.alt).into_bump_str();
|
||||||
|
|
||||||
let mut image = img(bump).attr("src", src.into_bump_str());
|
let mut image =
|
||||||
|
img(bump).attr("src", src.into_bump_str()).attr("alt", alt);
|
||||||
|
|
||||||
match self.width {
|
match self.width {
|
||||||
Length::Shrink => {}
|
Length::Shrink => {}
|
||||||
|
|
|
@ -35,6 +35,8 @@ pub struct Radio<Message> {
|
||||||
is_selected: bool,
|
is_selected: bool,
|
||||||
on_click: Message,
|
on_click: Message,
|
||||||
label: String,
|
label: String,
|
||||||
|
id: Option<String>,
|
||||||
|
name: Option<String>,
|
||||||
style: Box<dyn StyleSheet>,
|
style: Box<dyn StyleSheet>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -63,6 +65,8 @@ impl<Message> Radio<Message> {
|
||||||
is_selected: Some(value) == selected,
|
is_selected: Some(value) == selected,
|
||||||
on_click: f(value),
|
on_click: f(value),
|
||||||
label: label.into(),
|
label: label.into(),
|
||||||
|
id: None,
|
||||||
|
name: None,
|
||||||
style: Default::default(),
|
style: Default::default(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -74,6 +78,22 @@ impl<Message> Radio<Message> {
|
||||||
self.style = style.into();
|
self.style = style.into();
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Sets the name attribute of the [`Radio`] button.
|
||||||
|
///
|
||||||
|
/// [`Radio`]: struct.Radio.html
|
||||||
|
pub fn name(mut self, name: impl Into<String>) -> Self {
|
||||||
|
self.name = Some(name.into());
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Sets the id of the [`Radio`] button.
|
||||||
|
///
|
||||||
|
/// [`Radio`]: struct.Radio.html
|
||||||
|
pub fn id(mut self, id: impl Into<String>) -> Self {
|
||||||
|
self.id = Some(id.into());
|
||||||
|
self
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<Message> Widget<Message> for Radio<Message>
|
impl<Message> Widget<Message> for Radio<Message>
|
||||||
|
@ -88,16 +108,33 @@ where
|
||||||
) -> dodrio::Node<'b> {
|
) -> dodrio::Node<'b> {
|
||||||
use dodrio::builder::*;
|
use dodrio::builder::*;
|
||||||
|
|
||||||
let radio_label = bumpalo::format!(in bump, "{}", self.label);
|
let radio_label =
|
||||||
|
bumpalo::format!(in bump, "{}", self.label).into_bump_str();
|
||||||
|
|
||||||
let event_bus = bus.clone();
|
let event_bus = bus.clone();
|
||||||
let on_click = self.on_click.clone();
|
let on_click = self.on_click.clone();
|
||||||
|
|
||||||
|
let (label, input) = if let Some(id) = &self.id {
|
||||||
|
let id = bumpalo::format!(in bump, "{}", id).into_bump_str();
|
||||||
|
|
||||||
|
(label(bump).attr("for", id), input(bump).attr("id", id))
|
||||||
|
} else {
|
||||||
|
(label(bump), input(bump))
|
||||||
|
};
|
||||||
|
|
||||||
|
let input = if let Some(name) = &self.name {
|
||||||
|
let name = bumpalo::format!(in bump, "{}", name).into_bump_str();
|
||||||
|
|
||||||
|
dodrio::builder::input(bump).attr("name", name)
|
||||||
|
} else {
|
||||||
|
input
|
||||||
|
};
|
||||||
|
|
||||||
// TODO: Complete styling
|
// TODO: Complete styling
|
||||||
label(bump)
|
label
|
||||||
.attr("style", "display: block; font-size: 20px")
|
.attr("style", "display: block; font-size: 20px")
|
||||||
.children(vec![
|
.children(vec![
|
||||||
input(bump)
|
input
|
||||||
.attr("type", "radio")
|
.attr("type", "radio")
|
||||||
.attr("style", "margin-right: 10px")
|
.attr("style", "margin-right: 10px")
|
||||||
.bool_attr("checked", self.is_selected)
|
.bool_attr("checked", self.is_selected)
|
||||||
|
@ -105,7 +142,7 @@ where
|
||||||
event_bus.publish(on_click.clone());
|
event_bus.publish(on_click.clone());
|
||||||
})
|
})
|
||||||
.finish(),
|
.finish(),
|
||||||
text(radio_label.into_bump_str()),
|
text(radio_label),
|
||||||
])
|
])
|
||||||
.finish()
|
.finish()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue