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
|
use yew::prelude::*;
use vcard::properties;
use super::input_objects::name::*;
use super::input_objects::VCardPropertyInputObject;
use super::VCardPropertyInputComponent;
pub struct NameView {
link: ComponentLink<Self>,
value: Name,
oninput: Callback<Name>,
errors: Vec<String>,
}
pub enum Msg {
UpdatePrefix(String),
UpdateFirstName(String),
UpdateMiddleName(String),
UpdateLastName(String),
UpdateSuffix(String),
}
#[derive(Clone, PartialEq, Properties)]
pub struct Props {
pub oninput: Callback<Name>,
}
impl VCardPropertyInputComponent<properties::Name, Name> for NameView {
fn get_input_object(&self) -> Name {
self.value.clone()
}
fn get_title(&self) -> String {
"Name".to_string()
}
fn get_errors(&self) -> Vec<String> {
self.errors.clone()
}
}
impl Component for NameView {
type Message = Msg;
type Properties = Props;
fn create(props: <Self as yew::Component>::Properties, link: yew::html::Scope<Self>) -> Self {
Self {
link,
value: Name::new(),
oninput: props.oninput,
errors: vec![],
}
}
fn update(&mut self, msg: <Self as yew::Component>::Message) -> bool {
match msg {
Msg::UpdatePrefix(p) => self.value.prefix = p,
Msg::UpdateFirstName(f) => self.value.first_name = f,
Msg::UpdateMiddleName(m) => self.value.middle_name = m,
Msg::UpdateLastName(l) => self.value.last_name = l,
Msg::UpdateSuffix(s) => self.value.suffix = s,
};
self.oninput.emit(self.value.clone());
true
}
fn change(&mut self, props: <Self as yew::Component>::Properties) -> bool {
self.oninput = props.oninput;
true
}
fn view(&self) -> yew::virtual_dom::VNode {
html!{
<div class="box">
{
self.render_errors()
}
<h3 class="subtitle">{ self.get_title() }</h3>
{
self.get_input_object().render(&self.link)
}
</div>
}
}
}
|