| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270 | /* eslint-disable no-nested-ternary */import React, { CSSProperties } from 'react';import BaseComponent from '../_base/baseComponent';import PropTypes from 'prop-types';import Portal from '../_portal';import cls from 'classnames';import ConfigContext, { ContextValue } from '../configProvider/context';import { cssClasses, strings } from '@douyinfe/semi-foundation/sideSheet/constants';import SideSheetTransition from './SideSheetTransition';import SideSheetContent from './SideSheetContent';import { noop } from 'lodash';import SideSheetFoundation, {    SideSheetAdapter,    SideSheetProps,    SideSheetState} from '@douyinfe/semi-foundation/sideSheet/sideSheetFoundation';import '@douyinfe/semi-foundation/sideSheet/sideSheet.scss';const prefixCls = cssClasses.PREFIX;const defaultWidthList = strings.WIDTH;const defaultHeight = strings.HEIGHT;export { SideSheetContentProps } from './SideSheetContent';export { SideSheetTransitionProps } from './SideSheetTransition';export interface SideSheetReactProps extends SideSheetProps {    bodyStyle?: CSSProperties;    headerStyle?: CSSProperties;    maskStyle?: CSSProperties;    style?: CSSProperties;    title?: React.ReactNode;    footer?: React.ReactNode;    children?: React.ReactNode;    onCancel?: (e: React.MouseEvent | React.KeyboardEvent) => void;}export {    SideSheetState};export default class SideSheet extends BaseComponent<SideSheetReactProps, SideSheetState> {    static contextType = ConfigContext;    static propTypes = {        bodyStyle: PropTypes.object,        headerStyle: PropTypes.object,        children: PropTypes.node,        className: PropTypes.string,        closable: PropTypes.bool,        disableScroll: PropTypes.bool,        getPopupContainer: PropTypes.func,        height: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),        mask: PropTypes.bool,        maskClosable: PropTypes.bool,        maskStyle: PropTypes.object,        motion: PropTypes.oneOfType([PropTypes.bool, PropTypes.object, PropTypes.func]),        onCancel: PropTypes.func,        placement: PropTypes.oneOf(strings.PLACEMENT),        size: PropTypes.oneOf(strings.SIZE),        style: PropTypes.object,        title: PropTypes.node,        visible: PropTypes.bool,        width: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),        zIndex: PropTypes.number,        afterVisibleChange: PropTypes.func,        closeOnEsc: PropTypes.bool,        footer: PropTypes.node,        keepDOM: PropTypes.bool,        'aria-label': PropTypes.string,    };    static defaultProps: SideSheetReactProps = {        visible: false,        motion: true,        mask: true,        placement: 'right',        closable: true,        footer: null,        zIndex: 1000,        maskClosable: true,        size: 'small',        disableScroll: true,        closeOnEsc: false,        afterVisibleChange: noop,        keepDOM: false    };    private _active: boolean;    constructor(props: SideSheetReactProps) {        super(props);        this.state = { hidden: !this.props.visible };        this.foundation = new SideSheetFoundation(this.adapter);        this._active = false;    }    context: ContextValue;    get adapter(): SideSheetAdapter {        return {            ...super.adapter,            disabledBodyScroll: () => {                const { getPopupContainer } = this.props;                if (!getPopupContainer && document) {                    document.body.style.overflow = 'hidden';                }            },            enabledBodyScroll: () => {                const { getPopupContainer } = this.props;                if (!getPopupContainer && document) {                    document.body.style.overflow = '';                }            },            notifyCancel: (e: React.MouseEvent | React.KeyboardEvent) => {                this.props.onCancel && this.props.onCancel(e);            },            notifyVisibleChange: (visible: boolean) => {                this.props.afterVisibleChange(visible);            },            setOnKeyDownListener: () => {                if (window) {                    window.addEventListener('keydown', this.handleKeyDown);                }            },            removeKeyDownListener: () => {                if (window) {                    window.removeEventListener('keydown', this.handleKeyDown);                }            },            toggleHidden: (hidden: boolean) => {                if (hidden !== this.state.hidden) {                    this.setState({ hidden });                }            },        };    }    static getDerivedStateFromProps(props: SideSheetReactProps, prevState: SideSheetState) {        const newState: Partial<SideSheetState> = {};        if (props.visible && prevState.hidden) {            newState.hidden = false;        }        if (!props.visible && !props.motion && !prevState.hidden) {            newState.hidden = true;        }        return newState;    }    componentDidMount() {        if (this.props.visible) {            this.foundation.beforeShow();            this._active = this._active || this.props.visible;        }    }    componentDidUpdate(prevProps: SideSheetReactProps, prevState: SideSheetState, snapshot: any) {        // hide => show        if (!prevProps.visible && this.props.visible) {            this.foundation.beforeShow();        }        // show => hide        if (prevProps.visible && !this.props.visible) {            this.foundation.afterHide();        }    }    componentWillUnmount() {        if (this.props.visible) {            this.foundation.destroy();        }    }    handleCancel = (e: React.MouseEvent) => {        this.foundation.handleCancel(e);    };    handleKeyDown = (e: KeyboardEvent) => {        this.foundation.handleKeyDown(e);    };    renderContent() {        const {            placement,            className,            children,            width,            height,            motion,            visible,            style,            maskStyle,            size,            zIndex,            getPopupContainer,            keepDOM,            ...props        } = this.props;        const { direction } = this.context;        const isVertical = placement === 'left' || placement === 'right';        const isHorizontal = placement === 'top' || placement === 'bottom';        const sheetWidth = isVertical ? (width ? width : defaultWidthList[size]) : '100%';        const sheetHeight = isHorizontal ? (height ? height : defaultHeight) : '100%';        const classList = cls(prefixCls, className, {            [`${prefixCls}-${placement}`]: placement,            [`${prefixCls}-popup`]: getPopupContainer,            [`${prefixCls}-horizontal`]: isHorizontal,            [`${prefixCls}-rtl`]: direction === 'rtl',            [`${prefixCls}-hidden`]: keepDOM && this.state.hidden,        });        const contentProps = {            ...props,            visible,            motion: false,            className: classList,            width: sheetWidth,            height: sheetHeight,            onClose: this.handleCancel,        };        const mergedMotion = this.foundation.getMergedMotion();        this._active = this._active || visible;        const shouldRender = (visible || keepDOM) && this._active;        if (mergedMotion) {            return (                <SideSheetTransition placement={placement} motion={mergedMotion} controlled={keepDOM} visible={visible}>                    {shouldRender ?                        transitionStyles => (                            <SideSheetContent                                {...contentProps}                                style={{ ...transitionStyles, ...style }}                                maskStyle={{ opacity: transitionStyles.opacity, ...maskStyle }}                            >                                {children}                            </SideSheetContent>                        ) : null}                </SideSheetTransition>            );        }        if (shouldRender) {            return (                <SideSheetContent {...contentProps} style={style} maskStyle={maskStyle}>                    {children}                </SideSheetContent>            );        }        return null;    }    render() {        const {            zIndex,            getPopupContainer,        } = this.props;        let wrapperStyle: CSSProperties = {            zIndex,        };        if (getPopupContainer) {            wrapperStyle = {                zIndex,                position: 'static',            };        }        return (            <Portal getPopupContainer={getPopupContainer} style={wrapperStyle}>                {this.renderContent()}            </Portal>        );    }}
 |