You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.3 KiB
40 lines
1.3 KiB
import * as React from 'react';
|
|
|
|
type MotionFunc = (element: HTMLElement) => React.CSSProperties;
|
|
|
|
interface Motion {
|
|
visible?: boolean;
|
|
motionName?: string; // It also support object, but we only use string here.
|
|
motionAppear?: boolean;
|
|
motionEnter?: boolean;
|
|
motionLeave?: boolean;
|
|
motionLeaveImmediately?: boolean; // Trigger leave motion immediately
|
|
removeOnLeave?: boolean;
|
|
leavedClassName?: string;
|
|
onAppearStart?: MotionFunc;
|
|
onAppearActive?: MotionFunc;
|
|
onAppearEnd?: MotionFunc;
|
|
onEnterStart?: MotionFunc;
|
|
onEnterActive?: MotionFunc;
|
|
onEnterEnd?: MotionFunc;
|
|
onLeaveStart?: MotionFunc;
|
|
onLeaveActive?: MotionFunc;
|
|
onLeaveEnd?: MotionFunc;
|
|
}
|
|
|
|
// ================== Collapse Motion ==================
|
|
const getCollapsedHeight: MotionFunc = () => ({ height: 0, opacity: 0 });
|
|
const getRealHeight: MotionFunc = node => ({ height: node.scrollHeight, opacity: 1 });
|
|
const getCurrentHeight: MotionFunc = node => ({ height: node.offsetHeight });
|
|
|
|
const collapseMotion: Motion = {
|
|
motionName: 'ant-motion-collapse',
|
|
onAppearStart: getCollapsedHeight,
|
|
onEnterStart: getCollapsedHeight,
|
|
onAppearActive: getRealHeight,
|
|
onEnterActive: getRealHeight,
|
|
onLeaveStart: getCurrentHeight,
|
|
onLeaveActive: getCollapsedHeight,
|
|
};
|
|
|
|
export default collapseMotion;
|
|
|