Fix empty `id` and `name` attributes in `iced_web`
This commit is contained in:
parent
852d59752e
commit
ffd195cdb5
|
@ -28,7 +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: String,
|
id: Option<String>,
|
||||||
width: Length,
|
width: Length,
|
||||||
style: Box<dyn StyleSheet>,
|
style: Box<dyn StyleSheet>,
|
||||||
}
|
}
|
||||||
|
@ -52,7 +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: Default::default(),
|
id: None,
|
||||||
width: Length::Shrink,
|
width: Length::Shrink,
|
||||||
style: Default::default(),
|
style: Default::default(),
|
||||||
}
|
}
|
||||||
|
@ -78,7 +78,7 @@ impl<Message> Checkbox<Message> {
|
||||||
///
|
///
|
||||||
/// [`Checkbox`]: struct.Checkbox.html
|
/// [`Checkbox`]: struct.Checkbox.html
|
||||||
pub fn id(mut self, id: impl Into<String>) -> Self {
|
pub fn id(mut self, id: impl Into<String>) -> Self {
|
||||||
self.id = id.into();
|
self.id = Some(id.into());
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -97,8 +97,6 @@ where
|
||||||
|
|
||||||
let checkbox_label =
|
let checkbox_label =
|
||||||
bumpalo::format!(in bump, "{}", self.label).into_bump_str();
|
bumpalo::format!(in bump, "{}", self.label).into_bump_str();
|
||||||
let checkbox_id =
|
|
||||||
bumpalo::format!(in bump, "{}", self.id).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();
|
||||||
|
@ -108,8 +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 {
|
||||||
.attr("for", checkbox_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)
|
||||||
|
@ -122,9 +127,8 @@ where
|
||||||
)
|
)
|
||||||
.children(vec![
|
.children(vec![
|
||||||
// TODO: Checkbox styling
|
// TODO: Checkbox styling
|
||||||
input(bump)
|
input
|
||||||
.attr("type", "checkbox")
|
.attr("type", "checkbox")
|
||||||
.attr("id", checkbox_id)
|
|
||||||
.bool_attr("checked", self.is_checked)
|
.bool_attr("checked", self.is_checked)
|
||||||
.on("click", move |_root, vdom, _event| {
|
.on("click", move |_root, vdom, _event| {
|
||||||
let msg = on_toggle(!is_checked);
|
let msg = on_toggle(!is_checked);
|
||||||
|
|
|
@ -35,8 +35,8 @@ pub struct Radio<Message> {
|
||||||
is_selected: bool,
|
is_selected: bool,
|
||||||
on_click: Message,
|
on_click: Message,
|
||||||
label: String,
|
label: String,
|
||||||
id: String,
|
id: Option<String>,
|
||||||
name: String,
|
name: Option<String>,
|
||||||
style: Box<dyn StyleSheet>,
|
style: Box<dyn StyleSheet>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -65,8 +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: Default::default(),
|
id: None,
|
||||||
name: Default::default(),
|
name: None,
|
||||||
style: Default::default(),
|
style: Default::default(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -83,7 +83,7 @@ impl<Message> Radio<Message> {
|
||||||
///
|
///
|
||||||
/// [`Radio`]: struct.Radio.html
|
/// [`Radio`]: struct.Radio.html
|
||||||
pub fn name(mut self, name: impl Into<String>) -> Self {
|
pub fn name(mut self, name: impl Into<String>) -> Self {
|
||||||
self.name = name.into();
|
self.name = Some(name.into());
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -91,7 +91,7 @@ impl<Message> Radio<Message> {
|
||||||
///
|
///
|
||||||
/// [`Radio`]: struct.Radio.html
|
/// [`Radio`]: struct.Radio.html
|
||||||
pub fn id(mut self, id: impl Into<String>) -> Self {
|
pub fn id(mut self, id: impl Into<String>) -> Self {
|
||||||
self.id = id.into();
|
self.id = Some(id.into());
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -110,22 +110,32 @@ where
|
||||||
|
|
||||||
let radio_label =
|
let radio_label =
|
||||||
bumpalo::format!(in bump, "{}", self.label).into_bump_str();
|
bumpalo::format!(in bump, "{}", self.label).into_bump_str();
|
||||||
let radio_name =
|
|
||||||
bumpalo::format!(in bump, "{}", self.name).into_bump_str();
|
|
||||||
let radio_id = bumpalo::format!(in bump, "{}", self.id).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")
|
||||||
.attr("for", radio_id)
|
|
||||||
.children(vec![
|
.children(vec![
|
||||||
input(bump)
|
input
|
||||||
.attr("type", "radio")
|
.attr("type", "radio")
|
||||||
.attr("id", radio_id)
|
|
||||||
.attr("name", radio_name)
|
|
||||||
.attr("style", "margin-right: 10px")
|
.attr("style", "margin-right: 10px")
|
||||||
.bool_attr("checked", self.is_selected)
|
.bool_attr("checked", self.is_selected)
|
||||||
.on("click", move |_root, _vdom, _event| {
|
.on("click", move |_root, _vdom, _event| {
|
||||||
|
|
Loading…
Reference in New Issue