mirror of
https://github.com/zhigang1992/react.git
synced 2026-04-25 04:45:42 +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
81 lines
2.0 KiB
TypeScript
81 lines
2.0 KiB
TypeScript
import React, { useMemo } from 'react'
|
|
import useTheme from '../use-theme'
|
|
|
|
type Justify = 'start' | 'end' | 'center' | 'space-around' | 'space-between'
|
|
type Align = 'top' | 'middle' | 'bottom'
|
|
|
|
interface Props {
|
|
gap?: number
|
|
justify?: Justify
|
|
align?: Align
|
|
component?: keyof JSX.IntrinsicElements
|
|
className?: string
|
|
}
|
|
|
|
const defaultProps = {
|
|
gap: 0,
|
|
justify: 'start' as Justify,
|
|
align: 'top' as Align,
|
|
component: 'div' as keyof JSX.IntrinsicElements,
|
|
className: '',
|
|
}
|
|
|
|
type NativeAttrs = Omit<React.HTMLAttributes<any>, keyof Props>
|
|
export type RowProps = Props & NativeAttrs
|
|
|
|
const getFlexAlignment = (justify: Justify, align: Align) => {
|
|
const flexJustifyMap: { [key in Justify]?: string } = {
|
|
end: 'flex-end',
|
|
center: 'center',
|
|
'space-around': 'space-around',
|
|
'space-between': 'space-between',
|
|
}
|
|
const flexAlignMap: { [key in Align]?: string } = {
|
|
middle: 'center',
|
|
bottom: 'flex-end',
|
|
}
|
|
return {
|
|
justifyValue: flexJustifyMap[justify] || 'normal',
|
|
alignValue: flexAlignMap[align] || 'normal',
|
|
}
|
|
}
|
|
|
|
const Container: React.FC<React.PropsWithChildren<RowProps>> = ({
|
|
children,
|
|
component,
|
|
gap,
|
|
justify,
|
|
align,
|
|
className,
|
|
...props
|
|
}: React.PropsWithChildren<RowProps> & typeof defaultProps) => {
|
|
const Component = component
|
|
const theme = useTheme()
|
|
const { justifyValue, alignValue } = useMemo(() => getFlexAlignment(justify, align), [
|
|
justify,
|
|
align,
|
|
])
|
|
|
|
return (
|
|
<Component className={`row ${className}`} {...props}>
|
|
{children}
|
|
<style jsx>{`
|
|
.row {
|
|
display: flex;
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
margin-left: calc(${gap} * ${theme.layout.gap} / 2);
|
|
margin-right: calc(${gap} * ${theme.layout.gap} / 2);
|
|
--row-gap: calc(${gap} * ${theme.layout.gap});
|
|
justify-content: ${justifyValue};
|
|
align-items: ${alignValue};
|
|
}
|
|
`}</style>
|
|
</Component>
|
|
)
|
|
}
|
|
|
|
Container.defaultProps = defaultProps
|
|
Container.displayName = 'GeistContainer'
|
|
export default Container
|