dify/web/app/components/plugins/plugin-detail-panel/endpoint-card.tsx

112 lines
3.5 KiB
TypeScript
Raw Normal View History

2024-10-19 14:46:17 +08:00
import React, { useState } from 'react'
2024-10-19 14:18:51 +08:00
import { useTranslation } from 'react-i18next'
2024-10-19 14:46:17 +08:00
import { RiDeleteBinLine, RiEditLine, RiLoginCircleLine } from '@remixicon/react'
import type { EndpointListItem } from '../types'
import ActionButton from '@/app/components/base/action-button'
2024-10-19 14:18:51 +08:00
import CopyBtn from '@/app/components/base/copy-btn'
import Indicator from '@/app/components/header/indicator'
import Switch from '@/app/components/base/switch'
2024-10-19 15:38:03 +08:00
import {
disableEndpoint,
enableEndpoint,
} from '@/service/plugins'
2024-10-19 14:18:51 +08:00
2024-10-19 14:46:17 +08:00
type Props = {
data: EndpointListItem
}
const EndpointCard = ({
data,
}: Props) => {
2024-10-19 14:18:51 +08:00
const { t } = useTranslation()
2024-10-19 14:46:17 +08:00
const [active, setActive] = useState(data.enabled)
2024-10-19 15:38:03 +08:00
const endpointID = data.id
2024-10-19 14:46:17 +08:00
2024-10-19 15:38:03 +08:00
const activeEndpoint = async () => {
try {
await enableEndpoint({
url: '/workspaces/current/endpoints/enable',
endpointID,
})
}
catch (error) {
console.error(error)
setActive(true)
}
}
const inactiveEndpoint = async () => {
try {
await disableEndpoint({
url: '/workspaces/current/endpoints/disable',
endpointID,
})
}
catch (error) {
console.error(error)
setActive(false)
}
}
const handleSwitch = (state: boolean) => {
if (state)
activeEndpoint()
else
inactiveEndpoint()
2024-10-19 14:46:17 +08:00
}
2024-10-19 14:18:51 +08:00
return (
<div className='p-0.5 bg-background-section-burn rounded-xl'>
2024-10-19 14:46:17 +08:00
<div className='group p-2.5 pl-3 bg-components-panel-on-panel-item-bg rounded-[10px] border-[0.5px] border-components-panel-border'>
<div className='flex items-center'>
<div className='grow mb-1 h-6 flex items-center gap-1 text-text-secondary system-md-semibold'>
<RiLoginCircleLine className='w-4 h-4' />
<div>{data.name}</div>
2024-10-19 14:18:51 +08:00
</div>
2024-10-19 14:46:17 +08:00
<div className='hidden group-hover:flex items-center'>
<ActionButton>
<RiEditLine className='w-4 h-4' />
</ActionButton>
<ActionButton className='hover:bg-state-destructive-hover text-text-tertiary hover:text-text-destructive'>
<RiDeleteBinLine className='w-4 h-4' />
</ActionButton>
2024-10-19 14:18:51 +08:00
</div>
</div>
2024-10-19 14:46:17 +08:00
{data.declaration.endpoints.map((endpoint, index) => (
<div key={index} className='h-6 flex items-center'>
<div className='shrink-0 w-12 text-text-tertiary system-xs-regular'>{endpoint.method}</div>
<div className='group/item grow flex items-center text-text-secondary system-xs-regular truncate'>
<div className='truncate'>{`${data.url}${endpoint.path}`}</div>
<CopyBtn
className='hidden shrink-0 ml-2 group-hover/item:block'
value={`${data.url}${endpoint.path}`}
isPlain
/>
</div>
</div>
))}
2024-10-19 14:18:51 +08:00
</div>
2024-10-19 14:46:17 +08:00
<div className='p-2 pl-3 flex items-center justify-between'>
{active && (
<div className='flex items-center gap-1 system-xs-semibold-uppercase text-util-colors-green-green-600'>
<Indicator color='green' />
{t('plugin.detailPanel.serviceOk')}
</div>
)}
{!active && (
<div className='flex items-center gap-1 system-xs-semibold-uppercase text-text-tertiary'>
<Indicator color='gray' />
{t('plugin.detailPanel.disabled')}
</div>
)}
2024-10-19 14:18:51 +08:00
<Switch
className='ml-3'
2024-10-19 14:46:17 +08:00
defaultValue={active}
onChange={handleSwitch}
2024-10-19 14:18:51 +08:00
size='sm'
/>
</div>
</div>
)
}
export default EndpointCard