mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
4779fcf6f1
Add infinite scroll support to app list and dataset list.
29 lines
1.0 KiB
TypeScript
29 lines
1.0 KiB
TypeScript
'use client'
|
|
|
|
import { forwardRef, useState } from 'react'
|
|
import classNames from 'classnames'
|
|
import { useTranslation } from 'react-i18next'
|
|
import style from '../list.module.css'
|
|
|
|
const CreateAppCard = forwardRef<HTMLAnchorElement>((_, ref) => {
|
|
const { t } = useTranslation()
|
|
const [showNewAppDialog, setShowNewAppDialog] = useState(false)
|
|
|
|
return (
|
|
<a ref={ref} className={classNames(style.listItem, style.newItemCard)} href='/datasets/create'>
|
|
<div className={style.listItemTitle}>
|
|
<span className={style.newItemIcon}>
|
|
<span className={classNames(style.newItemIconImage, style.newItemIconAdd)} />
|
|
</span>
|
|
<div className={classNames(style.listItemHeading, style.newItemCardHeading)}>
|
|
{t('dataset.createDataset')}
|
|
</div>
|
|
</div>
|
|
<div className={style.listItemDescription}>{t('dataset.createDatasetIntro')}</div>
|
|
{/* <div className='text-xs text-gray-500'>{t('app.createFromConfigFile')}</div> */}
|
|
</a>
|
|
)
|
|
})
|
|
|
|
export default CreateAppCard
|