| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235 | 
							- 'use client'
 
- import type { MouseEventHandler } from 'react'
 
- import { useCallback, useEffect, useRef, useState } from 'react'
 
- import useSWR from 'swr'
 
- import classNames from 'classnames'
 
- import { useRouter } from 'next/navigation'
 
- import { useContext, useContextSelector } from 'use-context-selector'
 
- import { useTranslation } from 'react-i18next'
 
- import style from '../list.module.css'
 
- import AppModeLabel from './AppModeLabel'
 
- import Button from '@/app/components/base/button'
 
- import Dialog from '@/app/components/base/dialog'
 
- import type { AppMode } from '@/types/app'
 
- import { ToastContext } from '@/app/components/base/toast'
 
- import { createApp, fetchAppTemplates } from '@/service/apps'
 
- import AppIcon from '@/app/components/base/app-icon'
 
- import AppsContext, { useAppContext } from '@/context/app-context'
 
- import EmojiPicker from '@/app/components/base/emoji-picker'
 
- import { useProviderContext } from '@/context/provider-context'
 
- import AppsFull from '@/app/components/billing/apps-full-in-dialog'
 
- import { AiText } from '@/app/components/base/icons/src/vender/solid/communication'
 
- type NewAppDialogProps = {
 
-   show: boolean
 
-   onSuccess?: () => void
 
-   onClose?: () => void
 
- }
 
