You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
799 B
34 lines
799 B
const { Component } = require('react')
|
|
const h = require('react-hyperscript')
|
|
const PropTypes = require('prop-types')
|
|
const classnames = require('classnames')
|
|
|
|
class LoadingIndicator extends Component {
|
|
renderMessage () {
|
|
const { loadingMessage } = this.props
|
|
return loadingMessage && h('span', loadingMessage)
|
|
}
|
|
|
|
render () {
|
|
return (
|
|
h('.loading-overlay', {
|
|
className: classnames({ 'loading-overlay--full-screen': this.props.fullScreen }),
|
|
}, [
|
|
h('.flex-center.flex-column', [
|
|
h('img', {
|
|
src: 'images/loading.svg',
|
|
}),
|
|
|
|
this.renderMessage(),
|
|
]),
|
|
])
|
|
)
|
|
}
|
|
}
|
|
|
|
LoadingIndicator.propTypes = {
|
|
loadingMessage: PropTypes.string,
|
|
fullScreen: PropTypes.bool,
|
|
}
|
|
|
|
module.exports = LoadingIndicator
|
|
|