123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221 |
- 'use client'
- import React, { useEffect, useState } from 'react'
- import { useTranslation } from 'react-i18next'
- import { RiCloseLine } from '@remixicon/react'
- import AppIconPicker from '../../base/app-icon-picker'
- import Modal from '@/app/components/base/modal'
- import Button from '@/app/components/base/button'
- import Input from '@/app/components/base/input'
- import Textarea from '@/app/components/base/textarea'
- import Switch from '@/app/components/base/switch'
- import Toast from '@/app/components/base/toast'
- import AppIcon from '@/app/components/base/app-icon'
- import { useProviderContext } from '@/context/provider-context'
- import AppsFull from '@/app/components/billing/apps-full-in-dialog'
- import type { AppIconType } from '@/types/app'
- import { SimpleSelect } from '@/app/components/base/select'
- import { TreeSelect as AntdTreeSelect } from 'antd'
- import { fetchDeptUsers } from '@/service/common'
- export type CreateAppModalProps = {
- show: boolean
- isEditModal?: boolean
- appName: string
- appDescription: string
- appIconType: AppIconType | null
- appIcon: string
- appIconBackground?: string | null
- appIconUrl?: string | null
- appMode?: string
- appUseIconAsAnswerIcon?: boolean
- onConfirm: (info: {
- name: string
- icon_type: AppIconType
- icon: string
- icon_background?: string
- description: string
- use_icon_as_answer_icon?: boolean
- }) => Promise<void>
- onHide: () => void
- }
- const CreateAppModal = ({
- show = false,
- isEditModal = false,
- appIconType,
- appIcon: _appIcon,
- appIconBackground,
- appIconUrl,
- appName,
- appDescription,
- appMode,
- appUseIconAsAnswerIcon,
- onConfirm,
- onHide,
- }: CreateAppModalProps) => {
- const { t } = useTranslation()
- const [name, setName] = React.useState(appName)
- const [appIcon, setAppIcon] = useState(
- () => appIconType === 'image'
- ? { type: 'image' as const, fileId: _appIcon, url: appIconUrl }
- : { type: 'emoji' as const, icon: _appIcon, background: appIconBackground },
- )
- const [showAppIconPicker, setShowAppIconPicker] = useState(false)
- const [description, setDescription] = useState(appDescription || '')
- const [useIconAsAnswerIcon, setUseIconAsAnswerIcon] = useState(appUseIconAsAnswerIcon || false)
- const { plan, enableBilling } = useProviderContext()
- const isAppsFull = (enableBilling && plan.usage.buildApps >= plan.total.buildApps)
- const submit = () => {
- if (!name.trim()) {
- Toast.notify({ type: 'error', message: t('explore.appCustomize.nameRequired') })
- return
- }
- onConfirm({
- name,
- icon_type: appIcon.type,
- icon: appIcon.type === 'emoji' ? appIcon.icon : appIcon.fileId,
- icon_background: appIcon.type === 'emoji' ? appIcon.background! : undefined,
- description,
- use_icon_as_answer_icon: useIconAsAnswerIcon,
- })
- onHide()
- }
- const optionsEditAuth = [
- { name: '本账号', value: 1 },
- { name: '本部门', value: 2 },
- ]
- const [editAuth, setEditAuth] = useState()
- const [lookUserIds, setLookUserIds] = useState([])
- const [optionsDeptUser, setOptionsDeptUser] = useState<any>([])
- useEffect(() => {
- fetchDeptUsers({
- url: '/xxx',
- params: {
- page: 1,
- limit: 1000,
- },
- }).then((res: any) => {
- setOptionsDeptUser(res.data || [])
- })
- }, [])
- return (
- <>
- <Modal
- isShow={show}
- onClose={() => {}}
- className='relative !max-w-[480px] px-8'
- >
- <div className='absolute right-4 top-4 cursor-pointer p-2' onClick={onHide}>
- <RiCloseLine className='h-4 w-4 text-text-tertiary' />
- </div>
- {isEditModal && (
- <div className='mb-9 text-xl font-semibold leading-[30px] text-text-primary'>{t('app.editAppTitle')}</div>
- )}
- {!isEditModal && (
- <div className='mb-9 text-xl font-semibold leading-[30px] text-text-primary'>{t('explore.appCustomize.title', { name: appName })}</div>
- )}
- <div className='mb-9'>
- {/* icon & name */}
- <div className='pt-2'>
- <div className='py-2 text-sm font-medium leading-[20px] text-text-primary'>{t('app.newApp.captionName')}</div>
- <div className='flex items-center justify-between space-x-2'>
- <AppIcon
- size='large'
- onClick={() => { setShowAppIconPicker(true) }}
- className='cursor-pointer'
- iconType={appIcon.type}
- icon={appIcon.type === 'image' ? appIcon.fileId : appIcon.icon}
- background={appIcon.type === 'image' ? undefined : appIcon.background}
- imageUrl={appIcon.type === 'image' ? appIcon.url : undefined}
- />
- <Input
- value={name}
- onChange={e => setName(e.target.value)}
- placeholder={t('app.newApp.appNamePlaceholder') || ''}
- className='h-10 grow'
- />
- </div>
- </div>
- {/* description */}
- <div className='pt-2'>
- <div className='py-2 text-sm font-medium leading-[20px] text-text-primary'>{t('app.newApp.captionDescription')}</div>
- <Textarea
- className='resize-none'
- placeholder={t('app.newApp.appDescriptionPlaceholder') || ''}
- value={description}
- onChange={e => setDescription(e.target.value)}
- />
- </div>
- {/* answer icon */}
- {isEditModal && (appMode === 'chat' || appMode === 'advanced-chat' || appMode === 'agent-chat') && (
- <div className='pt-2'>
- <div className='flex items-center justify-between'>
- <div className='py-2 text-sm font-medium leading-[20px] text-text-primary'>{t('app.answerIcon.title')}</div>
- <Switch
- defaultValue={useIconAsAnswerIcon}
- onChange={v => setUseIconAsAnswerIcon(v)}
- />
- </div>
- <p className='body-xs-regular text-text-tertiary'>{t('app.answerIcon.descriptionInExplore')}</p>
- </div>
- )}
- {!isEditModal && isAppsFull && <AppsFull loc='app-explore-create' />}
- <div className='pt-2'>
- <div className='py-2 text-sm font-medium leading-[20px] text-text-primary'>编辑授权</div>
- <div className="h-[32px]">
- <SimpleSelect
- className="h-[32px]"
- defaultValue={editAuth}
- onSelect={(i) => {
- setEditAuth(i.value)
- }}
- items={optionsEditAuth}
- allowSearch={false}
- placeholder="请选择编辑授权"
- />
- </div>
- </div>
- <div className='pt-2'>
- <div className='py-2 text-sm font-medium leading-[20px] text-text-primary'>可见授权</div>
- <AntdTreeSelect
- showSearch
- style={{ width: '100%' }}
- value={lookUserIds}
- dropdownStyle={{ maxHeight: 400, overflow: 'auto' }}
- placeholder="请选择可见授权"
- allowClear
- treeDefaultExpandAll
- onChange={v => setLookUserIds(v)}
- treeData={optionsDeptUser}
- fieldNames={{ label: 'name', value: 'id' }}
- multiple={true}
- treeCheckable={true}
- />
- </div>
- </div>
- <div className='flex flex-row-reverse'>
- <Button disabled={!isEditModal && isAppsFull} className='ml-2 w-24' variant='primary' onClick={submit}>{!isEditModal ? t('common.operation.create') : t('common.operation.save')}</Button>
- <Button className='w-24' onClick={onHide}>{t('common.operation.cancel')}</Button>
- </div>
- </Modal>
- {showAppIconPicker && <AppIconPicker
- onSelect={(payload) => {
- setAppIcon(payload)
- setShowAppIconPicker(false)
- }}
- onClose={() => {
- setAppIcon(appIconType === 'image'
- ? { type: 'image' as const, url: appIconUrl, fileId: _appIcon }
- : { type: 'emoji' as const, icon: _appIcon, background: appIconBackground })
- setShowAppIconPicker(false)
- }}
- />}
- </>
- )
- }
- export default CreateAppModal
|