use crate::view::InputProps; use yew::prelude::*; use yewtil::NeqAssign; use crate::viewmodel::Error; use crate::viewmodel::dates::*; use crate::viewmodel::VCardPropertyInputObject; use super::VCardPropertyInputComponent; type Props = InputProps; #[derive(Clone,PartialEq)] pub struct DatesView { props: Props, value: Dates, error: Option, } pub enum Msg { UpdateAnniversary(String), UpdateBirthday(String), Generate, } impl VCardPropertyInputComponent 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 { self.error.clone() } } impl Component for DatesView { type Message = Msg; type Properties = Props; fn create(props: ::Properties, link: yew::html::Scope) -> Self { props.weak_link.borrow_mut().replace(link); Self { props, value: Dates::new(), error: None, } } fn update(&mut self, msg: ::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: ::Properties) -> bool { self.props.neq_assign(props) } fn view(&self) -> yew::virtual_dom::VNode { let link = self.props.weak_link.borrow().clone().unwrap(); html!{
{ self.render_error() }

{ self.get_title() }

{ self.get_input_object().render(&link) }
} } }