/* This file is part of GNU Taler (C) 2021-2024 Taler Systems S.A. GNU Taler is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version. GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Taler; see the file COPYING. If not, see */ /** * * @author Sebastian Javier Marchano (sebasjm) */ import { useTranslationContext } from "@gnu-taler/web-util/browser"; import { ComponentChildren, h, VNode } from "preact"; import { useRef, useState } from "preact/hooks"; import { MAX_IMAGE_SIZE as MAX_IMAGE_UPLOAD_SIZE } from "../../utils/constants.js"; import { InputProps, useField } from "./useField.js"; export interface Props extends InputProps { expand?: boolean; addonAfter?: ComponentChildren; children?: ComponentChildren; } export function InputImage({ name, readonly, placeholder, tooltip, label, help, children, expand, }: Props): VNode { const { error, value, onChange } = useField(name); const image = useRef(null); const { i18n } = useTranslationContext(); const [sizeError, setSizeError] = useState(false); return (

{value && ( image.current?.click()} /> )} { const f: FileList | null = e.currentTarget.files; if (!f || f.length != 1) { return onChange(undefined!); } if (f[0].size > MAX_IMAGE_UPLOAD_SIZE) { setSizeError(true); return onChange(undefined!); } setSizeError(false); return f[0].arrayBuffer().then((b) => { const b64 = window.btoa( new Uint8Array(b).reduce( (data, byte) => data + String.fromCharCode(byte), "", ), ); return onChange(`data:${f[0].type};base64,${b64}` as any); }); }} /> {help} {children}

{error &&

{error}

} {sizeError && (

Image should be smaller than 1 MB

)} {!value && ( )} {value && ( )}
); }