mastodon/app/javascript/mastodon/features/compose/components/reply_indicator.jsx

76 lines
2.4 KiB
React
Raw Normal View History

import PropTypes from 'prop-types';
2016-11-18 15:36:16 +01:00
import { defineMessages, injectIntl } from 'react-intl';
import ImmutablePropTypes from 'react-immutable-proptypes';
import ImmutablePureComponent from 'react-immutable-pure-component';
import CloseIcon from '@material-symbols/svg-600/outlined/close.svg?react';
import AttachmentList from 'mastodon/components/attachment_list';
import { WithOptionalRouterPropTypes, withOptionalRouter } from 'mastodon/utils/react_router';
2016-11-18 15:36:16 +01:00
import { Avatar } from '../../../components/avatar';
import { DisplayName } from '../../../components/display_name';
import { IconButton } from '../../../components/icon_button';
2016-11-18 15:36:16 +01:00
const messages = defineMessages({
cancel: { id: 'reply_indicator.cancel', defaultMessage: 'Cancel' },
2016-11-18 15:36:16 +01:00
});
2016-08-31 22:58:10 +02:00
2018-09-14 17:59:48 +02:00
class ReplyIndicator extends ImmutablePureComponent {
2016-08-31 22:58:10 +02:00
static propTypes = {
status: ImmutablePropTypes.map,
onCancel: PropTypes.func.isRequired,
intl: PropTypes.object.isRequired,
...WithOptionalRouterPropTypes,
};
2016-08-31 22:58:10 +02:00
handleClick = () => {
2016-08-31 22:58:10 +02:00
this.props.onCancel();
2023-01-30 01:45:35 +01:00
};
2016-08-31 22:58:10 +02:00
handleAccountClick = (e) => {
if (e.button === 0 && !(e.ctrlKey || e.metaKey)) {
e.preventDefault();
this.props.history?.push(`/@${this.props.status.getIn(['account', 'acct'])}`);
}
2023-01-30 01:45:35 +01:00
};
2016-08-31 22:58:10 +02:00
render () {
2017-02-22 15:43:07 +01:00
const { status, intl } = this.props;
if (!status) {
return null;
}
const content = { __html: status.get('contentHtml') };
2016-08-31 22:58:10 +02:00
return (
<div className='reply-indicator'>
<div className='reply-indicator__header'>
<div className='reply-indicator__cancel'><IconButton title={intl.formatMessage(messages.cancel)} icon='times' iconComponent={CloseIcon} onClick={this.handleClick} inverted /></div>
2016-08-31 22:58:10 +02:00
<a href={`/@${status.getIn(['account', 'acct'])}`} onClick={this.handleAccountClick} className='reply-indicator__display-name'>
<div className='reply-indicator__display-avatar'><Avatar account={status.get('account')} size={24} /></div>
2017-02-22 15:43:07 +01:00
<DisplayName account={status.get('account')} />
2016-08-31 22:58:10 +02:00
</a>
</div>
<div className='reply-indicator__content translate' dangerouslySetInnerHTML={content} />
{status.get('media_attachments').size > 0 && (
<AttachmentList
compact
media={status.get('media_attachments')}
/>
)}
2016-08-31 22:58:10 +02:00
</div>
);
}
}
export default withOptionalRouter(injectIntl(ReplyIndicator));