mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 02:58:09 +01:00
39 lines
875 B
JavaScript
39 lines
875 B
JavaScript
import { connect } from 'react-redux'
|
|
import Notification from './notification.component'
|
|
|
|
const { hideModal } = require('../../../actions')
|
|
|
|
const mapStateToProps = state => {
|
|
const { appState: { modal: { modalState: { props } } } } = state
|
|
const { onHide } = props
|
|
return {
|
|
onHide,
|
|
}
|
|
}
|
|
|
|
const mapDispatchToProps = dispatch => {
|
|
return {
|
|
hideModal: () => dispatch(hideModal()),
|
|
}
|
|
}
|
|
|
|
const mergeProps = (stateProps, dispatchProps, ownProps) => {
|
|
const { onHide, ...otherStateProps } = stateProps
|
|
const { hideModal, ...otherDispatchProps } = dispatchProps
|
|
|
|
return {
|
|
...otherStateProps,
|
|
...otherDispatchProps,
|
|
...ownProps,
|
|
onHide: () => {
|
|
hideModal()
|
|
|
|
if (onHide && typeof onHide === 'function') {
|
|
onHide()
|
|
}
|
|
},
|
|
}
|
|
}
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps, mergeProps)(Notification)
|