summaryrefslogtreecommitdiff
path: root/src/name.rs
diff options
context:
space:
mode:
authorjelemux <jeremias.weber@protonmail.com>2020-11-19 07:37:20 +0100
committerjelemux <jeremias.weber@protonmail.com>2020-11-19 07:37:20 +0100
commit49588f22f7d20193f899226107c9e323a82c6951 (patch)
tree7f7bb739336f87aa2c950038f7d5a7e154f09dbd /src/name.rs
parent104f70b0968d7138d6cf944da98d95a405b1a049 (diff)
downloadwasm-card-49588f22f7d20193f899226107c9e323a82c6951.tar.gz
wasm-card-49588f22f7d20193f899226107c9e323a82c6951.tar.bz2
added telephone, but causes problems
Diffstat (limited to 'src/name.rs')
-rw-r--r--src/name.rs189
1 files changed, 0 insertions, 189 deletions
diff --git a/src/name.rs b/src/name.rs
deleted file mode 100644
index 4b51def..0000000
--- a/src/name.rs
+++ /dev/null
@@ -1,189 +0,0 @@
-use yew::prelude::*;
-use vcard::properties;
-use vcard::values::{self, text};
-
-#[derive(Clone)]
-pub struct Name {
- pub prefix: String,
- pub first_name: String,
- pub middle_name: String,
- pub last_name: String,
- pub suffix: String,
-}
-
-impl Name {
- pub fn new() -> Self {
- Self {
- prefix: String::new(),
- first_name: String::new(),
- middle_name: String::new(),
- last_name: String::new(),
- suffix: String::new(),
- }
- }
- pub fn formatted_name(&self) -> String {
- let mut formatted_name = String::new();
-
- if !self.prefix.is_empty() {
- formatted_name.push_str(&self.prefix);
- }
- if !self.first_name.is_empty() {
- formatted_name.push_str(" ");
- formatted_name.push_str(&self.first_name);
- }
- if !self.middle_name.is_empty() {
- formatted_name.push_str(" ");
- formatted_name.push_str(&self.middle_name);
- }
- if !self.last_name.is_empty() {
- formatted_name.push_str(" ");
- formatted_name.push_str(&self.last_name);
- }
- if !self.suffix.is_empty() {
- formatted_name.push_str(", ");
- formatted_name.push_str(&self.suffix);
- }
-
- formatted_name
- }
- pub fn to_vcard_name(&self) -> properties::Name {
- let name_value = values::name_value::NameValue::from_components(
- match self.last_name.is_empty() {
- true => None,
- false => Some(text::Component::from_str(&self.last_name).unwrap()),
- },
- match self.first_name.is_empty() {
- true => None,
- false => Some(text::Component::from_str(&self.first_name).unwrap()),
- },
- match self.middle_name.is_empty() {
- true => None,
- false => Some(text::Component::from_str(&self.middle_name).unwrap()),
- },
- match self.prefix.is_empty() {
- true => None,
- false => Some(text::Component::from_str(&self.prefix).unwrap()),
- },
- match self.suffix.is_empty() {
- true => None,
- false => Some(text::Component::from_str(&self.suffix).unwrap()),
- },
- );
-
- properties::Name::from_name_value(name_value)
- }
-}
-
-pub struct NameView {
- link: ComponentLink<Self>,
- value: Name,
- oninput: Callback<Name>,
- //errors: Vec<String>,
-}
-
-pub enum Msg {
- UpdatePrefix(String),
- UpdateFirstName(String),
- UpdateMiddleName(String),
- UpdateLastName(String),
- UpdateSuffix(String),
-}
-
-#[derive(Clone, PartialEq, Properties)]
-pub struct Props {
- pub oninput: Callback<Name>,
- //pub errors: Vec<String>,
-}
-
-impl Component for NameView {
- type Message = Msg;
- type Properties = Props;
- fn create(props: <Self as yew::Component>::Properties, link: yew::html::Scope<Self>) -> Self {
- Self {
- link,
- value: Name::new(),
- oninput: props.oninput,
- }
- }
- fn update(&mut self, msg: <Self as yew::Component>::Message) -> bool {
- match msg {
- Msg::UpdatePrefix(p) => self.value.prefix = p,
- Msg::UpdateFirstName(f) => self.value.first_name = f,
- Msg::UpdateMiddleName(m) => self.value.middle_name = m,
- Msg::UpdateLastName(l) => self.value.last_name = l,
- Msg::UpdateSuffix(s) => self.value.suffix = s,
- };
- 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">
- <h3 class="subtitle">{ "Name" }</h3>
-
- <div class="columns is-mobile is-multiline">
-
- <div class="field column is-one-fifth-widescreen is-one-quarter-desktop is-one-third-tablet is-half-mobile">
- <label class="label">{ "Prefix" }</label>
- <div class="control">
- <input id="prefix"
- type="text"
- placeholder="Sir"
- oninput=self.link.callback(|e: InputData| Msg::UpdatePrefix(e.value))
- />
- </div>
- </div>
-
- <div class="field column is-one-fifth-widescreen is-one-quarter-desktop is-one-third-tablet is-half-mobile">
- <label class="label">{ "First name" }</label>
- <div class="control">
- <input id="first_name"
- type="text"
- placeholder="Arthur"
- oninput=self.link.callback(|e: InputData| Msg::UpdateFirstName(e.value))
- />
- </div>
- </div>
-
- <div class="field column is-one-fifth-widescreen is-one-quarter-desktop is-one-third-tablet is-half-mobile">
- <label class="label">{ "Middle name" }</label>
- <div class="control">
- <input id="middle_name"
- type="text"
- placeholder="Charles"
- oninput=self.link.callback(|e: InputData| Msg::UpdateMiddleName(e.value))
- />
- </div>
- </div>
-
- <div class="field column is-one-fifth-widescreen is-one-quarter-desktop is-one-third-tablet is-half-mobile">
- <label class="label">{ "Last name" }</label>
- <div class="control">
- <input id="last_name"
- type="text"
- placeholder="Clarke"
- oninput=self.link.callback(|e: InputData| Msg::UpdateLastName(e.value))
- />
- </div>
- </div>
-
- <div class="field column is-one-fifth-widescreen is-one-quarter-desktop is-one-third-tablet is-half-mobile">
- <label class="label">{ "Suffix" }</label>
- <div class="control">
- <input id="suffix"
- type="text"
- placeholder="CBE FRAS"
- oninput=self.link.callback(|e: InputData| Msg::UpdateSuffix(e.value))
- />
- </div>
- </div>
-
- </div>
- </div>
- }
- }
-} \ No newline at end of file