* feat: Cache status height to avoid expensive renders * feat: Escape content and emojify in reducers * fix(css): Remove backface-visibility: hidden from .scrollable * fix(statuses): Avoid creating DOMParses inside a loop
		
			
				
	
	
		
			133 lines
		
	
	
	
		
			3.9 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			133 lines
		
	
	
	
		
			3.9 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import React from 'react';
 | |
| import { connect } from 'react-redux';
 | |
| import Status from '../components/status';
 | |
| import { makeGetStatus } from '../selectors';
 | |
| import {
 | |
|   replyCompose,
 | |
|   mentionCompose,
 | |
| } from '../actions/compose';
 | |
| import {
 | |
|   reblog,
 | |
|   favourite,
 | |
|   unreblog,
 | |
|   unfavourite,
 | |
| } from '../actions/interactions';
 | |
| import {
 | |
|   blockAccount,
 | |
|   muteAccount,
 | |
| } from '../actions/accounts';
 | |
| import { muteStatus, unmuteStatus, deleteStatus, setStatusHeight } from '../actions/statuses';
 | |
| import { initReport } from '../actions/reports';
 | |
| import { openModal } from '../actions/modal';
 | |
| import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
 | |
| 
 | |
| const messages = defineMessages({
 | |
|   deleteConfirm: { id: 'confirmations.delete.confirm', defaultMessage: 'Delete' },
 | |
|   deleteMessage: { id: 'confirmations.delete.message', defaultMessage: 'Are you sure you want to delete this status?' },
 | |
|   blockConfirm: { id: 'confirmations.block.confirm', defaultMessage: 'Block' },
 | |
|   muteConfirm: { id: 'confirmations.mute.confirm', defaultMessage: 'Mute' },
 | |
| });
 | |
| 
 | |
| const makeMapStateToProps = () => {
 | |
|   const getStatus = makeGetStatus();
 | |
| 
 | |
|   const mapStateToProps = (state, props) => ({
 | |
|     status: getStatus(state, props.id),
 | |
|     me: state.getIn(['meta', 'me']),
 | |
|     boostModal: state.getIn(['meta', 'boost_modal']),
 | |
|     deleteModal: state.getIn(['meta', 'delete_modal']),
 | |
|     autoPlayGif: state.getIn(['meta', 'auto_play_gif']),
 | |
|   });
 | |
| 
 | |
|   return mapStateToProps;
 | |
| };
 | |
| 
 | |
| const mapDispatchToProps = (dispatch, { intl }) => ({
 | |
| 
 | |
|   onReply (status, router) {
 | |
|     dispatch(replyCompose(status, router));
 | |
|   },
 | |
| 
 | |
|   onModalReblog (status) {
 | |
|     dispatch(reblog(status));
 | |
|   },
 | |
| 
 | |
|   onReblog (status, e) {
 | |
|     if (status.get('reblogged')) {
 | |
|       dispatch(unreblog(status));
 | |
|     } else {
 | |
|       if (e.shiftKey || !this.boostModal) {
 | |
|         this.onModalReblog(status);
 | |
|       } else {
 | |
|         dispatch(openModal('BOOST', { status, onReblog: this.onModalReblog }));
 | |
|       }
 | |
|     }
 | |
|   },
 | |
| 
 | |
|   onFavourite (status) {
 | |
|     if (status.get('favourited')) {
 | |
|       dispatch(unfavourite(status));
 | |
|     } else {
 | |
|       dispatch(favourite(status));
 | |
|     }
 | |
|   },
 | |
| 
 | |
|   onDelete (status) {
 | |
|     if (!this.deleteModal) {
 | |
|       dispatch(deleteStatus(status.get('id')));
 | |
|     } else {
 | |
|       dispatch(openModal('CONFIRM', {
 | |
|         message: intl.formatMessage(messages.deleteMessage),
 | |
|         confirm: intl.formatMessage(messages.deleteConfirm),
 | |
|         onConfirm: () => dispatch(deleteStatus(status.get('id'))),
 | |
|       }));
 | |
|     }
 | |
|   },
 | |
| 
 | |
|   onMention (account, router) {
 | |
|     dispatch(mentionCompose(account, router));
 | |
|   },
 | |
| 
 | |
|   onOpenMedia (media, index) {
 | |
|     dispatch(openModal('MEDIA', { media, index }));
 | |
|   },
 | |
| 
 | |
|   onOpenVideo (media, time) {
 | |
|     dispatch(openModal('VIDEO', { media, time }));
 | |
|   },
 | |
| 
 | |
|   onBlock (account) {
 | |
|     dispatch(openModal('CONFIRM', {
 | |
|       message: <FormattedMessage id='confirmations.block.message' defaultMessage='Are you sure you want to block {name}?' values={{ name: <strong>@{account.get('acct')}</strong> }} />,
 | |
|       confirm: intl.formatMessage(messages.blockConfirm),
 | |
|       onConfirm: () => dispatch(blockAccount(account.get('id'))),
 | |
|     }));
 | |
|   },
 | |
| 
 | |
|   onReport (status) {
 | |
|     dispatch(initReport(status.get('account'), status));
 | |
|   },
 | |
| 
 | |
|   onMute (account) {
 | |
|     dispatch(openModal('CONFIRM', {
 | |
|       message: <FormattedMessage id='confirmations.mute.message' defaultMessage='Are you sure you want to mute {name}?' values={{ name: <strong>@{account.get('acct')}</strong> }} />,
 | |
|       confirm: intl.formatMessage(messages.muteConfirm),
 | |
|       onConfirm: () => dispatch(muteAccount(account.get('id'))),
 | |
|     }));
 | |
|   },
 | |
| 
 | |
|   onMuteConversation (status) {
 | |
|     if (status.get('muted')) {
 | |
|       dispatch(unmuteStatus(status.get('id')));
 | |
|     } else {
 | |
|       dispatch(muteStatus(status.get('id')));
 | |
|     }
 | |
|   },
 | |
| 
 | |
|   onHeightChange (status, height) {
 | |
|     dispatch(setStatusHeight(status.get('id'), height));
 | |
|   },
 | |
| 
 | |
| });
 | |
| 
 | |
| export default injectIntl(connect(makeMapStateToProps, mapDispatchToProps)(Status));
 |