bigbuffet-rw/app/soapbox/features/ui/components/unauthorized_modal.js

197 lines
6.9 KiB
JavaScript
Raw Normal View History

2020-03-27 13:59:38 -07:00
import PropTypes from 'prop-types';
import React from 'react';
import ImmutablePureComponent from 'react-immutable-pure-component';
2020-03-27 13:59:38 -07:00
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
import { connect } from 'react-redux';
import { withRouter } from 'react-router-dom';
2022-01-02 12:43:53 -08:00
import { remoteInteraction } from 'soapbox/actions/interactions';
import snackbar from 'soapbox/actions/snackbar';
import { getSoapboxConfig } from 'soapbox/actions/soapbox';
import { Button, Modal, Stack, Text } from 'soapbox/components/ui';
2022-01-02 12:43:53 -08:00
import { getFeatures } from 'soapbox/utils/features';
2020-03-27 13:59:38 -07:00
const messages = defineMessages({
close: { id: 'lightbox.close', defaultMessage: 'Close' },
2022-01-02 12:43:53 -08:00
accountPlaceholder: { id: 'remote_interaction.account_placeholder', defaultMessage: 'Enter your username@domain you want to act from' },
userNotFoundError: { id: 'remote_interaction.user_not_found_error', defaultMessage: 'Couldn\'t find given user' },
2020-03-27 13:59:38 -07:00
});
2022-01-02 12:43:53 -08:00
const mapStateToProps = (state, props) => {
const instance = state.get('instance');
const features = getFeatures(instance);
const soapboxConfig = getSoapboxConfig(state);
2022-01-02 12:43:53 -08:00
if (props.action !== 'FOLLOW') {
return {
features,
siteTitle: state.getIn(['instance', 'title']),
remoteInteractionsAPI: features.remoteInteractionsAPI,
singleUserMode: soapboxConfig.get('singleUserMode'),
2022-01-02 12:43:53 -08:00
};
}
const userName = state.getIn(['accounts', props.account, 'display_name']);
2020-03-27 13:59:38 -07:00
return {
2022-01-02 12:43:53 -08:00
features,
2020-04-01 13:31:40 -07:00
siteTitle: state.getIn(['instance', 'title']),
2022-01-02 12:43:53 -08:00
userName,
remoteInteractionsAPI: features.remoteInteractionsAPI,
singleUserMode: soapboxConfig.get('singleUserMode'),
2020-03-27 13:59:38 -07:00
};
};
2022-01-02 12:43:53 -08:00
const mapDispatchToProps = dispatch => ({
dispatch,
onRemoteInteraction(ap_id, account) {
return dispatch(remoteInteraction(ap_id, account));
},
});
2022-03-21 11:09:01 -07:00
@withRouter
2020-03-27 13:59:38 -07:00
class UnauthorizedModal extends ImmutablePureComponent {
static propTypes = {
intl: PropTypes.object.isRequired,
2022-01-02 12:43:53 -08:00
features: PropTypes.object.isRequired,
2020-03-27 13:59:38 -07:00
onClose: PropTypes.func.isRequired,
2022-01-02 12:43:53 -08:00
onRemoteInteraction: PropTypes.func.isRequired,
userName: PropTypes.string,
history: PropTypes.object.isRequired,
singleUserMode: PropTypes.bool,
2022-01-02 12:43:53 -08:00
};
state = {
account: '',
2020-03-27 13:59:38 -07:00
};
2022-01-02 12:43:53 -08:00
onAccountChange = e => {
this.setState({ account: e.target.value });
}
2020-03-27 13:59:38 -07:00
onClickClose = () => {
this.props.onClose('UNAUTHORIZED');
};
2022-01-02 12:43:53 -08:00
onClickProceed = e => {
e.preventDefault();
const { intl, ap_id, dispatch, onClose, onRemoteInteraction } = this.props;
const { account } = this.state;
onRemoteInteraction(ap_id, account)
.then(url => {
window.open(url, '_new', 'noopener,noreferrer');
onClose('UNAUTHORIZED');
})
.catch(error => {
if (error.message === 'Couldn\'t find user') {
dispatch(snackbar.error(intl.formatMessage(messages.userNotFoundError)));
}
});
}
2022-03-21 11:09:01 -07:00
onLogin = (e) => {
e.preventDefault();
this.props.history.push('/login');
2022-03-21 11:09:01 -07:00
this.onClickClose();
}
onRegister = (e) => {
e.preventDefault();
this.props.history.push('/');
2022-03-21 11:09:01 -07:00
this.onClickClose();
}
2022-01-02 12:43:53 -08:00
renderRemoteInteractions() {
const { intl, siteTitle, userName, action, singleUserMode } = this.props;
2022-01-02 12:43:53 -08:00
const { account } = this.state;
let header;
let button;
if (action === 'FOLLOW') {
header = <FormattedMessage id='remote_interaction.follow_title' defaultMessage='Follow {user} remotely' values={{ user: userName }} />;
button = <FormattedMessage id='remote_interaction.follow' defaultMessage='Proceed to follow' />;
} else if (action === 'REPLY') {
header = <FormattedMessage id='remote_interaction.reply_title' defaultMessage='Reply to a post remotely' />;
button = <FormattedMessage id='remote_interaction.reply' defaultMessage='Proceed to reply' />;
} else if (action === 'REBLOG') {
header = <FormattedMessage id='remote_interaction.reblog_title' defaultMessage='Reblog a post remotely' />;
button = <FormattedMessage id='remote_interaction.reblog' defaultMessage='Proceed to repost' />;
} else if (action === 'FAVOURITE') {
header = <FormattedMessage id='remote_interaction.favourite_title' defaultMessage='Like a post remotely' />;
button = <FormattedMessage id='remote_interaction.favourite' defaultMessage='Proceed to like' />;
} else if (action === 'POLL_VOTE') {
header = <FormattedMessage id='remote_interaction.poll_vote_title' defaultMessage='Vote in a poll remotely' />;
button = <FormattedMessage id='remote_interaction.poll_vote' defaultMessage='Proceed to vote' />;
}
return (
<Modal
title={header}
onClose={this.onClickClose}
confirmationAction={!singleUserMode && this.onLogin}
confirmationText={<FormattedMessage id='account.login' defaultMessage='Log in' />}
secondaryAction={this.onRegister}
secondaryText={<FormattedMessage id='account.register' defaultMessage='Sign up' />}
>
2022-01-02 12:43:53 -08:00
<div className='remote-interaction-modal__content'>
<form className='simple_form remote-interaction-modal__fields'>
<input
type='text'
placeholder={intl.formatMessage(messages.accountPlaceholder)}
name='remote_follow[acct]'
value={account}
autoCorrect='off'
autoCapitalize='off'
onChange={this.onAccountChange}
required
/>
<Button theme='primary' onClick={this.onClickProceed}>{button}</Button>
2022-01-02 12:43:53 -08:00
</form>
<div className='remote-interaction-modal__divider'>
<Text align='center'>
2022-01-02 12:43:53 -08:00
<FormattedMessage id='remote_interaction.divider' defaultMessage='or' />
</Text>
2022-01-02 12:43:53 -08:00
</div>
{!singleUserMode && (
<Text size='lg' weight='medium'>
<FormattedMessage id='unauthorized_modal.title' defaultMessage='Sign up for {site_title}' values={{ site_title: siteTitle }} />
</Text>
)}
2022-01-02 12:43:53 -08:00
</div>
</Modal>
2022-01-02 12:43:53 -08:00
);
}
render() {
2022-03-21 11:09:01 -07:00
const { features, siteTitle, action } = this.props;
2022-01-02 12:43:53 -08:00
if (action && features.remoteInteractionsAPI && features.federating) return this.renderRemoteInteractions();
2020-03-27 13:59:38 -07:00
return (
2022-03-21 11:09:01 -07:00
<Modal
title={<FormattedMessage id='unauthorized_modal.title' defaultMessage='Sign up for {site_title}' values={{ site_title: siteTitle }} />}
onClose={this.onClickClose}
confirmationAction={this.onLogin}
confirmationText={<FormattedMessage id='account.login' defaultMessage='Log in' />}
secondaryAction={this.onRegister}
secondaryText={<FormattedMessage id='account.register' defaultMessage='Sign up' />}
>
<Stack>
<Text>
<FormattedMessage id='unauthorized_modal.text' defaultMessage='You need to be logged in to do that.' />
</Text>
</Stack>
</Modal>
2020-03-27 13:59:38 -07:00
);
}
2020-04-14 11:44:40 -07:00
2020-03-27 13:59:38 -07:00
}
2022-01-02 12:43:53 -08:00
export default injectIntl(connect(mapStateToProps, mapDispatchToProps)(UnauthorizedModal));