123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 |
- import type { FC } from 'react'
- import { useState } from 'react'
- import useSWR from 'swr'
- import { useContext } from 'use-context-selector'
- import { useTranslation } from 'react-i18next'
- import FormGeneration from '@/app/components/base/features/new-feature-panel/moderation/form-generation'
- import Modal from '@/app/components/base/modal'
- import Button from '@/app/components/base/button'
- import EmojiPicker from '@/app/components/base/emoji-picker'
- import ApiBasedExtensionSelector from '@/app/components/header/account-setting/api-based-extension-page/selector'
- import { BookOpen01 } from '@/app/components/base/icons/src/vender/line/education'
- import { fetchCodeBasedExtensionList } from '@/service/common'
- import { SimpleSelect } from '@/app/components/base/select'
- import I18n from '@/context/i18n'
- import { LanguagesSupported } from '@/i18n/language'
- import type {
- CodeBasedExtensionItem,
- ExternalDataTool,
- } from '@/models/common'
- import { useToastContext } from '@/app/components/base/toast'
- import AppIcon from '@/app/components/base/app-icon'
- const systemTypes = ['api']
- type ExternalDataToolModalProps = {
- data: ExternalDataTool
- onCancel: () => void
- onSave: (externalDataTool: ExternalDataTool) => void
- onValidateBeforeSave?: (externalDataTool: ExternalDataTool) => boolean
- }
- type Provider = {
- key: string
- name: string
- form_schema?: CodeBasedExtensionItem['form_schema']
- }
- const ExternalDataToolModal: FC<ExternalDataToolModalProps> = ({
- data,
- onCancel,
- onSave,
- onValidateBeforeSave,
- }) => {
- const { t } = useTranslation()
- const { notify } = useToastContext()
- const { locale } = useContext(I18n)
- const [localeData, setLocaleData] = useState(data.type ? data : { ...data, type: 'api' })
- const [showEmojiPicker, setShowEmojiPicker] = useState(false)
- const { data: codeBasedExtensionList } = useSWR(
- '/code-based-extension?module=external_data_tool',
- fetchCodeBasedExtensionList,
- )
- const providers: Provider[] = [
- {
- key: 'api',
- name: t('common.apiBasedExtension.selector.title'),
- },
- ...(
- codeBasedExtensionList
- ? codeBasedExtensionList.data.map((item) => {
- return {
- key: item.name,
- name: locale === 'zh-Hans' ? item.label['zh-Hans'] : item.label['en-US'],
- form_schema: item.form_schema,
- }
- })
- : []
- ),
- ]
- const currentProvider = providers.find(provider => provider.key === localeData.type)
- const handleDataTypeChange = (type: string) => {
- let config: undefined | Record<string, any>
- const currProvider = providers.find(provider => provider.key === type)
- if (systemTypes.findIndex(t => t === type) < 0 && currProvider?.form_schema) {
- config = currProvider?.form_schema.reduce((prev, next) => {
- prev[next.variable] = next.default
- return prev
- }, {} as Record<string, any>)
- }
- setLocaleData({
- ...localeData,
- type,
- config,
- })
- }
- const handleDataExtraChange = (extraValue: Record<string, string>) => {
- setLocaleData({
- ...localeData,
- config: {
- ...localeData.config,
- ...extraValue,
- },
- })
- }
- const handleValueChange = (value: Record<string, string>) => {
- setLocaleData({
- ...localeData,
- ...value,
- })
- }
- const handleDataApiBasedChange = (apiBasedExtensionId: string) => {
- setLocaleData({
- ...localeData,
- config: {
- ...localeData.config,
- api_based_extension_id: apiBasedExtensionId,
- },
- })
- }
- const formatData = (originData: ExternalDataTool) => {
- const { type, config } = originData
- const params: Record<string, string | undefined> = {}
- if (type === 'api')
- params.api_based_extension_id = config?.api_based_extension_id
- if (systemTypes.findIndex(t => t === type) < 0 && currentProvider?.form_schema) {
- currentProvider.form_schema.forEach((form) => {
- params[form.variable] = config?.[form.variable]
- })
- }
- return {
- ...originData,
- type,
- enabled: data.type ? data.enabled : true,
- config: {
- ...params,
- },
- }
- }
- const handleSave = () => {
- if (!localeData.type) {
- notify({ type: 'error', message: t('appDebug.errorMessage.valueOfVarRequired', { key: t('appDebug.feature.tools.modal.toolType.title') }) })
- return
- }
- if (!localeData.label) {
- notify({ type: 'error', message: t('appDebug.errorMessage.valueOfVarRequired', { key: t('appDebug.feature.tools.modal.name.title') }) })
- return
- }
- if (!localeData.variable) {
- notify({ type: 'error', message: t('appDebug.errorMessage.valueOfVarRequired', { key: t('appDebug.feature.tools.modal.variableName.title') }) })
- return
- }
- if (localeData.variable && !/[a-zA-Z_][a-zA-Z0-9_]{0,29}/g.test(localeData.variable)) {
- notify({ type: 'error', message: t('appDebug.varKeyError.notValid', { key: t('appDebug.feature.tools.modal.variableName.title') }) })
- return
- }
- if (localeData.type === 'api' && !localeData.config?.api_based_extension_id) {
- notify({ type: 'error', message: t('appDebug.errorMessage.valueOfVarRequired', { key: locale !== LanguagesSupported[1] ? 'API Extension' : 'API 扩展' }) })
- return
- }
- if (systemTypes.findIndex(t => t === localeData.type) < 0 && currentProvider?.form_schema) {
- for (let i = 0; i < currentProvider.form_schema.length; i++) {
- if (!localeData.config?.[currentProvider.form_schema[i].variable] && currentProvider.form_schema[i].required) {
- notify({
- type: 'error',
- message: t('appDebug.errorMessage.valueOfVarRequired', { key: locale !== LanguagesSupported[1] ? currentProvider.form_schema[i].label['en-US'] : currentProvider.form_schema[i].label['zh-Hans'] }),
- })
- return
- }
- }
- }
- const formattedData = formatData(localeData)
- if (onValidateBeforeSave && !onValidateBeforeSave(formattedData))
- return
- onSave(formatData(formattedData))
- }
- const action = data.type ? t('common.operation.edit') : t('common.operation.add')
- return (
- <Modal
- isShow
- onClose={() => { }}
- className='!p-8 !pb-6 !max-w-none !w-[640px]'
- >
- <div className='mb-2 text-xl font-semibold text-gray-900'>
- {`${action} ${t('appDebug.variableConfig.apiBasedVar')}`}
- </div>
- <div className='py-2'>
- <div className='leading-9 text-sm font-medium text-gray-900'>
- {t('common.apiBasedExtension.type')}
- </div>
- <SimpleSelect
- defaultValue={localeData.type}
- items={providers.map((option) => {
- return {
- value: option.key,
- name: option.name,
- }
- })}
- onSelect={item => handleDataTypeChange(item.value as string)}
- />
- </div>
- <div className='py-2'>
- <div className='leading-9 text-sm font-medium text-gray-900'>
- {t('appDebug.feature.tools.modal.name.title')}
- </div>
- <div className='flex items-center'>
- <input
- value={localeData.label || ''}
- onChange={e => handleValueChange({ label: e.target.value })}
- className='grow block mr-2 px-3 h-9 bg-gray-100 rounded-lg text-sm text-gray-900 outline-none appearance-none'
- placeholder={t('appDebug.feature.tools.modal.name.placeholder') || ''}
- />
- <AppIcon size='large'
- onClick={() => { setShowEmojiPicker(true) }}
- className='!w-9 !h-9 rounded-lg border-[0.5px] border-black/5 cursor-pointer '
- icon={localeData.icon}
- background={localeData.icon_background}
- />
- </div>
- </div>
- <div className='py-2'>
- <div className='leading-9 text-sm font-medium text-gray-900'>
- {t('appDebug.feature.tools.modal.variableName.title')}
- </div>
- <input
- value={localeData.variable || ''}
- onChange={e => handleValueChange({ variable: e.target.value })}
- className='block px-3 w-full h-9 bg-gray-100 rounded-lg text-sm text-gray-900 outline-none appearance-none'
- placeholder={t('appDebug.feature.tools.modal.variableName.placeholder') || ''}
- />
- </div>
- {
- localeData.type === 'api' && (
- <div className='py-2'>
- <div className='flex justify-between items-center h-9 text-sm font-medium text-gray-900'>
- {t('common.apiBasedExtension.selector.title')}
- <a
- href={t('common.apiBasedExtension.linkUrl') || '/'}
- target='_blank' rel='noopener noreferrer'
- className='group flex items-center text-xs font-normal text-gray-500 hover:text-primary-600'
- >
- <BookOpen01 className='mr-1 w-3 h-3 text-gray-500 group-hover:text-primary-600' />
- {t('common.apiBasedExtension.link')}
- </a>
- </div>
- <ApiBasedExtensionSelector
- value={localeData.config?.api_based_extension_id || ''}
- onChange={handleDataApiBasedChange}
- />
- </div>
- )
- }
- {
- systemTypes.findIndex(t => t === localeData.type) < 0
- && currentProvider?.form_schema
- && (
- <FormGeneration
- forms={currentProvider?.form_schema}
- value={localeData.config}
- onChange={handleDataExtraChange}
- />
- )
- }
- <div className='flex items-center justify-end mt-6'>
- <Button
- onClick={onCancel}
- className='mr-2'
- >
- {t('common.operation.cancel')}
- </Button>
- <Button
- variant='primary'
- onClick={handleSave}
- >
- {t('common.operation.save')}
- </Button>
- </div>
- {
- showEmojiPicker && (
- <EmojiPicker
- onSelect={(icon, icon_background) => {
- handleValueChange({ icon, icon_background })
- setShowEmojiPicker(false)
- }}
- onClose={() => {
- handleValueChange({ icon: '', icon_background: '' })
- setShowEmojiPicker(false)
- }}
- />
- )
- }
- </Modal>
- )
- }
- export default ExternalDataToolModal
|