import { useRef, useState } from 'react'; import { useDispatch, useSelector } from 'react-redux'; import { ActiveState } from '../models/misc'; import { selectApiKey, setApiKey } from './preferenceSlice'; import { useMediaQuery, useOutsideAlerter } from './../hooks'; import Modal from '../Modal'; export default function APIKeyModal({ modalState, setModalState, isCancellable = true, }: { modalState: ActiveState; setModalState: (val: ActiveState) => void; isCancellable?: boolean; }) { const dispatch = useDispatch(); const apiKey = useSelector(selectApiKey); const [key, setKey] = useState(apiKey); const [isError, setIsError] = useState(false); const modalRef = useRef(null); const { isMobile } = useMediaQuery(); useOutsideAlerter( modalRef, () => { if (isMobile && modalState === 'ACTIVE') { setModalState('INACTIVE'); } }, [modalState], ); function handleSubmit() { if (key.length <= 1) { setIsError(true); } else { dispatch(setApiKey(key)); setModalState('INACTIVE'); setIsError(false); } } function handleCancel() { setKey(apiKey); setIsError(false); setModalState('INACTIVE'); } return ( { return (

OpenAI API Key

Before you can start using DocsGPT we need you to provide an API key for llm. Currently, we support only OpenAI but soon many more. You can find it here.

setKey(e.target.value)} />
); }} /> ); }