mirror of
https://github.com/langgenius/webapp-conversation.git
synced 2025-12-08 17:32:27 +08:00
- Replace .eslintrc.json with eslint.config.mjs - Simplify configuration using @antfu/eslint-config - Add necessary ESLint plugin dependencies - Disable overly strict style rules - Set package.json type to module for ESM support - Fix ESLint disable comment format 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
89 lines
3.0 KiB
TypeScript
89 lines
3.0 KiB
TypeScript
import React from 'react'
|
|
import type { FC } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import {
|
|
ChatBubbleOvalLeftEllipsisIcon,
|
|
PencilSquareIcon,
|
|
} from '@heroicons/react/24/outline'
|
|
import { ChatBubbleOvalLeftEllipsisIcon as ChatBubbleOvalLeftEllipsisSolidIcon } from '@heroicons/react/24/solid'
|
|
import Button from '@/app/components/base/button'
|
|
// import Card from './card'
|
|
import type { ConversationItem } from '@/types/app'
|
|
|
|
function classNames(...classes: any[]) {
|
|
return classes.filter(Boolean).join(' ')
|
|
}
|
|
|
|
const MAX_CONVERSATION_LENTH = 20
|
|
|
|
export interface ISidebarProps {
|
|
copyRight: string
|
|
currentId: string
|
|
onCurrentIdChange: (id: string) => void
|
|
list: ConversationItem[]
|
|
}
|
|
|
|
const Sidebar: FC<ISidebarProps> = ({
|
|
copyRight,
|
|
currentId,
|
|
onCurrentIdChange,
|
|
list,
|
|
}) => {
|
|
const { t } = useTranslation()
|
|
return (
|
|
<div
|
|
className="shrink-0 flex flex-col overflow-y-auto bg-white pc:w-[244px] tablet:w-[192px] mobile:w-[240px] border-r border-gray-200 tablet:h-[calc(100vh_-_3rem)] mobile:h-screen"
|
|
>
|
|
{list.length < MAX_CONVERSATION_LENTH && (
|
|
<div className="flex flex-shrink-0 p-4 !pb-0">
|
|
<Button
|
|
onClick={() => { onCurrentIdChange('-1') }}
|
|
className="group block w-full flex-shrink-0 !justify-start !h-9 text-primary-600 items-center text-sm"
|
|
>
|
|
<PencilSquareIcon className="mr-2 h-4 w-4" /> {t('app.chat.newChat')}
|
|
</Button>
|
|
</div>
|
|
)}
|
|
|
|
<nav className="mt-4 flex-1 space-y-1 bg-white p-4 !pt-0">
|
|
{list.map((item) => {
|
|
const isCurrent = item.id === currentId
|
|
const ItemIcon
|
|
= isCurrent ? ChatBubbleOvalLeftEllipsisSolidIcon : ChatBubbleOvalLeftEllipsisIcon
|
|
return (
|
|
<div
|
|
onClick={() => onCurrentIdChange(item.id)}
|
|
key={item.id}
|
|
className={classNames(
|
|
isCurrent
|
|
? 'bg-primary-50 text-primary-600'
|
|
: 'text-gray-700 hover:bg-gray-100 hover:text-gray-700',
|
|
'group flex items-center rounded-md px-2 py-2 text-sm font-medium cursor-pointer',
|
|
)}
|
|
>
|
|
<ItemIcon
|
|
className={classNames(
|
|
isCurrent
|
|
? 'text-primary-600'
|
|
: 'text-gray-400 group-hover:text-gray-500',
|
|
'mr-3 h-5 w-5 flex-shrink-0',
|
|
)}
|
|
aria-hidden="true"
|
|
/>
|
|
{item.name}
|
|
</div>
|
|
)
|
|
})}
|
|
</nav>
|
|
{/* <a className="flex flex-shrink-0 p-4" href="https://langgenius.ai/" target="_blank">
|
|
<Card><div className="flex flex-row items-center"><ChatBubbleOvalLeftEllipsisSolidIcon className="text-primary-600 h-6 w-6 mr-2" /><span>LangGenius</span></div></Card>
|
|
</a> */}
|
|
<div className="flex flex-shrink-0 pr-4 pb-4 pl-4">
|
|
<div className="text-gray-400 font-normal text-xs">© {copyRight} {(new Date()).getFullYear()}</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default React.memo(Sidebar)
|