2017-07-13 05:40:16 -04:00
// THIS FILE EXISTS FOR UPSTREAM COMPATIBILITY & SHOULDN'T BE USED !!
// SEE INSTEAD : glitch/components/status/container
2017-07-12 04:10:17 -04:00
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 { 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 ) ) ;