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')
|
2017-11-02 03:30:33 +01:00
|
|
|
const PropTypes = require('react').PropTypes
|
2016-04-14 00:28:44 +02:00
|
|
|
|
2017-10-20 06:06:14 +02:00
|
|
|
class LoadingIndicator extends Component {
|
|
|
|
renderMessage () {
|
|
|
|
const { loadingMessage } = this.props
|
|
|
|
return loadingMessage && h('span', loadingMessage)
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
|
|
|
return (
|
2017-11-09 17:47:10 +01:00
|
|
|
h('.full-flex-height.loading-overlay', {}, [
|
2017-10-20 06:06:14 +02:00
|
|
|
h('img', {
|
|
|
|
src: 'images/loading.svg',
|
|
|
|
}),
|
|
|
|
|
|
|
|
h('br'),
|
|
|
|
|
|
|
|
this.renderMessage(),
|
|
|
|
])
|
|
|
|
)
|
|
|
|
}
|
2016-04-14 00:28:44 +02:00
|
|
|
}
|
|
|
|
|
2017-11-02 03:30:33 +01:00
|
|
|
LoadingIndicator.propTypes = {
|
|
|
|
loadingMessage: PropTypes.string,
|
|
|
|
}
|
|
|
|
|
2017-10-20 06:06:14 +02:00
|
|
|
module.exports = LoadingIndicator
|