- const NewAppDialog = ({ show, onSuccess, onClose }: NewAppDialogProps) => {
 
-   const router = useRouter()
 
-   const { notify } = useContext(ToastContext)
 
-   const { isCurrentWorkspaceManager } = useAppContext()
 
-   const { t } = useTranslation()
 
-   const nameInputRef = useRef<HTMLInputElement>(null)
 
-   const [newAppMode, setNewAppMode] = useState<AppMode>()
 
-   const [isWithTemplate, setIsWithTemplate] = useState(false)
 
-   const [selectedTemplateIndex, setSelectedTemplateIndex] = useState<number>(-1)
 
-   // Emoji Picker
 
-   const [showEmojiPicker, setShowEmojiPicker] = useState(false)
 
-   const [emoji, setEmoji] = useState({ icon: '🤖', icon_background: '#FFEAD5' })
 
-   const mutateApps = useContextSelector(AppsContext, state => state.mutateApps)
 
-   const { data: templates, mutate } = useSWR({ url: '/app-templates' }, fetchAppTemplates)
 
-   const mutateTemplates = useCallback(
 
-     () => mutate(),
 
-     [],
 
-   )
 
-   useEffect(() => {
 
-     if (show) {
 
-       mutateTemplates()
 
-       setIsWithTemplate(false)
 
-     }
 
-   }, [mutateTemplates, show])
 
-   const { plan, enableBilling } = useProviderContext()
 
-   const isAppsFull = (enableBilling && plan.usage.buildApps >= plan.total.buildApps)
 
-   const isCreatingRef = useRef(false)
 
-   const onCreate: MouseEventHandler = useCallback(async () => {
 
-     const name = nameInputRef.current?.value
 
-     if (!name) {
 
-       notify({ type: 'error', message: t('app.newApp.nameNotEmpty') })
 
-       return
 
-     }
 
-     if (!templates || (isWithTemplate && !(selectedTemplateIndex > -1))) {
 
-       notify({ type: 'error', message: t('app.newApp.appTemplateNotSelected') })
 
-       return
 
-     }
 
-     if (!isWithTemplate && !newAppMode) {
 
-       notify({ type: 'error', message: t('app.newApp.appTypeRequired') })
 
-       return
 
-     }
 
-     if (isCreatingRef.current)
 
-       return
 
-     isCreatingRef.current = true
 
-     try {
 
-       const app = await createApp({
 
-         name,
 
-         icon: emoji.icon,
 
-         icon_background: emoji.icon_background,
 
-         mode: isWithTemplate ? templates.data[selectedTemplateIndex].mode : newAppMode!,
 
-         config: isWithTemplate ? templates.data[selectedTemplateIndex].model_config : undefined,
 
-       })
 
-       if (onSuccess)
 
-         onSuccess()
 
-       if (onClose)
 
-         onClose()
 
-       notify({ type: 'success', message: t('app.newApp.appCreated') })
 
-       mutateApps()
 
-       router.push(`/app/${app.id}/${isCurrentWorkspaceManager ? 'configuration' : 'overview'}`)
 
-     }
 
-     catch (e) {
 
-       notify({ type: 'error', message: t('app.newApp.appCreateFailed') })
 
-     }
 
-     isCreatingRef.current = false
 
-   }, [isWithTemplate, newAppMode, notify, router, templates, selectedTemplateIndex, emoji])
 
-   return <>
 
-     {showEmojiPicker && <EmojiPicker
 
-       onSelect={(icon, icon_background) => {
 
-         setEmoji({ icon, icon_background })
 
-         setShowEmojiPicker(false)
 
-       }}
 
-       onClose={() => {
 
-         setEmoji({ icon: '🤖', icon_background: '#FFEAD5' })
 
-         setShowEmojiPicker(false)
 
-       }}
 
-     />}
 
-     <Dialog
 
-       show={show}
 
-       title={t('app.newApp.startToCreate')}
 
-       footer={
 
-         <>
 
-           <Button onClick={onClose}>{t('app.newApp.Cancel')}</Button>
 
-           <Button disabled={isAppsFull} type="primary" onClick={onCreate}>{t('app.newApp.Create')}</Button>
 
-         </>
 
-       }
 
-     >
 
-       <div className='overflow-y-auto'>
 
-         <div className={style.newItemCaption}>
 
-           <h3 className='inline'>{t('app.newApp.captionAppType')}</h3>
 
-           {isWithTemplate && (
 
-             <>
 
-               <span className='block ml-[9px] mr-[9px] w-[1px] h-[13px] bg-gray-200' />
 
-               <span
 
-                 className='inline-flex items-center gap-1 text-xs font-medium cursor-pointer text-primary-600'
 
-                 onClick={() => setIsWithTemplate(false)}
 
-               >
 
-                 {t('app.newApp.hideTemplates')}
 
-               </span>
 
-             </>
 
-           )}
 
-         </div>
 
-         {!isWithTemplate && (
 
-           (
 
-             <>
 
-               <ul className='grid grid-cols-1 md:grid-cols-2 gap-4'>
 
-                 <li
 
-                   className={classNames(style.listItem, style.selectable, newAppMode === 'chat' && style.selected)}
 
-                   onClick={() => setNewAppMode('chat')}
 
-                 >
 
-                   <div className={style.listItemTitle}>
 
-                     <span className={style.newItemIcon}>
 
-                       <span className={classNames(style.newItemIconImage, style.newItemIconChat)} />
 
-                     </span>
 
-                     <div className={style.listItemHeading}>
 
-                       <div className={style.listItemHeadingContent}>{t('app.newApp.chatApp')}</div>
 
-                     </div>
 
-                     <div className='flex items-center h-[18px] border border-indigo-300 px-1 rounded-[5px] text-xs font-medium text-indigo-600 uppercase  truncate'>{t('app.newApp.agentAssistant')}</div>
 
-                   </div>
 
-                   <div className={`${style.listItemDescription} ${style.noClip}`}>{t('app.newApp.chatAppIntro')}</div>
 
-                   {/* <div className={classNames(style.listItemFooter, 'justify-end')}>
 
-                     <a className={style.listItemLink} href='https://udify.app/chat/7CQBa5yyvYLSkZtx' target='_blank' rel='noopener noreferrer'>{t('app.newApp.previewDemo')}<span className={classNames(style.linkIcon, style.grayLinkIcon)} /></a>
 
-                   </div> */}
 
-                 </li>
 
-                 <li
 
-                   className={classNames(style.listItem, style.selectable, newAppMode === 'completion' && style.selected)}
 
-                   onClick={() => setNewAppMode('completion')}
 
-                 >
 
-                   <div className={style.listItemTitle}>
 
-                     <span className={style.newItemIcon}>
 
-                       {/* <span className={classNames(style.newItemIconImage, style.newItemIconComplete)} /> */}
 
-                       <AiText className={classNames('w-5 h-5', newAppMode === 'completion' ? 'text-[#155EEF]' : 'text-gray-700')} />
 
-                     </span>
 
-                     <div className={style.listItemHeading}>
 
-                       <div className={style.listItemHeadingContent}>{t('app.newApp.completeApp')}</div>
 
-                     </div>
 
-                   </div>
 
-                   <div className={`${style.listItemDescription} ${style.noClip}`}>{t('app.newApp.completeAppIntro')}</div>
 
-                 </li>
 
-               </ul>
 
-             </>
 
-           )
 
-         )}
 
-         {isWithTemplate && (
 
-           <ul className='grid grid-cols-1 md:grid-cols-2 gap-4'>
 
-             {templates?.data?.map((template, index) => (
 
-               <li
 
-                 key={index}
 
-                 className={classNames(style.listItem, style.selectable, selectedTemplateIndex === index && style.selected)}
 
-                 onClick={() => setSelectedTemplateIndex(index)}
 
-               >
 
-                 <div className={style.listItemTitle}>
 
-                   <AppIcon size='small' />
 
-                   <div className={style.listItemHeading}>
 
-                     <div className={style.listItemHeadingContent}>{template.name}</div>
 
-                   </div>
 
-                 </div>
 
-                 <div className={style.listItemDescription}>{template.model_config?.pre_prompt}</div>
 
-                 <div className='inline-block pl-3.5'>
 
-                   <AppModeLabel mode={template.mode} isAgent={template.model_config.agent_mode.enabled} className='mt-2' />
 
-                 </div>
 
-               </li>
 
-             ))}
 
-           </ul>
 
-         )}
 
-         <div className='mt-8'>
 
-           <h3 className={style.newItemCaption}>{t('app.newApp.captionName')}</h3>
 
-           <div className='flex items-center justify-between gap-3'>
 
-             <AppIcon size='large' onClick={() => { setShowEmojiPicker(true) }} className='cursor-pointer' icon={emoji.icon} background={emoji.icon_background} />
 
-             <input ref={nameInputRef} className='h-10 px-3 text-sm font-normal bg-gray-100 rounded-lg grow' placeholder={t('app.appNamePlaceholder') || ''} />
 
-           </div>
 
-         </div>
 
-         {
 
-           !isWithTemplate && (
 
-             <div className='flex items-center h-[34px] mt-2'>
 
-               <span
 
-                 className='inline-flex items-center gap-1 text-xs font-medium cursor-pointer text-primary-600'
 
-                 onClick={() => setIsWithTemplate(true)}
 
-               >
 
-                 {t('app.newApp.showTemplates')}<span className={style.rightIcon} />
 
-               </span>
 
-             </div>
 
-           )
 
-         }
 
-       </div>
 
-       {isAppsFull && <AppsFull loc='app-create' />}
 
-     </Dialog>
 
-   </>
 
- }
 
- export default NewAppDialog
 
 
  |