mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
b38361a347
Port fixes from e623c302d5
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
115 lines
4.4 KiB
JavaScript
115 lines
4.4 KiB
JavaScript
import { connect } from 'react-redux';
|
|
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { FormattedMessage, defineMessages, injectIntl } from 'react-intl';
|
|
import { Link } from 'react-router-dom';
|
|
import { limitedFederationMode, version, repository, source_url, profile_directory as profileDirectory } from 'flavours/glitch/util/initial_state';
|
|
import { signOutLink, securityLink, privacyPolicyLink } from 'flavours/glitch/util/backend_links';
|
|
import { logOut } from 'flavours/glitch/util/log_out';
|
|
import { openModal } from 'flavours/glitch/actions/modal';
|
|
import { PERMISSION_INVITE_USERS } from 'flavours/glitch/permissions';
|
|
|
|
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),
|
|
closeWhenConfirm: false,
|
|
onConfirm: () => logOut(),
|
|
}));
|
|
},
|
|
});
|
|
|
|
export default @injectIntl
|
|
@connect(null, mapDispatchToProps)
|
|
class LinkFooter extends React.PureComponent {
|
|
|
|
static contextTypes = {
|
|
identity: PropTypes.object,
|
|
};
|
|
|
|
static propTypes = {
|
|
withHotkeys: PropTypes.bool,
|
|
onLogout: PropTypes.func.isRequired,
|
|
intl: PropTypes.object.isRequired,
|
|
};
|
|
|
|
handleLogoutClick = e => {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
|
|
this.props.onLogout();
|
|
|
|
return false;
|
|
}
|
|
|
|
render () {
|
|
const { withHotkeys } = this.props;
|
|
const { signedIn, permissions } = this.context.identity;
|
|
|
|
const items = [];
|
|
|
|
if ((this.context.identity.permissions & PERMISSION_INVITE_USERS) === PERMISSION_INVITE_USERS) {
|
|
items.push(<a key='invites' href='/invites' target='_blank'><FormattedMessage id='getting_started.invite' defaultMessage='Invite people' /></a>);
|
|
}
|
|
|
|
if (signedIn && withHotkeys) {
|
|
items.push(<Link key='hotkeys' to='/keyboard-shortcuts'><FormattedMessage id='navigation_bar.keyboard_shortcuts' defaultMessage='Hotkeys' /></Link>);
|
|
}
|
|
|
|
if (signedIn && securityLink) {
|
|
items.push(<a key='security' href='/auth/edit'><FormattedMessage id='getting_started.security' defaultMessage='Security' /></a>);
|
|
}
|
|
|
|
if (!limitedFederationMode) {
|
|
items.push(<a key='about' href='/about/more' target='_blank'><FormattedMessage id='navigation_bar.info' defaultMessage='About this server' /></a>);
|
|
}
|
|
|
|
if (profileDirectory) {
|
|
items.push(<Link key='directory' to='/directory'><FormattedMessage id='getting_started.directory' defaultMessage='Profile directory' /></Link>);
|
|
}
|
|
|
|
items.push(<a key='apps' href='https://joinmastodon.org/apps' target='_blank'><FormattedMessage id='navigation_bar.apps' defaultMessage='Mobile apps' /></a>);
|
|
|
|
if (privacyPolicyLink) {
|
|
items.push(<a key='terms' href={privacyPolicyLink} target='_blank'><FormattedMessage id='getting_started.privacy_policy' defaultMessage='Privacy Policy' /></a>);
|
|
}
|
|
|
|
if (signedIn) {
|
|
items.push(<a key='developers' href='/settings/applications' target='_blank'><FormattedMessage id='getting_started.developers' defaultMessage='Developers' /></a>);
|
|
}
|
|
|
|
items.push(<a key='docs' href='https://docs.joinmastodon.org' target='_blank'><FormattedMessage id='getting_started.documentation' defaultMessage='Documentation' /></a>);
|
|
|
|
if (signedIn) {
|
|
items.push(<a key='logout' href='/auth/sign_out' onClick={this.handleLogoutClick}><FormattedMessage id='navigation_bar.logout' defaultMessage='Logout' /></a>);
|
|
}
|
|
|
|
return (
|
|
<div className='getting-started__footer'>
|
|
<ul>
|
|
{items.map((item, index, array) => (
|
|
<li>{item} { index === array.length - 1 ? null : ' · ' }</li>
|
|
))}
|
|
</ul>
|
|
|
|
<p>
|
|
<FormattedMessage
|
|
id='getting_started.open_source_notice'
|
|
defaultMessage='Glitchsoc is open source software, a friendly fork of {Mastodon}. You can contribute or report issues on GitHub at {github}.'
|
|
values={{
|
|
github: <span><a href={source_url} rel='noopener noreferrer' target='_blank'>{repository}</a> (v{version})</span>,
|
|
Mastodon: <a href='https://github.com/tootsuite/mastodon' rel='noopener noreferrer' target='_blank'>Mastodon</a> }}
|
|
/>
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
};
|