mirror of
https://github.com/ershisan99/DevToysWeb.git
synced 2025-12-16 20:49:23 +00:00
67 lines
1.7 KiB
TypeScript
67 lines
1.7 KiB
TypeScript
import { memo, useCallback, useRef } from "react";
|
|
import equal from "react-fast-compare";
|
|
|
|
import { icons } from "@/components/icons";
|
|
|
|
import { Base, BaseProps } from "./base";
|
|
|
|
type InputProps = React.ComponentProps<"input">;
|
|
|
|
export type FileProps = Pick<InputProps, "accept"> &
|
|
Omit<BaseProps, "icon" | "labelText" | "onClick"> & {
|
|
maxFileSizeMb?: number;
|
|
onFileRead: (text: string) => void;
|
|
};
|
|
|
|
export function RawFile({ accept, iconOnly, maxFileSizeMb = 20, onFileRead, ...props }: FileProps) {
|
|
const ref = useRef<HTMLInputElement>(null);
|
|
|
|
const onClick = () => ref.current?.click();
|
|
|
|
const onChange: NonNullable<InputProps["onChange"]> = useCallback(
|
|
e => {
|
|
const file = Array.from(e.currentTarget.files ?? []).at(0);
|
|
|
|
if (!file) {
|
|
return;
|
|
}
|
|
|
|
// TODO: reject if the file is unsupported
|
|
|
|
if (file.size > maxFileSizeMb * 2 ** 20) {
|
|
// eslint-disable-next-line no-alert
|
|
return alert(`The file is too big. Up to ${maxFileSizeMb}MiB.`);
|
|
}
|
|
|
|
const reader = new FileReader();
|
|
|
|
reader.onload = ({ target }) => {
|
|
if (typeof target?.result === "string") {
|
|
onFileRead(target?.result);
|
|
}
|
|
};
|
|
|
|
reader.readAsText(file);
|
|
|
|
// clear selected file to accept the same file again
|
|
// eslint-disable-next-line no-param-reassign
|
|
e.currentTarget.value = "";
|
|
},
|
|
[maxFileSizeMb, onFileRead]
|
|
);
|
|
|
|
return (
|
|
<>
|
|
<Base
|
|
{...props}
|
|
icon={<icons.File size={16} />}
|
|
{...{ iconOnly, onClick }}
|
|
labelText="Load a file"
|
|
/>
|
|
<input hidden type="file" {...{ ref, accept, onChange }} />
|
|
</>
|
|
);
|
|
}
|
|
|
|
export const File = memo(RawFile, equal);
|