2017-05-02 20:04:16 -04:00
import React from 'react' ;
2016-11-23 16:57:57 -05:00
import { connect } from 'react-redux' ;
import Status from '../components/status' ;
2016-10-24 11:11:02 -04:00
import { makeGetStatus } from '../selectors' ;
import {
replyCompose ,
2017-05-20 11:31:47 -04:00
mentionCompose ,
2018-04-09 11:09:11 -04:00
directCompose ,
2016-11-23 16:57:57 -05:00
} from '../actions/compose' ;
2016-10-24 11:11:02 -04:00
import {
reblog ,
favourite ,
unreblog ,
2017-05-20 11:31:47 -04:00
unfavourite ,
2017-08-24 19:41:18 -04:00
pin ,
unpin ,
2016-11-23 16:57:57 -05:00
} from '../actions/interactions' ;
2017-11-14 21:56:41 -05:00
import { blockAccount } from '../actions/accounts' ;
2018-03-11 04:52:59 -04:00
import {
muteStatus ,
unmuteStatus ,
deleteStatus ,
hideStatus ,
revealStatus ,
} from '../actions/statuses' ;
2017-11-14 21:56:41 -05:00
import { initMuteModal } from '../actions/mutes' ;
2017-02-14 14:59:26 -05:00
import { initReport } from '../actions/reports' ;
2017-04-01 16:11:28 -04:00
import { openModal } from '../actions/modal' ;
2017-04-22 22:39:50 -04:00
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
2017-10-29 11:10:15 -04:00
import { boostModal , deleteModal } from '../initial_state' ;
2018-04-02 08:51:02 -04:00
import { showAlertForError } from '../actions/alerts' ;
2017-04-22 22:39:50 -04:00
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?' } ,
2018-06-04 18:17:38 -04:00
redraftConfirm : { id : 'confirmations.redraft.confirm' , defaultMessage : 'Delete & redraft' } ,
2018-08-25 07:27:56 -04:00
redraftMessage : { id : 'confirmations.redraft.message' , defaultMessage : 'Are you sure you want to delete this status and re-draft it? Favourites and boosts will be lost, and replies to the original post will be orphaned.' } ,
2017-04-22 22:39:50 -04:00
blockConfirm : { id : 'confirmations.block.confirm' , defaultMessage : 'Block' } ,
2018-10-05 12:44:44 -04:00
replyConfirm : { id : 'confirmations.reply.confirm' , defaultMessage : 'Reply' } ,
replyMessage : { id : 'confirmations.reply.message' , defaultMessage : 'Replying now will overwrite the message you are currently composing. Are you sure you want to proceed?' } ,
2019-03-26 12:34:02 -04:00
blockAndReport : { id : 'confirmations.block.block_and_report' , defaultMessage : 'Block & Report' } ,
2017-04-22 22:39:50 -04:00
} ) ;
2016-10-24 11:11:02 -04:00
2017-02-22 10:30:09 -05:00
const makeMapStateToProps = ( ) => {
const getStatus = makeGetStatus ( ) ;
2016-10-24 11:11:02 -04:00
2017-02-22 10:30:09 -05:00
const mapStateToProps = ( state , props ) => ( {
2018-06-29 09:34:36 -04:00
status : getStatus ( state , props ) ,
2016-10-24 11:11:02 -04:00
} ) ;
return mapStateToProps ;
} ;
2017-04-22 22:39:50 -04:00
const mapDispatchToProps = ( dispatch , { intl } ) => ( {
2016-10-24 11:11:02 -04:00
2016-11-21 04:52:11 -05:00
onReply ( status , router ) {
2018-10-05 12:44:44 -04:00
dispatch ( ( _ , getState ) => {
let state = getState ( ) ;
if ( state . getIn ( [ 'compose' , 'text' ] ) . trim ( ) . length !== 0 ) {
dispatch ( openModal ( 'CONFIRM' , {
message : intl . formatMessage ( messages . replyMessage ) ,
confirm : intl . formatMessage ( messages . replyConfirm ) ,
onConfirm : ( ) => dispatch ( replyCompose ( status , router ) ) ,
} ) ) ;
} else {
dispatch ( replyCompose ( status , router ) ) ;
}
} ) ;
2016-10-24 11:11:02 -04:00
} ,
2017-04-10 22:28:52 -04:00
onModalReblog ( status ) {
2019-05-09 16:39:27 -04:00
if ( status . get ( 'reblogged' ) ) {
dispatch ( unreblog ( status ) ) ;
} else {
dispatch ( reblog ( status ) ) ;
}
2017-04-10 22:28:52 -04:00
} ,
2017-04-11 08:34:14 -04:00
onReblog ( status , e ) {
2019-07-21 12:11:09 -04:00
if ( ( e && e . shiftKey ) || ! boostModal ) {
2019-05-09 16:39:27 -04:00
this . onModalReblog ( status ) ;
2016-10-24 11:11:02 -04:00
} else {
2019-05-09 16:39:27 -04:00
dispatch ( openModal ( 'BOOST' , { status , onReblog : this . onModalReblog } ) ) ;
2016-10-24 11:11:02 -04:00
}
} ,
onFavourite ( status ) {
if ( status . get ( 'favourited' ) ) {
dispatch ( unfavourite ( status ) ) ;
} else {
dispatch ( favourite ( status ) ) ;
}
} ,
2017-08-24 19:41:18 -04:00
onPin ( status ) {
if ( status . get ( 'pinned' ) ) {
dispatch ( unpin ( status ) ) ;
} else {
dispatch ( pin ( status ) ) ;
}
} ,
2017-09-01 15:30:13 -04:00
onEmbed ( status ) {
2018-04-02 08:51:02 -04:00
dispatch ( openModal ( 'EMBED' , {
url : status . get ( 'url' ) ,
onError : error => dispatch ( showAlertForError ( error ) ) ,
} ) ) ;
2017-09-01 15:30:13 -04:00
} ,
2018-08-18 21:17:01 -04:00
onDelete ( status , history , withRedraft = false ) {
2017-10-29 11:10:15 -04:00
if ( ! deleteModal ) {
2018-08-18 21:17:01 -04:00
dispatch ( deleteStatus ( status . get ( 'id' ) , history , withRedraft ) ) ;
2017-05-29 11:56:13 -04:00
} else {
dispatch ( openModal ( 'CONFIRM' , {
2018-06-04 18:17:38 -04:00
message : intl . formatMessage ( withRedraft ? messages . redraftMessage : messages . deleteMessage ) ,
confirm : intl . formatMessage ( withRedraft ? messages . redraftConfirm : messages . deleteConfirm ) ,
2018-08-18 21:17:01 -04:00
onConfirm : ( ) => dispatch ( deleteStatus ( status . get ( 'id' ) , history , withRedraft ) ) ,
2017-05-29 11:56:13 -04:00
} ) ) ;
}
2016-10-24 11:11:02 -04:00
} ,
2018-04-09 11:09:11 -04:00
onDirect ( account , router ) {
dispatch ( directCompose ( account , router ) ) ;
} ,
2017-01-08 05:04:01 -05:00
onMention ( account , router ) {
2017-01-30 15:40:55 -05:00
dispatch ( mentionCompose ( account , router ) ) ;
2016-10-24 12:07:40 -04:00
} ,
2017-02-04 20:48:11 -05:00
onOpenMedia ( media , index ) {
2017-04-01 16:11:28 -04:00
dispatch ( openModal ( 'MEDIA' , { media , index } ) ) ;
2016-11-23 16:57:57 -05:00
} ,
2017-04-13 11:01:09 -04:00
onOpenVideo ( media , time ) {
dispatch ( openModal ( 'VIDEO' , { media , time } ) ) ;
2017-04-13 09:04:18 -04:00
} ,
2019-03-26 12:34:02 -04:00
onBlock ( status ) {
const account = status . get ( 'account' ) ;
2017-04-22 22:39:50 -04:00
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 ) ,
2017-05-20 11:31:47 -04:00
onConfirm : ( ) => dispatch ( blockAccount ( account . get ( 'id' ) ) ) ,
2019-03-26 12:34:02 -04:00
secondary : intl . formatMessage ( messages . blockAndReport ) ,
onSecondary : ( ) => {
dispatch ( blockAccount ( account . get ( 'id' ) ) ) ;
dispatch ( initReport ( account , status ) ) ;
} ,
2017-04-22 22:39:50 -04:00
} ) ) ;
2017-02-14 14:59:26 -05:00
} ,
onReport ( status ) {
dispatch ( initReport ( status . get ( 'account' ) , status ) ) ;
2017-02-05 20:51:56 -05:00
} ,
onMute ( account ) {
2017-11-14 21:56:41 -05:00
dispatch ( initMuteModal ( account ) ) ;
2017-02-05 20:51:56 -05:00
} ,
2016-10-24 11:11:02 -04:00
Feature conversations muting (#3017)
* Add <ostatus:conversation /> tag to Atom input/output
Only uses ref attribute (not href) because href would be
the alternate link that's always included also.
Creates new conversation for every non-reply status. Carries
over conversation for every reply. Keeps remote URIs verbatim,
generates local URIs on the fly like the rest of them.
* Conversation muting - prevents notifications that reference a conversation
(including replies, favourites, reblogs) from being created. API endpoints
/api/v1/statuses/:id/mute and /api/v1/statuses/:id/unmute
Currently no way to tell when a status/conversation is muted, so the web UI
only has a "disable notifications" button, doesn't work as a toggle
* Display "Dismiss notifications" on all statuses in notifications column, not just own
* Add "muted" as a boolean attribute on statuses JSON
For now always false on contained reblogs, since it's only relevant for
statuses returned from the notifications endpoint, which are not nested
Remove "Disable notifications" from detailed status view, since it's
only relevant in the notifications column
* Up max class length
* Remove pending test for conversation mute
* Add tests, clean up
* Rename to "mute conversation" and "unmute conversation"
* Raise validation error when trying to mute/unmute status without conversation
2017-05-14 21:04:13 -04:00
onMuteConversation ( status ) {
if ( status . get ( 'muted' ) ) {
dispatch ( unmuteStatus ( status . get ( 'id' ) ) ) ;
} else {
dispatch ( muteStatus ( status . get ( 'id' ) ) ) ;
}
} ,
2018-03-11 04:52:59 -04:00
onToggleHidden ( status ) {
if ( status . get ( 'hidden' ) ) {
dispatch ( revealStatus ( status . get ( 'id' ) ) ) ;
} else {
dispatch ( hideStatus ( status . get ( 'id' ) ) ) ;
}
} ,
2016-10-24 11:11:02 -04:00
} ) ;
2017-04-22 22:39:50 -04:00
export default injectIntl ( connect ( makeMapStateToProps , mapDispatchToProps ) ( Status ) ) ;