2016-11-23 21:57:57 +00:00
import { connect } from 'react-redux' ;
2017-12-04 07:26:40 +00:00
import Status from 'flavours/glitch/components/status' ;
2019-07-12 14:01:33 +00:00
import { List as ImmutableList } from 'immutable' ;
2022-06-28 07:42:13 +00:00
import { makeGetStatus } from 'flavours/glitch/selectors' ;
2016-10-24 15:11:02 +00:00
import {
replyCompose ,
2017-05-20 15:31:47 +00:00
mentionCompose ,
2018-04-10 19:38:02 +00:00
directCompose ,
2017-12-04 07:26:40 +00:00
} from 'flavours/glitch/actions/compose' ;
2016-10-24 15:11:02 +00:00
import {
reblog ,
favourite ,
2018-04-11 17:42:25 +00:00
bookmark ,
2016-10-24 15:11:02 +00:00
unreblog ,
2017-05-20 15:31:47 +00:00
unfavourite ,
2018-04-11 17:42:25 +00:00
unbookmark ,
2017-08-24 23:41:18 +00:00
pin ,
unpin ,
2017-12-04 07:26:40 +00:00
} from 'flavours/glitch/actions/interactions' ;
2022-07-24 18:01:30 +00:00
import {
muteStatus ,
unmuteStatus ,
deleteStatus ,
hideStatus ,
revealStatus ,
editStatus
} from 'flavours/glitch/actions/statuses' ;
2022-08-25 02:27:47 +00:00
import {
initAddFilter ,
} from 'flavours/glitch/actions/filters' ;
2017-12-04 07:26:40 +00:00
import { initMuteModal } from 'flavours/glitch/actions/mutes' ;
2019-09-29 19:46:05 +00:00
import { initBlockModal } from 'flavours/glitch/actions/blocks' ;
2017-12-04 07:26:40 +00:00
import { initReport } from 'flavours/glitch/actions/reports' ;
2021-02-10 23:53:12 +00:00
import { initBoostModal } from 'flavours/glitch/actions/boosts' ;
2017-12-04 07:26:40 +00:00
import { openModal } from 'flavours/glitch/actions/modal' ;
2020-09-28 11:29:43 +00:00
import { deployPictureInPicture } from 'flavours/glitch/actions/picture_in_picture' ;
2018-11-27 17:25:51 +00:00
import { changeLocalSetting } from 'flavours/glitch/actions/local_settings' ;
2017-04-23 02:39:50 +00:00
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
2022-10-11 08:17:04 +00:00
import { boostModal , favouriteModal , deleteModal } from 'flavours/glitch/initial_state' ;
2022-10-11 08:41:15 +00:00
import { filterEditLink } from 'flavours/glitch/utils/backend_links' ;
2019-02-10 20:28:29 +00:00
import { showAlertForError } from '../actions/alerts' ;
2019-07-12 14:01:33 +00:00
import AccountContainer from 'flavours/glitch/containers/account_container' ;
2019-07-14 19:43:49 +00:00
import Spoilers from '../components/spoilers' ;
2019-07-14 21:32:42 +00:00
import Icon from 'flavours/glitch/components/icon' ;
2017-04-23 02:39:50 +00: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 19:29:04 +00: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.' } ,
2018-10-05 15:46:35 +00: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-07-12 14:01:33 +00:00
unfilterConfirm : { id : 'confirmations.unfilter.confirm' , defaultMessage : 'Show' } ,
2019-07-14 19:59:13 +00:00
author : { id : 'confirmations.unfilter.author' , defaultMessage : 'Author' } ,
matchingFilters : { id : 'confirmations.unfilter.filters' , defaultMessage : 'Matching {count, plural, one {filter} other {filters}}' } ,
2019-07-14 21:32:42 +00:00
editFilter : { id : 'confirmations.unfilter.edit_filter' , defaultMessage : 'Edit filter' } ,
2017-04-23 02:39:50 +00:00
} ) ;
2016-10-24 15:11:02 +00:00
2017-02-22 15:30:09 +00:00
const makeMapStateToProps = ( ) => {
const getStatus = makeGetStatus ( ) ;
2016-10-24 15:11:02 +00:00
2017-11-18 03:11:18 +00:00
const mapStateToProps = ( state , props ) => {
2018-07-08 18:04:53 +00:00
let status = getStatus ( state , props ) ;
2017-11-18 03:11:18 +00:00
let reblogStatus = status ? status . get ( 'reblog' , null ) : null ;
let account = undefined ;
let prepend = undefined ;
2020-11-01 15:25:02 +00:00
if ( props . featured && status ) {
2018-03-16 19:29:42 +00:00
account = status . get ( 'account' ) ;
prepend = 'featured' ;
} else if ( reblogStatus !== null && typeof reblogStatus === 'object' ) {
2017-11-18 03:11:18 +00:00
account = status . get ( 'account' ) ;
status = reblogStatus ;
prepend = 'reblogged_by' ;
}
return {
2020-11-16 04:16:39 +00:00
containerId : props . containerId || props . id , // Should match reblogStatus's id for reblogs
status : status ,
account : account || props . account ,
settings : state . get ( 'local_settings' ) ,
prepend : prepend || props . prepend ,
pictureInPicture : {
inUse : state . getIn ( [ 'meta' , 'layout' ] ) !== 'mobile' && state . get ( 'picture_in_picture' ) . statusId === props . id ,
available : state . getIn ( [ 'meta' , 'layout' ] ) !== 'mobile' ,
} ,
2017-11-18 03:11:18 +00:00
} ;
} ;
2016-10-24 15:11:02 +00:00
return mapStateToProps ;
} ;
2019-07-12 14:01:33 +00:00
const mapDispatchToProps = ( dispatch , { intl , contextType } ) => ( {
2016-10-24 15:11:02 +00:00
2016-11-21 09:52:11 +00:00
onReply ( status , router ) {
2018-10-05 15:46:35 +00:00
dispatch ( ( _ , getState ) => {
let state = getState ( ) ;
2019-09-21 18:01:16 +00:00
2018-11-27 17:25:51 +00:00
if ( state . getIn ( [ 'local_settings' , 'confirm_before_clearing_draft' ] ) && state . getIn ( [ 'compose' , 'text' ] ) . trim ( ) . length !== 0 ) {
2018-10-05 15:46:35 +00:00
dispatch ( openModal ( 'CONFIRM' , {
message : intl . formatMessage ( messages . replyMessage ) ,
confirm : intl . formatMessage ( messages . replyConfirm ) ,
2018-11-27 17:25:51 +00:00
onDoNotAsk : ( ) => dispatch ( changeLocalSetting ( [ 'confirm_before_clearing_draft' ] , false ) ) ,
2018-10-05 15:46:35 +00:00
onConfirm : ( ) => dispatch ( replyCompose ( status , router ) ) ,
} ) ) ;
} else {
dispatch ( replyCompose ( status , router ) ) ;
}
} ) ;
2016-10-24 15:11:02 +00:00
} ,
2021-02-10 23:53:12 +00:00
onModalReblog ( status , privacy ) {
2019-05-09 20:39:27 +00:00
if ( status . get ( 'reblogged' ) ) {
dispatch ( unreblog ( status ) ) ;
} else {
2021-02-10 23:53:12 +00:00
dispatch ( reblog ( status , privacy ) ) ;
2019-05-09 20:39:27 +00:00
}
2017-04-11 02:28:52 +00:00
} ,
2017-04-11 12:34:14 +00:00
onReblog ( status , e ) {
2019-06-07 16:38:07 +00: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' ) ) {
2021-02-10 23:53:12 +00:00
dispatch ( initBoostModal ( { status , onReblog : this . onModalReblog , missingMediaDescription : true } ) ) ;
2019-06-07 16:38:07 +00:00
} else if ( e . shiftKey || ! boostModal ) {
this . onModalReblog ( status ) ;
} else {
2021-02-10 23:53:12 +00:00
dispatch ( initBoostModal ( { status , onReblog : this . onModalReblog } ) ) ;
2019-06-07 16:38:07 +00:00
}
} ) ;
2018-04-11 17:42:25 +00:00
} ,
onBookmark ( status ) {
if ( status . get ( 'bookmarked' ) ) {
dispatch ( unbookmark ( status ) ) ;
} else {
dispatch ( bookmark ( status ) ) ;
}
2016-10-24 15:11:02 +00:00
} ,
2017-12-09 16:26:22 +00:00
onModalFavourite ( status ) {
dispatch ( favourite ( status ) ) ;
} ,
onFavourite ( status , e ) {
2016-10-24 15:11:02 +00:00
if ( status . get ( 'favourited' ) ) {
dispatch ( unfavourite ( status ) ) ;
} else {
2017-12-09 16:26:22 +00:00
if ( e . shiftKey || ! favouriteModal ) {
this . onModalFavourite ( status ) ;
} else {
dispatch ( openModal ( 'FAVOURITE' , { status , onFavourite : this . onModalFavourite } ) ) ;
}
2016-10-24 15:11:02 +00:00
}
} ,
2017-12-09 18:41:24 +00:00
2017-08-24 23:41:18 +00:00
onPin ( status ) {
if ( status . get ( 'pinned' ) ) {
dispatch ( unpin ( status ) ) ;
} else {
dispatch ( pin ( status ) ) ;
}
} ,
2017-09-01 19:30:13 +00:00
onEmbed ( status ) {
2019-02-10 20:28:29 +00:00
dispatch ( openModal ( 'EMBED' , {
url : status . get ( 'url' ) ,
onError : error => dispatch ( showAlertForError ( error ) ) ,
} ) ) ;
2017-09-01 19:30:13 +00:00
} ,
2018-08-31 14:41:58 +00:00
onDelete ( status , history , withRedraft = false ) {
2017-10-29 15:10:15 +00:00
if ( ! deleteModal ) {
2018-08-31 14:41:58 +00:00
dispatch ( deleteStatus ( status . get ( 'id' ) , history , withRedraft ) ) ;
2017-05-29 15:56:13 +00:00
} else {
dispatch ( openModal ( 'CONFIRM' , {
2018-06-15 19:29:04 +00:00
message : intl . formatMessage ( withRedraft ? messages . redraftMessage : messages . deleteMessage ) ,
confirm : intl . formatMessage ( withRedraft ? messages . redraftConfirm : messages . deleteConfirm ) ,
2018-08-31 14:41:58 +00:00
onConfirm : ( ) => dispatch ( deleteStatus ( status . get ( 'id' ) , history , withRedraft ) ) ,
2017-05-29 15:56:13 +00:00
} ) ) ;
}
2016-10-24 15:11:02 +00:00
} ,
2022-02-09 23:15:30 +00:00
onEdit ( status , history ) {
dispatch ( editStatus ( status . get ( 'id' ) , history ) ) ;
} ,
2018-04-10 19:38:02 +00:00
onDirect ( account , router ) {
dispatch ( directCompose ( account , router ) ) ;
} ,
2017-01-08 10:04:01 +00:00
onMention ( account , router ) {
2017-01-30 20:40:55 +00:00
dispatch ( mentionCompose ( account , router ) ) ;
2016-10-24 16:07:40 +00:00
} ,
2020-11-27 02:24:11 +00:00
onOpenMedia ( statusId , media , index ) {
dispatch ( openModal ( 'MEDIA' , { statusId , media , index } ) ) ;
2016-11-23 21:57:57 +00:00
} ,
2020-11-27 02:24:11 +00:00
onOpenVideo ( statusId , media , options ) {
dispatch ( openModal ( 'VIDEO' , { statusId , media , options } ) ) ;
2017-04-13 13:04:18 +00:00
} ,
2019-03-26 16:34:02 +00:00
onBlock ( status ) {
const account = status . get ( 'account' ) ;
2019-09-29 19:46:05 +00:00
dispatch ( initBlockModal ( account ) ) ;
2017-02-14 19:59:26 +00:00
} ,
onReport ( status ) {
dispatch ( initReport ( status . get ( 'account' ) , status ) ) ;
2017-02-06 01:51:56 +00:00
} ,
2022-08-25 02:27:47 +00:00
onAddFilter ( status ) {
dispatch ( initAddFilter ( status , { contextType } ) ) ;
} ,
2017-02-06 01:51:56 +00:00
onMute ( account ) {
2017-11-15 02:56:41 +00:00
dispatch ( initMuteModal ( account ) ) ;
2017-02-06 01:51:56 +00:00
} ,
2016-10-24 15:11:02 +00: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-15 01:04:13 +00:00
onMuteConversation ( status ) {
if ( status . get ( 'muted' ) ) {
dispatch ( unmuteStatus ( status . get ( 'id' ) ) ) ;
} else {
dispatch ( muteStatus ( status . get ( 'id' ) ) ) ;
}
} ,
2022-07-24 18:01:30 +00:00
onToggleHidden ( status ) {
if ( status . get ( 'hidden' ) ) {
dispatch ( revealStatus ( status . get ( 'id' ) ) ) ;
} else {
dispatch ( hideStatus ( status . get ( 'id' ) ) ) ;
}
} ,
2020-09-28 11:29:43 +00:00
deployPictureInPicture ( status , type , mediaProps ) {
2020-10-26 19:11:35 +00:00
dispatch ( ( _ , getState ) => {
if ( getState ( ) . getIn ( [ 'local_settings' , 'media' , 'pop_in_player' ] ) ) {
dispatch ( deployPictureInPicture ( status . get ( 'id' ) , status . getIn ( [ 'account' , 'id' ] ) , type , mediaProps ) ) ;
}
} ) ;
2020-09-28 11:29:43 +00:00
} ,
2022-10-07 08:14:31 +00:00
onInteractionModal ( type , status ) {
dispatch ( openModal ( 'INTERACTION' , {
type ,
accountId : status . getIn ( [ 'account' , 'id' ] ) ,
url : status . get ( 'url' ) ,
} ) ) ;
} ,
2016-10-24 15:11:02 +00:00
} ) ;
2017-04-23 02:39:50 +00:00
export default injectIntl ( connect ( makeMapStateToProps , mapDispatchToProps ) ( Status ) ) ;