From f49df12b441a2bd06520df42ddd41fc42f639147 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Wed, 24 Nov 2021 17:38:39 -0300 Subject: restore and save session --- .../anastasis-webui/src/components/FlieButton.tsx | 57 ++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 packages/anastasis-webui/src/components/FlieButton.tsx (limited to 'packages/anastasis-webui/src/components/FlieButton.tsx') diff --git a/packages/anastasis-webui/src/components/FlieButton.tsx b/packages/anastasis-webui/src/components/FlieButton.tsx new file mode 100644 index 000000000..aab0b6170 --- /dev/null +++ b/packages/anastasis-webui/src/components/FlieButton.tsx @@ -0,0 +1,57 @@ +import { h, VNode } from "preact"; +import { useRef, useState } from "preact/hooks"; + +const MAX_IMAGE_UPLOAD_SIZE = 1024 * 1024; + +export interface FileTypeContent { + content: string; + type: string; + name: string; +} + +interface Props { + label: string; + onChange: (v: FileTypeContent | undefined) => void; +} +export function FileButton(props: Props): VNode { + const fileInputRef = useRef(null); + const [sizeError, setSizeError] = useState(false); + return ( +
+ + { + const f: FileList | null = e.currentTarget.files; + if (!f || f.length != 1) { + return props.onChange(undefined); + } + console.log(f); + if (f[0].size > MAX_IMAGE_UPLOAD_SIZE) { + setSizeError(true); + return props.onChange(undefined); + } + setSizeError(false); + return f[0].arrayBuffer().then((b) => { + const content = new Uint8Array(b).reduce( + (data, byte) => data + String.fromCharCode(byte), + "", + ); + return props.onChange({ + content, + name: f[0].name, + type: f[0].type, + }); + }); + }} + /> + {sizeError && ( +

File should be smaller than 1 MB

+ )} +
+ ); +} -- cgit v1.2.3