mirror of
https://github.com/zhigang1992/react.git
synced 2026-04-24 04:15:54 +08:00
72 lines
1.7 KiB
TypeScript
72 lines
1.7 KiB
TypeScript
import React, { useMemo } from 'react'
|
|
import withDefaults from '../utils/with-defaults'
|
|
import useTheme from '../styles/use-theme'
|
|
import { NormalTypes } from '../utils/prop-types'
|
|
import { GeistUIThemesPalette } from '../styles/themes'
|
|
|
|
export interface Props {
|
|
tag: keyof JSX.IntrinsicElements
|
|
type?: NormalTypes
|
|
size?: string | number
|
|
className?: ''
|
|
}
|
|
|
|
const defaultProps = {
|
|
type: 'default' as NormalTypes,
|
|
className: '',
|
|
}
|
|
|
|
const getTypeColor = (type: NormalTypes, palette: GeistUIThemesPalette) => {
|
|
const colors: { [key in NormalTypes]: string } = {
|
|
default: 'inherit',
|
|
secondary: palette.secondary,
|
|
success: palette.success,
|
|
warning: palette.warning,
|
|
error: palette.error,
|
|
}
|
|
|
|
return colors[type] || colors.default
|
|
}
|
|
|
|
type NativeAttrs = Omit<React.DetailsHTMLAttributes<any>, keyof Props>
|
|
export type TextChildProps = Props & typeof defaultProps & NativeAttrs
|
|
|
|
const TextChild: React.FC<React.PropsWithChildren<TextChildProps>> = ({
|
|
children,
|
|
tag,
|
|
className,
|
|
type,
|
|
size,
|
|
...props
|
|
}) => {
|
|
const theme = useTheme()
|
|
const Component = tag
|
|
const color = useMemo(() => getTypeColor(type, theme.palette), [type, theme.palette])
|
|
const fontSize = useMemo<string>(() => {
|
|
if (!size) return 'inherit'
|
|
if (typeof size === 'number') return `${size}px`
|
|
return size
|
|
}, [size])
|
|
|
|
return (
|
|
<>
|
|
<Component className={`${size ? 'custom-size' : ''} ${className}`} {...props}>
|
|
{children}
|
|
</Component>
|
|
<style jsx>{`
|
|
${tag} {
|
|
color: ${color};
|
|
}
|
|
|
|
.custom-size {
|
|
font-size: ${fontSize};
|
|
}
|
|
`}</style>
|
|
</>
|
|
)
|
|
}
|
|
|
|
const MemoTextChild = React.memo(TextChild)
|
|
|
|
export default withDefaults(MemoTextChild, defaultProps)
|