67 lines
2.8 KiB
JavaScript
67 lines
2.8 KiB
JavaScript
import React from 'react';
|
||
import PropTypes from 'prop-types';
|
||
import { FormattedMessage, injectIntl } from 'react-intl';
|
||
import { Link } from 'react-router-dom';
|
||
import { invitesEnabled } from 'gabsocial/initial_state';
|
||
import { connect } from 'react-redux';
|
||
import { openModal } from '../../../actions/modal';
|
||
import { logOut } from 'gabsocial/actions/auth';
|
||
|
||
// FIXME: Let this be configured
|
||
const sourceCode = {
|
||
name: 'soapbox-fe',
|
||
url: 'https://gitlab.com/soapbox-pub/soapbox-fe',
|
||
repository: 'soapox-pub/soapbox-fe',
|
||
version: '0.0.0',
|
||
}
|
||
|
||
const mapStateToProps = state => {
|
||
const me = state.get('me');
|
||
return {
|
||
account: state.getIn(['accounts', me]),
|
||
}
|
||
};
|
||
|
||
const mapDispatchToProps = (dispatch) => ({
|
||
onOpenHotkeys() {
|
||
dispatch(openModal('HOTKEYS'));
|
||
},
|
||
onClickLogOut(e) {
|
||
dispatch(logOut());
|
||
e.preventDefault();
|
||
},
|
||
});
|
||
|
||
const LinkFooter = ({ onOpenHotkeys, account, onClickLogOut }) => (
|
||
<div className='getting-started__footer'>
|
||
<ul>
|
||
{(invitesEnabled && account) && <li><a href='/invites'><FormattedMessage id='getting_started.invite' defaultMessage='Invite people' /></a> · </li>}
|
||
{account && <li><a href='#' onClick={onOpenHotkeys}><FormattedMessage id='navigation_bar.keyboard_shortcuts' defaultMessage='Hotkeys' /></a> · </li>}
|
||
{account && <li><a href='/auth/edit'><FormattedMessage id='getting_started.security' defaultMessage='Security' /></a> · </li>}
|
||
<li><a href='/about'><FormattedMessage id='navigation_bar.info' defaultMessage='About this server' /></a> · </li>
|
||
<li><a href='/settings/applications'><FormattedMessage id='getting_started.developers' defaultMessage='Developers' /></a> · </li>
|
||
<li><a href='/about/tos'><FormattedMessage id='getting_started.terms' defaultMessage='Terms of Service' /></a> · </li>
|
||
<li><a href='/about/dmca'><FormattedMessage id='getting_started.dmca' defaultMessage='DMCA' /></a> · </li>
|
||
<li><a href='/about/privacy'><FormattedMessage id='getting_started.privacy' defaultMessage='Privacy Policy' /></a></li>
|
||
{account && <li> · <Link to='/auth/sign_out' onClick={onClickLogOut}><FormattedMessage id='navigation_bar.logout' defaultMessage='Logout' /></Link></li>}
|
||
</ul>
|
||
|
||
<p>
|
||
<FormattedMessage
|
||
id='getting_started.open_source_notice'
|
||
defaultMessage='{code_name} is open source software. You can contribute or report issues at {code_link} (v{code_version}).'
|
||
values={{
|
||
code_name: sourceCode.name,
|
||
code_link: <a href={sourceCode.url} rel='noopener' target='_blank'>{sourceCode.repository}</a>,
|
||
code_version: sourceCode.version,
|
||
}}
|
||
/>
|
||
</p>
|
||
</div>
|
||
);
|
||
|
||
LinkFooter.propTypes = {
|
||
withHotkeys: PropTypes.bool,
|
||
};
|
||
|
||
export default injectIntl(connect(mapStateToProps, mapDispatchToProps)(LinkFooter));
|