Removes the largest batch of React-19-blocking warnings: the 0.31 components (Grid, FormGroup, ControlLabel, Navbar.Header/Brand, Checkbox, SafeAnchor) all leaned on legacy context / defaultProps. 29 files converted: Grid->Container, FormGroup/ControlLabel/FormControl/ HelpBlock -> Form.Group/Label/Control/Text, Checkbox -> Form.Check (label as prop), bsStyle->variant (default->secondary), bsSize->size, pull-right->float-end. Custom Col.js now re-exports v2's Col; custom NavItem.js rewritten self-contained (no SafeAnchor/createChainedFunction); Navigation.js drops react-bootstrap Navbar (raw markup anyway). CSS stays on Bootstrap 4 (alexwine:bootstrap-4) for now: the BS4->5 jump is entangled with the jQuery carousel/swipe + navbar-collapse and is tracked as separate debt in UPGRADE.md. Only .form-label needed a shim (forms.scss). Browser-verified home carousel+navbar, signup form + terms checkbox, login form; REST smoke byte-identical.
54 lines
2 KiB
JavaScript
54 lines
2 KiB
JavaScript
/* eslint-disable import/no-absolute-path */
|
|
|
|
import React from 'react';
|
|
import { year } from '@cleverbeagle/dates';
|
|
import { Link } from 'react-router-dom';
|
|
import { Container } from 'react-bootstrap';
|
|
import { withTranslation } from 'react-i18next';
|
|
import { testId } from '/imports/ui/components/Utils/TestUtils';
|
|
|
|
import './Footer.scss';
|
|
|
|
const copyrightYear = () => {
|
|
const currentYear = year();
|
|
// moment(new Date()).format('YY');
|
|
return currentYear === '2017' ? '2017' : `2017-${currentYear}`;
|
|
};
|
|
|
|
const Footer = (props) => {
|
|
const { t } = props;
|
|
return (
|
|
<div className="Footer">
|
|
<Container>
|
|
<p className="pull-left"><span className="reverse">©</span><span className="d-none d-md-inline"> Copyleft</span> {copyrightYear()} <a href="https://comunes.org/"><span className="d-none d-md-inline">{t('OrgName')}</span><span className="d-inline d-md-none">{t('OrgName')}</span></a></p>
|
|
|
|
<ul className="float-end">
|
|
<li>
|
|
<Link id={testId('about')} to="/about">
|
|
<span className="d-none d-lg-inline">{t('Sobre nosotr@s')}</span>
|
|
<span className="d-lg-none">{t('Nosotr@s')}</span>
|
|
</Link>
|
|
</li>
|
|
<li>
|
|
<Link id={testId('tos')} to="/terms">
|
|
<span className="d-none d-lg-inline">{t('Términos de Servicio')}</span>
|
|
<span className="d-lg-none" />
|
|
</Link>
|
|
</li>
|
|
<li>
|
|
<Link id={testId('privacy')} to="/privacy">
|
|
<span className="d-none d-lg-inline">{t('Política de Privacidad')}</span>
|
|
<span className="d-lg-none">{t('Privacidad')}</span>
|
|
</Link>
|
|
</li>
|
|
<li><span className="d-none d-md-inline"><Link id={testId('license')} to="/license">{t('Licencia')}</Link></span></li>
|
|
<li><span className="d-none d-md-inline"><Link id={testId('credits')} to="/credits">{t('Créditos')}</Link></span></li>
|
|
</ul>
|
|
</Container>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
Footer.propTypes = {};
|
|
|
|
export default withTranslation()(Footer);
|