mirror of
https://github.com/zhigang1992/react.git
synced 2026-01-26 08:58:46 +08:00
57 lines
1.5 KiB
TypeScript
57 lines
1.5 KiB
TypeScript
import React, { ReactNode } from 'react'
|
|
import { NormalSizes } from '../utils/prop-types'
|
|
import ButtonIcon from './button-icon'
|
|
import { ButtonProps } from 'components/button/button'
|
|
import { ButtonGroupConfig } from 'components/button-group/button-group-context'
|
|
|
|
export const getButtonChildrenWithIcon = (
|
|
auto: boolean,
|
|
size: NormalSizes,
|
|
children: ReactNode,
|
|
icons: {
|
|
icon?: React.ReactNode
|
|
iconRight?: React.ReactNode
|
|
},
|
|
) => {
|
|
const { icon, iconRight } = icons
|
|
const hasIcon = icon || iconRight
|
|
const isRight = Boolean(iconRight)
|
|
const paddingForAutoMode =
|
|
auto || size === 'mini'
|
|
? `calc(var(--zeit-ui-button-height) / 2 + var(--zeit-ui-button-padding) * .5)`
|
|
: 0
|
|
if (!hasIcon) return <div className="text">{children}</div>
|
|
return (
|
|
<>
|
|
<ButtonIcon isRight={isRight}>{hasIcon}</ButtonIcon>
|
|
<div className={`text ${isRight ? 'right' : 'left'}`}>
|
|
{children}
|
|
<style jsx>{`
|
|
.left {
|
|
padding-left: ${paddingForAutoMode};
|
|
}
|
|
.right {
|
|
padding-right: ${paddingForAutoMode};
|
|
}
|
|
`}</style>
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export const filterPropsWithGroup = (
|
|
props: React.PropsWithChildren<ButtonProps>,
|
|
config: ButtonGroupConfig,
|
|
): ButtonProps => {
|
|
if (!config.isButtonGroup) return props
|
|
return {
|
|
...props,
|
|
auto: true,
|
|
shadow: false,
|
|
ghost: config.ghost || props.ghost,
|
|
size: config.size || props.size,
|
|
type: config.type || props.type,
|
|
disabled: config.disabled || props.disabled,
|
|
}
|
|
}
|