75 lines
2.2 KiB
TypeScript
75 lines
2.2 KiB
TypeScript
import { SidebarCreateItem } from "@/components/sidebar/items/all/sidebar-create-item"
|
|
import { Input } from "@/components/ui/input"
|
|
import { Label } from "@/components/ui/label"
|
|
import { TextareaAutosize } from "@/components/ui/textarea-autosize"
|
|
import { ChatbotUIContext } from "@/context/context"
|
|
import { PROMPT_NAME_MAX } from "@/db/limits"
|
|
import { TablesInsert } from "@/supabase/types"
|
|
import { FC, useContext, useState } from "react"
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
interface CreatePromptProps {
|
|
isOpen: boolean
|
|
onOpenChange: (isOpen: boolean) => void
|
|
}
|
|
|
|
export const CreatePrompt: FC<CreatePromptProps> = ({
|
|
isOpen,
|
|
onOpenChange
|
|
}) => {
|
|
const { t } = useTranslation()
|
|
const { profile, selectedWorkspace } = useContext(ChatbotUIContext)
|
|
const [isTyping, setIsTyping] = useState(false)
|
|
const [name, setName] = useState("")
|
|
const [content, setContent] = useState("")
|
|
|
|
if (!profile) return null
|
|
if (!selectedWorkspace) return null
|
|
|
|
return (
|
|
<SidebarCreateItem
|
|
contentType="prompts"
|
|
isOpen={isOpen}
|
|
isTyping={isTyping}
|
|
onOpenChange={onOpenChange}
|
|
createState={
|
|
{
|
|
user_id: profile.user_id,
|
|
name,
|
|
content
|
|
} as TablesInsert<"prompts">
|
|
}
|
|
renderInputs={() => (
|
|
<>
|
|
<div className="space-y-1">
|
|
<Label>{t("side.name")}</Label>
|
|
|
|
<Input
|
|
placeholder={t("side.promptNamePlaceholder")}
|
|
value={name}
|
|
onChange={e => setName(e.target.value)}
|
|
maxLength={PROMPT_NAME_MAX}
|
|
onCompositionStart={() => setIsTyping(true)}
|
|
onCompositionEnd={() => setIsTyping(false)}
|
|
/>
|
|
</div>
|
|
|
|
<div className="space-y-1">
|
|
<Label>{t("side.promptLabel")}</Label>
|
|
|
|
<TextareaAutosize
|
|
placeholder={t("side.promptContentPlaceholder")}
|
|
value={content}
|
|
onValueChange={setContent}
|
|
minRows={6}
|
|
maxRows={20}
|
|
onCompositionStart={() => setIsTyping(true)}
|
|
onCompositionEnd={() => setIsTyping(false)}
|
|
/>
|
|
</div>
|
|
</>
|
|
)}
|
|
/>
|
|
)
|
|
}
|