2017-05-03 01:04:16 +01:00
|
|
|
import React from 'react';
|
2017-04-23 23:38:37 +01:00
|
|
|
import PropTypes from 'prop-types';
|
2017-10-06 02:46:15 +01:00
|
|
|
import Motion from 'react-motion/lib/Motion';
|
|
|
|
import spring from 'react-motion/lib/spring';
|
2017-04-23 23:38:37 +01:00
|
|
|
|
2017-06-23 18:36:54 +01:00
|
|
|
export default class Warning extends React.PureComponent {
|
2017-04-23 23:38:37 +01:00
|
|
|
|
2017-05-12 13:44:10 +01:00
|
|
|
static propTypes = {
|
2017-05-20 16:31:47 +01:00
|
|
|
message: PropTypes.node.isRequired,
|
2017-05-12 13:44:10 +01:00
|
|
|
};
|
2017-04-23 23:38:37 +01:00
|
|
|
|
|
|
|
render () {
|
|
|
|
const { message } = this.props;
|
|
|
|
|
|
|
|
return (
|
2017-10-01 11:20:00 +01: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 23:38:37 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|