react-code-dataset
/
next.js
/packages
/next
/src
/next-devtools
/dev-overlay
/components
/copy-button
/index.tsx
| import * as React from 'react' | |
| import { cx } from '../../utils/cx' | |
| function useCopyLegacy(content: string) { | |
| type CopyState = | |
| | { | |
| state: 'initial' | |
| } | |
| | { | |
| state: 'error' | |
| error: unknown | |
| } | |
| | { state: 'success' } | |
| | { state: 'pending' } | |
| // This would be simpler with useActionState but we need to support React 18 here. | |
| // React 18 also doesn't have async transitions. | |
| const [copyState, dispatch] = React.useReducer( | |
| ( | |
| state: CopyState, | |
| action: | |
| | { type: 'reset' | 'copied' | 'copying' } | |
| | { type: 'error'; error: unknown } | |
| ): CopyState => { | |
| if (action.type === 'reset') { | |
| return { state: 'initial' } | |
| } | |
| if (action.type === 'copied') { | |
| return { state: 'success' } | |
| } | |
| if (action.type === 'copying') { | |
| return { state: 'pending' } | |
| } | |
| if (action.type === 'error') { | |
| return { state: 'error', error: action.error } | |
| } | |
| return state | |
| }, | |
| { | |
| state: 'initial', | |
| } | |
| ) | |
| function copy() { | |
| if (isPending) { | |
| return | |
| } | |
| if (!navigator.clipboard) { | |
| dispatch({ | |
| type: 'error', | |
| error: 'Copy to clipboard is not supported in this browser', | |
| }) | |
| } else { | |
| dispatch({ type: 'copying' }) | |
| navigator.clipboard.writeText(content).then( | |
| () => { | |
| dispatch({ type: 'copied' }) | |
| }, | |
| (error) => { | |
| dispatch({ type: 'error', error }) | |
| } | |
| ) | |
| } | |
| } | |
| const reset = React.useCallback(() => { | |
| dispatch({ type: 'reset' }) | |
| }, []) | |
| const isPending = copyState.state === 'pending' | |
| return [copyState, copy, reset, isPending] as const | |
| } | |
| function useCopyModern(content: string) { | |
| type CopyState = | |
| | { | |
| state: 'initial' | |
| } | |
| | { | |
| state: 'error' | |
| error: unknown | |
| } | |
| | { state: 'success' } | |
| const [copyState, dispatch, isPending] = React.useActionState( | |
| ( | |
| state: CopyState, | |
| action: 'reset' | 'copy' | |
| ): CopyState | Promise<CopyState> => { | |
| if (action === 'reset') { | |
| return { state: 'initial' } | |
| } | |
| if (action === 'copy') { | |
| if (!navigator.clipboard) { | |
| return { | |
| state: 'error', | |
| error: 'Copy to clipboard is not supported in this browser', | |
| } | |
| } | |
| return navigator.clipboard.writeText(content).then( | |
| () => { | |
| return { state: 'success' } | |
| }, | |
| (error) => { | |
| return { state: 'error', error } | |
| } | |
| ) | |
| } | |
| return state | |
| }, | |
| { | |
| state: 'initial', | |
| } | |
| ) | |
| function copy() { | |
| React.startTransition(() => { | |
| dispatch('copy') | |
| }) | |
| } | |
| const reset = React.useCallback(() => { | |
| dispatch('reset') | |
| }, [ | |
| // TODO: `dispatch` from `useActionState` is not reactive. | |
| // Remove from dependencies once https://github.com/facebook/react/pull/29665 is released. | |
| dispatch, | |
| ]) | |
| return [copyState, copy, reset, isPending] as const | |
| } | |
| const useCopy = | |
| typeof React.useActionState === 'function' ? useCopyModern : useCopyLegacy | |
| type CopyButtonProps = React.HTMLProps<HTMLButtonElement> & { | |
| actionLabel: string | |
| successLabel: string | |
| icon?: React.ReactNode | |
| } | |
| export function CopyButton( | |
| props: CopyButtonProps & { content?: string; getContent?: () => string } | |
| ) { | |
| const { | |
| content, | |
| getContent, | |
| actionLabel, | |
| successLabel, | |
| icon, | |
| disabled, | |
| ...rest | |
| } = props | |
| const getContentString = (): string => { | |
| if (content) { | |
| return content | |
| } | |
| if (getContent) { | |
| return getContent() | |
| } | |
| return '' | |
| } | |
| const contentString = getContentString() | |
| const [copyState, copy, reset, isPending] = useCopy(contentString) | |
| const error = copyState.state === 'error' ? copyState.error : null | |
| React.useEffect(() => { | |
| if (error !== null) { | |
| // Only log warning in terminal to avoid showing in the error overlay. | |
| // When it's errored, the copy button will be disabled. | |
| console.warn(error) | |
| } | |
| }, [error]) | |
| React.useEffect(() => { | |
| if (copyState.state === 'success') { | |
| const timeoutId = setTimeout(() => { | |
| reset() | |
| }, 2000) | |
| return () => { | |
| clearTimeout(timeoutId) | |
| } | |
| } | |
| }, [isPending, copyState.state, reset]) | |
| const isDisabled = !navigator.clipboard || isPending || disabled || !!error | |
| const label = copyState.state === 'success' ? successLabel : actionLabel | |
| // Assign default icon | |
| const renderedIcon = | |
| copyState.state === 'success' ? ( | |
| <CopySuccessIcon /> | |
| ) : ( | |
| icon || ( | |
| <CopyIcon | |
| width={14} | |
| height={14} | |
| className="error-overlay-toolbar-button-icon" | |
| /> | |
| ) | |
| ) | |
| return ( | |
| <button | |
| {...rest} | |
| type="button" | |
| title={label} | |
| aria-label={label} | |
| aria-disabled={isDisabled} | |
| disabled={isDisabled} | |
| data-nextjs-copy-button | |
| className={cx( | |
| props.className, | |
| 'nextjs-data-copy-button', | |
| `nextjs-data-copy-button--${copyState.state}` | |
| )} | |
| onClick={() => { | |
| if (!isDisabled) { | |
| copy() | |
| } | |
| }} | |
| > | |
| {renderedIcon} | |
| {copyState.state === 'error' ? ` ${copyState.error}` : null} | |
| </button> | |
| ) | |
| } | |
| function CopyIcon(props: React.SVGProps<SVGSVGElement>) { | |
| return ( | |
| <svg | |
| width="14" | |
| height="14" | |
| viewBox="0 0 14 14" | |
| fill="none" | |
| xmlns="http://www.w3.org/2000/svg" | |
| {...props} | |
| > | |
| <path | |
| fillRule="evenodd" | |
| clipRule="evenodd" | |
| d="M2.406.438c-.845 0-1.531.685-1.531 1.53v6.563c0 .846.686 1.531 1.531 1.531H3.937V8.75H2.406a.219.219 0 0 1-.219-.219V1.97c0-.121.098-.219.22-.219h4.812c.12 0 .218.098.218.219v.656H8.75v-.656c0-.846-.686-1.532-1.531-1.532H2.406zm4.375 3.5c-.845 0-1.531.685-1.531 1.53v6.563c0 .846.686 1.531 1.531 1.531h4.813c.845 0 1.531-.685 1.531-1.53V5.468c0-.846-.686-1.532-1.531-1.532H6.78zm-.218 1.53c0-.12.097-.218.218-.218h4.813c.12 0 .219.098.219.219v6.562c0 .121-.098.219-.22.219H6.782a.219.219 0 0 1-.218-.219V5.47z" | |
| fill="currentColor" | |
| /> | |
| </svg> | |
| ) | |
| } | |
| function CopySuccessIcon() { | |
| return ( | |
| <svg | |
| height="16" | |
| xlinkTitle="copied" | |
| viewBox="0 0 16 16" | |
| width="16" | |
| stroke="currentColor" | |
| fill="currentColor" | |
| > | |
| <path d="M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0Z" /> | |
| </svg> | |
| ) | |
| } | |
| export const COPY_BUTTON_STYLES = ` | |
| .nextjs-data-copy-button { | |
| color: inherit; | |
| svg { | |
| width: var(--size-16); | |
| height: var(--size-16); | |
| } | |
| } | |
| .nextjs-data-copy-button:disabled { | |
| background-color: var(--color-gray-100); | |
| cursor: not-allowed; | |
| } | |
| .nextjs-data-copy-button--initial:hover:not(:disabled) { | |
| cursor: pointer; | |
| } | |
| .nextjs-data-copy-button--error:not(:disabled), | |
| .nextjs-data-copy-button--error:hover:not(:disabled) { | |
| color: var(--color-ansi-red); | |
| } | |
| .nextjs-data-copy-button--success:not(:disabled) { | |
| color: var(--color-ansi-green); | |
| } | |
| ` | |