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 {
|
||
|
getSendTo,
|
||
|
getToAccounts,
|
||
|
getCurrentNetwork,
|
||
|
} from '../../send.selectors.js'
|
||
|
import {
|
||
|
getToDropdownOpen,
|
||
|
sendToIsInError,
|
||
|
} from './send-to-row.selectors.js'
|
||
|
import { getToErrorObject } from './send-to-row.utils.js'
|
||
|
import {
|
||
|
updateSendErrors,
|
||
|
updateSendTo,
|
||
|
} from '../../../actions'
|
||
|
import {
|
||
|
openToDropdown,
|
||
|
closeToDropdown,
|
||
|
} from '../../../ducks/send'
|
||
|
import SendToRow from './send-to-row.component'
|
||
|
|
||
|
export default connect(mapStateToProps, mapDispatchToProps)(SendToRow)
|
||
|
|
||
|
function mapStateToProps (state) {
|
||
|
updateSendTo
|
||
|
return {
|
||
|
to: getSendTo(state),
|
||
|
toAccounts: getSendToAccounts(state),
|
||
|
toDropdownOpen: getToDropdownOpen(state),
|
||
|
inError: sendToIsInError(state),
|
||
|
network: getCurrentNetwork(state),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function mapDispatchToProps (dispatch) {
|
||
|
return {
|
||
|
updateSendToError: (to) => {
|
||
|
dispatch(updateSendErrors(getToErrorObject(to)))
|
||
|
},
|
||
|
updateSendTo: (to, nickname) => dispatch(updateSendTo(to, nickname)),
|
||
|
openToDropdown: () => dispatch(()),
|
||
|
closeToDropdown: () => dispatch(()),
|
||
|
}
|
||
|
}
|