mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
1cc78fa0b1
* updated contacts flow update * json file updates * updated contacts edit and view list * keep contacts tab selected * lint fix * replaced hardcoded strings with constant * updated padding in box
38 lines
1.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
import { compose } from 'redux';
|
|
import { connect } from 'react-redux';
|
|
import { withRouter } from 'react-router-dom';
|
|
import { getAddressBook } from '../../../selectors';
|
|
|
|
import {
|
|
CONTACT_ADD_ROUTE,
|
|
CONTACT_EDIT_ROUTE,
|
|
CONTACT_VIEW_ROUTE,
|
|
} from '../../../helpers/constants/routes';
|
|
import ContactListTab from './contact-list-tab.component';
|
|
|
|
const mapStateToProps = (state, ownProps) => {
|
|
const { location } = ownProps;
|
|
const { pathname } = location;
|
|
|
|
const pathNameTail = pathname.match(/[^/]+$/u)[0];
|
|
const pathNameTailIsAddress = pathNameTail.includes('0x');
|
|
|
|
const viewingContact = Boolean(pathname.match(CONTACT_VIEW_ROUTE));
|
|
const editingContact = Boolean(pathname.match(CONTACT_EDIT_ROUTE));
|
|
const addingContact = Boolean(pathname.match(CONTACT_ADD_ROUTE));
|
|
|
|
const hideAddressBook = viewingContact || editingContact || addingContact;
|
|
|
|
return {
|
|
viewingContact,
|
|
editingContact,
|
|
addingContact,
|
|
addressBook: getAddressBook(state),
|
|
selectedAddress: pathNameTailIsAddress ? pathNameTail : '',
|
|
hideAddressBook,
|
|
currentPath: pathname,
|
|
};
|
|
};
|
|
|
|
export default compose(withRouter, connect(mapStateToProps))(ContactListTab);
|