2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2017-04-23 18:38:37 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2017-10-16 03:36:15 -04:00
|
|
|
import Motion from '../../ui/util/optional_motion';
|
2017-10-05 21:46:15 -04:00
|
|
|
import spring from 'react-motion/lib/spring';
|
2017-04-23 18:38:37 -04:00
|
|
|
|
2017-06-23 13:36:54 -04:00
|
|
|
export default class Warning extends React.PureComponent {
|
2017-04-23 18:38:37 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static propTypes = {
|
2017-05-20 11:31:47 -04:00
|
|
|
message: PropTypes.node.isRequired,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
2017-04-23 18:38:37 -04:00
|
|
|
|
|
|
|
render () {
|
|
|
|
const { message } = this.props;
|
|
|
|
|
|
|
|
return (
|
2017-10-01 06:20:00 -04:00
|
|
|
<Motion defaultStyle={{ opacity: 0, scaleX: 0.85, scaleY: 0.75 }} style={{ opacity: spring(1, { damping: 35, stiffness: 400 }), scaleX: spring(1, { damping: 35, stiffness: 400 }), scaleY: spring(1, { damping: 35, stiffness: 400 }) }}>
|
|
|
|
{({ opacity, scaleX, scaleY }) => (
|
|
|
|
<div className='compose-form__warning' style={{ opacity: opacity, transform: `scale(${scaleX}, ${scaleY})` }}>
|
|
|
|
{message}
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</Motion>
|
2017-04-23 18:38:37 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|