You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.1 KiB
43 lines
1.1 KiB
7 years ago
|
import { connect } from 'react-redux'
|
||
7 years ago
|
import {
|
||
|
getCurrentNetwork,
|
||
7 years ago
|
getSendTo,
|
||
7 years ago
|
getSendToAccounts,
|
||
7 years ago
|
} from '../../send.selectors.js'
|
||
|
import {
|
||
|
getToDropdownOpen,
|
||
|
sendToIsInError,
|
||
|
} from './send-to-row.selectors.js'
|
||
|
import {
|
||
|
updateSendTo,
|
||
7 years ago
|
} from '../../../../actions'
|
||
7 years ago
|
import {
|
||
7 years ago
|
updateSendErrors,
|
||
|
openToDropdown,
|
||
|
closeToDropdown,
|
||
7 years ago
|
} from '../../../../ducks/send.duck'
|
||
7 years ago
|
import SendToRow from './send-to-row.component'
|
||
|
|
||
|
export default connect(mapStateToProps, mapDispatchToProps)(SendToRow)
|
||
|
|
||
|
function mapStateToProps (state) {
|
||
|
return {
|
||
7 years ago
|
inError: sendToIsInError(state),
|
||
|
network: getCurrentNetwork(state),
|
||
7 years ago
|
to: getSendTo(state),
|
||
|
toAccounts: getSendToAccounts(state),
|
||
|
toDropdownOpen: getToDropdownOpen(state),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function mapDispatchToProps (dispatch) {
|
||
|
return {
|
||
7 years ago
|
closeToDropdown: () => dispatch(closeToDropdown()),
|
||
|
openToDropdown: () => dispatch(openToDropdown()),
|
||
|
updateSendTo: (to, nickname) => dispatch(updateSendTo(to, nickname)),
|
||
7 years ago
|
updateSendToError: (toErrorObject) => {
|
||
|
dispatch(updateSendErrors(toErrorObject))
|
||
7 years ago
|
},
|
||
|
}
|
||
7 years ago
|
}
|