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' ;
2017-12-04 02:26:40 -05:00
import Status from 'flavours/glitch/components/status' ;
2019-07-12 10:01:33 -04:00
import { List as ImmutableList } from 'immutable' ;
import { makeGetStatus , regexFromFilters , toServerSideType } from 'flavours/glitch/selectors' ;
2016-10-24 11:11:02 -04:00
import {
replyCompose ,
2017-05-20 11:31:47 -04:00
mentionCompose ,
2018-04-10 15:38:02 -04:00
directCompose ,
2017-12-04 02:26:40 -05:00
} from 'flavours/glitch/actions/compose' ;
2016-10-24 11:11:02 -04:00
import {
reblog ,
favourite ,
2018-04-11 13:42:25 -04:00
bookmark ,
2016-10-24 11:11:02 -04:00
unreblog ,
2017-05-20 11:31:47 -04:00
unfavourite ,
2018-04-11 13:42:25 -04:00
unbookmark ,
2017-08-24 19:41:18 -04:00
pin ,
unpin ,
2017-12-04 02:26:40 -05:00
} from 'flavours/glitch/actions/interactions' ;
import { blockAccount } from 'flavours/glitch/actions/accounts' ;
import { muteStatus , unmuteStatus , deleteStatus } from 'flavours/glitch/actions/statuses' ;
import { initMuteModal } from 'flavours/glitch/actions/mutes' ;
import { initReport } from 'flavours/glitch/actions/reports' ;
import { openModal } from 'flavours/glitch/actions/modal' ;
2018-11-27 12:25:51 -05:00
import { changeLocalSetting } from 'flavours/glitch/actions/local_settings' ;
2017-04-22 22:39:50 -04:00
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
2017-12-09 11:26:22 -05:00
import { boostModal , favouriteModal , deleteModal } from 'flavours/glitch/util/initial_state' ;
2019-02-10 15:28:29 -05:00
import { showAlertForError } from '../actions/alerts' ;
2019-07-12 10:01:33 -04:00
import AccountContainer from 'flavours/glitch/containers/account_container' ;
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-15 15:29:04 -04:00
redraftConfirm : { id : 'confirmations.redraft.confirm' , defaultMessage : 'Delete & redraft' } ,
redraftMessage : { id : 'confirmations.redraft.message' , defaultMessage : 'Are you sure you want to delete this status and re-draft it? You will lose all replies, boosts and favourites to it.' } ,
2017-04-22 22:39:50 -04:00
blockConfirm : { id : 'confirmations.block.confirm' , defaultMessage : 'Block' } ,
2018-10-05 11:46:35 -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' } ,
2019-07-12 10:01:33 -04:00
unfilterConfirm : { id : 'confirmations.unfilter.confirm' , defaultMessage : 'Show' } ,
2017-04-22 22:39:50 -04:00
} ) ;
2016-10-24 11:11:02 -04:00
2019-07-12 10:01:33 -04:00
class SpoilerMachin extends React . PureComponent {
state = {
hidden : true ,
}
handleSpoilerClick = ( ) => {
this . setState ( { hidden : ! this . state . hidden } ) ;
}
render ( ) {
const { spoilerText , children } = this . props ;
const { hidden } = this . state ;
const toggleText = hidden ?
< FormattedMessage
id = 'status.show_more'
defaultMessage = 'Show more'
key = '0'
/ > :
< FormattedMessage
id = 'status.show_less'
defaultMessage = 'Show less'
key = '0'
/ > ;
return ( [
< p className = 'spoiler__text' >
{ spoilerText }
{ ' ' }
< button tabIndex = '0' className = 'status__content__spoiler-link' onClick = { this . handleSpoilerClick } >
{ toggleText }
< / b u t t o n >
< / p > ,
< div className = { ` status__content__spoiler ${ ! hidden ? 'status__content__spoiler--visible' : '' } ` } >
{ children }
< / d i v >
] ) ;
}
}
2017-02-22 10:30:09 -05:00
const makeMapStateToProps = ( ) => {
const getStatus = makeGetStatus ( ) ;
2016-10-24 11:11:02 -04:00
2017-11-17 22:11:18 -05:00
const mapStateToProps = ( state , props ) => {
2018-07-08 14:04:53 -04:00
let status = getStatus ( state , props ) ;
2017-11-17 22:11:18 -05:00
let reblogStatus = status ? status . get ( 'reblog' , null ) : null ;
let account = undefined ;
let prepend = undefined ;
2018-03-16 15:29:42 -04:00
if ( props . featured ) {
account = status . get ( 'account' ) ;
prepend = 'featured' ;
} else if ( reblogStatus !== null && typeof reblogStatus === 'object' ) {
2017-11-17 22:11:18 -05:00
account = status . get ( 'account' ) ;
status = reblogStatus ;
prepend = 'reblogged_by' ;
}
return {
2017-11-27 16:17:12 -05:00
containerId : props . containerId || props . id , // Should match reblogStatus's id for reblogs
2017-11-17 22:11:18 -05:00
status : status ,
account : account || props . account ,
settings : state . get ( 'local_settings' ) ,
prepend : prepend || props . prepend ,
} ;
} ;
2016-10-24 11:11:02 -04:00
return mapStateToProps ;
} ;
2019-07-12 10:01:33 -04:00
const mapDispatchToProps = ( dispatch , { intl , contextType } ) => ( {
2016-10-24 11:11:02 -04:00
2016-11-21 04:52:11 -05:00
onReply ( status , router ) {
2018-10-05 11:46:35 -04:00
dispatch ( ( _ , getState ) => {
let state = getState ( ) ;
2018-11-27 12:25:51 -05:00
if ( state . getIn ( [ 'local_settings' , 'confirm_before_clearing_draft' ] ) && state . getIn ( [ 'compose' , 'text' ] ) . trim ( ) . length !== 0 ) {
2018-10-05 11:46:35 -04:00
dispatch ( openModal ( 'CONFIRM' , {
message : intl . formatMessage ( messages . replyMessage ) ,
confirm : intl . formatMessage ( messages . replyConfirm ) ,
2018-11-27 12:25:51 -05:00
onDoNotAsk : ( ) => dispatch ( changeLocalSetting ( [ 'confirm_before_clearing_draft' ] , false ) ) ,
2018-10-05 11:46:35 -04:00
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-06-07 12:38:07 -04:00
dispatch ( ( _ , getState ) => {
let state = getState ( ) ;
if ( state . getIn ( [ 'local_settings' , 'confirm_boost_missing_media_description' ] ) && status . get ( 'media_attachments' ) . some ( item => ! item . get ( 'description' ) ) && ! status . get ( 'reblogged' ) ) {
dispatch ( openModal ( 'BOOST' , { status , onReblog : this . handleModalReblog , missingMediaDescription : true } ) ) ;
} else if ( e . shiftKey || ! boostModal ) {
this . onModalReblog ( status ) ;
} else {
dispatch ( openModal ( 'BOOST' , { status , onReblog : this . onModalReblog } ) ) ;
}
} ) ;
2018-04-11 13:42:25 -04:00
} ,
onBookmark ( status ) {
if ( status . get ( 'bookmarked' ) ) {
dispatch ( unbookmark ( status ) ) ;
} else {
dispatch ( bookmark ( status ) ) ;
}
2016-10-24 11:11:02 -04:00
} ,
2017-12-09 11:26:22 -05:00
onModalFavourite ( status ) {
dispatch ( favourite ( status ) ) ;
} ,
onFavourite ( status , e ) {
2016-10-24 11:11:02 -04:00
if ( status . get ( 'favourited' ) ) {
dispatch ( unfavourite ( status ) ) ;
} else {
2017-12-09 11:26:22 -05:00
if ( e . shiftKey || ! favouriteModal ) {
this . onModalFavourite ( status ) ;
} else {
dispatch ( openModal ( 'FAVOURITE' , { status , onFavourite : this . onModalFavourite } ) ) ;
}
2016-10-24 11:11:02 -04:00
}
} ,
2017-12-09 13:41:24 -05:00
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 ) {
2019-02-10 15:28:29 -05:00
dispatch ( openModal ( 'EMBED' , {
url : status . get ( 'url' ) ,
onError : error => dispatch ( showAlertForError ( error ) ) ,
} ) ) ;
2017-09-01 15:30:13 -04:00
} ,
2018-08-31 10:41:58 -04:00
onDelete ( status , history , withRedraft = false ) {
2017-10-29 11:10:15 -04:00
if ( ! deleteModal ) {
2018-08-31 10:41:58 -04:00
dispatch ( deleteStatus ( status . get ( 'id' ) , history , withRedraft ) ) ;
2017-05-29 11:56:13 -04:00
} else {
dispatch ( openModal ( 'CONFIRM' , {
2018-06-15 15:29:04 -04:00
message : intl . formatMessage ( withRedraft ? messages . redraftMessage : messages . deleteMessage ) ,
confirm : intl . formatMessage ( withRedraft ? messages . redraftConfirm : messages . deleteConfirm ) ,
2018-08-31 10:41:58 -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-10 15:38:02 -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
} ,
2019-07-12 10:01:33 -04:00
onUnfilter ( status , onConfirm ) {
dispatch ( ( _ , getState ) => {
let state = getState ( ) ;
const serverSideType = toServerSideType ( contextType ) ;
const enabledFilters = state . get ( 'filters' , ImmutableList ( ) ) . filter ( filter => filter . get ( 'context' ) . includes ( serverSideType ) && ( filter . get ( 'expires_at' ) === null || Date . parse ( filter . get ( 'expires_at' ) ) > ( new Date ( ) ) ) ) . toArray ( ) ;
const searchIndex = status . get ( 'search_index' ) ;
const matchingFilters = enabledFilters . filter ( filter => regexFromFilters ( [ filter ] ) . test ( searchIndex ) ) ;
dispatch ( openModal ( 'CONFIRM' , {
message : [
< FormattedMessage id = 'confirmations.unfilter' defaultMessage = 'Information about this filtered toot' / > ,
< div className = 'filtered-status-info' >
< SpoilerMachin spoilerText = 'Author' >
< AccountContainer id = { status . getIn ( [ 'account' , 'id' ] ) } / >
< / S p o i l e r M a c h i n >
< SpoilerMachin spoilerText = 'Matching filters' >
< ul >
{ matchingFilters . map ( filter => < li > { filter . get ( 'phrase' ) } < / l i > ) }
< / u l >
< / S p o i l e r M a c h i n >
< / d i v >
] ,
confirm : intl . formatMessage ( messages . unfilterConfirm ) ,
onConfirm : onConfirm ,
} ) ) ;
} ) ;
} ,
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' ) ) ) ;
}
} ,
2016-10-24 11:11:02 -04:00
} ) ;
2017-04-22 22:39:50 -04:00
export default injectIntl ( connect ( makeMapStateToProps , mapDispatchToProps ) ( Status ) ) ;