2019-07-02 08:10:25 +01:00
import Immutable from 'immutable' ;
import React from 'react' ;
import { connect } from 'react-redux' ;
import PropTypes from 'prop-types' ;
import classNames from 'classnames' ;
import ImmutablePropTypes from 'react-immutable-proptypes' ;
2019-08-23 01:43:33 +01:00
import { fetchStatus , editStatus } from '../../actions/statuses' ;
2019-07-02 08:10:25 +01:00
import MissingIndicator from '../../components/missing_indicator' ;
import DetailedStatus from './components/detailed_status' ;
import ActionBar from './components/action_bar' ;
import Column from '../ui/components/column' ;
import {
favourite ,
unfavourite ,
reblog ,
unreblog ,
pin ,
unpin ,
} from '../../actions/interactions' ;
import {
replyCompose ,
mentionCompose ,
directCompose ,
2019-08-01 14:05:59 +01:00
quoteCompose ,
2019-07-02 08:10:25 +01:00
} from '../../actions/compose' ;
import { blockAccount } from '../../actions/accounts' ;
import {
muteStatus ,
unmuteStatus ,
deleteStatus ,
hideStatus ,
revealStatus ,
} from '../../actions/statuses' ;
import { initMuteModal } from '../../actions/mutes' ;
import { initReport } from '../../actions/reports' ;
import { makeGetStatus } from '../../selectors' ;
import ColumnHeader from '../../components/column_header' ;
import StatusContainer from '../../containers/status_container' ;
import { openModal } from '../../actions/modal' ;
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
import ImmutablePureComponent from 'react-immutable-pure-component' ;
import { HotKeys } from 'react-hotkeys' ;
import { boostModal , deleteModal , me } from '../../initial_state' ;
import { attachFullscreenListener , detachFullscreenListener , isFullscreen } from '../ui/util/fullscreen' ;
import { textForScreenReader , defaultMediaVisibility } from '../../components/status' ;
import Icon from 'gabsocial/components/icon' ;
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' } ,
revealAll : { id : 'status.show_more_all' , defaultMessage : 'Show more for all' } ,
hideAll : { id : 'status.show_less_all' , defaultMessage : 'Show less for all' } ,
detailedStatus : { id : 'status.detailed_status' , defaultMessage : 'Detailed conversation view' } ,
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?' } ,
blockAndReport : { id : 'confirmations.block.block_and_report' , defaultMessage : 'Block & Report' } ,
} ) ;
const makeMapStateToProps = ( ) => {
const getStatus = makeGetStatus ( ) ;
const mapStateToProps = ( state , props ) => {
2019-07-16 19:41:36 +01:00
const status = getStatus ( state , {
id : props . params . statusId ,
username : props . params . username
} ) ;
2019-07-02 08:10:25 +01:00
let ancestorsIds = Immutable . List ( ) ;
let descendantsIds = Immutable . List ( ) ;
if ( status ) {
ancestorsIds = ancestorsIds . withMutations ( mutable => {
let id = status . get ( 'in_reply_to_id' ) ;
while ( id ) {
mutable . unshift ( id ) ;
id = state . getIn ( [ 'contexts' , 'inReplyTos' , id ] ) ;
}
} ) ;
descendantsIds = descendantsIds . withMutations ( mutable => {
const ids = [ status . get ( 'id' ) ] ;
while ( ids . length > 0 ) {
let id = ids . shift ( ) ;
const replies = state . getIn ( [ 'contexts' , 'replies' , id ] ) ;
if ( status . get ( 'id' ) !== id ) {
mutable . push ( id ) ;
}
if ( replies ) {
replies . reverse ( ) . forEach ( reply => {
ids . unshift ( reply ) ;
} ) ;
}
}
} ) ;
}
return {
status ,
ancestorsIds ,
descendantsIds ,
askReplyConfirmation : state . getIn ( [ 'compose' , 'text' ] ) . trim ( ) . length !== 0 ,
domain : state . getIn ( [ 'meta' , 'domain' ] ) ,
} ;
} ;
return mapStateToProps ;
} ;
export default @ injectIntl
@ connect ( makeMapStateToProps )
class Status extends ImmutablePureComponent {
static contextTypes = {
router : PropTypes . object ,
} ;
static propTypes = {
params : PropTypes . object . isRequired ,
dispatch : PropTypes . func . isRequired ,
status : ImmutablePropTypes . map ,
ancestorsIds : ImmutablePropTypes . list ,
descendantsIds : ImmutablePropTypes . list ,
intl : PropTypes . object . isRequired ,
askReplyConfirmation : PropTypes . bool ,
domain : PropTypes . string . isRequired ,
} ;
state = {
fullscreen : false ,
showMedia : defaultMediaVisibility ( this . props . status ) ,
loadedStatusId : undefined ,
} ;
componentWillMount ( ) {
this . props . dispatch ( fetchStatus ( this . props . params . statusId ) ) ;
}
componentDidMount ( ) {
attachFullscreenListener ( this . onFullScreenChange ) ;
}
componentWillReceiveProps ( nextProps ) {
if ( nextProps . params . statusId !== this . props . params . statusId && nextProps . params . statusId ) {
this . _scrolledIntoView = false ;
this . props . dispatch ( fetchStatus ( nextProps . params . statusId ) ) ;
}
if ( nextProps . status && nextProps . status . get ( 'id' ) !== this . state . loadedStatusId ) {
this . setState ( { showMedia : defaultMediaVisibility ( nextProps . status ) , loadedStatusId : nextProps . status . get ( 'id' ) } ) ;
}
}
handleToggleMediaVisibility = ( ) => {
this . setState ( { showMedia : ! this . state . showMedia } ) ;
}
handleFavouriteClick = ( status ) => {
if ( status . get ( 'favourited' ) ) {
this . props . dispatch ( unfavourite ( status ) ) ;
} else {
this . props . dispatch ( favourite ( status ) ) ;
}
}
handlePin = ( status ) => {
if ( status . get ( 'pinned' ) ) {
this . props . dispatch ( unpin ( status ) ) ;
} else {
this . props . dispatch ( pin ( status ) ) ;
}
}
2019-09-18 17:20:52 +01:00
handleShowRevisions = ( status ) => {
this . props . dispatch ( openModal ( 'STATUS_REVISION' , { status } ) ) ;
}
2019-07-02 08:10:25 +01:00
handleReplyClick = ( status ) => {
let { askReplyConfirmation , dispatch , intl } = this . props ;
if ( askReplyConfirmation ) {
dispatch ( openModal ( 'CONFIRM' , {
message : intl . formatMessage ( messages . replyMessage ) ,
confirm : intl . formatMessage ( messages . replyConfirm ) ,
onConfirm : ( ) => dispatch ( replyCompose ( status , this . context . router . history ) ) ,
} ) ) ;
} else {
dispatch ( replyCompose ( status , this . context . router . history ) ) ;
}
}
2019-08-01 14:05:59 +01:00
handleQuoteClick = ( status ) => {
let { dispatch , intl } = this . props ;
const router = this . context . router . history ;
dispatch ( ( _ , getState ) => {
let state = getState ( ) ;
if ( state . getIn ( [ 'compose' , 'text' ] ) . trim ( ) . length !== 0 ) {
dispatch ( openModal ( 'CONFIRM' , {
message : intl . formatMessage ( messages . quoteMessage ) ,
confirm : intl . formatMessage ( messages . quoteConfirm ) ,
onConfirm : ( ) => dispatch ( quoteCompose ( status , router ) ) ,
} ) ) ;
} else {
dispatch ( quoteCompose ( status , router ) ) ;
}
} ) ;
}
2019-07-02 08:10:25 +01:00
handleModalReblog = ( status ) => {
this . props . dispatch ( reblog ( status ) ) ;
}
handleReblogClick = ( status , e ) => {
if ( status . get ( 'reblogged' ) ) {
this . props . dispatch ( unreblog ( status ) ) ;
} else {
if ( ( e && e . shiftKey ) || ! boostModal ) {
this . handleModalReblog ( status ) ;
} else {
this . props . dispatch ( openModal ( 'BOOST' , { status , onReblog : this . handleModalReblog } ) ) ;
}
}
}
2019-08-23 01:58:25 +01:00
handleDeleteClick = ( status , history ) => {
2019-07-02 08:10:25 +01:00
const { dispatch , intl } = this . props ;
if ( ! deleteModal ) {
2019-08-23 01:58:25 +01:00
dispatch ( deleteStatus ( status . get ( 'id' ) , history ) ) ;
2019-07-02 08:10:25 +01:00
} else {
dispatch ( openModal ( 'CONFIRM' , {
2019-08-23 01:58:25 +01:00
message : intl . formatMessage ( messages . deleteMessage ) ,
confirm : intl . formatMessage ( messages . deleteConfirm ) ,
onConfirm : ( ) => dispatch ( deleteStatus ( status . get ( 'id' ) , history ) ) ,
2019-07-02 08:10:25 +01:00
} ) ) ;
}
}
2019-08-23 01:43:33 +01:00
handleEditClick = ( status ) => {
this . props . dispatch ( editStatus ( status ) ) ;
}
2019-07-02 08:10:25 +01:00
handleDirectClick = ( account , router ) => {
this . props . dispatch ( directCompose ( account , router ) ) ;
}
handleMentionClick = ( account , router ) => {
this . props . dispatch ( mentionCompose ( account , router ) ) ;
}
handleOpenMedia = ( media , index ) => {
this . props . dispatch ( openModal ( 'MEDIA' , { media , index } ) ) ;
}
handleOpenVideo = ( media , time ) => {
this . props . dispatch ( openModal ( 'VIDEO' , { media , time } ) ) ;
}
handleMuteClick = ( account ) => {
this . props . dispatch ( initMuteModal ( account ) ) ;
}
handleConversationMuteClick = ( status ) => {
if ( status . get ( 'muted' ) ) {
this . props . dispatch ( unmuteStatus ( status . get ( 'id' ) ) ) ;
} else {
this . props . dispatch ( muteStatus ( status . get ( 'id' ) ) ) ;
}
}
handleToggleHidden = ( status ) => {
if ( status . get ( 'hidden' ) ) {
this . props . dispatch ( revealStatus ( status . get ( 'id' ) ) ) ;
} else {
this . props . dispatch ( hideStatus ( status . get ( 'id' ) ) ) ;
}
}
handleToggleAll = ( ) => {
const { status , ancestorsIds , descendantsIds } = this . props ;
const statusIds = [ status . get ( 'id' ) ] . concat ( ancestorsIds . toJS ( ) , descendantsIds . toJS ( ) ) ;
if ( status . get ( 'hidden' ) ) {
this . props . dispatch ( revealStatus ( statusIds ) ) ;
} else {
this . props . dispatch ( hideStatus ( statusIds ) ) ;
}
}
handleBlockClick = ( status ) => {
const { dispatch , intl } = this . props ;
const account = status . get ( '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' ) ) ) ,
secondary : intl . formatMessage ( messages . blockAndReport ) ,
onSecondary : ( ) => {
dispatch ( blockAccount ( account . get ( 'id' ) ) ) ;
dispatch ( initReport ( account , status ) ) ;
} ,
} ) ) ;
}
handleReport = ( status ) => {
this . props . dispatch ( initReport ( status . get ( 'account' ) , status ) ) ;
}
handleEmbed = ( status ) => {
this . props . dispatch ( openModal ( 'EMBED' , { url : status . get ( 'url' ) } ) ) ;
}
handleHotkeyMoveUp = ( ) => {
this . handleMoveUp ( this . props . status . get ( 'id' ) ) ;
}
handleHotkeyMoveDown = ( ) => {
this . handleMoveDown ( this . props . status . get ( 'id' ) ) ;
}
handleHotkeyReply = e => {
e . preventDefault ( ) ;
this . handleReplyClick ( this . props . status ) ;
}
handleHotkeyFavourite = ( ) => {
this . handleFavouriteClick ( this . props . status ) ;
}
handleHotkeyBoost = ( ) => {
this . handleReblogClick ( this . props . status ) ;
}
handleHotkeyMention = e => {
e . preventDefault ( ) ;
this . handleMentionClick ( this . props . status . get ( 'account' ) ) ;
}
handleHotkeyOpenProfile = ( ) => {
this . context . router . history . push ( ` / ${ this . props . status . getIn ( [ 'account' , 'acct' ] ) } ` ) ;
}
handleHotkeyToggleHidden = ( ) => {
this . handleToggleHidden ( this . props . status ) ;
}
handleHotkeyToggleSensitive = ( ) => {
this . handleToggleMediaVisibility ( ) ;
}
handleMoveUp = id => {
const { status , ancestorsIds , descendantsIds } = this . props ;
if ( id === status . get ( 'id' ) ) {
this . _selectChild ( ancestorsIds . size - 1 , true ) ;
} else {
let index = ancestorsIds . indexOf ( id ) ;
if ( index === - 1 ) {
index = descendantsIds . indexOf ( id ) ;
this . _selectChild ( ancestorsIds . size + index , true ) ;
} else {
this . _selectChild ( index - 1 , true ) ;
}
}
}
handleMoveDown = id => {
const { status , ancestorsIds , descendantsIds } = this . props ;
if ( id === status . get ( 'id' ) ) {
this . _selectChild ( ancestorsIds . size + 1 , false ) ;
} else {
let index = ancestorsIds . indexOf ( id ) ;
if ( index === - 1 ) {
index = descendantsIds . indexOf ( id ) ;
this . _selectChild ( ancestorsIds . size + index + 2 , false ) ;
} else {
this . _selectChild ( index + 1 , false ) ;
}
}
}
_selectChild ( index , align _top ) {
const container = this . node ;
const element = container . querySelectorAll ( '.focusable' ) [ index ] ;
if ( element ) {
if ( align _top && container . scrollTop > element . offsetTop ) {
element . scrollIntoView ( true ) ;
} else if ( ! align _top && container . scrollTop + container . clientHeight < element . offsetTop + element . offsetHeight ) {
element . scrollIntoView ( false ) ;
}
element . focus ( ) ;
}
}
renderChildren ( list ) {
return list . map ( id => (
< StatusContainer
key = { id }
id = { id }
onMoveUp = { this . handleMoveUp }
onMoveDown = { this . handleMoveDown }
contextType = 'thread'
/ >
) ) ;
}
setRef = c => {
this . node = c ;
}
componentDidUpdate ( ) {
if ( this . _scrolledIntoView ) {
return ;
}
const { status , ancestorsIds } = this . props ;
if ( status && ancestorsIds && ancestorsIds . size > 0 ) {
const element = this . node . querySelectorAll ( '.focusable' ) [ ancestorsIds . size - 1 ] ;
window . requestAnimationFrame ( ( ) => {
element . scrollIntoView ( true ) ;
} ) ;
this . _scrolledIntoView = true ;
}
}
componentWillUnmount ( ) {
detachFullscreenListener ( this . onFullScreenChange ) ;
}
onFullScreenChange = ( ) => {
this . setState ( { fullscreen : isFullscreen ( ) } ) ;
}
render ( ) {
let ancestors , descendants ;
const { status , ancestorsIds , descendantsIds , intl , domain } = this . props ;
const { fullscreen } = this . state ;
if ( status === null ) {
return (
< Column >
< MissingIndicator / >
< / C o l u m n >
) ;
}
if ( ancestorsIds && ancestorsIds . size > 0 ) {
ancestors = < div > { this . renderChildren ( ancestorsIds ) } < / d i v > ;
}
if ( descendantsIds && descendantsIds . size > 0 ) {
descendants = < div > { this . renderChildren ( descendantsIds ) } < / d i v > ;
}
const handlers = {
moveUp : this . handleHotkeyMoveUp ,
moveDown : this . handleHotkeyMoveDown ,
reply : this . handleHotkeyReply ,
favourite : this . handleHotkeyFavourite ,
boost : this . handleHotkeyBoost ,
mention : this . handleHotkeyMention ,
openProfile : this . handleHotkeyOpenProfile ,
toggleHidden : this . handleHotkeyToggleHidden ,
toggleSensitive : this . handleHotkeyToggleSensitive ,
} ;
return (
< Column label = { intl . formatMessage ( messages . detailedStatus ) } >
{ me &&
< ColumnHeader
extraButton = { (
< button
className = 'column-header__button'
title = { intl . formatMessage ( status . get ( 'hidden' ) ? messages . revealAll : messages . hideAll ) }
aria - label = { intl . formatMessage ( status . get ( 'hidden' ) ? messages . revealAll : messages . hideAll ) }
onClick = { this . handleToggleAll }
aria - pressed = {
status . get ( 'hidden' ) ? 'false' : 'true' } >
< Icon id = { status . get ( 'hidden' ) ? 'eye-slash' : 'eye'
}
/ >
< / b u t t o n >
) }
/ >
}
2019-07-17 23:57:44 +01:00
< div ref = { this . setRef } >
{ ancestors }
< HotKeys handlers = { handlers } >
< div className = { classNames ( 'focusable' , 'detailed-status__wrapper' ) } tabIndex = '0' aria - label = { textForScreenReader ( intl , status , false ) } >
< DetailedStatus
status = { status }
onOpenVideo = { this . handleOpenVideo }
onOpenMedia = { this . handleOpenMedia }
onToggleHidden = { this . handleToggleHidden }
domain = { domain }
showMedia = { this . state . showMedia }
onToggleMediaVisibility = { this . handleToggleMediaVisibility }
2019-09-18 17:20:52 +01:00
onShowRevisions = { this . handleShowRevisions }
2019-07-17 23:57:44 +01:00
/ >
< ActionBar
status = { status }
onReply = { this . handleReplyClick }
onFavourite = { this . handleFavouriteClick }
2019-08-01 14:05:59 +01:00
onQuote = { this . handleQuoteClick }
2019-07-17 23:57:44 +01:00
onReblog = { this . handleReblogClick }
onDelete = { this . handleDeleteClick }
2019-08-23 01:43:33 +01:00
onEdit = { this . handleEditClick }
2019-07-17 23:57:44 +01:00
onDirect = { this . handleDirectClick }
onMention = { this . handleMentionClick }
onMute = { this . handleMuteClick }
onMuteConversation = { this . handleConversationMuteClick }
onBlock = { this . handleBlockClick }
onReport = { this . handleReport }
onPin = { this . handlePin }
onEmbed = { this . handleEmbed }
/ >
< / d i v >
< / H o t K e y s >
{ descendants }
< / d i v >
2019-07-02 08:10:25 +01:00
< / C o l u m n >
) ;
}
}