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.
42 lines
1.4 KiB
42 lines
1.4 KiB
import { compose } from 'redux';
|
|
import { connect } from 'react-redux';
|
|
import { withRouter } from 'react-router-dom';
|
|
import { getAddressBook } from '../../../selectors';
|
|
import { ENVIRONMENT_TYPE_POPUP } from '../../../../shared/constants/app';
|
|
import { getEnvironmentType } from '../../../../app/scripts/lib/util';
|
|
|
|
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 envIsPopup = getEnvironmentType() === ENVIRONMENT_TYPE_POPUP;
|
|
|
|
const hideAddressBook =
|
|
envIsPopup && (viewingContact || editingContact || addingContact);
|
|
|
|
return {
|
|
viewingContact,
|
|
editingContact,
|
|
addingContact,
|
|
addressBook: getAddressBook(state),
|
|
selectedAddress: pathNameTailIsAddress ? pathNameTail : '',
|
|
hideAddressBook,
|
|
envIsPopup,
|
|
showContactContent: !envIsPopup || hideAddressBook,
|
|
};
|
|
};
|
|
|
|
export default compose(withRouter, connect(mapStateToProps))(ContactListTab);
|
|
|