mirror of
https://github.com/zhigang1992/react.git
synced 2026-04-28 20:25:29 +08:00
* feat(scaleable): add scaleable props to each component * chore(scaleable): update the exported type * feat: apply scaleable to components chore: remove with-default test: improve testcase for scaleable chore: resolve test warning ci: upgrade nodejs to latest lts docs: fix type error in document site * docs: update documents to be compatible with scaleable chore: fix build errors * chore: remove all size-related attributes docs: improve guide document * docs: add scaleable documentation test: update snapshots chore: remove unused * feat: add scaleable to grid components * docs: improve docs * test: update snapshots * fix(grid): fix basic component props
97 lines
2.7 KiB
TypeScript
97 lines
2.7 KiB
TypeScript
import React, { ReactNode, useMemo } from 'react'
|
|
import useTheme from '../use-theme'
|
|
import BreadcrumbsSeparator from './breadcrumbs-separator'
|
|
import { addColorAlpha } from '../utils/color'
|
|
import useScaleable, { withScaleable } from '../use-scaleable'
|
|
|
|
interface Props {
|
|
separator?: string | ReactNode
|
|
className?: string
|
|
}
|
|
|
|
const defaultProps = {
|
|
separator: '/',
|
|
className: '',
|
|
}
|
|
|
|
type NativeAttrs = Omit<React.HTMLAttributes<any>, keyof Props>
|
|
export type BreadcrumbsProps = Props & NativeAttrs
|
|
|
|
const BreadcrumbsComponent: React.FC<React.PropsWithChildren<BreadcrumbsProps>> = ({
|
|
separator,
|
|
children,
|
|
className,
|
|
}: BreadcrumbsProps & typeof defaultProps) => {
|
|
const theme = useTheme()
|
|
const { SCALES } = useScaleable()
|
|
const hoverColor = useMemo(() => {
|
|
return addColorAlpha(theme.palette.link, 0.85)
|
|
}, [theme.palette.link])
|
|
|
|
const childrenArray = React.Children.toArray(children)
|
|
const withSeparatorChildren = childrenArray.map((item, index) => {
|
|
if (!React.isValidElement(item)) return item
|
|
const last = childrenArray[index - 1]
|
|
const lastIsSeparator =
|
|
React.isValidElement(last) && last.type === BreadcrumbsSeparator
|
|
const currentIsSeparator = item.type === BreadcrumbsSeparator
|
|
if (!lastIsSeparator && !currentIsSeparator && index > 0) {
|
|
return (
|
|
<React.Fragment key={index}>
|
|
<BreadcrumbsSeparator>{separator}</BreadcrumbsSeparator>
|
|
{item}
|
|
</React.Fragment>
|
|
)
|
|
}
|
|
return item
|
|
})
|
|
|
|
return (
|
|
<nav className={className}>
|
|
{withSeparatorChildren}
|
|
<style jsx>{`
|
|
nav {
|
|
line-height: inherit;
|
|
color: ${theme.palette.accents_4};
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: ${SCALES.font(1)};
|
|
width: ${SCALES.width(1, 'auto')};
|
|
height: ${SCALES.height(1, 'auto')};
|
|
padding: ${SCALES.pt(0)} ${SCALES.pr(0)} ${SCALES.pb(0)} ${SCALES.pl(0)};
|
|
margin: ${SCALES.mt(0)} ${SCALES.mr(0)} ${SCALES.mb(0)} ${SCALES.ml(0)};
|
|
}
|
|
|
|
nav :global(.link:hover) {
|
|
color: ${hoverColor};
|
|
}
|
|
|
|
nav > :global(span:last-of-type) {
|
|
color: ${theme.palette.accents_6};
|
|
}
|
|
|
|
nav > :global(.separator:last-child) {
|
|
display: none;
|
|
}
|
|
|
|
nav :global(svg) {
|
|
width: 1em;
|
|
height: 1em;
|
|
margin: 0 4px;
|
|
}
|
|
|
|
nav :global(.breadcrums-item) {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
}
|
|
`}</style>
|
|
</nav>
|
|
)
|
|
}
|
|
|
|
BreadcrumbsComponent.defaultProps = defaultProps
|
|
BreadcrumbsComponent.displayName = 'GeistBreadcrumbs'
|
|
const Breadcrumbs = withScaleable(BreadcrumbsComponent)
|
|
export default Breadcrumbs
|