'use client' import { useTranslation } from 'react-i18next' import { PlusIcon } from '@heroicons/react/20/solid' import Button from '../../base/button' import cn from '@/utils/classnames' import type { App } from '@/models/explore' import AppIcon from '@/app/components/base/app-icon' import { AppTypeIcon } from '../../app/type-selector' export type AppCardProps = { app: App canCreate: boolean onCreate: () => void isExplore: boolean } const AppCard = ({ app, canCreate, onCreate, isExplore, }: AppCardProps) => { const { t } = useTranslation() const { app: appBasicInfo } = app return (
{appBasicInfo.name}
{appBasicInfo.mode === 'advanced-chat' &&
{t('app.types.advanced').toUpperCase()}
} {appBasicInfo.mode === 'chat' &&
{t('app.types.chatbot').toUpperCase()}
} {appBasicInfo.mode === 'agent-chat' &&
{t('app.types.agent').toUpperCase()}
} {appBasicInfo.mode === 'workflow' &&
{t('app.types.workflow').toUpperCase()}
} {appBasicInfo.mode === 'completion' &&
{t('app.types.completion').toUpperCase()}
}
{app.description}
{isExplore && canCreate && ( )}
) } export default AppCard