2019-08-27 02:24:10 +10:00
|
|
|
import { connect } from 'react-redux';
|
2019-05-28 05:58:41 +10:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2019-08-27 02:24:10 +10:00
|
|
|
import { FormattedMessage, defineMessages, injectIntl } from 'react-intl';
|
2019-05-28 05:58:41 +10:00
|
|
|
import { Link } from 'react-router-dom';
|
2022-10-31 23:06:17 +11:00
|
|
|
import { domain, version, source_url, profile_directory as profileDirectory } from 'mastodon/initial_state';
|
2019-08-27 02:24:10 +10:00
|
|
|
import { logOut } from 'mastodon/utils/log_out';
|
|
|
|
import { openModal } from 'mastodon/actions/modal';
|
2022-07-05 10:41:40 +10:00
|
|
|
import { PERMISSION_INVITE_USERS } from 'mastodon/permissions';
|
2019-05-28 05:58:41 +10:00
|
|
|
|
2019-08-27 02:24:10 +10:00
|
|
|
const messages = defineMessages({
|
|
|
|
logoutMessage: { id: 'confirmations.logout.message', defaultMessage: 'Are you sure you want to log out?' },
|
|
|
|
logoutConfirm: { id: 'confirmations.logout.confirm', defaultMessage: 'Log out' },
|
|
|
|
});
|
|
|
|
|
|
|
|
const mapDispatchToProps = (dispatch, { intl }) => ({
|
|
|
|
onLogout () {
|
|
|
|
dispatch(openModal('CONFIRM', {
|
|
|
|
message: intl.formatMessage(messages.logoutMessage),
|
|
|
|
confirm: intl.formatMessage(messages.logoutConfirm),
|
2021-08-06 20:14:13 +10:00
|
|
|
closeWhenConfirm: false,
|
2019-08-27 02:24:10 +10:00
|
|
|
onConfirm: () => logOut(),
|
|
|
|
}));
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
export default @injectIntl
|
|
|
|
@connect(null, mapDispatchToProps)
|
|
|
|
class LinkFooter extends React.PureComponent {
|
|
|
|
|
2022-07-05 10:41:40 +10:00
|
|
|
static contextTypes = {
|
|
|
|
identity: PropTypes.object,
|
|
|
|
};
|
|
|
|
|
2019-08-27 02:24:10 +10:00
|
|
|
static propTypes = {
|
|
|
|
onLogout: PropTypes.func.isRequired,
|
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
handleLogoutClick = e => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
this.props.onLogout();
|
2019-05-28 05:58:41 +10:00
|
|
|
|
2019-08-27 02:24:10 +10:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
2022-09-29 12:39:33 +10:00
|
|
|
const { signedIn, permissions } = this.context.identity;
|
|
|
|
|
2022-10-31 23:06:17 +11:00
|
|
|
const canInvite = signedIn && ((permissions & PERMISSION_INVITE_USERS) === PERMISSION_INVITE_USERS);
|
|
|
|
const canProfileDirectory = profileDirectory;
|
2019-08-27 02:24:10 +10:00
|
|
|
|
|
|
|
return (
|
2022-10-31 23:06:17 +11:00
|
|
|
<div className='link-footer'>
|
|
|
|
<p>
|
|
|
|
<strong>{domain}</strong>:
|
|
|
|
{' '}
|
|
|
|
<Link key='about' to='/about'><FormattedMessage id='footer.about' defaultMessage='About' /></Link>
|
|
|
|
{canInvite && (
|
|
|
|
<>
|
|
|
|
{' · '}
|
|
|
|
<a key='invites' href='/invites' target='_blank'><FormattedMessage id='footer.invite' defaultMessage='Invite people' /></a>
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
{canProfileDirectory && (
|
|
|
|
<>
|
|
|
|
{' · '}
|
|
|
|
<Link key='directory' to='/directory'><FormattedMessage id='footer.directory' defaultMessage='Profiles directory' /></Link>
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
{' · '}
|
|
|
|
<Link key='privacy-policy' to='/privacy-policy'><FormattedMessage id='footer.privacy_policy' defaultMessage='Privacy policy' /></Link>
|
|
|
|
</p>
|
2019-08-27 02:24:10 +10:00
|
|
|
|
|
|
|
<p>
|
2022-10-31 23:06:17 +11:00
|
|
|
<strong>Mastodon</strong>:
|
|
|
|
{' '}
|
|
|
|
<a href='https://joinmastodon.org' target='_blank'><FormattedMessage id='footer.about' defaultMessage='About' /></a>
|
|
|
|
{' · '}
|
|
|
|
<a href='https://joinmastodon.org/apps' target='_blank'><FormattedMessage id='footer.get_app' defaultMessage='Get the app' /></a>
|
|
|
|
{' · '}
|
|
|
|
<Link to='/keyboard-shortcuts'><FormattedMessage id='footer.keyboard_shortcuts' defaultMessage='Keyboard shortcuts' /></Link>
|
|
|
|
{' · '}
|
|
|
|
<a href={source_url} rel='noopener noreferrer' target='_blank'><FormattedMessage id='footer.source_code' defaultMessage='View source code' /></a>
|
|
|
|
{' · '}
|
|
|
|
v{version}
|
2019-08-27 02:24:10 +10:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|