0
0
Fork 0

Improve privacy dropdown, remove react-simple-dropdown dependency (#5140)

* Improve privacy dropdown, remove react-simple-dropdown dependency

* Animate privacy warning

* Fix react-router-scroll
This commit is contained in:
Eugen Rochko 2017-10-01 12:20:00 +02:00 committed by GitHub
parent 0b3f1ec62a
commit cdad7977fc
4 changed files with 138 additions and 72 deletions

View file

@ -1,5 +1,6 @@
import React from 'react';
import PropTypes from 'prop-types';
import { Motion, spring } from 'react-motion';
export default class Warning extends React.PureComponent {
@ -11,9 +12,13 @@ export default class Warning extends React.PureComponent {
const { message } = this.props;
return (
<div className='compose-form__warning'>
{message}
</div>
<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>
);
}