mirror of
https://github.com/langgenius/dify.git
synced 2026-05-01 10:00:11 -04:00
80 lines
2.6 KiB
TypeScript
80 lines
2.6 KiB
TypeScript
'use client'
|
|
import type { FC } from 'react'
|
|
import { Button } from '@langgenius/dify-ui/button'
|
|
import { Popover, PopoverContent, PopoverTrigger } from '@langgenius/dify-ui/popover'
|
|
import {
|
|
RiArrowRightUpLine,
|
|
RiBugLine,
|
|
} from '@remixicon/react'
|
|
import * as React from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { useDocLink } from '@/context/i18n'
|
|
import { useDebugKey } from '@/service/use-plugins'
|
|
import KeyValueItem from '../base/key-value-item'
|
|
|
|
const i18nPrefix = 'debugInfo'
|
|
|
|
const DebugInfo: FC = () => {
|
|
const { t } = useTranslation()
|
|
const docLink = useDocLink()
|
|
const { data: info, isLoading } = useDebugKey()
|
|
|
|
// info.key likes 4580bdb7-b878-471c-a8a4-bfd760263a53 mask the middle part using *.
|
|
const maskedKey = info?.key?.replace(/(.{8})(.*)(.{8})/, '$1********$3')
|
|
|
|
if (isLoading)
|
|
return null
|
|
|
|
if (!info) {
|
|
return (
|
|
<Button className="h-full w-full p-2 text-components-button-secondary-text" disabled>
|
|
<RiBugLine className="h-4 w-4" />
|
|
</Button>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<Popover>
|
|
<PopoverTrigger
|
|
render={(
|
|
<Button className="h-full w-full p-2 text-components-button-secondary-text">
|
|
<RiBugLine className="h-4 w-4" />
|
|
</Button>
|
|
)}
|
|
/>
|
|
<PopoverContent
|
|
placement="bottom"
|
|
popupClassName="flex w-[256px] flex-col items-start gap-1 rounded-xl border border-components-panel-border bg-components-tooltip-bg px-4 py-3.5 shadow-lg"
|
|
>
|
|
<div className="flex items-center gap-1 self-stretch">
|
|
<span className="flex shrink-0 grow basis-0 flex-col items-start justify-center system-sm-semibold text-text-secondary">
|
|
{t(`${i18nPrefix}.title`, { ns: 'plugin' })}
|
|
</span>
|
|
<a
|
|
href={docLink('/develop-plugin/features-and-specs/plugin-types/remote-debug-a-plugin')}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="flex cursor-pointer items-center gap-0.5 text-text-accent-light-mode-only"
|
|
>
|
|
<span className="system-xs-medium">{t(`${i18nPrefix}.viewDocs`, { ns: 'plugin' })}</span>
|
|
<RiArrowRightUpLine className="h-3 w-3" />
|
|
</a>
|
|
</div>
|
|
<div className="space-y-0.5">
|
|
<KeyValueItem
|
|
label="URL"
|
|
value={`${info.host}:${info.port}`}
|
|
/>
|
|
<KeyValueItem
|
|
label="Key"
|
|
value={info.key || ''}
|
|
maskedValue={maskedKey}
|
|
/>
|
|
</div>
|
|
</PopoverContent>
|
|
</Popover>
|
|
)
|
|
}
|
|
|
|
export default React.memo(DebugInfo)
|