|
import * as React from 'react'; |
|
import { App } from 'antd'; |
|
import { createStyles } from 'antd-style'; |
|
import { useIntl } from 'dumi'; |
|
|
|
import CopyableIcon from './CopyableIcon'; |
|
import type { CategoriesKeys } from './fields'; |
|
import type { ThemeType } from './IconSearch'; |
|
|
|
const useStyle = createStyles(({ token, css }) => ({ |
|
anticonsList: css` |
|
margin: ${token.margin}px 0; |
|
overflow: hidden; |
|
direction: ltr; |
|
list-style: none; |
|
display: grid; |
|
grid-gap: ${token.margin}px; |
|
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); |
|
padding: 0; |
|
`, |
|
copiedCode: css` |
|
padding: 0 ${token.paddingXXS}px; |
|
font-size: ${token.fontSizeSM}px; |
|
background-color: ${token.colorBgLayout}; |
|
border-radius: ${token.borderRadiusXS}px; |
|
`, |
|
})); |
|
|
|
interface CategoryProps { |
|
title: CategoriesKeys; |
|
icons: string[]; |
|
theme: ThemeType; |
|
newIcons: string[]; |
|
} |
|
|
|
const Category: React.FC<CategoryProps> = (props) => { |
|
const { message } = App.useApp(); |
|
const { icons, title, newIcons, theme } = props; |
|
const { styles } = useStyle(); |
|
const intl = useIntl(); |
|
const [justCopied, setJustCopied] = React.useState<string | null>(null); |
|
const copyId = React.useRef<ReturnType<typeof setTimeout> | null>(null); |
|
const onCopied = React.useCallback((type: string, text: string) => { |
|
message.success( |
|
<span> |
|
<code className={styles.copiedCode}>{text}</code> copied ๐ |
|
</span>, |
|
); |
|
setJustCopied(type); |
|
copyId.current = setTimeout(() => { |
|
setJustCopied(null); |
|
}, 2000); |
|
}, []); |
|
React.useEffect( |
|
() => () => { |
|
if (copyId.current) { |
|
clearTimeout(copyId.current); |
|
} |
|
}, |
|
[], |
|
); |
|
return ( |
|
<div> |
|
<h3>{intl.formatMessage({ id: `app.docs.components.icon.category.${title}` })}</h3> |
|
<ul className={styles.anticonsList}> |
|
{icons.map((name) => ( |
|
<CopyableIcon |
|
key={name} |
|
name={name} |
|
theme={theme} |
|
isNew={newIcons.includes(name)} |
|
justCopied={justCopied} |
|
onCopied={onCopied} |
|
/> |
|
))} |
|
</ul> |
|
</div> |
|
); |
|
}; |
|
|
|
export default Category; |
|
|