mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
38474628fd
* fix: prepend use-client directive for with Next.js App Router * Update components/affix/index.tsx Co-authored-by: MadCcc <1075746765@qq.com> Signed-off-by: lijianan <574980606@qq.com> * Update components/badge/index.tsx Co-authored-by: MadCcc <1075746765@qq.com> Signed-off-by: lijianan <574980606@qq.com> * Update components/divider/index.tsx Co-authored-by: MadCcc <1075746765@qq.com> Signed-off-by: lijianan <574980606@qq.com> * Update components/cascader/index.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/list/index.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/mentions/index.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/mentions/index.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/mentions/index.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/mentions/index.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/qrcode/index.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/spin/index.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/select/index.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/spin/index.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/spin/index.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/steps/index.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/time-picker/index.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/transfer/index.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/tree-select/index.tsx Signed-off-by: lijianan <574980606@qq.com> --------- Signed-off-by: lijianan <574980606@qq.com> Co-authored-by: MadCcc <1075746765@qq.com>
203 lines
5.4 KiB
TypeScript
203 lines
5.4 KiB
TypeScript
'use client';
|
||
|
||
import classNames from 'classnames';
|
||
import type { DrawerProps as RcDrawerProps } from 'rc-drawer';
|
||
import RcDrawer from 'rc-drawer';
|
||
import type { CSSMotionProps } from 'rc-motion';
|
||
import * as React from 'react';
|
||
import { getTransitionName } from '../_util/motion';
|
||
import warning from '../_util/warning';
|
||
import { ConfigContext } from '../config-provider';
|
||
import { NoFormStyle } from '../form/context';
|
||
import type { DrawerPanelProps } from './DrawerPanel';
|
||
import DrawerPanel from './DrawerPanel';
|
||
|
||
// CSSINJS
|
||
import { NoCompactStyle } from '../space/Compact';
|
||
import useStyle from './style';
|
||
|
||
const SizeTypes = ['default', 'large'] as const;
|
||
type sizeType = typeof SizeTypes[number];
|
||
|
||
export interface PushState {
|
||
distance: string | number;
|
||
}
|
||
|
||
// Drawer diff props: 'open' | 'motion' | 'maskMotion' | 'wrapperClassName'
|
||
export interface DrawerProps extends RcDrawerProps, Omit<DrawerPanelProps, 'prefixCls'> {
|
||
size?: sizeType;
|
||
|
||
open?: boolean;
|
||
|
||
afterOpenChange?: (open: boolean) => void;
|
||
|
||
// Deprecated
|
||
/** @deprecated Please use `open` instead */
|
||
visible?: boolean;
|
||
/** @deprecated Please use `afterOpenChange` instead */
|
||
afterVisibleChange?: (open: boolean) => void;
|
||
}
|
||
|
||
const defaultPushState: PushState = { distance: 180 };
|
||
|
||
function Drawer(props: DrawerProps) {
|
||
const {
|
||
rootClassName,
|
||
width,
|
||
height,
|
||
size = 'default',
|
||
mask = true,
|
||
push = defaultPushState,
|
||
open,
|
||
afterOpenChange,
|
||
onClose,
|
||
prefixCls: customizePrefixCls,
|
||
getContainer: customizeGetContainer,
|
||
style,
|
||
className,
|
||
|
||
// Deprecated
|
||
visible,
|
||
afterVisibleChange,
|
||
|
||
...rest
|
||
} = props;
|
||
|
||
const { getPopupContainer, getPrefixCls, direction, drawer } = React.useContext(ConfigContext);
|
||
const prefixCls = getPrefixCls('drawer', customizePrefixCls);
|
||
|
||
// Style
|
||
const [wrapSSR, hashId] = useStyle(prefixCls);
|
||
|
||
const getContainer =
|
||
// 有可能为 false,所以不能直接判断
|
||
customizeGetContainer === undefined && getPopupContainer
|
||
? () => getPopupContainer(document.body)
|
||
: customizeGetContainer;
|
||
|
||
const drawerClassName = classNames(
|
||
{
|
||
'no-mask': !mask,
|
||
[`${prefixCls}-rtl`]: direction === 'rtl',
|
||
},
|
||
rootClassName,
|
||
hashId,
|
||
);
|
||
|
||
// ========================== Warning ===========================
|
||
if (process.env.NODE_ENV !== 'production') {
|
||
[
|
||
['visible', 'open'],
|
||
['afterVisibleChange', 'afterOpenChange'],
|
||
].forEach(([deprecatedName, newName]) => {
|
||
warning(
|
||
!(deprecatedName in props),
|
||
'Drawer',
|
||
`\`${deprecatedName}\` is deprecated, please use \`${newName}\` instead.`,
|
||
);
|
||
});
|
||
|
||
if (getContainer !== undefined && props.style?.position === 'absolute') {
|
||
warning(
|
||
false,
|
||
'Drawer',
|
||
'`style` is replaced by `rootStyle` in v5. Please check that `position: absolute` is necessary.',
|
||
);
|
||
}
|
||
}
|
||
|
||
// ============================ Size ============================
|
||
const mergedWidth = React.useMemo(() => width ?? (size === 'large' ? 736 : 378), [width, size]);
|
||
const mergedHeight = React.useMemo(
|
||
() => height ?? (size === 'large' ? 736 : 378),
|
||
[height, size],
|
||
);
|
||
|
||
// =========================== Motion ===========================
|
||
const maskMotion: CSSMotionProps = {
|
||
motionName: getTransitionName(prefixCls, 'mask-motion'),
|
||
motionAppear: true,
|
||
motionEnter: true,
|
||
motionLeave: true,
|
||
motionDeadline: 500,
|
||
};
|
||
|
||
const panelMotion: RcDrawerProps['motion'] = (motionPlacement) => ({
|
||
motionName: getTransitionName(prefixCls, `panel-motion-${motionPlacement}`),
|
||
motionAppear: true,
|
||
motionEnter: true,
|
||
motionLeave: true,
|
||
motionDeadline: 500,
|
||
});
|
||
|
||
// =========================== Render ===========================
|
||
return wrapSSR(
|
||
<NoCompactStyle>
|
||
<NoFormStyle status override>
|
||
<RcDrawer
|
||
prefixCls={prefixCls}
|
||
onClose={onClose}
|
||
maskMotion={maskMotion}
|
||
motion={panelMotion}
|
||
{...rest}
|
||
open={open ?? visible}
|
||
mask={mask}
|
||
push={push}
|
||
width={mergedWidth}
|
||
height={mergedHeight}
|
||
style={{ ...drawer?.style, ...style }}
|
||
className={classNames(drawer?.className, className)}
|
||
rootClassName={drawerClassName}
|
||
getContainer={getContainer}
|
||
afterOpenChange={afterOpenChange ?? afterVisibleChange}
|
||
>
|
||
<DrawerPanel prefixCls={prefixCls} {...rest} onClose={onClose} />
|
||
</RcDrawer>
|
||
</NoFormStyle>
|
||
</NoCompactStyle>,
|
||
);
|
||
}
|
||
|
||
if (process.env.NODE_ENV !== 'production') {
|
||
Drawer.displayName = 'Drawer';
|
||
}
|
||
|
||
function PurePanel({
|
||
prefixCls: customizePrefixCls,
|
||
style,
|
||
className,
|
||
placement = 'right',
|
||
...restProps
|
||
}: Omit<DrawerPanelProps, 'prefixCls' | 'drawerStyle'> & {
|
||
prefixCls?: string;
|
||
style?: React.CSSProperties;
|
||
className?: string;
|
||
placement?: DrawerProps['placement'];
|
||
}) {
|
||
const { getPrefixCls } = React.useContext(ConfigContext);
|
||
|
||
const prefixCls = getPrefixCls('drawer', customizePrefixCls);
|
||
|
||
// Style
|
||
const [wrapSSR, hashId] = useStyle(prefixCls);
|
||
|
||
return wrapSSR(
|
||
<div
|
||
className={classNames(
|
||
prefixCls,
|
||
`${prefixCls}-pure`,
|
||
`${prefixCls}-${placement}`,
|
||
hashId,
|
||
className,
|
||
)}
|
||
style={style}
|
||
>
|
||
<DrawerPanel prefixCls={prefixCls} {...restProps} />
|
||
</div>,
|
||
);
|
||
}
|
||
|
||
Drawer._InternalPanelDoNotUseOrYouWillBeFired = PurePanel;
|
||
|
||
export default Drawer;
|