diff options
Moved UI into repo with its own dependency stack
Diffstat (limited to 'ui/app/loading.js')
-rw-r--r-- | ui/app/loading.js | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/ui/app/loading.js b/ui/app/loading.js new file mode 100644 index 000000000..47b758cb6 --- /dev/null +++ b/ui/app/loading.js @@ -0,0 +1,51 @@ +const inherits = require('util').inherits +const Component = require('react').Component +const h = require('react-hyperscript') +const connect = require('react-redux').connect +const actions = require('./actions') +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() { + console.dir(this.props) + var isLoading = this.props.isLoading + + return ( + h(ReactCSSTransitionGroup, { + 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, + + ]) + ) +} + |