mirror of
https://github.com/ershisan99/DevToysWeb.git
synced 2025-12-16 20:49:23 +00:00
102 lines
3.1 KiB
TypeScript
102 lines
3.1 KiB
TypeScript
"use client";
|
||
|
||
import { useCallback, useMemo, useState } from "react";
|
||
import { decode, encode, isValid } from "js-base64";
|
||
|
||
import { toolGroups } from "@/config/tools";
|
||
import { Textarea, TextareaProps } from "@/components/ui/textarea";
|
||
import { ClearButton } from "@/components/buttons/clear";
|
||
import { CopyButton } from "@/components/buttons/copy";
|
||
import { FileButton } from "@/components/buttons/file";
|
||
import { PasteButton } from "@/components/buttons/paste";
|
||
import { ControlMenu } from "@/components/control-menu";
|
||
import { PageRootSection } from "@/components/page-root-section";
|
||
import { PageSection } from "@/components/page-section";
|
||
|
||
export default function Page() {
|
||
const [form, setForm] = useState({
|
||
decoded: "😀😂🤣",
|
||
encoded: "8J+YgPCfmILwn6Sj",
|
||
});
|
||
|
||
const setDecodedReactively = useCallback((text: string) => {
|
||
setForm({
|
||
decoded: text,
|
||
encoded: encode(text),
|
||
});
|
||
}, []);
|
||
|
||
const setEncodedReactively = useCallback((text: string) => {
|
||
const newDecoded = decode(text);
|
||
|
||
setForm({
|
||
encoded: text,
|
||
decoded: isValid(text) && !newDecoded.includes("<22>") ? newDecoded : "",
|
||
});
|
||
}, []);
|
||
|
||
const clearBoth = useCallback(() => {
|
||
setForm({
|
||
decoded: "",
|
||
encoded: "",
|
||
});
|
||
}, []);
|
||
|
||
const onDecodedChange: TextareaProps["onChange"] = ({ currentTarget: { value } }) =>
|
||
setDecodedReactively(value);
|
||
|
||
const onEncodedChange: TextareaProps["onChange"] = ({ currentTarget: { value } }) =>
|
||
setEncodedReactively(value);
|
||
|
||
const decodedPasteButton = useMemo(
|
||
() => <PasteButton onClipboardRead={setDecodedReactively} />,
|
||
[setDecodedReactively]
|
||
);
|
||
|
||
const encodedPasteButton = useMemo(
|
||
() => <PasteButton onClipboardRead={setEncodedReactively} />,
|
||
[setEncodedReactively]
|
||
);
|
||
|
||
const decodedFileButton = useMemo(
|
||
() => (
|
||
<FileButton onFileRead={setDecodedReactively} iconOnly aria-label="load a decoded file" />
|
||
),
|
||
[setDecodedReactively]
|
||
);
|
||
|
||
const encodedFileButton = useMemo(
|
||
() => (
|
||
<FileButton onFileRead={setEncodedReactively} iconOnly aria-label="load a encoded file" />
|
||
),
|
||
[setEncodedReactively]
|
||
);
|
||
|
||
const decodedCopyButton = useMemo(() => <CopyButton text={form.decoded} />, [form.decoded]);
|
||
const encodedCopyButton = useMemo(() => <CopyButton text={form.encoded} />, [form.encoded]);
|
||
|
||
const clearButton = useMemo(
|
||
() => <ClearButton onClick={clearBoth} iconOnly aria-label="clear decoded and encoded" />,
|
||
[clearBoth]
|
||
);
|
||
|
||
const decodedControl = (
|
||
<ControlMenu list={[decodedPasteButton, decodedFileButton, decodedCopyButton, clearButton]} />
|
||
);
|
||
|
||
const encodedControl = (
|
||
<ControlMenu list={[encodedPasteButton, encodedFileButton, encodedCopyButton, clearButton]} />
|
||
);
|
||
|
||
return (
|
||
<PageRootSection title={toolGroups.encodersDecoders.tools.base64.longTitle}>
|
||
<PageSection title="Decoded" control={decodedControl}>
|
||
<Textarea value={form.decoded} onChange={onDecodedChange} rows={10} />
|
||
</PageSection>
|
||
<PageSection title="Encoded" control={encodedControl}>
|
||
<Textarea value={form.encoded} onChange={onEncodedChange} rows={10} />
|
||
</PageSection>
|
||
</PageRootSection>
|
||
);
|
||
}
|