| 
									
										
										
										
											2024-05-27 21:57:08 +08:00
										 |  |  | 'use client' | 
					
						
							|  |  |  | import { useMemo, useState } from 'react' | 
					
						
							|  |  |  | import { useTranslation } from 'react-i18next' | 
					
						
							|  |  |  | import { useContext } from 'use-context-selector' | 
					
						
							| 
									
										
										
										
											2024-06-20 11:05:08 +08:00
										 |  |  | import { | 
					
						
							|  |  |  |   RiAddLine, | 
					
						
							|  |  |  | } from '@remixicon/react' | 
					
						
							| 
									
										
										
										
											2024-05-27 21:57:08 +08:00
										 |  |  | import type { CustomCollectionBackend } from '../types' | 
					
						
							|  |  |  | import I18n from '@/context/i18n' | 
					
						
							|  |  |  | import { getLanguage } from '@/i18n/language' | 
					
						
							|  |  |  | import { BookOpen01 } from '@/app/components/base/icons/src/vender/line/education' | 
					
						
							|  |  |  | import { ArrowUpRight } from '@/app/components/base/icons/src/vender/line/arrows' | 
					
						
							|  |  |  | import EditCustomToolModal from '@/app/components/tools/edit-custom-collection-modal' | 
					
						
							|  |  |  | import { createCustomCollection } from '@/service/tools' | 
					
						
							|  |  |  | import Toast from '@/app/components/base/toast' | 
					
						
							| 
									
										
										
										
											2024-06-14 07:34:25 -05:00
										 |  |  | import { useAppContext } from '@/context/app-context' | 
					
						
							| 
									
										
										
										
											2024-05-27 21:57:08 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | type Props = { | 
					
						
							|  |  |  |   onRefreshData: () => void | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const Contribute = ({ onRefreshData }: Props) => { | 
					
						
							|  |  |  |   const { t } = useTranslation() | 
					
						
							|  |  |  |   const { locale } = useContext(I18n) | 
					
						
							|  |  |  |   const language = getLanguage(locale) | 
					
						
							| 
									
										
										
										
											2024-06-14 07:34:25 -05:00
										 |  |  |   const { isCurrentWorkspaceManager } = useAppContext() | 
					
						
							| 
									
										
										
										
											2024-05-27 21:57:08 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   const linkUrl = useMemo(() => { | 
					
						
							|  |  |  |     if (language.startsWith('zh_')) | 
					
						
							| 
									
										
										
										
											2024-11-07 18:10:41 +08:00
										 |  |  |       return 'https://docs.dify.ai/zh-hans/guides/tools#ru-he-chuang-jian-zi-ding-yi-gong-ju' | 
					
						
							|  |  |  |     return 'https://docs.dify.ai/guides/tools#how-to-create-custom-tools' | 
					
						
							| 
									
										
										
										
											2024-05-27 21:57:08 +08:00
										 |  |  |   }, [language]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   const [isShowEditCollectionToolModal, setIsShowEditCustomCollectionModal] = useState(false) | 
					
						
							|  |  |  |   const doCreateCustomToolCollection = async (data: CustomCollectionBackend) => { | 
					
						
							|  |  |  |     await createCustomCollection(data) | 
					
						
							|  |  |  |     Toast.notify({ | 
					
						
							|  |  |  |       type: 'success', | 
					
						
							|  |  |  |       message: t('common.api.actionSuccess'), | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  |     setIsShowEditCustomCollectionModal(false) | 
					
						
							|  |  |  |     onRefreshData() | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   return ( | 
					
						
							|  |  |  |     <> | 
					
						
							| 
									
										
										
										
											2024-06-14 07:34:25 -05:00
										 |  |  |       {isCurrentWorkspaceManager && ( | 
					
						
							| 
									
										
										
										
											2025-03-21 17:41:03 +08:00
										 |  |  |         <div className='col-span-1 flex min-h-[135px] cursor-pointer flex-col rounded-xl border-[0.5px] border-divider-subtle bg-components-panel-on-panel-item-bg transition-all duration-200 ease-in-out hover:bg-components-panel-on-panel-item-bg-hover hover:shadow-lg'> | 
					
						
							| 
									
										
										
										
											2025-02-17 17:05:13 +08:00
										 |  |  |           <div className='group grow rounded-t-xl hover:bg-background-body' onClick={() => setIsShowEditCustomCollectionModal(true)}> | 
					
						
							| 
									
										
										
										
											2025-03-21 17:41:03 +08:00
										 |  |  |             <div className='flex shrink-0 items-center p-4 pb-3'> | 
					
						
							|  |  |  |               <div className='flex h-10 w-10 items-center justify-center rounded-lg border border-components-option-card-option-border bg-components-option-card-option-bg group-hover:border-components-option-card-option-border-hover group-hover:bg-components-option-card-option-bg-hover'> | 
					
						
							|  |  |  |                 <RiAddLine className='h-4 w-4 text-text-tertiary group-hover:text-text-accent'/> | 
					
						
							| 
									
										
										
										
											2024-06-14 07:34:25 -05:00
										 |  |  |               </div> | 
					
						
							| 
									
										
										
										
											2025-02-17 17:05:13 +08:00
										 |  |  |               <div className='ml-3 text-sm font-semibold leading-5 text-text-primary group-hover:text-text-accent'>{t('tools.createCustomTool')}</div> | 
					
						
							| 
									
										
										
										
											2024-05-27 21:57:08 +08:00
										 |  |  |             </div> | 
					
						
							| 
									
										
										
										
											2024-06-14 07:34:25 -05:00
										 |  |  |           </div> | 
					
						
							| 
									
										
										
										
											2025-03-21 17:41:03 +08:00
										 |  |  |           <div className='rounded-b-xl border-t-[0.5px] border-divider-regular px-4 py-3 text-text-tertiary hover:bg-background-body hover:text-text-accent'> | 
					
						
							| 
									
										
										
										
											2024-06-14 07:34:25 -05:00
										 |  |  |             <a href={linkUrl} target='_blank' rel='noopener noreferrer' className='flex items-center space-x-1'> | 
					
						
							| 
									
										
										
										
											2025-03-21 17:41:03 +08:00
										 |  |  |               <BookOpen01 className='h-3 w-3 shrink-0' /> | 
					
						
							|  |  |  |               <div className='grow truncate text-xs font-normal leading-[18px]' title={t('tools.customToolTip') || ''}>{t('tools.customToolTip')}</div> | 
					
						
							|  |  |  |               <ArrowUpRight className='h-3 w-3 shrink-0' /> | 
					
						
							| 
									
										
										
										
											2024-06-14 07:34:25 -05:00
										 |  |  |             </a> | 
					
						
							| 
									
										
										
										
											2024-05-27 21:57:08 +08:00
										 |  |  |           </div> | 
					
						
							|  |  |  |         </div> | 
					
						
							| 
									
										
										
										
											2024-06-14 07:34:25 -05:00
										 |  |  |       )} | 
					
						
							| 
									
										
										
										
											2024-05-27 21:57:08 +08:00
										 |  |  |       {isShowEditCollectionToolModal && ( | 
					
						
							|  |  |  |         <EditCustomToolModal | 
					
						
							|  |  |  |           payload={null} | 
					
						
							|  |  |  |           onHide={() => setIsShowEditCustomCollectionModal(false)} | 
					
						
							|  |  |  |           onAdd={doCreateCustomToolCollection} | 
					
						
							|  |  |  |         /> | 
					
						
							|  |  |  |       )} | 
					
						
							|  |  |  |     </> | 
					
						
							|  |  |  |   ) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | export default Contribute |