Merge pull request #4848 from MetaMask/fix-alert-flash

Fix Banner flash on load
This commit is contained in:
Dan Finlay 2018-07-23 11:32:56 -07:00 committed by GitHub
commit 239f5110e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 48 additions and 8 deletions

View File

@ -4,14 +4,54 @@ const h = require('react-hyperscript')
class Alert extends Component {
constructor (props) {
super(props)
this.state = {
visble: false,
msg: false,
className: '',
}
}
componentWillReceiveProps (nextProps) {
if (!this.props.visible && nextProps.visible) {
this.animateIn(nextProps)
} else if (this.props.visible && !nextProps.visible) {
this.animateOut(nextProps)
}
}
animateIn (props) {
this.setState({
msg: props.msg,
visible: true,
className: '.visible',
})
}
animateOut (props) {
this.setState({
msg: null,
className: '.hidden',
})
setTimeout(_ => {
this.setState({visible: false})
}, 500)
}
render () {
const className = `.global-alert${this.props.visible ? '.visible' : '.hidden'}`
if (this.state.visible) {
return (
h(`div${className}`, {},
h('a.msg', {}, this.props.msg)
h(`div.global-alert${this.state.className}`, {},
h('a.msg', {}, this.state.msg)
)
)
}
return null
}
}
Alert.propTypes = {