mirror of
https://github.com/deiucanta/chatpad.git
synced 2026-03-11 09:04:31 +00:00
101 lines
2.8 KiB
TypeScript
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>
|
|
)}
|
|
</>
|
|
);
|
|
}
|