mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
2dd7bd6bd0
- When unlocking, the first account is now selected by default and displayed as the main view. - There is now a "CHANGE ACCT" button on the detail view to show the accounts list. - Clicking an account from the accounts list now navigates to the detail view and selects that account. - Config/Info screen "back" buttons now fire a new action, `GO_HOME`, which is configured to navigate to the accountDetail view, putting that logic in one place. - When locking and unlocking again, the first account is always displayed, eventually we should persist the selection.
50 lines
1.1 KiB
JavaScript
50 lines
1.1 KiB
JavaScript
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() {
|
|
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,
|
|
])
|
|
)
|
|
}
|
|
|