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
257
258
259
use crate::Button;
use yew::prelude::*;
use yew::virtual_dom::VChild;
#[derive(Clone, PartialEq, Properties)]
pub struct Props {
#[prop_or_default]
pub children: Children,
}
pub struct Form {
props: Props,
}
impl Component for Form {
type Message = ();
type Properties = Props;
fn create(props: Self::Properties, _link: ComponentLink<Self>) -> Self {
Self { props }
}
fn update(&mut self, _msg: Self::Message) -> bool {
true
}
fn change(&mut self, props: Self::Properties) -> bool {
if self.props != props {
self.props = props;
true
} else {
false
}
}
fn view(&self) -> Html {
html! {
<form novalidate=true class="pf-c-form">
{ for self.props.children.iter().map(|child|{
child
}) }
</form>
}
}
}
#[derive(Clone, PartialEq, Properties)]
pub struct FormGroupProps {
pub children: Children,
pub label: String,
#[prop_or_default]
pub required: bool,
#[prop_or_default]
pub helper_text: String,
}
pub struct FormGroup {
props: FormGroupProps,
}
impl Component for FormGroup {
type Message = ();
type Properties = FormGroupProps;
fn create(props: Self::Properties, _link: ComponentLink<Self>) -> Self {
Self { props }
}
fn update(&mut self, _msg: Self::Message) -> bool {
true
}
fn change(&mut self, props: Self::Properties) -> bool {
if self.props != props {
self.props = props;
true
} else {
false
}
}
fn view(&self) -> Html {
let classes = Classes::from("pf-c-form__group");
html! {
<div class=classes>
<div class="pf-c-form__group-label">
<div class="pf-c-form__label">
<span class="pf-c-form__label-text">{&self.props.label}</span>
{if self.props.required {
html!{
<span class="pf-c-form__label-required" aria-hidden="true">{"*"}</span>
}
} else {
html!{}
}}
</div>
</div>
<div class="pf-c-form__group-control">
{ for self.props.children.iter() }
{ if !self.props.helper_text.is_empty() {html!{
<p class="pf-c-form__helper-text" aria-live="polite">{ &self.props.helper_text }</p>
}} else {html!{}}}
</div>
</div>
}
}
}
#[derive(Copy, Clone, Eq, PartialEq)]
pub enum InputState {
Default,
Success,
Warning,
Error,
}
impl Default for InputState {
fn default() -> Self {
Self::Default
}
}
#[derive(Copy, Clone, Eq, PartialEq)]
pub enum TextInputIcon {
None,
Calendar,
Clock,
Search,
Custom,
}
impl Default for TextInputIcon {
fn default() -> Self {
Self::None
}
}
#[derive(Clone, PartialEq, Properties)]
pub struct TextInputProps {
#[prop_or_default]
pub name: String,
#[prop_or_default]
pub value: String,
#[prop_or_default]
pub required: bool,
#[prop_or_default]
pub disabled: bool,
#[prop_or_default]
pub readonly: bool,
#[prop_or_default]
pub state: InputState,
#[prop_or_default]
pub icon: TextInputIcon,
#[prop_or("text".into())]
pub r#type: String,
}
pub struct TextInput {
props: TextInputProps,
}
impl Component for TextInput {
type Message = ();
type Properties = TextInputProps;
fn create(props: Self::Properties, _link: ComponentLink<Self>) -> Self {
Self { props }
}
fn update(&mut self, _msg: Self::Message) -> ShouldRender {
true
}
fn change(&mut self, props: Self::Properties) -> ShouldRender {
if self.props != props {
self.props = props;
true
} else {
false
}
}
fn view(&self) -> Html {
let mut classes = Classes::from("pf-c-form-control");
classes = match self.props.icon {
TextInputIcon::None => classes,
TextInputIcon::Search => classes.extend("pf-m-search"),
TextInputIcon::Calendar => classes.extend(vec!["pf-m-icon", "pf-m-calendar"]),
TextInputIcon::Clock => classes.extend(vec!["pf-m-icon", "pf-m-clock"]),
TextInputIcon::Custom => classes.extend(vec!["pf-m-icon"]),
};
let mut aria_invalid = false;
match self.props.state {
InputState::Default => {}
InputState::Success => classes.push("pf-m-success"),
InputState::Warning => classes.push("pf-m-warning"),
InputState::Error => aria_invalid = true,
};
html! {
<input
class=classes
type=self.props.r#type
name=self.props.name
required=self.props.required
disabled=self.props.disabled
readonly=self.props.readonly
aria_invalid=aria_invalid
value=self.props.value
/>
}
}
}
#[derive(Clone, PartialEq, Properties)]
pub struct ActionGroupProps {
children: ChildrenWithProps<Button>,
}
pub struct ActionGroup {
props: ActionGroupProps,
}
impl Component for ActionGroup {
type Message = ();
type Properties = ActionGroupProps;
fn create(props: Self::Properties, _link: ComponentLink<Self>) -> Self {
Self { props }
}
fn update(&mut self, _msg: Self::Message) -> ShouldRender {
true
}
fn change(&mut self, props: Self::Properties) -> ShouldRender {
if self.props != props {
self.props = props;
true
} else {
false
}
}
fn view(&self) -> Html {
html! {
{ for self.props.children.iter() }
}
}
}