chatpad/src/components/CreatePromptModal.tsx
Andrei Canta 6830e88843 launch
2023-03-17 21:58:39 +02:00

101 lines
2.8 KiB
TypeScript

import {
Button,
Modal,
Stack,
Textarea,
TextInput,
ThemeIcon,
Tooltip,
} from "@mantine/core";
import { useDisclosure } from "@mantine/hooks";
import { notifications } from "@mantine/notifications";
import { IconPlaylistAdd, IconPlus } from "@tabler/icons-react";
import { nanoid } from "nanoid";
import { useEffect, useState } from "react";
import { db } from "../db";
export function CreatePromptModal({ content }: { content?: string }) {
const [opened, { open, close }] = useDisclosure(false);
const [submitting, setSubmitting] = useState(false);
const [value, setValue] = useState("");
const [title, setTitle] = useState("");
useEffect(() => {
setValue(content ?? "");
}, [content]);
return (
<>
<Modal opened={opened} onClose={close} title="Create Prompt" size="lg">
<form
onSubmit={async (event) => {
try {
setSubmitting(true);
event.preventDefault();
const id = nanoid();
db.prompts.add({
id,
title,
content: value,
createdAt: new Date(),
});
notifications.show({
title: "Saved",
message: "Prompt created",
});
close();
} catch (error: any) {
if (error.toJSON().message === "Network Error") {
notifications.show({
title: "Error",
color: "red",
message: "No internet connection.",
});
} else {
notifications.show({
title: "Error",
color: "red",
message: "Your OpenAI Key is invalid.",
});
}
} finally {
setSubmitting(false);
}
}}
>
<Stack>
<TextInput
label="Title"
value={title}
onChange={(event) => setTitle(event.currentTarget.value)}
formNoValidate
data-autofocus
/>
<Textarea
placeholder="Content"
autosize
minRows={5}
maxRows={10}
value={value}
onChange={(event) => setValue(event.currentTarget.value)}
/>
<Button type="submit" loading={submitting}>
Save
</Button>
</Stack>
</form>
</Modal>
{content ? (
<Tooltip label="Save Prompt" withinPortal>
<ThemeIcon variant="light" onClick={open}>
<IconPlaylistAdd />
</ThemeIcon>
</Tooltip>
) : (
<Button fullWidth onClick={open} leftIcon={<IconPlus size={20} />}>
New Prompt
</Button>
)}
</>
);
}