99 lines
3.1 KiB
TypeScript
99 lines
3.1 KiB
TypeScript
import { ErrorCode, MessageStatus, ThreadMessage } from '@janhq/core'
|
||
import { Button } from '@janhq/uikit'
|
||
import { useAtomValue, useSetAtom } from 'jotai'
|
||
import { RefreshCcw } from 'lucide-react'
|
||
|
||
import AutoLink from '@/containers/AutoLink'
|
||
import ModalTroubleShooting, {
|
||
modalTroubleShootingAtom,
|
||
} from '@/containers/ModalTroubleShoot'
|
||
|
||
import { MainViewState } from '@/constants/screens'
|
||
|
||
import useSendChatMessage from '@/hooks/useSendChatMessage'
|
||
|
||
import { mainViewStateAtom } from '@/helpers/atoms/App.atom'
|
||
import { getCurrentChatMessagesAtom } from '@/helpers/atoms/ChatMessage.atom'
|
||
|
||
const ErrorMessage = ({ message }: { message: ThreadMessage }) => {
|
||
const messages = useAtomValue(getCurrentChatMessagesAtom)
|
||
const { resendChatMessage } = useSendChatMessage()
|
||
const setModalTroubleShooting = useSetAtom(modalTroubleShootingAtom)
|
||
const setMainState = useSetAtom(mainViewStateAtom)
|
||
|
||
const regenerateMessage = async () => {
|
||
const lastMessageIndex = messages.length - 1
|
||
const message = messages[lastMessageIndex]
|
||
resendChatMessage(message)
|
||
}
|
||
|
||
const getErrorTitle = () => {
|
||
switch (message.error_code) {
|
||
case ErrorCode.Unknown:
|
||
return 'Apologies, something’s amiss!'
|
||
case ErrorCode.InvalidApiKey:
|
||
return (
|
||
<span>
|
||
Invalid API key. Please check your API key from{' '}
|
||
<button
|
||
className="font-medium text-primary dark:text-blue-400"
|
||
onClick={() => setMainState(MainViewState.Settings)}
|
||
>
|
||
Settings
|
||
</button>{' '}
|
||
and try again.
|
||
</span>
|
||
)
|
||
default:
|
||
return (
|
||
<>
|
||
{message.content[0]?.text?.value && (
|
||
<AutoLink text={message.content[0].text.value} />
|
||
)}
|
||
</>
|
||
)
|
||
}
|
||
}
|
||
|
||
return (
|
||
<div className="mt-10">
|
||
{message.status === MessageStatus.Stopped && (
|
||
<div key={message.id} className="flex flex-col items-center">
|
||
<span className="mb-3 text-center text-sm font-medium text-gray-500">
|
||
Oops! The generation was interrupted. Let's give it another go!
|
||
</span>
|
||
<Button
|
||
className="w-min"
|
||
themes="outline"
|
||
onClick={regenerateMessage}
|
||
>
|
||
<RefreshCcw size={14} className="" />
|
||
<span className="w-2" />
|
||
Regenerate
|
||
</Button>
|
||
</div>
|
||
)}
|
||
{message.status === MessageStatus.Error && (
|
||
<div
|
||
key={message.id}
|
||
className="mx-6 flex flex-col items-center space-y-2 text-center text-sm font-medium text-gray-500"
|
||
>
|
||
{getErrorTitle()}
|
||
<p>
|
||
Jan’s in beta. Access
|
||
<span
|
||
className="cursor-pointer text-primary dark:text-blue-400"
|
||
onClick={() => setModalTroubleShooting(true)}
|
||
>
|
||
troubleshooting assistance
|
||
</span>
|
||
now.
|
||
</p>
|
||
<ModalTroubleShooting />
|
||
</div>
|
||
)}
|
||
</div>
|
||
)
|
||
}
|
||
export default ErrorMessage
|