2023-05-15 08:51:32 +08:00
|
|
|
'use client'
|
|
|
|
import { useTranslation } from 'react-i18next'
|
2023-11-27 11:47:48 +08:00
|
|
|
import s from './secret-key/style.module.css'
|
2023-05-15 08:51:32 +08:00
|
|
|
import Doc from '@/app/components/develop/doc'
|
2024-04-08 18:51:46 +08:00
|
|
|
import Loading from '@/app/components/base/loading'
|
2023-05-15 08:51:32 +08:00
|
|
|
import InputCopy from '@/app/components/develop/secret-key/input-copy'
|
|
|
|
import SecretKeyButton from '@/app/components/develop/secret-key/secret-key-button'
|
2024-04-08 18:51:46 +08:00
|
|
|
import { useStore as useAppStore } from '@/app/components/app/store'
|
2023-05-15 08:51:32 +08:00
|
|
|
|
|
|
|
type IDevelopMainProps = {
|
|
|
|
appId: string
|
|
|
|
}
|
|
|
|
|
2024-01-11 11:08:32 +08:00
|
|
|
const DevelopMain = ({ appId }: IDevelopMainProps) => {
|
2024-04-24 12:07:28 +08:00
|
|
|
const appDetail = useAppStore(state => state.appDetail)
|
2023-05-15 08:51:32 +08:00
|
|
|
const { t } = useTranslation()
|
|
|
|
|
2024-04-08 18:51:46 +08:00
|
|
|
if (!appDetail) {
|
|
|
|
return (
|
|
|
|
<div className='flex h-full items-center justify-center bg-white'>
|
|
|
|
<Loading />
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2023-05-15 08:51:32 +08:00
|
|
|
return (
|
|
|
|
<div className='relative flex flex-col h-full overflow-hidden'>
|
2023-11-27 11:47:48 +08:00
|
|
|
<div className='flex items-center justify-between flex-shrink-0 px-6 border-b border-solid py-2 border-b-gray-100'>
|
2024-01-11 11:08:32 +08:00
|
|
|
<div className='text-lg font-medium text-gray-900'></div>
|
2023-11-27 11:47:48 +08:00
|
|
|
<div className='flex items-center flex-wrap gap-y-1'>
|
2024-04-08 18:51:46 +08:00
|
|
|
<InputCopy className='flex-shrink-0 mr-1 w-52 sm:w-80' value={appDetail.api_base_url}>
|
2023-05-15 08:51:32 +08:00
|
|
|
<div className={`ml-2 border border-gray-200 border-solid flex-shrink-0 px-2 py-0.5 rounded-[6px] text-gray-500 text-[0.625rem] ${s.customApi}`}>
|
|
|
|
{t('appApi.apiServer')}
|
|
|
|
</div>
|
|
|
|
</InputCopy>
|
|
|
|
<div className={`flex items-center h-9 px-3 rounded-lg
|
2024-04-08 18:51:46 +08:00
|
|
|
text-[13px] font-normal mr-2 ${appDetail.enable_api ? 'text-green-500 bg-green-50' : 'text-yellow-500 bg-yellow-50'}`}>
|
2023-05-15 08:51:32 +08:00
|
|
|
<div className='mr-1'>{t('appApi.status')}</div>
|
2024-04-08 18:51:46 +08:00
|
|
|
<div className='font-semibold'>{appDetail.enable_api ? `${t('appApi.ok')}` : `${t('appApi.disabled')}`}</div>
|
2023-05-15 08:51:32 +08:00
|
|
|
</div>
|
|
|
|
<SecretKeyButton className='flex-shrink-0' appId={appId} />
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-11-27 11:47:48 +08:00
|
|
|
<div className='px-4 sm:px-10 py-4 overflow-auto grow'>
|
2023-05-15 08:51:32 +08:00
|
|
|
<Doc appDetail={appDetail} />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default DevelopMain
|