summaryrefslogtreecommitdiff
path: root/src/model/address.rs
blob: 2c42a98e8df7f6993382368e593240adfe1b88c2 (plain)
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
use super::*;

#[derive(Clone, Debug, PartialEq)]
pub struct Address {
    pub post_office_box: String,
    pub extension: String,
    pub street: String,
    pub locality: String,
    pub region: String,
    pub code: String,
    pub country: String,
    pub work: bool,
    pub home: bool,
}

#[derive(Clone, PartialEq)]
pub enum AddressMsg {
    UpdatePostOfficeBox(String),
    UpdateExtension(String),
    UpdateStreet(String),
    UpdateLocality(String),
    UpdateRegion(String),
    UpdateCode(String),
    UpdateCountry(String),
    ToggleWork,
    ToggleHome,

    Generate,
}

impl VCardPropertyInputObject<AddressMsg> for Address {
    fn new() -> Self {
        Self {
            post_office_box: String::new(),
            extension: String::new(),
            street: String::new(),
            locality: String::new(),
            region: String::new(),
            code: String::new(),
            country: String::new(),
            work: false,
            home: false,
        }
    }
    fn get_title(&self) -> String {
        "Address".to_string()
    }
    fn get_input_fields(
        &self,
        link: &ComponentLink<PropertyGroupInputComponent<Self, AddressMsg>>,
    ) -> Vec<VCardPropertyInputField> {
        let typ = String::from("text");
        vec![
            VCardPropertyInputField::Text {
                label: "Post Office Box".to_string(),
                id: Some("post_office_box".to_string()),
                placeholder: None,
                oninput: link.callback(|e: InputData| AddressMsg::UpdatePostOfficeBox(e.value)),
                value: self.post_office_box.clone(),
                typ: typ.clone(),
            },
            VCardPropertyInputField::Text {
                label: "Extension".to_string(),
                id: Some("extension".to_string()),
                placeholder: None,
                oninput: link.callback(|e: InputData| AddressMsg::UpdateExtension(e.value)),
                value: self.extension.clone(),
                typ: typ.clone(),
            },
            VCardPropertyInputField::Text {
                label: "Street".to_string(),
                id: Some("street".to_string()),
                placeholder: None,
                oninput: link.callback(|e: InputData| AddressMsg::UpdateStreet(e.value)),
                value: self.street.clone(),
                typ: typ.clone(),
            },
            VCardPropertyInputField::Text {
                label: "Locality".to_string(),
                id: Some("locality".to_string()),
                placeholder: None,
                oninput: link.callback(|e: InputData| AddressMsg::UpdateLocality(e.value)),
                value: self.locality.clone(),
                typ: typ.clone(),
            },
            VCardPropertyInputField::Text {
                label: "Region".to_string(),
                id: Some("region".to_string()),
                placeholder: None,
                oninput: link.callback(|e: InputData| AddressMsg::UpdateRegion(e.value)),
                value: self.region.clone(),
                typ: typ.clone(),
            },
            VCardPropertyInputField::Text {
                label: "Code".to_string(),
                id: Some("code".to_string()),
                placeholder: None,
                oninput: link.callback(|e: InputData| AddressMsg::UpdateCode(e.value)),
                value: self.code.clone(),
                typ: typ.clone(),
            },
            VCardPropertyInputField::Text {
                label: "Country".to_string(),
                id: Some("country".to_string()),
                placeholder: None,
                oninput: link.callback(|e: InputData| AddressMsg::UpdateCountry(e.value)),
                value: self.country.clone(),
                typ,
            },
            VCardPropertyInputField::CheckBox {
                label: "Work".to_string(),
                id: Some("work".to_string()),
                onclick: link.callback(|_: MouseEvent| AddressMsg::ToggleWork),
                value: self.work,
            },
            VCardPropertyInputField::CheckBox {
                label: "Home".to_string(),
                id: Some("home".to_string()),
                onclick: link.callback(|_: MouseEvent| AddressMsg::ToggleHome),
                value: self.home,
            },
        ]
    }
    fn update(
        &mut self,
        props: InputProps<Self, AddressMsg>,
        msg: <PropertyGroupInputComponent<Self, AddressMsg> as yew::Component>::Message,
    ) -> bool {
        match msg {
            AddressMsg::UpdatePostOfficeBox(b) => self.post_office_box = b,
            AddressMsg::UpdateExtension(e) => self.extension = e,
            AddressMsg::UpdateStreet(s) => self.street = s,
            AddressMsg::UpdateLocality(l) => self.locality = l,
            AddressMsg::UpdateRegion(r) => self.region = r,
            AddressMsg::UpdateCode(p) => self.code = p,
            AddressMsg::UpdateCountry(c) => self.country = c,
            AddressMsg::ToggleWork => self.work = !self.work,
            AddressMsg::ToggleHome => self.home = !self.home,
            AddressMsg::Generate => {
                props.generated.emit(self.clone());
            }
        };
        true
    }
    fn is_empty(&self) -> bool {
        self.post_office_box.is_empty()
            && self.extension.is_empty()
            && self.street.is_empty()
            && self.locality.is_empty()
            && self.region.is_empty()
            && self.code.is_empty()
            && self.country.is_empty()
    }
}