* feat: adding create bot functionality Signed-off-by: James <james@jan.ai> * update the temperature progress bar Signed-off-by: James <james@jan.ai> * chore: remove tgz Signed-off-by: James <james@jan.ai> * update core dependency Signed-off-by: James <james@jan.ai> * fix e2e test Signed-off-by: James <james@jan.ai> --------- Signed-off-by: James <james@jan.ai> Co-authored-by: James <james@jan.ai>
108 lines
3.0 KiB
TypeScript
108 lines
3.0 KiB
TypeScript
import React from 'react'
|
|
import { useAtomValue, useSetAtom } from 'jotai'
|
|
import Image from 'next/image'
|
|
import { Conversation } from '@/_models/Conversation'
|
|
import { ModelManagementService } from '@janhq/core'
|
|
import { executeSerial } from '../../../../electron/core/plugin-manager/execution/extension-manager'
|
|
import {
|
|
getActiveConvoIdAtom,
|
|
setActiveConvoIdAtom,
|
|
updateConversationErrorAtom,
|
|
updateConversationWaitingForResponseAtom,
|
|
} from '@/_helpers/atoms/Conversation.atom'
|
|
import {
|
|
setMainViewStateAtom,
|
|
MainViewState,
|
|
} from '@/_helpers/atoms/MainView.atom'
|
|
import useInitModel from '@/_hooks/useInitModel'
|
|
import { displayDate } from '@/_utils/datetime'
|
|
|
|
type Props = {
|
|
conversation: Conversation
|
|
avatarUrl?: string
|
|
name: string
|
|
summary?: string
|
|
updatedAt?: string
|
|
}
|
|
|
|
const HistoryItem: React.FC<Props> = ({
|
|
conversation,
|
|
avatarUrl,
|
|
name,
|
|
summary,
|
|
updatedAt,
|
|
}) => {
|
|
const setMainViewState = useSetAtom(setMainViewStateAtom)
|
|
const activeConvoId = useAtomValue(getActiveConvoIdAtom)
|
|
const setActiveConvoId = useSetAtom(setActiveConvoIdAtom)
|
|
const updateConvWaiting = useSetAtom(
|
|
updateConversationWaitingForResponseAtom
|
|
)
|
|
const updateConvError = useSetAtom(updateConversationErrorAtom)
|
|
const isSelected = activeConvoId === conversation._id
|
|
|
|
const { initModel } = useInitModel()
|
|
|
|
const onClick = async () => {
|
|
const model = await executeSerial(
|
|
ModelManagementService.GetModelById,
|
|
conversation.modelId
|
|
)
|
|
|
|
if (conversation._id) updateConvWaiting(conversation._id, true)
|
|
initModel(model).then((res: any) => {
|
|
if (conversation._id) updateConvWaiting(conversation._id, false)
|
|
|
|
if (res?.error && conversation._id) {
|
|
updateConvError(conversation._id, res.error)
|
|
}
|
|
})
|
|
|
|
if (activeConvoId !== conversation._id) {
|
|
setMainViewState(MainViewState.Conversation)
|
|
setActiveConvoId(conversation._id)
|
|
}
|
|
};
|
|
|
|
const backgroundColor = isSelected
|
|
? "bg-gray-100 dark:bg-gray-700"
|
|
: "bg-white dark:bg-gray-500"
|
|
|
|
const description = conversation?.lastMessage ?? "No new message"
|
|
|
|
return (
|
|
<li
|
|
role="button"
|
|
className={`ml-3 mr-2 flex flex-row rounded p-3 ${backgroundColor} hover:bg-hover-light`}
|
|
onClick={onClick}
|
|
>
|
|
<div className="h-8 w-8">
|
|
<Image
|
|
width={32}
|
|
height={32}
|
|
src={avatarUrl ?? 'icons/app_icon.svg'}
|
|
className="aspect-square rounded-full"
|
|
alt=""
|
|
/>
|
|
</div>
|
|
|
|
<div className="ml-2 flex flex-1 flex-col">
|
|
{/* title */}
|
|
<div className="flex">
|
|
<span className="line-clamp-1 flex-1 text-gray-900">
|
|
{summary ?? name}
|
|
</span>
|
|
<span className="line-clamp-1 text-xs leading-5 text-gray-500">
|
|
{updatedAt && displayDate(new Date(updatedAt).getTime())}
|
|
</span>
|
|
</div>
|
|
|
|
{/* description */}
|
|
<span className="mt-1 line-clamp-2 text-gray-400">{description}</span>
|
|
</div>
|
|
</li>
|
|
)
|
|
}
|
|
|
|
export default HistoryItem
|