File size: 926 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | import { css } from 'astroturf';
import React, { useRef } from 'react';
import CSSTransition from '../../src/CSSTransition';
export const FADE_TIMEOUT = 1000;
const styles = css`
.default {
opacity: 0;
}
.enter-done {
opacity: 1;
}
.enter,
.appear {
opacity: 0.01;
}
.enter.enter-active,
.appear.appear-active {
opacity: 1;
transition: opacity ${FADE_TIMEOUT}ms ease-in;
}
.exit {
opacity: 1;
}
.exit.exit-active {
opacity: 0.01;
transition: opacity ${0.8 * FADE_TIMEOUT}ms ease-in;
}
`;
const defaultProps = {
in: false,
timeout: FADE_TIMEOUT,
};
function Fade(props) {
const nodeRef = useRef();
return (
<CSSTransition {...props} classNames={styles} nodeRef={nodeRef}>
<div ref={nodeRef} className={styles.default}>
{props.children}
</div>
</CSSTransition>
);
}
Fade.defaultProps = defaultProps;
export default Fade;
|