-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSnackbar.js
62 lines (58 loc) · 1.55 KB
/
Snackbar.js
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
55
56
57
58
59
60
61
62
import React from 'react'
export default class SnackBar extends React.Component {
constructor (props) {
super(props)
this.state = {
showSnackBar: this.props.show,
timer: this.props.timer || 4000
}
}
componentWillReceiveProps (nextProps) {
var { showSnackBar, timer } = this.state
if (showSnackBar !== nextProps.show) {
this.setState({
showSnackBar: nextProps.show,
timer: nextProps.timer
})
setTimeout(() => {
this.setState({ showSnackBar: false })
this.props.onClose && this.props.onClose()
}, timer)
}
}
render () {
const { showSnackBar } = this.state
return (
<div className={showSnackBar ? 'show' : ''}>
{this.props.children}
<style jsx>{`
div {
position: fixed;
left: 50%;
transform: translate(-50%, 20px);
bottom: 60px;
border-radius: 20px;
font-size: 14px;
padding: 0 30px;
display: flex;
justify-content: space-between;
align-items: center;
background: #404040;
color: #fff;
font-weight: 500;
white-space: nowrap;
text-transform: initial;
opacity: 0;
will-change: transform;
transition: transform 0.3s cubic-bezier(0, 0, 0.3, 1);
z-index: 999999;
}
div.show {
opacity: 1;
transform: translate(-50%, 0);
}
`}</style>
</div>
)
}
}