yew_components/select.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
//! This module contains the implementation of the `Select` component.
use web_sys::HtmlSelectElement;
use yew::callback::Callback;
use yew::html::{ChangeData, Component, ComponentLink, Html, NodeRef, ShouldRender};
use yew::{html, Properties};
/// An alternative to the HTML `<select>` tag.
///
/// The display of options is handled by the `ToString` implementation on their
/// type.
///
/// # Example
///
/// ```
///# use std::fmt;
///# use yew::{Html, Component, ComponentLink, html};
///# use yew_components::Select;
/// #[derive(PartialEq, Clone)]
/// enum Scene {
/// First,
/// Second,
/// }
///# struct Model { link: ComponentLink<Self> };
///# impl Component for Model {
///# type Message = ();type Properties = ();
///# fn create(props: Self::Properties,link: ComponentLink<Self>) -> Self {unimplemented!()}
///# fn update(&mut self,msg: Self::Message) -> bool {unimplemented!()}
///# fn change(&mut self, _: Self::Properties) -> bool {unimplemented!()}
///# fn view(&self) -> Html {unimplemented!()}}
/// impl fmt::Display for Scene {
/// fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
/// match self {
/// Scene::First => write!(f, "{}", "First"),
/// Scene::Second => write!(f, "{}", "Second"),
/// }
/// }
/// }
///
/// fn view(link: ComponentLink<Model>) -> Html {
/// let scenes = vec![Scene::First, Scene::Second];
/// html! {
/// <Select<Scene> options=scenes on_change=link.callback(|_| ()) />
/// }
/// }
/// ```
///
/// # Properties
///
/// Only the `on_change` property is mandatory. Other (optional) properties
/// are `selected`, `disabled`, `options`, `class`, `id`, and `placeholder`.
#[derive(Debug)]
pub struct Select<T: ToString + PartialEq + Clone + 'static> {
props: Props<T>,
select_ref: NodeRef,
link: ComponentLink<Self>,
}
/// Messages sent internally as part of the select component
#[derive(Debug)]
pub enum Msg {
/// Sent when the user selects a new option.
Selected(Option<usize>),
}
/// Properties of the `Select` component.
#[derive(PartialEq, Clone, Properties, Debug)]
pub struct Props<T: Clone> {
/// Initially selected value.
#[prop_or_default]
pub selected: Option<T>,
/// Whether or not the selector should be disabled.
#[prop_or_default]
pub disabled: bool,
/// A vector of options which the end user can choose from.
#[prop_or_default]
pub options: Vec<T>,
/// Classes to be applied to the `<select>` tag
#[prop_or_default]
pub class: String,
/// The ID for the `<select>` tag
#[prop_or_default]
pub id: String,
/// Placeholder value, shown at the top as a disabled option
#[prop_or(String::from("↪"))]
pub placeholder: String,
/// A callback which is called when the value of the `<select>` changes.
pub on_change: Callback<T>,
}
impl<T> Component for Select<T>
where
T: ToString + PartialEq + Clone + 'static,
{
type Message = Msg;
type Properties = Props<T>;
fn create(props: Self::Properties, link: ComponentLink<Self>) -> Self {
Self {
props,
select_ref: NodeRef::default(),
link,
}
}
fn update(&mut self, msg: Self::Message) -> ShouldRender {
match msg {
Msg::Selected(value) => {
if let Some(idx) = value {
let item = self.props.options.get(idx - 1);
if let Some(value) = item {
self.props.on_change.emit(value.clone());
}
}
}
}
true
}
fn change(&mut self, props: Self::Properties) -> ShouldRender {
if self.props.selected != props.selected {
if let Some(select) = self.select_ref.cast::<HtmlSelectElement>() {
let val = props
.selected
.as_ref()
.map(|v| v.to_string())
.unwrap_or_default();
select.set_value(&val);
}
}
self.props = props;
true
}
fn view(&self) -> Html {
let selected = self.props.selected.as_ref();
let view_option = |value: &T| {
let flag = selected == Some(value);
html! {
<option value=value.to_string() selected=flag>{ value.to_string() }</option>
}
};
html! {
<select
ref=self.select_ref.clone()
id=self.props.id.clone()
class=self.props.class.clone()
disabled=self.props.disabled
onchange=self.on_change()
>
<option value="" disabled=true selected=selected.is_none()>
{ self.props.placeholder.clone() }
</option>
{ for self.props.options.iter().map(view_option) }
</select>
}
}
}
impl<T> Select<T>
where
T: ToString + PartialEq + Clone + 'static,
{
fn on_change(&self) -> Callback<ChangeData> {
self.link.callback(|event| match event {
ChangeData::Select(elem) => {
let value = elem.selected_index();
Msg::Selected(Some(value as usize))
}
_ => unreachable!(),
})
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn can_create_select() {
let on_change = Callback::<u8>::default();
html! {
<Select<u8> on_change=on_change />
};
}
#[test]
fn can_create_select_with_class() {
let on_change = Callback::<u8>::default();
html! {
<Select<u8> on_change=on_change class="form-control" />
};
}
#[test]
fn can_create_select_with_id() {
let on_change = Callback::<u8>::default();
html! {
<Select<u8> on_change=on_change id="test-select" />
};
}
#[test]
fn can_create_select_with_placeholder() {
let on_change = Callback::<u8>::default();
html! {
<Select<u8> on_change=on_change placeholder="--Please choose an option--" />
};
}
}