mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Add sidebar click handler to overlay
This commit is contained in:
parent
a7017b824d
commit
7cb031eeb9
@ -37,7 +37,7 @@ const HDRestoreVaultScreen = require('./keychains/hd/restore-vault')
|
|||||||
const RevealSeedConfirmation = require('./keychains/hd/recover-seed/confirmation')
|
const RevealSeedConfirmation = require('./keychains/hd/recover-seed/confirmation')
|
||||||
const ReactCSSTransitionGroup = require('react-addons-css-transition-group')
|
const ReactCSSTransitionGroup = require('react-addons-css-transition-group')
|
||||||
|
|
||||||
module.exports = connect(mapStateToProps)(App)
|
module.exports = connect(mapStateToProps, mapDispatchToProps)(App)
|
||||||
|
|
||||||
inherits(App, Component)
|
inherits(App, Component)
|
||||||
function App () { Component.call(this) }
|
function App () { Component.call(this) }
|
||||||
@ -67,6 +67,12 @@ function mapStateToProps (state) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function mapDispatchToProps (dispatch) {
|
||||||
|
return {
|
||||||
|
hideSidebar: () => {dispatch(actions.hideSidebar())},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
App.prototype.render = function () {
|
App.prototype.render = function () {
|
||||||
var props = this.props
|
var props = this.props
|
||||||
const { isLoading, loadingMessage, transForward, network, sidebarOpen } = props
|
const { isLoading, loadingMessage, transForward, network, sidebarOpen } = props
|
||||||
@ -151,7 +157,10 @@ App.prototype.renderSidebar = function() {
|
|||||||
// overlay
|
// overlay
|
||||||
// TODO: add onClick for overlay to close sidebar
|
// TODO: add onClick for overlay to close sidebar
|
||||||
this.props.sidebarOpen ? h('div.sidebar-overlay', {
|
this.props.sidebarOpen ? h('div.sidebar-overlay', {
|
||||||
style: {}
|
style: {},
|
||||||
|
onClick: () => {
|
||||||
|
this.props.hideSidebar()
|
||||||
|
},
|
||||||
}, []) : undefined,
|
}, []) : undefined,
|
||||||
])
|
])
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user