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
|
use super::VCardPropertyInputComponent;
use crate::view::InputProps;
use crate::viewmodel::dates::*;
use crate::viewmodel::Error;
use crate::viewmodel::VCardPropertyInputObject;
use yew::prelude::*;
use yewtil::NeqAssign;
type Props = InputProps<Dates, DatesView>;
#[derive(Clone, PartialEq)]
pub struct DatesView {
props: Props,
value: Dates,
error: Option<Error>,
}
pub enum Msg {
UpdateAnniversary(String),
UpdateBirthday(String),
Generate,
}
impl VCardPropertyInputComponent<Dates> for DatesView {
fn get_input_object(&self) -> Dates {
self.value.clone()
}
fn get_title(&self) -> std::string::String {
"Dates".to_string()
}
fn get_error(&self) -> std::option::Option<Error> {
self.error.clone()
}
}
impl Component for DatesView {
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: Dates::new(),
error: None,
}
}
fn update(&mut self, msg: <Self as yew::Component>::Message) -> bool {
match msg {
Msg::UpdateAnniversary(a) => self.value.anniversary = a,
Msg::UpdateBirthday(b) => self.value.birthday = b,
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>
}
}
}
|