aboutsummaryrefslogblamecommitdiffstats
path: root/ui/app/loading.js
blob: 606b53dde358d6cc28f75a2ee1ed1d7ddd8d5df6 (plain) (tree)
1
2
3
4
5
6
7
8
9



                                              



                                                                            
                                  





                                        
                              


                      
                                                 



                                      

                                        












                                                 
          




                                    



      
const inherits = require('util').inherits
const Component = require('react').Component
const h = require('react-hyperscript')
const connect = require('react-redux').connect
const ReactCSSTransitionGroup = require('react-addons-css-transition-group')

module.exports = connect(mapStateToProps)(LoadingIndicator)

function mapStateToProps (state) {
  return {
    isLoading: state.appState.isLoading,
  }
}

inherits(LoadingIndicator, Component)
function LoadingIndicator () {
  Component.call(this)
}

LoadingIndicator.prototype.render = function () {
  var isLoading = this.props.isLoading

  return (
    h(ReactCSSTransitionGroup, {
      className: 'css-transition-group',
      transitionName: 'loader',
      transitionEnterTimeout: 150,
      transitionLeaveTimeout: 150,
    }, [

      isLoading ? h('div', {
        style: {
          position: 'absolute',
          display: 'flex',
          justifyContent: 'center',
          alignItems: 'center',
          height: '100%',
          width: '100%',
          background: 'rgba(255, 255, 255, 0.5)',
        },
      }, [
        h('img', {
          src: 'images/loading.svg',
        }),
      ]) : null,
    ])
  )
}