| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289 | 
							- 'use client'
 
- import { useCallback, useEffect, useRef, useState } from 'react'
 
- import {
 
-   useRouter,
 
- } from 'next/navigation'
 
- import useSWRInfinite from 'swr/infinite'
 
- import { useTranslation } from 'react-i18next'
 
- import { useDebounceFn } from 'ahooks'
 
- import {
 
-   RiApps2Line,
 
-   RiExchange2Line,
 
-   RiFile4Line,
 
-   RiMessage3Line,
 
-   RiRobot3Line,
 
- } from '@remixicon/react'
 
- import AppCard from './AppCard'
 
- import NewAppCard from './NewAppCard'
 
- import useAppsQueryState from './hooks/useAppsQueryState'
 
- import type { AppListResponse } from '@/models/app'
 
- import { fetchAppList } from '@/service/apps'
 
- import { useAppContext } from '@/context/app-context'
 
- import { NEED_REFRESH_APP_LIST_KEY } from '@/config'
 
- import { CheckModal } from '@/hooks/use-pay'
 
- import TabSliderNew from '@/app/components/base/tab-slider-new'
 
- import { useTabSearchParams } from '@/hooks/use-tab-searchparams'
 
- import Input from '@/app/components/base/input'
 
- import { useStore as useTagStore } from '@/app/components/base/tag-management/store'
 
- import TagManagementModal from '@/app/components/base/tag-management'
 
- import TagFilter from '@/app/components/base/tag-management/filter'
 
- import { fetchDepts } from '@/service/common'
 
- import { TreeSelect as AntdTreeSelect } from 'antd'
 
- import { SimpleSelect } from '@/app/components/base/select'
 
- const getKey = (
 
-   pageIndex: number,
 
-   previousPageData: AppListResponse,
 
-   activeTab: string,
 
-   isCreatedByMe: boolean,
 
-   tags: string[],
 
-   keywords: string,
 
-   dept: string,
 
-   authType: number,
 
-   creator: string,
 
- ) => {
 
-   if (!pageIndex || previousPageData.has_more) {
 
-     const params: any = { url: 'apps', params: { page: pageIndex + 1, limit: 30, name: keywords, is_created_by_me: isCreatedByMe } }
 
-     if (activeTab !== 'all')
 
-       params.params.mode = activeTab
 
-     else
 
-       delete params.params.mode
 
-     if (tags.length)
 
-       params.params.tag_ids = tags
 
-     if (dept)
 
-       params.params.creator_dept = dept
 
-     if (authType)
 
-       params.params.auth_type = authType
 
-     if (creator)
 
-       params.params.creator = creator
 
-     return params
 
-   }
 
-   return null
 
- }
 
