This commit is contained in:
2025-12-01 17:21:38 +08:00
parent 32fee2b8ab
commit fab8c13cb3
7511 changed files with 996300 additions and 0 deletions

View File

@@ -0,0 +1,68 @@
import type { Meta, StoryObj } from '@storybook/nextjs'
import CopyIcon from '.'
const meta = {
title: 'Base/General/CopyIcon',
component: CopyIcon,
parameters: {
docs: {
description: {
component: 'Interactive copy-to-clipboard glyph that swaps to a checkmark once the content has been copied. Tooltips rely on the app locale.',
},
},
},
tags: ['autodocs'],
args: {
content: 'https://console.dify.ai/apps/12345',
},
} satisfies Meta<typeof CopyIcon>
export default meta
type Story = StoryObj<typeof meta>
export const Default: Story = {
render: args => (
<div className="flex items-center gap-2 rounded-lg border border-divider-subtle bg-components-panel-bg p-4 text-sm text-text-secondary">
<span>Hover or click to copy the app link:</span>
<CopyIcon {...args} />
</div>
),
parameters: {
docs: {
source: {
language: 'tsx',
code: `
<div className="flex items-center gap-2">
<span>Hover or click to copy the app link:</span>
<CopyIcon content="https://console.dify.ai/apps/12345" />
</div>
`.trim(),
},
},
},
}
export const InlineUsage: Story = {
render: args => (
<div className="space-y-3 text-sm text-text-secondary">
<p>
Use the copy icon inline with labels or metadata. Clicking the icon copies the value to the clipboard and shows a success tooltip.
</p>
<div className="flex items-center gap-1">
<span className="font-medium text-text-primary">Client ID</span>
<span className="rounded bg-background-default-subtle px-2 py-1 font-mono text-xs text-text-secondary">acc-3f92fa</span>
<CopyIcon {...args} content="acc-3f92fa" />
</div>
</div>
),
parameters: {
docs: {
source: {
language: 'tsx',
code: `
<CopyIcon content="acc-3f92fa" />
`.trim(),
},
},
},
}

View File

@@ -0,0 +1,53 @@
'use client'
import React, { useState } from 'react'
import { useTranslation } from 'react-i18next'
import { debounce } from 'lodash-es'
import copy from 'copy-to-clipboard'
import Tooltip from '../tooltip'
import {
Copy,
CopyCheck,
} from '@/app/components/base/icons/src/vender/line/files'
type Props = {
content: string
}
const prefixEmbedded = 'appOverview.overview.appInfo.embedded'
const CopyIcon = ({ content }: Props) => {
const { t } = useTranslation()
const [isCopied, setIsCopied] = useState<boolean>(false)
const onClickCopy = debounce(() => {
copy(content)
setIsCopied(true)
}, 100)
const onMouseLeave = debounce(() => {
setIsCopied(false)
}, 100)
return (
<Tooltip
popupContent={
(isCopied
? t(`${prefixEmbedded}.copied`)
: t(`${prefixEmbedded}.copy`)) || ''
}
>
<div onMouseLeave={onMouseLeave}>
{!isCopied
? (
<Copy className='mx-1 h-3.5 w-3.5 cursor-pointer text-text-tertiary' onClick={onClickCopy} />
)
: (
<CopyCheck className='mx-1 h-3.5 w-3.5 text-text-tertiary' />
)
}
</div>
</Tooltip>
)
}
export default CopyIcon