You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
131 lines
3.8 KiB
131 lines
3.8 KiB
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 } from '../actions/statuses'; |
|
import { initReport } from '../actions/reports'; |
|
import { openModal } from '../actions/modal'; |
|
import { createSelector } from 'reselect'; |
|
import { isMobile } from '../is_mobile'; |
|
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'))); |
|
} |
|
}, |
|
|
|
}); |
|
|
|
export default injectIntl(connect(makeMapStateToProps, mapDispatchToProps)(Status));
|
|
|