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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
use *;
use ;
use component_doc;
use inject_style;
use select_styles;
use ;
use crateIcon;
/// Select is a styled native dropdown for short, fixed option lists — status, role,
/// category — where search is unnecessary and native form submission matters.
///
/// Provide `<option>` children with explicit values, bind a string signal, and use
/// `default_value` to hydrate server defaults. For searchable or multi-select pickers,
/// use [`Combobox`](crate::Combobox) instead.
///
/// # When to use
///
/// - Fixed, short option lists (status, role, category)
/// - Native form posts where a `<select>` is appropriate
/// - Settings where search/filter is not required
///
/// # Usage
///
/// 1. Add `<option value="…">` children inside `Select`.
/// 2. Bind `value` with [`SelectBind`] (typically `RwSignal<String>`) for controlled updates.
/// 3. Pass `default_value` on [`SelectAppearance`] when the first rendered value should differ from an empty signal.
/// 4. Wrap in [`Field`](crate::Field) when a visible label or validation message is needed.
/// 5. Attach `rules` on [`SelectBind`] (e.g. [`SelectRule::required`]) for field-level validation.
///
/// Grouped props: [`SelectBind`] (value, id, name, rules), [`SelectAppearance`] (disabled, size,
/// `default_value`). At call sites you can write `bind=signal` via [`From`] on [`SelectBind`].
///
/// # Form picker controls
///
/// When `Select` is not the right fit:
///
/// - **Short fixed list, native form post** — `Select` (this component).
/// - **Many options, type to filter** — [`Combobox`](crate::Combobox).
/// - **Typeahead with free text allowed** — [`AutoComplete`](crate::AutoComplete).
///
/// # Best Practices
///
/// ## Do's
///
/// * Wrap in [`Field`](crate::Field) when a visible label is required
/// * Provide `<option>` children with explicit `value` attributes
/// * Use `default_value` when hydrating from server defaults (see controlled select patterns)
///
/// ## Don'ts
///
/// * Do not use for searchable or multi-select lists — use [`Combobox`](crate::Combobox)
/// * Do not put `data-testid` on the component — wrap with a native element
/// * Do not omit `value` on options when controlled `value` must match exactly
///
/// # Examples
///
/// ## Basic select
/// Native dropdown for choosing one option from a short fixed list. Bind `value` to track the selected option; provide `<option>` children with explicit `value` attributes.
/// <!-- preview -->
/// ```rust
/// let value = RwSignal::new("a".to_string());
/// view! {
/// <div data-testid="select-preview">
/// <Select bind=value>
/// <option value="a">"Option A"</option>
/// <option value="b">"Option B"</option>
/// </Select>
/// </div>
/// }
/// ```
///
/// ## Initial value with default_value
/// Pre-selects an option on first render when the bound signal is still empty. Use for server-hydrated forms where the initial choice comes from saved settings.
/// <!-- preview -->
/// ```rust
/// let value = RwSignal::new(String::new());
/// view! {
/// <div data-testid="select-default">
/// <Select
/// bind=value
/// appearance=SelectAppearance {
/// default_value: Some("green".to_string()),
/// ..Default::default()
/// }
/// >
/// <option value="red">"Red"</option>
/// <option value="green">"Green"</option>
/// <option value="blue">"Blue"</option>
/// </Select>
/// </div>
/// }
/// ```
///
/// ## Disabled select
/// Shows the current selection but prevents changes. Use while saving or when the choice is locked by permissions or workflow state.
/// <!-- preview -->
/// ```rust
/// let value = RwSignal::new("a".to_string());
/// view! {
/// <div data-testid="select-disabled">
/// <Select bind=value appearance=SelectAppearance::disabled()>
/// <option value="a">"Locked"</option>
/// </Select>
/// </div>
/// }
/// ```
///
/// ## Small size
/// Compact select height for dense settings rows and inline filters. Medium and large use the same `appearance=SelectSize::…` pattern.
/// <!-- preview -->
/// ```rust
/// use crate::SelectSize;
/// let value = RwSignal::new("sm".to_string());
/// view! {
/// <div data-testid="select-small">
/// <Select bind=value appearance=SelectSize::Small>
/// <option value="sm">"Small"</option>
/// <option value="md">"Medium"</option>
/// </Select>
/// </div>
/// }
/// ```
///
/// ## Labeled select in Field
/// Field supplies the visible label and id association; Select holds the options and two-way value binding. Prefer this pattern over an unlabeled dropdown.
/// <!-- preview -->
/// ```rust
/// use crate::{Field, Select};
/// let value = RwSignal::new("green".to_string());
/// view! {
/// <div data-testid="select-field">
/// <Field label="Color">
/// <Select
/// bind=value
/// appearance=SelectAppearance {
/// default_value: Some("green".to_string()),
/// ..Default::default()
/// }
/// >
/// <option value="red">"Red"</option>
/// <option value="green">"Green"</option>
/// <option value="blue">"Blue"</option>
/// </Select>
/// </Field>
/// </div>
/// }
/// ```
///
/// ## Size matrix
/// Small, medium, and large visual heights for dense toolbars or prominent form fields.
/// <!-- preview -->
/// ```rust
/// use crate::{Flex, Select, SelectSize};
/// let small = RwSignal::new("sm".to_string());
/// let medium = RwSignal::new("md".to_string());
/// let large = RwSignal::new("lg".to_string());
/// view! {
/// <div data-testid="select-size-matrix">
/// <Flex vertical=true>
/// <Select bind=small appearance=SelectSize::Small>
/// <option value="sm">"Small"</option>
/// </Select>
/// <Select bind=medium>
/// <option value="md">"Medium"</option>
/// </Select>
/// <Select bind=large appearance=SelectSize::Large>
/// <option value="lg">"Large"</option>
/// </Select>
/// </Flex>
/// </div>
/// }
/// ```