- const Apps = () => {
 
-   const { t } = useTranslation()
 
-   const router = useRouter()
 
-   const { isCurrentWorkspaceEditor, isCurrentWorkspaceDatasetOperator } = useAppContext()
 
-   const showTagManagementModal = useTagStore(s => s.showTagManagementModal)
 
-   const [activeTab, setActiveTab] = useTabSearchParams({
 
-     defaultTab: 'all',
 
-   })
 
-   const { query: { tagIDs = [], keywords = '', isCreatedByMe: queryIsCreatedByMe = false }, setQuery } = useAppsQueryState()
 
-   const [isCreatedByMe, setIsCreatedByMe] = useState(queryIsCreatedByMe)
 
-   const [tagFilterValue, setTagFilterValue] = useState<string[]>(tagIDs)
 
-   const [searchKeywords, setSearchKeywords] = useState(keywords)
 
-   const setKeywords = useCallback((keywords: string) => {
 
-     setQuery(prev => ({ ...prev, keywords }))
 
-   }, [setQuery])
 
-   const setTagIDs = useCallback((tagIDs: string[]) => {
 
-     setQuery(prev => ({ ...prev, tagIDs }))
 
-   }, [setQuery])
 
-   const [dept, setDept] = useState<any>()
 
-   const [optionsDept, setOptionsDept] = useState<any>([])
 
-   useEffect(() => {
 
-     fetchDepts({
 
-       url: '/depts',
 
-     }).then((res: any) => {
 
-       setOptionsDept(res.data || [])
 
-     })
 
-   }, [])
 
-   const [authType, setAuthType] = useState<any>('')
 
-   const optionsAuthType = [
 
-     { name: '创建', value: '1' },
 
-     { name: '编辑', value: '2' },
 
-     { name: '授权编辑', value: '3' },
 
-     { name: '授权可见', value: '4' },
 
-   ]
 
-   const [creator, setCreator] = useState('')
 
-   const [searchCreator, setSearchCreator] = useState('')
 
-   const { run: handleSearchCreator } = useDebounceFn(() => {
 
-     setSearchCreator(creator)
 
-   }, { wait: 500 })
 
-   const handleCreatorChange = (value: string) => {
 
-     setCreator(value)
 
-     handleSearchCreator()
 
-   }
 
-   const { data, isLoading, setSize, mutate } = useSWRInfinite(
 
-     (pageIndex: number, previousPageData: AppListResponse) => getKey(pageIndex, previousPageData, activeTab, isCreatedByMe, tagIDs, searchKeywords, dept, authType, searchCreator),
 
-     fetchAppList,
 
-     { revalidateFirstPage: true },
 
-   )
 
-   const anchorRef = useRef<HTMLDivElement>(null)
 
-   const options = [
 
-     { value: 'all', text: t('app.types.all'), icon: <RiApps2Line className='mr-1 h-[14px] w-[14px]' /> },
 
-     { value: 'chat', text: t('app.types.chatbot'), icon: <RiMessage3Line className='mr-1 h-[14px] w-[14px]' /> },
 
-     { value: 'agent-chat', text: t('app.types.agent'), icon: <RiRobot3Line className='mr-1 h-[14px] w-[14px]' /> },
 
-     { value: 'completion', text: t('app.types.completion'), icon: <RiFile4Line className='mr-1 h-[14px] w-[14px]' /> },
 
-     { value: 'advanced-chat', text: t('app.types.advanced'), icon: <RiMessage3Line className='mr-1 h-[14px] w-[14px]' /> },
 
-     { value: 'workflow', text: t('app.types.workflow'), icon: <RiExchange2Line className='mr-1 h-[14px] w-[14px]' /> },
 
-   ]
 
-   useEffect(() => {
 
-     document.title = `${t('common.menus.apps')} - Dify`
 
-     if (localStorage.getItem(NEED_REFRESH_APP_LIST_KEY) === '1') {
 
-       localStorage.removeItem(NEED_REFRESH_APP_LIST_KEY)
 
-       mutate()
 
-     }
 
-   }, [mutate, t])
 
-   useEffect(() => {
 
-     if (isCurrentWorkspaceDatasetOperator)
 
-       return router.replace('/datasets')
 
-   }, [router, isCurrentWorkspaceDatasetOperator])
 
-   useEffect(() => {
 
-     const hasMore = data?.at(-1)?.has_more ?? true
 
-     let observer: IntersectionObserver | undefined
 
-     if (anchorRef.current) {
 
-       observer = new IntersectionObserver((entries) => {
 
-         if (entries[0].isIntersecting && !isLoading && hasMore)
 
-           setSize((size: number) => size + 1)
 
-       }, { rootMargin: '100px' })
 
-       observer.observe(anchorRef.current)
 
-     }
 
-     return () => observer?.disconnect()
 
-   }, [isLoading, setSize, anchorRef, mutate, data])
 
-   const { run: handleSearch } = useDebounceFn(() => {
 
-     setSearchKeywords(keywords)
 
-   }, { wait: 500 })
 
-   const handleKeywordsChange = (value: string) => {
 
-     setKeywords(value)
 
-     handleSearch()
 
-   }
 
-   const { run: handleTagsUpdate } = useDebounceFn(() => {
 
-     setTagIDs(tagFilterValue)
 
-   }, { wait: 500 })
 
-   const handleTagsChange = (value: string[]) => {
 
-     setTagFilterValue(value)
 
-     handleTagsUpdate()
 
-   }
 
-   const handleCreatedByMeChange = useCallback(() => {
 
-     const newValue = !isCreatedByMe
 
-     setIsCreatedByMe(newValue)
 
-     setQuery(prev => ({ ...prev, isCreatedByMe: newValue }))
 
-   }, [isCreatedByMe, setQuery])
 
-   return (
 
-     <>
 
-       <div className='sticky top-0 z-10 flex flex-wrap items-center justify-between gap-y-2 bg-background-body px-12 pb-2 pt-4 leading-[56px]'>
 
-         <TabSliderNew
 
-           value={activeTab}
 
-           onChange={setActiveTab}
 
-           options={options}
 
-         />
 
-         <div className='flex items-center gap-2'>
 
-           <Input
 
-             showLeftIcon
 
-             showClearIcon
 
-             wrapperClassName='w-[200px]'
 
-             value={creator}
 
-             onChange={e => handleCreatorChange(e.target.value)}
 
-             onClear={() => handleCreatorChange('')}
 
-             placeholder="请输入创建人"
 
-           />
 
-           <SimpleSelect
 
-             wrapperClassName="h-[32px] w-[200px]"
 
-             defaultValue={authType}
 
-             onSelect={(i) => {
 
-               setAuthType(i.value)
 
-             }}
 
-             items={optionsAuthType}
 
-             allowSearch={false}
 
-             placeholder="请选择权限类型"
 
-           />
 
-           <AntdTreeSelect
 
-             showSearch
 
-             style={{ width: '200px' }}
 
-             value={dept}
 
-             dropdownStyle={{ maxHeight: 400, overflow: 'auto' }}
 
-             placeholder="请选择部门"
 
-             allowClear
 
-             treeDefaultExpandAll
 
-             onChange={v => setDept(v || '')}
 
-             treeData={optionsDept}
 
-             fieldNames={{ label: 'dept_name', value: 'dept_id' }}
 
-           />
 
-           {/* <CheckboxWithLabel */}
 
-           {/*  className='mr-2' */}
 
-           {/*  label={t('app.showMyCreatedAppsOnly')} */}
 
-           {/*  isChecked={isCreatedByMe} */}
 
-           {/*  onChange={handleCreatedByMeChange} */}
 
-           {/* /> */}
 
-           <TagFilter type='app' value={tagFilterValue} onChange={handleTagsChange} />
 
-           <Input
 
-             showLeftIcon
 
-             showClearIcon
 
-             wrapperClassName='w-[200px]'
 
-             value={keywords}
 
-             onChange={e => handleKeywordsChange(e.target.value)}
 
-             onClear={() => handleKeywordsChange('')}
 
-           />
 
-         </div>
 
-       </div>
 
-       {(data && data[0].total > 0)
 
-         ? <div className='relative grid grow grid-cols-1 content-start gap-4 px-12 pt-2 sm:grid-cols-1 md:grid-cols-2 xl:grid-cols-4 2xl:grid-cols-5 2k:grid-cols-6'>
 
-           {isCurrentWorkspaceEditor
 
-             && <NewAppCard onSuccess={mutate} />}
 
-           {data.map(({ data: apps }) => apps.map(app => (
 
-             <AppCard key={app.id} app={app} onRefresh={mutate} />
 
-           )))}
 
-         </div>
 
-         : <div className='relative grid grow grid-cols-1 content-start gap-4 overflow-hidden px-12 pt-2 sm:grid-cols-1 md:grid-cols-2 xl:grid-cols-4 2xl:grid-cols-5 2k:grid-cols-6'>
 
-           {isCurrentWorkspaceEditor
 
-             && <NewAppCard className='z-10' onSuccess={mutate} />}
 
-           <NoAppsFound />
 
-         </div>}
 
-       <CheckModal />
 
-       <div ref={anchorRef} className='h-0'> </div>
 
-       {showTagManagementModal && (
 
-         <TagManagementModal type='app' show={showTagManagementModal} />
 
-       )}
 
-     </>
 
-   )
 
- }
 
