mirror of
https://github.com/zhigang1992/react.git
synced 2026-04-27 19:25:05 +08:00
165 lines
4.3 KiB
TypeScript
165 lines
4.3 KiB
TypeScript
import React, { useMemo, useRef } from 'react'
|
|
import useTheme from '../use-theme'
|
|
import withDefaults from '../utils/with-defaults'
|
|
import { SnippetTypes, CopyTypes, NormalTypes } from '../utils/prop-types'
|
|
import { getStyles } from './styles'
|
|
import SnippetIcon from './snippet-icon'
|
|
import useClipboard from '../utils/use-clipboard'
|
|
import useToasts from '../use-toasts'
|
|
import useWarning from '../utils/use-warning'
|
|
|
|
interface Props {
|
|
text?: string | string[]
|
|
symbol?: string
|
|
toastText?: string
|
|
toastType?: NormalTypes
|
|
filled?: boolean
|
|
width?: string
|
|
copy?: CopyTypes
|
|
type?: SnippetTypes
|
|
className?: string
|
|
}
|
|
|
|
const defaultProps = {
|
|
filled: false,
|
|
symbol: '$',
|
|
toastText: 'Copied to clipboard!',
|
|
toastType: 'success' as NormalTypes,
|
|
width: 'initial',
|
|
copy: 'default' as CopyTypes,
|
|
type: 'default' as SnippetTypes,
|
|
className: '',
|
|
}
|
|
|
|
type NativeAttrs = Omit<React.HTMLAttributes<any>, keyof Props>
|
|
export type SnippetProps = Props & typeof defaultProps & NativeAttrs
|
|
|
|
const textArrayToString = (text: string[]): string => {
|
|
return text.reduce((pre, current) => {
|
|
if (!current) return pre
|
|
return pre ? `${pre}\n${current}` : current
|
|
}, '')
|
|
}
|
|
|
|
const Snippet: React.FC<React.PropsWithChildren<SnippetProps>> = ({
|
|
type,
|
|
filled,
|
|
children,
|
|
symbol,
|
|
toastText,
|
|
toastType,
|
|
text,
|
|
width,
|
|
copy: copyType,
|
|
className,
|
|
...props
|
|
}) => {
|
|
const theme = useTheme()
|
|
const { copy } = useClipboard()
|
|
const [, setToast] = useToasts()
|
|
const ref = useRef<HTMLPreElement>(null)
|
|
const isMultiLine = text && Array.isArray(text)
|
|
|
|
if (copyType === 'slient') {
|
|
useWarning('"slient" is deprecated, use "silent" instead of it.', 'Snippet')
|
|
}
|
|
|
|
const style = useMemo(() => getStyles(type, theme.palette, filled), [
|
|
type,
|
|
theme.palette,
|
|
filled,
|
|
])
|
|
const showCopyIcon = useMemo(() => copyType !== 'prevent', [copyType])
|
|
const childText = useMemo<string | undefined | null>(() => {
|
|
if (isMultiLine) return textArrayToString(text as string[])
|
|
if (!children) return text as string
|
|
if (!ref.current) return ''
|
|
return ref.current.textContent
|
|
}, [ref.current, children, text])
|
|
const symbolBefore = useMemo(() => {
|
|
const str = symbol.trim()
|
|
return str ? `${str} ` : ''
|
|
}, [symbol])
|
|
|
|
const clickHandler = () => {
|
|
if (!childText || !showCopyIcon) return
|
|
copy(childText)
|
|
if (copyType === 'silent' || copyType === 'slient') return
|
|
setToast({ text: toastText, type: toastType })
|
|
}
|
|
|
|
return (
|
|
<div className={`snippet ${className}`} {...props}>
|
|
{isMultiLine ? (
|
|
(text as string[]).map((t, index) => <pre key={`snippet-${index}-${t}`}>{t}</pre>)
|
|
) : (
|
|
<pre ref={ref}>{children || text}</pre>
|
|
)}
|
|
{showCopyIcon && (
|
|
<div className="copy" onClick={clickHandler}>
|
|
<SnippetIcon />
|
|
</div>
|
|
)}
|
|
<style jsx>{`
|
|
.snippet {
|
|
position: relative;
|
|
width: ${width};
|
|
max-width: 100%;
|
|
padding: ${theme.layout.gapHalf};
|
|
padding-right: calc(2 * ${theme.layout.gap});
|
|
color: ${style.color};
|
|
background-color: ${style.bgColor};
|
|
border: 1px solid ${style.border};
|
|
border-radius: ${theme.layout.radius};
|
|
}
|
|
|
|
pre {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: none;
|
|
background-color: transparent;
|
|
color: ${style.color};
|
|
font-size: 0.8125rem;
|
|
}
|
|
|
|
pre::before {
|
|
content: '${symbolBefore}';
|
|
user-select: none;
|
|
}
|
|
|
|
pre :global(*) {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-size: inherit;
|
|
color: inherit;
|
|
}
|
|
|
|
.copy {
|
|
position: absolute;
|
|
right: 0;
|
|
top: -2px;
|
|
transform: translateY(50%);
|
|
background-color: ${style.bgColor};
|
|
display: inline-flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: calc(2 * ${theme.layout.gap});
|
|
color: inherit;
|
|
transition: opacity 0.2s ease 0s;
|
|
border-radius: ${theme.layout.radius};
|
|
cursor: pointer;
|
|
user-select: none;
|
|
}
|
|
|
|
.copy:hover {
|
|
opacity: 0.7;
|
|
}
|
|
`}</style>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
const MemoSnippet = React.memo(Snippet)
|
|
|
|
export default withDefaults(MemoSnippet, defaultProps)
|