-
Notifications
You must be signed in to change notification settings - Fork 2k
/
Copy pathDashboard.js
62 lines (49 loc) · 1.25 KB
/
Dashboard.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
const React = require('react')
const DashboardPlugin = require('@uppy/dashboard')
const basePropTypes = require('./propTypes').dashboard
const h = React.createElement
/**
* React Component that renders a Dashboard for an Uppy instance. This component
* renders the Dashboard inline, so you can put it anywhere you want.
*/
class Dashboard extends React.Component {
componentDidMount () {
this.installPlugin()
}
componentDidUpdate (prevProps) {
if (prevProps.uppy !== this.props.uppy) {
this.uninstallPlugin(prevProps)
this.installPlugin()
}
}
componentWillUnmount () {
this.uninstallPlugin()
}
installPlugin () {
const uppy = this.props.uppy
const options = Object.assign(
{ id: 'react:Dashboard' },
this.props,
{ target: this.container }
)
delete options.uppy
uppy.use(DashboardPlugin, options)
this.plugin = uppy.getPlugin(options.id)
}
uninstallPlugin (props = this.props) {
const uppy = props.uppy
uppy.removePlugin(this.plugin)
}
render () {
return h('div', {
ref: (container) => {
this.container = container
}
})
}
}
Dashboard.propTypes = basePropTypes
Dashboard.defaultProps = {
inline: true
}
module.exports = Dashboard