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
|
use yew::prelude::*;
use vcard::properties;
use super::input_objects::address::*;
use super::input_objects::VCardPropertyInputObject;
use super::VCardPropertyInputComponent;
pub struct AddressView {
link: ComponentLink<Self>,
value: Address,
oninput: Callback<Address>,
errors: Vec<String>,
}
pub enum Msg {
UpdatePostOfficeBox(String),
UpdateExtension(String),
UpdateStreet(String),
UpdateLocality(String),
UpdateRegion(String),
UpdateCode(String),
UpdateCountry(String),
ToggleWork,
ToggleHome,
}
#[derive(Clone, PartialEq, Properties)]
pub struct Props {
pub oninput: Callback<Address>,
//pub errors: Vec<String>,
}
impl VCardPropertyInputComponent<properties::Address, Address> for AddressView {
fn get_input_object(&self) -> Address {
self.value.clone()
}
fn get_title(&self) -> String {
"Address".to_string()
}
fn get_errors(&self) -> Vec<String> {
self.errors.clone()
}
}
impl Component for AddressView {
type Message = Msg;
type Properties = Props;
fn create(props: <Self as yew::Component>::Properties, link: yew::html::Scope<Self>) -> Self {
Self {
link,
value: Address::new(),
oninput: props.oninput,
errors: vec![],
}
}
fn update(&mut self, msg: <Self as yew::Component>::Message) -> bool {
match msg {
Msg::UpdatePostOfficeBox(b) => self.value.post_office_box = b,
Msg::UpdateExtension(e) => self.value.extension = e,
Msg::UpdateStreet(s) => self.value.street = s,
Msg::UpdateLocality(l) => self.value.locality = l,
Msg::UpdateRegion(r) => self.value.region = r,
Msg::UpdateCode(p) => self.value.code = p,
Msg::UpdateCountry(c) => self.value.country = c,
Msg::ToggleWork => self.value.work = !self.value.work,
Msg::ToggleHome => self.value.home = !self.value.home,
};
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>
}
}
}
|