import React from 'react'; import PropTypes from 'prop-types'; import { withTranslation } from 'react-i18next'; import { withUnstatedContainers } from './UnstatedUtils'; import PageContainer from '~/client/services/PageContainer'; import { convertToNewAffiliationPath } from '~/utils/path-utils'; function ComparePathsTable(props) { const { subordinatedPages, pageContainer, newPagePath, t, } = props; const { path } = pageContainer.state; return ( {subordinatedPages.map((subordinatedPage) => { const convertedPath = convertToNewAffiliationPath(path, newPagePath, subordinatedPage.path); return ( ); })}
{t('original_path')} {t('new_path')}
{subordinatedPage.path} {convertedPath}
); } /** * Wrapper component for using unstated */ const PageDuplicateModallWrapper = withUnstatedContainers(ComparePathsTable, [PageContainer]); ComparePathsTable.propTypes = { t: PropTypes.func.isRequired, // i18next pageContainer: PropTypes.instanceOf(PageContainer).isRequired, subordinatedPages: PropTypes.array.isRequired, newPagePath: PropTypes.string.isRequired, }; export default withTranslation()(PageDuplicateModallWrapper);