1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-25 03:20:23 +01:00
metamask-extension/ui/pages/send/send-content/add-recipient/add-recipient.container.js
Ben Behrman 086003555c
Make ENS named elements domain generic (#16166)
Co-authored-by: Olaf Tomalka <olaf.tomalka@gmail.com>
Co-authored-by: Vincent Shadbolt <vince.shadbolt@gmail.com>
Co-authored-by: Brad Decker <bhdecker84@gmail.com>
Co-authored-by: Brad Decker <git@braddecker.dev>
2022-11-21 09:19:11 -06:00

69 lines
2.0 KiB
JavaScript

import { connect } from 'react-redux';
import {
getAddressBook,
getAddressBookEntry,
getMetaMaskAccountsOrdered,
} from '../../../../selectors';
import {
updateRecipient,
updateRecipientUserInput,
useMyAccountsForRecipientSearch,
useContactListForRecipientSearch,
getIsUsingMyAccountForRecipientSearch,
getRecipientUserInput,
getRecipient,
addHistoryEntry,
} from '../../../../ducks/send';
import {
getDomainResolution,
getDomainError,
getDomainWarning,
} from '../../../../ducks/domains';
import AddRecipient from './add-recipient.component';
export default connect(mapStateToProps, mapDispatchToProps)(AddRecipient);
function mapStateToProps(state) {
const domainResolution = getDomainResolution(state);
let addressBookEntryName = '';
if (domainResolution) {
const addressBookEntry = getAddressBookEntry(state, domainResolution) || {};
addressBookEntryName = addressBookEntry.name;
}
const addressBook = getAddressBook(state);
const ownedAccounts = getMetaMaskAccountsOrdered(state);
return {
addressBook,
addressBookEntryName,
contacts: addressBook.filter(({ name }) => Boolean(name)),
domainResolution,
domainError: getDomainError(state),
domainWarning: getDomainWarning(state),
nonContacts: addressBook.filter(({ name }) => !name),
ownedAccounts,
isUsingMyAccountsForRecipientSearch:
getIsUsingMyAccountForRecipientSearch(state),
userInput: getRecipientUserInput(state),
recipient: getRecipient(state),
};
}
function mapDispatchToProps(dispatch) {
return {
addHistoryEntry: (entry) => dispatch(addHistoryEntry(entry)),
updateRecipient: ({ address, nickname }) =>
dispatch(updateRecipient({ address, nickname })),
updateRecipientUserInput: (newInput) =>
dispatch(updateRecipientUserInput(newInput)),
useMyAccountsForRecipientSearch: () =>
dispatch(useMyAccountsForRecipientSearch()),
useContactListForRecipientSearch: () =>
dispatch(useContactListForRecipientSearch()),
};
}