* 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>
60 lines
1.7 KiB
TypeScript
60 lines
1.7 KiB
TypeScript
import { activeBotAtom } from '@/_helpers/atoms/Bot.atom'
|
|
import { showingBotListModalAtom } from '@/_helpers/atoms/Modal.atom'
|
|
import useGetBots from '@/_hooks/useGetBots'
|
|
import { Bot } from '@/_models/Bot'
|
|
import { useAtom, useSetAtom } from 'jotai'
|
|
import React, { useEffect, useState } from 'react'
|
|
import Avatar from '../Avatar'
|
|
import {
|
|
MainViewState,
|
|
setMainViewStateAtom,
|
|
} from '@/_helpers/atoms/MainView.atom'
|
|
|
|
const BotListContainer: React.FC = () => {
|
|
const [open, setOpen] = useAtom(showingBotListModalAtom)
|
|
const setMainView = useSetAtom(setMainViewStateAtom)
|
|
const [activeBot, setActiveBot] = useAtom(activeBotAtom)
|
|
const [bots, setBots] = useState<Bot[]>([])
|
|
const { getAllBots } = useGetBots()
|
|
|
|
useEffect(() => {
|
|
if (open) {
|
|
getAllBots().then((res) => {
|
|
setBots(res)
|
|
})
|
|
}
|
|
}, [open])
|
|
|
|
const onBotSelected = (bot: Bot) => {
|
|
if (bot._id !== activeBot?._id) {
|
|
setMainView(MainViewState.BotInfo)
|
|
setActiveBot(bot)
|
|
}
|
|
setOpen(false)
|
|
}
|
|
|
|
return (
|
|
<div className="overflow-hidden bg-white shadow sm:rounded-md">
|
|
<ul role="list" className="divide-y divide-gray-200">
|
|
{bots.map((bot) => (
|
|
<li
|
|
role="button"
|
|
key={bot._id}
|
|
className="flex gap-4 p-4 hover:bg-hover-light sm:px-6"
|
|
onClick={() => onBotSelected(bot)}
|
|
>
|
|
<Avatar />
|
|
|
|
<div className="flex flex-1 flex-col">
|
|
<p className="line-clamp-1">{bot.name}</p>
|
|
<p className="line-clamp-1 text-ellipsis">{bot._id}</p>
|
|
</div>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default BotListContainer
|