2017-10-20 06:06:14 +02:00
|
|
|
const { Component } = require('react')
|
2016-04-14 00:28:44 +02:00
|
|
|
const h = require('react-hyperscript')
|
2018-02-07 07:03:37 +01:00
|
|
|
const PropTypes = require('prop-types')
|
2018-04-18 09:56:52 +02:00
|
|
|
const classnames = require('classnames')
|
2018-05-01 03:28:34 +02:00
|
|
|
const Spinner = require('../spinner')
|
2016-04-14 00:28:44 +02:00
|
|
|
|
2018-05-01 03:28:34 +02:00
|
|
|
class LoadingScreen extends Component {
|
2017-10-20 06:06:14 +02:00
|
|
|
renderMessage () {
|
|
|
|
const { loadingMessage } = this.props
|
|
|
|
return loadingMessage && h('span', loadingMessage)
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
|
|
|
return (
|
2018-04-18 09:56:52 +02:00
|
|
|
h('.loading-overlay', {
|
|
|
|
className: classnames({ 'loading-overlay--full-screen': this.props.fullScreen }),
|
|
|
|
}, [
|
2018-05-01 03:28:34 +02:00
|
|
|
h('.loading-overlay__container', [
|
|
|
|
h(Spinner, {
|
|
|
|
color: '#F7C06C',
|
2018-04-18 09:56:52 +02:00
|
|
|
}),
|
2017-10-20 06:06:14 +02:00
|
|
|
|
2018-04-18 09:56:52 +02:00
|
|
|
this.renderMessage(),
|
|
|
|
]),
|
2017-10-20 06:06:14 +02:00
|
|
|
])
|
|
|
|
)
|
|
|
|
}
|
2016-04-14 00:28:44 +02:00
|
|
|
}
|
|
|
|
|
2018-05-01 03:28:34 +02:00
|
|
|
LoadingScreen.propTypes = {
|
2017-11-02 03:30:33 +01:00
|
|
|
loadingMessage: PropTypes.string,
|
2018-04-18 09:56:52 +02:00
|
|
|
fullScreen: PropTypes.bool,
|
2017-11-02 03:30:33 +01:00
|
|
|
}
|
|
|
|
|
2018-05-01 03:28:34 +02:00
|
|
|
module.exports = LoadingScreen
|