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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
|
use crate::viewmodel::Error;
use crate::view::telephone::{self,TelephoneView};
use std::collections::HashSet;
use super::WeakComponentLink;
use super::name::{self,NameView};
use super::address::{self,AddressView};
use genpdf::Element as _;
use genpdf::{elements, style, fonts};
use qrcodegen::QrCode;
use qrcodegen::QrCodeEcc;
use yew::prelude::*;
use vcard::properties;
use vcard::{VCard, VCardError};
use crate::viewmodel::utility::*;
pub struct MainView {
link: ComponentLink<Self>,
error: Option<Error>,
download: Option<Download>,
selected_option: DownloadOption,
vcard: Option<VCard>,
name_links: Vec<WeakComponentLink<NameView>>,
address_links: Vec<WeakComponentLink<AddressView>>,
telephone_links: Vec<WeakComponentLink<TelephoneView>>,
answer_count: usize,
}
pub enum Msg {
AddName,
AddAddress,
AddTelephone,
ChangeDownloadOption(DownloadOption),
Generate,
GeneratedFormattedName(Result<properties::FormattedName,()>),
GeneratedName(Result<properties::Name,()>),
GeneratedAddress(Result<properties::Address,()>),
GeneratedTelephone(Result<properties::Telephone,()>),
GenerationComplete,
Nope,
}
impl Component for MainView {
type Message = Msg;
type Properties = ();
fn create(_props: Self::Properties, link: ComponentLink<Self>) -> Self {
MainView {
link,
error: None,
download: None,
selected_option: DownloadOption::VCard,
vcard: None,
name_links: vec![WeakComponentLink::default()],
address_links: vec![WeakComponentLink::default()],
telephone_links: vec![WeakComponentLink::default()],
answer_count: 0,
}
}
fn update(&mut self, msg: Self::Message) -> ShouldRender {
let shouldrender; // let the compiler check if it is always set
self.error = None;
match msg {
Msg::AddName => {
self.name_links.push(WeakComponentLink::default());
shouldrender = true;
},
Msg::AddAddress => {
self.address_links.push(WeakComponentLink::default());
shouldrender = true;
},
Msg::AddTelephone => {
self.telephone_links.push(WeakComponentLink::default());
shouldrender = true;
},
Msg::ChangeDownloadOption(option) => {
self.selected_option = option;
shouldrender = false;
},
Msg::Generate => {
if self.selected_option == DownloadOption::VCard || self.selected_option == DownloadOption::QrCode {
for name_link in self.name_links.iter() {
let name_link = name_link.borrow().clone().unwrap();
name_link.send_message(name::Msg::Generate);
}
for address_link in self.address_links.iter() {
let address_link = address_link.borrow().clone().unwrap();
address_link.send_message(address::Msg::Generate);
}
for telephone_link in self.telephone_links.iter() {
let telephone_link = telephone_link.borrow().clone().unwrap();
telephone_link.send_message(telephone::Msg::Generate);
}
}
/*
DownloadOption::PDF => {
match self.generate_pdf() {
Ok(pdf) => self.download = Some(
Download {
file_name: format!("Visitenkarten {}.pdf", self.name.formatted_name()),
content: pdf,
mime_type: MimeType::PDF,
}
),
Err(_) => self.error.push(String::from("Unexpected error while generating the PDF. Please contact me about it.")),
}
}
}
*/
shouldrender = true;
},
Msg::GeneratedFormattedName(formatted_name) => {
self.answer_count += 1;
match formatted_name {
Ok(formatted_name) => {
match &mut self.vcard {
None => {
match VCard::from_formatted_name(formatted_name) {
Ok(vcard) => self.vcard = Some(vcard),
Err(VCardError::FormatError(err)) => {
self.error = Some(Error{
msg: err.to_string(),
});
},
Err(VCardError::EmptyFormatName) => {
self.error= Some(Error{
msg: String::from("At least one of the name fields should be filled out."),
});
},
};
},
Some(vcard) => {
vcard.formatted_names.insert(formatted_name);
},
};
},
Err(_) => (),
};
shouldrender = true;
},
Msg::GeneratedName(name) => {
self.answer_count += 1;
match name {
Ok(name) => {
match self.vcard {
Some(vcard) => {
match vcard.names {
Some(names) => {
names.insert(name);
},
None => {
let names = {
let mut names = HashSet::new();
names.insert(name);
names
};
vcard.names = Some(vcard::Set::from_hash_set(names).unwrap());
}
};
},
None => (),
};
},
Err(_) => (),
};
shouldrender = true;
},
Msg::GeneratedAddress(address) => {
self.answer_count += 1;
match address {
Ok(address) => {
match self.vcard {
Some(vcard) => {
match vcard.addresses {
Some(addresses) => {
addresses.insert(address);
},
None => {
let addresses = {
let mut addresses = HashSet::new();
addresses.insert(address);
addresses
};
vcard.addresses = Some(vcard::Set::from_hash_set(addresses).unwrap());
}
};
},
None => (),
};
},
Err(_) => (),
};
shouldrender = true;
},
Msg::GeneratedTelephone(telephone) => {
self.answer_count += 1;
match telephone {
Ok(telephone) => {
match self.vcard {
Some(vcard) => {
match vcard.telephones {
Some(telephones) => {
telephones.insert(telephone);
},
None => {
let telephones = {
let mut telephones = HashSet::new();
telephones.insert(telephone);
telephones
};
vcard.telephones = Some(vcard::Set::from_hash_set(telephones).unwrap());
}
};
},
None => (),
};
},
Err(_) => (),
}
shouldrender = true;
},
Msg::GenerationComplete => {
self.answer_count = 0;
match self.vcard.clone() {
Some(vcard) => {
match self.selected_option {
DownloadOption::VCard => {
self.download = Some(
Download {
file_name: String::from("VCard.vcs"),
content: vcard.to_string(),
mime_type: MimeType::VCard,
}
);
},
DownloadOption::QrCode => {
match QrCode::encode_text(&vcard.to_string(), QrCodeEcc::Low) {
Ok(qr) => self.download = Some(
Download {
file_name: String::from("QR-Code VCard.svg"),
content: qr.to_svg_string(4),
mime_type: MimeType::SVG,
}
),
Err(_) => self.error = Some(
Error{
msg: String::from("Sorry, VCard is too long!"),
}
),
};
},
_ => (),
};
self.vcard = None;
shouldrender = true;
},
None => shouldrender = false, // what TODO here?
}
},
Msg::Nope => shouldrender = false,
};
if self.answer_count >= self.get_subcomponent_count() {
self.link.send_message(Msg::GenerationComplete);
}
if self.error.is_some() {
self.download = None;
}
shouldrender
}
fn change(&mut self, _props: Self::Properties) -> ShouldRender {
false
}
fn view(&self) -> Html {
let download_options = self.link.callback(|e: ChangeData|
match e {
ChangeData::Select(v) => match v.value().as_str() {
"vcard" => Msg::ChangeDownloadOption(DownloadOption::VCard),
"pdf" => Msg::ChangeDownloadOption(DownloadOption::PDF),
"qrcode" => Msg::ChangeDownloadOption(DownloadOption::QrCode),
_ => Msg::Nope,
},
_ => Msg::Nope,
}
);
html!{
<>
<main>
<section class="hero">
<div class="hero-body">
<div class="container is-max-widescreen">
<h1 class="title">{ "A Generator for vCards" }</h1>
<h2 class="subtitle">{ "Supports generating vCards (.vcf), print-ready PDF business cards and QR Codes" }</h2>
</div>
</div>
</section>
<section class="section">
<div class="container is-max-widescreen">
{ self.render_error() }
{
for self.name_links.iter().map(|link|
html!{
<NameView weak_link=link
generated_fn=self.link.callback(
|fmn: Result<properties::FormattedName,()>|
Msg::GeneratedFormattedName(fmn)
)
generated_name=self.link.callback(
|n: Result<properties::Name,()>|
Msg::GeneratedName(n)
)
/>
}
)
}
{
for self.address_links.iter().map(|link|
html!{
<AddressView weak_link=link
generated=self.link.callback(
|a: Result<properties::Address,()>|
Msg::GeneratedAddress(a)
)
/>
}
)
}
{
for self.telephone_links.iter().map(|link|
html!{
<TelephoneView weak_link=link
generated=self.link.callback(
|t: Result<properties::Telephone,()>|
Msg::GeneratedTelephone(t)
)
/>
}
)
}
<div class="block level-left">
<button onclick=self.link.callback(|_| Msg::Generate) class="button is-primary level-item" />
<div class="select level-item">
<select id="download_options" onchange=download_options>
<option value="vcard">{ "VCard (.vcf)" }</option>
<option value="pdf">{ "Print-ready PDF" }</option>
<option value="qrcode">{ "QR Code" }</option>
</select>
</div>
{ self.render_download() }
</div>
<div class="block">
{ self.render_preview() }
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="content has-text-centered">
<p>
<strong>{ "VCard Generator" }</strong> { " by " } <a href="https://jelemux.dev">{ "Jeremias Weber" }</a>{ ". "}
{ "The source code is licenced " } <a href="http://opensource.org/licenses/mit-license.php">{ "MIT" }</a>{"."}
</p>
</div>
</footer>
</>
}
}
}
impl MainView {
fn render_error(&self) -> Html {
html!{
<>
{
match &self.error {
Some(error) => {
html!{
<div class="notification is-danger is-light">
{ error.msg.clone() }
</div>
}
},
None => html!{},
}
}
</>
}
}
fn render_download(&self) -> Html {
if self.download.is_some() {
let download = self.download.as_ref().unwrap();
html!{
<a href=download.as_data_link() download=download.file_name class="button is-success level-item" >
{ "Download" }
</a>
}
} else {
html!{}
}
}
fn render_preview(&self) -> Html {
if self.download.is_some() {
let download = self.download.as_ref().unwrap();
match download.mime_type {
MimeType::PDF => html!{
<iframe src=download.as_data_link() alt="PDF Preview" width="400" height="550"/>
},
MimeType::VCard => {
html!{
<pre>
<code> { download.content.clone() } </code>
</pre>
}
}
MimeType::SVG => html!{
<img src=download.as_data_link() alt="Image Preview" class="image is-square" width="300" height="300"/>
},
}
} else {
html!{}
}
}
fn generate_pdf(&self) -> Result<String, ()>{
let regular_bytes = include_bytes!("/usr/share/fonts/liberation/LiberationSans-Regular.ttf");
let regular_font_data = fonts::FontData::new(regular_bytes.to_vec(), Some(printpdf::BuiltinFont::Helvetica)).expect("font data should be correct");
let bold_bytes = include_bytes!("/usr/share/fonts/liberation/LiberationSans-Bold.ttf");
let bold_font_data = fonts::FontData::new(bold_bytes.to_vec(), Some(printpdf::BuiltinFont::HelveticaBold)).expect("font data should be correct");
let italic_bytes = include_bytes!("/usr/share/fonts/liberation/LiberationSans-Italic.ttf");
let italic_font_data = fonts::FontData::new(italic_bytes.to_vec(), Some(printpdf::BuiltinFont::HelveticaOblique)).expect("font data should be correct");
let bold_italic_bytes = include_bytes!("/usr/share/fonts/liberation/LiberationSans-BoldItalic.ttf");
let bold_italic_font_data = fonts::FontData::new(bold_italic_bytes.to_vec(), Some(printpdf::BuiltinFont::HelveticaBoldOblique)).expect("font data should be correct");
let font_family = fonts::FontFamily{
regular: regular_font_data,
bold: bold_font_data,
italic: italic_font_data,
bold_italic: bold_italic_font_data
};
let mut doc = genpdf::Document::new(font_family);
doc.set_title("BCard test");
doc.set_minimal_conformance();
let mut decorator = genpdf::SimplePageDecorator::new();
decorator.set_margins(10);
doc.set_page_decorator(decorator);
doc.set_line_spacing(1.25);
doc.push(
elements::Paragraph::new("genpdf Demo Document")
.aligned(elements::Alignment::Center)
.styled(style::Style::new().bold().with_font_size(20)),
);
// TODO fill doc with real data
let mut buf: Vec<u8> = Vec::new();
match doc.render(&mut buf) {
Ok(_) => Ok(match String::from_utf8(buf) {
Ok(s) => s,
Err(_) => return Err(()),
}),
Err(_) => Err(()),
}
}
fn get_subcomponent_count(&self) -> usize {
self.name_links.len()
+ self.address_links.len()
+ self.telephone_links.len()
}
}
|