diff options
author | jelemux <jeremias.weber@protonmail.com> | 2020-11-25 10:31:04 +0100 |
---|---|---|
committer | jelemux <jeremias.weber@protonmail.com> | 2020-11-25 10:31:04 +0100 |
commit | b1ba906491a1ed396d47b0751f080fef991ea344 (patch) | |
tree | c8e306c217dbdc352e66000822d8fc7e4cdc55fb /src/view/input_objects/utility.rs | |
parent | 5a03734b6767fed04c0913384584d8f59dc597ea (diff) | |
download | wasm-card-b1ba906491a1ed396d47b0751f080fef991ea344.tar.gz wasm-card-b1ba906491a1ed396d47b0751f080fef991ea344.tar.bz2 |
Struktur umbauen
Diffstat (limited to 'src/view/input_objects/utility.rs')
-rw-r--r-- | src/view/input_objects/utility.rs | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/src/view/input_objects/utility.rs b/src/view/input_objects/utility.rs deleted file mode 100644 index a296c1e..0000000 --- a/src/view/input_objects/utility.rs +++ /dev/null @@ -1,39 +0,0 @@ -#[derive(Clone)] -pub struct Download { - pub file_name: String, - pub content: String, - pub mime_type: MimeType, -} - -impl Download { - pub fn as_data_link(&self) -> String { - let data = base64::encode(&*self.content); - let uri_component: String = js_sys::encode_uri_component(&data).into(); - - format!("data:{};base64,{}", self.mime_type.as_text(), uri_component) - } -} - -#[derive(Clone, Copy)] -pub enum MimeType { - PDF, - VCard, - SVG, -} - -impl MimeType { - pub fn as_text(&self) -> &str { - match self { - MimeType::PDF => "application/pdf", - MimeType::VCard => "text/vcard", - MimeType::SVG => "image/svg+xml", - } - } -} - -#[derive(Clone, Copy)] -pub enum DownloadOption { - PDF, - VCard, - QrCode, -}
\ No newline at end of file |