- export default Apps
 
- function NoAppsFound() {
 
-   const { t } = useTranslation()
 
-   function renderDefaultCard() {
 
-     const defaultCards = Array.from({ length: 36 }, (_, index) => (
 
-       <div key={index} className='inline-flex h-[160px] rounded-xl bg-background-default-lighter'></div>
 
-     ))
 
-     return defaultCards
 
-   }
 
-   return (
 
-     <>
 
-       {renderDefaultCard()}
 
-       <div className='absolute bottom-0 left-0 right-0 top-0 flex items-center justify-center bg-gradient-to-t from-background-body to-transparent'>
 
-         <span className='system-md-medium text-text-tertiary'>{t('app.newApp.noAppsFound')}</span>
 
-       </div>
 
-     </>
 
-   )
 
- }
 
- export const GetAppAuth = (row: any) => {
 
-   const { currentWorkspace, userProfile } = useAppContext()
 
-   let isCreate = false
 
-   let isEdit = false
 
-   let isOperation = false
 
-   if (row) {
 
-     isCreate = currentWorkspace.role === 'owner' || row.created_by === userProfile.id
 
-     isEdit = isCreate || currentWorkspace.role === 'admin' || (row.edit_auth === 2 && currentWorkspace.role === 'leader' && row.dept_id === userProfile.dept_id)
 
-     isOperation = isEdit || (row.edit_auth === 2 && row.dept_id === userProfile.dept_id)
 
-   }
 
-   return {
 
-     isCreate,
 
-     isEdit,
 
-     isOperation,
 
-   }
 
- }
 
 
  |