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
|
use super::VCardPropertyInputComponent;
use crate::view::InputProps;
use crate::viewmodel::address::*;
use crate::viewmodel::Error;
use crate::viewmodel::VCardPropertyInputObject;
use yew::prelude::*;
use yewtil::NeqAssign;
type Props = InputProps<Address, AddressView>;
/// View Component for a `address` field
///
/// # Examples
///
/// ```compile_fail
/// let html = html!{
/// <AddressView weak_link=some_weak_component_link
/// generated=self.link.callback(
/// |n: Irc<Address>|
/// Msg::GeneratedAddress(some_address)
/// )
/// />
/// };
/// ```
#[derive(Clone, PartialEq)]
pub struct AddressView {
props: Props,
value: Address,
error: Option<Error>,
}
pub enum Msg {
UpdatePostOfficeBox(String),
UpdateExtension(String),
UpdateStreet(String),
UpdateLocality(String),
UpdateRegion(String),
UpdateCode(String),
UpdateCountry(String),
ToggleWork,
ToggleHome,
Generate,
}
impl VCardPropertyInputComponent<Address> for AddressView {
fn get_input_object(&self) -> Address {
self.value.clone()
}
fn get_title(&self) -> String {
"Address".to_string()
}
fn get_error(&self) -> Option<Error> {
self.error.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 {
props.weak_link.borrow_mut().replace(link);
Self {
props,
value: Address::new(),
error: None,
}
}
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,
Msg::Generate => {
self.props.generated.emit(self.value.clone());
}
};
true
}
fn change(&mut self, props: <Self as yew::Component>::Properties) -> bool {
self.props.neq_assign(props)
}
fn view(&self) -> yew::virtual_dom::VNode {
let link = self.props.weak_link.borrow().clone().unwrap();
html! {
<div class="box">
{ self.render_error() }
<h3 class="subtitle">{ self.get_title() }</h3>
{ self.get_input_object().render(&link) }
</div>
}
}
}
|