import * as React from 'react'; import classNames from 'classnames'; import { devUseWarning } from '../_util/warning'; import { ConfigContext } from '../config-provider'; import useStyle from './style'; export interface DividerProps { prefixCls?: string; type?: 'horizontal' | 'vertical'; orientation?: 'left' | 'right' | 'center'; orientationMargin?: string | number; className?: string; rootClassName?: string; children?: React.ReactNode; dashed?: boolean; style?: React.CSSProperties; plain?: boolean; } const Divider: React.FC = (props) => { const { getPrefixCls, direction, divider } = React.useContext(ConfigContext); const { prefixCls: customizePrefixCls, type = 'horizontal', orientation = 'center', orientationMargin, className, rootClassName, children, dashed, plain, style, ...restProps } = props; const prefixCls = getPrefixCls('divider', customizePrefixCls); const [wrapCSSVar, hashId, cssVarCls] = useStyle(prefixCls); const hasChildren = !!children; const hasCustomMarginLeft = orientation === 'left' && orientationMargin != null; const hasCustomMarginRight = orientation === 'right' && orientationMargin != null; const classString = classNames( prefixCls, divider?.className, hashId, cssVarCls, `${prefixCls}-${type}`, { [`${prefixCls}-with-text`]: hasChildren, [`${prefixCls}-with-text-${orientation}`]: hasChildren, [`${prefixCls}-dashed`]: !!dashed, [`${prefixCls}-plain`]: !!plain, [`${prefixCls}-rtl`]: direction === 'rtl', [`${prefixCls}-no-default-orientation-margin-left`]: hasCustomMarginLeft, [`${prefixCls}-no-default-orientation-margin-right`]: hasCustomMarginRight, }, className, rootClassName, ); const memoizedOrientationMargin = React.useMemo(() => { if (typeof orientationMargin === 'number') { return orientationMargin; } if (/^\d+$/.test(orientationMargin!)) { return Number(orientationMargin); } return orientationMargin!; }, [orientationMargin]); const innerStyle: React.CSSProperties = { ...(hasCustomMarginLeft && { marginLeft: memoizedOrientationMargin }), ...(hasCustomMarginRight && { marginRight: memoizedOrientationMargin }), }; // Warning children not work in vertical mode if (process.env.NODE_ENV !== 'production') { const warning = devUseWarning('Divider'); warning( !children || type !== 'vertical', 'usage', '`children` not working in `vertical` mode.', ); } return wrapCSSVar(
{children && type !== 'vertical' && ( {children} )}
, ); }; if (process.env.NODE_ENV !== 'production') { Divider.displayName = 'Divider'; } export default Divider;