123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277 |
- 'use client'
- import type { HTMLProps } from 'react'
- import React, { useMemo, useState } from 'react'
- import {
- Cog8ToothIcon,
- DocumentTextIcon,
- PaintBrushIcon,
- RocketLaunchIcon,
- } from '@heroicons/react/24/outline'
- import { usePathname, useRouter } from 'next/navigation'
- import { useTranslation } from 'react-i18next'
- import SettingsModal from './settings'
- import EmbeddedModal from './embedded'
- import CustomizeModal from './customize'
- import style from './style.module.css'
- import type { ConfigParams } from './settings'
- import Tooltip from '@/app/components/base/tooltip'
- import AppBasic from '@/app/components/app-sidebar/basic'
- import { asyncRunSafe, randomString } from '@/utils'
- import Button from '@/app/components/base/button'
- import Tag from '@/app/components/base/tag'
- import Switch from '@/app/components/base/switch'
- import Divider from '@/app/components/base/divider'
- import CopyFeedback from '@/app/components/base/copy-feedback'
- import Confirm from '@/app/components/base/confirm'
- import ShareQRCode from '@/app/components/base/qrcode'
- import SecretKeyButton from '@/app/components/develop/secret-key/secret-key-button'
- import type { AppDetailResponse } from '@/models/app'
- import { useAppContext } from '@/context/app-context'
- export type IAppCardProps = {
- className?: string
- appInfo: AppDetailResponse
- cardType?: 'api' | 'webapp'
- customBgColor?: string
- onChangeStatus: (val: boolean) => Promise<void>
- onSaveSiteConfig?: (params: ConfigParams) => Promise<void>
- onGenerateCode?: () => Promise<void>
- }
- const EmbedIcon = ({ className = '' }: HTMLProps<HTMLDivElement>) => {
- return <div className={`${style.codeBrowserIcon} ${className}`}></div>
- }
- function AppCard({
- appInfo,
- cardType = 'webapp',
- customBgColor,
- onChangeStatus,
- onSaveSiteConfig,
- onGenerateCode,
- className,
- }: IAppCardProps) {
- const router = useRouter()
- const pathname = usePathname()
- const { currentWorkspace, isCurrentWorkspaceManager, isCurrentWorkspaceEditor } = useAppContext()
- const [showSettingsModal, setShowSettingsModal] = useState(false)
- const [showEmbedded, setShowEmbedded] = useState(false)
- const [showCustomizeModal, setShowCustomizeModal] = useState(false)
- const [genLoading, setGenLoading] = useState(false)
- const [showConfirmDelete, setShowConfirmDelete] = useState(false)
- const { t } = useTranslation()
- const OPERATIONS_MAP = useMemo(() => {
- const operationsMap = {
- webapp: [
- { opName: t('appOverview.overview.appInfo.preview'), opIcon: RocketLaunchIcon },
- { opName: t('appOverview.overview.appInfo.customize.entry'), opIcon: PaintBrushIcon },
- ] as { opName: string; opIcon: any }[],
- api: [{ opName: t('appOverview.overview.apiInfo.doc'), opIcon: DocumentTextIcon }],
- app: [],
- }
- if (appInfo.mode !== 'completion' && appInfo.mode !== 'workflow')
- operationsMap.webapp.push({ opName: t('appOverview.overview.appInfo.embedded.entry'), opIcon: EmbedIcon })
- if (isCurrentWorkspaceEditor)
- operationsMap.webapp.push({ opName: t('appOverview.overview.appInfo.settings.entry'), opIcon: Cog8ToothIcon })
- return operationsMap
- }, [isCurrentWorkspaceEditor, appInfo, t])
- const isApp = cardType === 'webapp'
- const basicName = isApp
- ? appInfo?.site?.title
- : t('appOverview.overview.apiInfo.title')
- const toggleDisabled = isApp ? !isCurrentWorkspaceEditor : !isCurrentWorkspaceManager
- const runningStatus = isApp ? appInfo.enable_site : appInfo.enable_api
- const { app_base_url, access_token } = appInfo.site ?? {}
- const appMode = (appInfo.mode !== 'completion' && appInfo.mode !== 'workflow') ? 'chat' : appInfo.mode
- const appUrl = `${app_base_url}/${appMode}/${access_token}`
- const apiUrl = appInfo?.api_base_url
- let bgColor = 'bg-primary-50 bg-opacity-40'
- if (cardType === 'api')
- bgColor = 'bg-purple-50'
- const genClickFuncByName = (opName: string) => {
- switch (opName) {
- case t('appOverview.overview.appInfo.preview'):
- return () => {
- window.open(appUrl, '_blank')
- }
- case t('appOverview.overview.appInfo.customize.entry'):
- return () => {
- setShowCustomizeModal(true)
- }
- case t('appOverview.overview.appInfo.settings.entry'):
- return () => {
- setShowSettingsModal(true)
- }
- case t('appOverview.overview.appInfo.embedded.entry'):
- return () => {
- setShowEmbedded(true)
- }
- default:
- // jump to page develop
- return () => {
- const pathSegments = pathname.split('/')
- pathSegments.pop()
- router.push(`${pathSegments.join('/')}/develop`)
- }
- }
- }
- const onGenCode = async () => {
- if (onGenerateCode) {
- setGenLoading(true)
- await asyncRunSafe(onGenerateCode())
- setGenLoading(false)
- }
- }
- return (
- <div
- className={`shadow-xs border-[0.5px] rounded-lg border-gray-200 ${className ?? ''
- }`}
- >
- <div className={`px-6 py-5 ${customBgColor ?? bgColor} rounded-lg`}>
- <div className="mb-2.5 flex flex-row items-start justify-between">
- <AppBasic
- iconType={cardType}
- icon={appInfo.icon}
- icon_background={appInfo.icon_background}
- name={basicName}
- type={
- isApp
- ? t('appOverview.overview.appInfo.explanation')
- : t('appOverview.overview.apiInfo.explanation')
- }
- />
- <div className="flex flex-row items-center h-9">
- <Tag className="mr-2" color={runningStatus ? 'green' : 'yellow'}>
- {runningStatus
- ? t('appOverview.overview.status.running')
- : t('appOverview.overview.status.disable')}
- </Tag>
- <Switch defaultValue={runningStatus} onChange={onChangeStatus} disabled={toggleDisabled} />
- </div>
- </div>
- <div className="flex flex-col justify-center py-2">
- <div className="py-1">
- <div className="pb-1 text-xs text-gray-500">
- {isApp
- ? t('appOverview.overview.appInfo.accessibleAddress')
- : t('appOverview.overview.apiInfo.accessibleAddress')}
- </div>
- <div className="w-full h-9 pl-2 pr-0.5 py-0.5 bg-black bg-opacity-2 rounded-lg border border-black border-opacity-5 justify-start items-center inline-flex">
- <div className="h-4 px-2 justify-start items-start gap-2 flex flex-1 min-w-0">
- <div className="text-gray-700 text-xs font-medium text-ellipsis overflow-hidden whitespace-nowrap">
- {isApp ? appUrl : apiUrl}
- </div>
- </div>
- <Divider type="vertical" className="!h-3.5 shrink-0 !mx-0.5" />
- {isApp && <ShareQRCode content={isApp ? appUrl : apiUrl} selectorId={randomString(8)} className={'hover:bg-gray-200'} />}
- <CopyFeedback
- content={isApp ? appUrl : apiUrl}
- selectorId={randomString(8)}
- className={'hover:bg-gray-200'}
- />
- {/* button copy link/ button regenerate */}
- {showConfirmDelete && (
- <Confirm
- type='warning'
- title={t('appOverview.overview.appInfo.regenerate')}
- content={''}
- isShow={showConfirmDelete}
- onClose={() => setShowConfirmDelete(false)}
- onConfirm={() => {
- onGenCode()
- setShowConfirmDelete(false)
- }}
- onCancel={() => setShowConfirmDelete(false)}
- />
- )}
- {isApp && isCurrentWorkspaceManager && (
- <Tooltip
- content={t('appOverview.overview.appInfo.regenerate') || ''}
- selector={`code-generate-${randomString(8)}`}
- >
- <div
- className="w-8 h-8 ml-0.5 cursor-pointer hover:bg-gray-200 rounded-lg"
- onClick={() => setShowConfirmDelete(true)}
- >
- <div
- className={`w-full h-full ${style.refreshIcon} ${genLoading ? style.generateLogo : ''
- }`}
- ></div>
- </div>
- </Tooltip>
- )}
- </div>
- </div>
- </div>
- <div className={'pt-2 flex flex-row items-center flex-wrap gap-y-2'}>
- {!isApp && <SecretKeyButton className='flex-shrink-0 !h-8 bg-white mr-2' textCls='!text-gray-700 font-medium' iconCls='stroke-[1.2px]' appId={appInfo.id} />}
- {OPERATIONS_MAP[cardType].map((op) => {
- const disabled
- = op.opName === t('appOverview.overview.appInfo.settings.entry')
- ? false
- : !runningStatus
- return (
- <Button
- className="mr-2"
- key={op.opName}
- onClick={genClickFuncByName(op.opName)}
- disabled={disabled}
- >
- <Tooltip
- content={
- t('appOverview.overview.appInfo.preUseReminder') ?? ''
- }
- selector={`op-btn-${randomString(16)}`}
- className={disabled ? 'mt-[-8px]' : '!hidden'}
- >
- <div className="flex flex-row items-center">
- <op.opIcon className="h-4 w-4 mr-1.5 stroke-[1.8px]" />
- <span className="text-[13px]">{op.opName}</span>
- </div>
- </Tooltip>
- </Button>
- )
- })}
- </div>
- </div>
- {isApp
- ? (
- <>
- <SettingsModal
- appInfo={appInfo}
- isShow={showSettingsModal}
- onClose={() => setShowSettingsModal(false)}
- onSave={onSaveSiteConfig}
- />
- <EmbeddedModal
- isShow={showEmbedded}
- onClose={() => setShowEmbedded(false)}
- appBaseUrl={app_base_url}
- accessToken={access_token}
- />
- <CustomizeModal
- isShow={showCustomizeModal}
- linkUrl=""
- onClose={() => setShowCustomizeModal(false)}
- appId={appInfo.id}
- api_base_url={appInfo.api_base_url}
- mode={appInfo.mode}
- />
- </>
- )
- : null}
- </div>
- )
- }
- export default AppCard
|