2018-11-30 11:17:56 +00:00
import Immutable from 'immutable' ;
2017-05-03 00:04:16 +00:00
import React from 'react' ;
2017-02-18 01:37:59 +00:00
import { connect } from 'react-redux' ;
2017-04-21 18:05:35 +00:00
import PropTypes from 'prop-types' ;
2017-11-07 13:24:55 +00:00
import classNames from 'classnames' ;
2017-02-18 01:37:59 +00:00
import ImmutablePropTypes from 'react-immutable-proptypes' ;
2017-12-04 07:26:40 +00:00
import { fetchStatus } from 'flavours/glitch/actions/statuses' ;
import MissingIndicator from 'flavours/glitch/components/missing_indicator' ;
2017-02-18 01:37:59 +00:00
import DetailedStatus from './components/detailed_status' ;
import ActionBar from './components/action_bar' ;
2017-12-04 07:26:40 +00:00
import Column from 'flavours/glitch/features/ui/components/column' ;
2017-02-18 01:37:59 +00:00
import {
favourite ,
unfavourite ,
2018-04-11 17:42:25 +00:00
bookmark ,
unbookmark ,
2017-02-18 01:37:59 +00:00
reblog ,
2017-05-20 15:31:47 +00:00
unreblog ,
2017-08-24 23:41:18 +00:00
pin ,
unpin ,
2017-12-04 07:26:40 +00:00
} from 'flavours/glitch/actions/interactions' ;
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' ;
2018-11-27 17:25:51 +00:00
import { changeLocalSetting } from 'flavours/glitch/actions/local_settings' ;
2017-12-26 16:41:44 +00:00
import { blockAccount } from 'flavours/glitch/actions/accounts' ;
import { muteStatus , unmuteStatus , deleteStatus } from 'flavours/glitch/actions/statuses' ;
import { initMuteModal } from 'flavours/glitch/actions/mutes' ;
2017-12-04 07:26:40 +00:00
import { initReport } from 'flavours/glitch/actions/reports' ;
import { makeGetStatus } from 'flavours/glitch/selectors' ;
2017-10-31 21:58:38 +00:00
import { ScrollContainer } from 'react-router-scroll-4' ;
2017-12-04 07:26:40 +00:00
import ColumnBackButton from 'flavours/glitch/components/column_back_button' ;
2018-03-28 17:56:46 +00:00
import ColumnHeader from '../../components/column_header' ;
2017-12-04 07:26:40 +00:00
import StatusContainer from 'flavours/glitch/containers/status_container' ;
import { openModal } from 'flavours/glitch/actions/modal' ;
2017-12-26 16:13:38 +00:00
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
2017-05-03 00:04:16 +00:00
import ImmutablePureComponent from 'react-immutable-pure-component' ;
2017-10-05 23:07:59 +00:00
import { HotKeys } from 'react-hotkeys' ;
2017-12-09 16:26:22 +00:00
import { boostModal , favouriteModal , deleteModal } from 'flavours/glitch/util/initial_state' ;
2017-12-04 07:26:40 +00:00
import { attachFullscreenListener , detachFullscreenListener , isFullscreen } from 'flavours/glitch/util/fullscreen' ;
2018-08-28 15:16:30 +00:00
import { autoUnfoldCW } from 'flavours/glitch/util/content_warning' ;
2018-08-28 10:10:40 +00:00
import { textForScreenReader } from 'flavours/glitch/components/status' ;
2017-04-23 02:39:50 +00:00
const messages = defineMessages ( {
deleteConfirm : { id : 'confirmations.delete.confirm' , defaultMessage : 'Delete' } ,
2017-05-20 15:31:47 +00:00
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.' } ,
2017-12-26 16:13:38 +00:00
blockConfirm : { id : 'confirmations.block.confirm' , defaultMessage : 'Block' } ,
2018-03-28 17:56:46 +00:00
revealAll : { id : 'status.show_more_all' , defaultMessage : 'Show more for all' } ,
hideAll : { id : 'status.show_less_all' , defaultMessage : 'Show less for all' } ,
2018-08-28 10:01:04 +00:00
detailedStatus : { id : 'status.detailed_status' , defaultMessage : 'Detailed conversation view' } ,
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-03-26 16:34:02 +00:00
blockAndReport : { id : 'confirmations.block.block_and_report' , defaultMessage : 'Block & Report' } ,
2019-02-27 12:47:27 +00:00
tootHeading : { id : 'column.toot' , defaultMessage : 'Toots and replies' } ,
2017-04-23 02:39:50 +00:00
} ) ;
2016-09-15 22:21:51 +00:00
2016-10-24 15:11:02 +00:00
const makeMapStateToProps = ( ) => {
const getStatus = makeGetStatus ( ) ;
2018-11-30 11:17:56 +00:00
const mapStateToProps = ( state , props ) => {
const status = getStatus ( state , { id : props . params . statusId } ) ;
let ancestorsIds = Immutable . List ( ) ;
let descendantsIds = Immutable . List ( ) ;
if ( status ) {
ancestorsIds = ancestorsIds . withMutations ( mutable => {
2018-11-30 11:24:12 +00:00
let id = status . get ( 'in_reply_to_id' ) ;
2018-11-30 11:17:56 +00:00
2018-11-30 11:24:12 +00:00
while ( id ) {
mutable . unshift ( id ) ;
id = state . getIn ( [ 'contexts' , 'inReplyTos' , id ] ) ;
2018-11-30 11:17:56 +00:00
}
} ) ;
descendantsIds = descendantsIds . withMutations ( mutable => {
2018-11-30 11:24:12 +00:00
const ids = [ status . get ( 'id' ) ] ;
while ( ids . length > 0 ) {
let id = ids . shift ( ) ;
2018-11-30 11:17:56 +00:00
const replies = state . getIn ( [ 'contexts' , 'replies' , id ] ) ;
2018-11-30 11:24:58 +00:00
if ( status . get ( 'id' ) !== id ) {
mutable . push ( id ) ;
}
2018-11-30 11:17:56 +00:00
if ( replies ) {
2018-11-30 11:24:58 +00:00
replies . reverse ( ) . forEach ( reply => {
2018-11-30 11:24:12 +00:00
ids . unshift ( reply ) ;
2018-11-30 11:17:56 +00:00
} ) ;
}
}
} ) ;
}
return {
status ,
ancestorsIds ,
descendantsIds ,
settings : state . get ( 'local_settings' ) ,
2018-11-27 17:25:51 +00:00
askReplyConfirmation : state . getIn ( [ 'local_settings' , 'confirm_before_clearing_draft' ] ) && state . getIn ( [ 'compose' , 'text' ] ) . trim ( ) . length !== 0 ,
2019-01-20 10:47:17 +00:00
domain : state . getIn ( [ 'meta' , 'domain' ] ) ,
2018-11-30 11:17:56 +00:00
} ;
} ;
2016-10-24 15:11:02 +00:00
return mapStateToProps ;
} ;
2016-09-15 22:21:51 +00:00
2017-06-23 17:36:54 +00:00
@ injectIntl
@ connect ( makeMapStateToProps )
export default class Status extends ImmutablePureComponent {
2017-04-21 18:05:35 +00:00
2017-05-12 12:44:10 +00:00
static contextTypes = {
2017-05-20 15:31:47 +00:00
router : PropTypes . object ,
2017-05-12 12:44:10 +00:00
} ;
static propTypes = {
params : PropTypes . object . isRequired ,
dispatch : PropTypes . func . isRequired ,
status : ImmutablePropTypes . map ,
2017-06-30 09:15:18 +00:00
settings : ImmutablePropTypes . map . isRequired ,
2017-05-12 12:44:10 +00:00
ancestorsIds : ImmutablePropTypes . list ,
descendantsIds : ImmutablePropTypes . list ,
2017-05-20 15:31:47 +00:00
intl : PropTypes . object . isRequired ,
2018-10-05 15:46:35 +00:00
askReplyConfirmation : PropTypes . bool ,
2019-01-20 10:47:17 +00:00
domain : PropTypes . string . isRequired ,
2017-05-12 12:44:10 +00:00
} ;
2016-09-15 22:21:51 +00:00
2017-11-07 13:24:55 +00:00
state = {
fullscreen : false ,
2018-08-28 15:16:30 +00:00
isExpanded : undefined ,
2018-08-28 12:10:26 +00:00
threadExpanded : undefined ,
2018-11-28 19:20:03 +00:00
statusId : undefined ,
2017-11-07 13:24:55 +00:00
} ;
componentDidMount ( ) {
attachFullscreenListener ( this . onFullScreenChange ) ;
2018-11-28 19:20:03 +00:00
this . props . dispatch ( fetchStatus ( this . props . params . statusId ) ) ;
2018-11-30 16:14:01 +00:00
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 ) ;
} ) ;
}
2017-11-07 13:24:55 +00:00
}
2018-11-28 19:20:03 +00:00
static getDerivedStateFromProps ( props , state ) {
if ( state . statusId === props . params . statusId || ! props . params . statusId ) {
return null ;
2016-09-15 22:21:51 +00:00
}
2018-11-28 19:20:03 +00:00
props . dispatch ( fetchStatus ( props . params . statusId ) ) ;
return {
threadExpanded : undefined ,
isExpanded : autoUnfoldCW ( props . settings , props . status ) ,
statusId : props . params . statusId ,
} ;
2017-04-21 18:05:35 +00:00
}
2016-09-15 22:21:51 +00:00
2017-11-27 22:05:03 +00:00
handleExpandedToggle = ( ) => {
if ( this . props . status . get ( 'spoiler_text' ) ) {
2018-03-28 13:40:34 +00:00
this . setExpansion ( ! this . state . isExpanded ) ;
2017-11-27 22:05:03 +00:00
}
} ;
2017-12-09 16:26:22 +00:00
handleModalFavourite = ( status ) => {
this . props . dispatch ( favourite ( status ) ) ;
}
handleFavouriteClick = ( status , e ) => {
2017-02-17 01:33:10 +00:00
if ( status . get ( 'favourited' ) ) {
this . props . dispatch ( unfavourite ( status ) ) ;
} else {
2018-10-18 16:42:02 +00:00
if ( ( e && e . shiftKey ) || ! favouriteModal ) {
2017-12-09 16:26:22 +00:00
this . handleModalFavourite ( status ) ;
} else {
this . props . dispatch ( openModal ( 'FAVOURITE' , { status , onFavourite : this . handleModalFavourite } ) ) ;
}
2017-02-17 01:33:10 +00:00
}
2017-04-21 18:05:35 +00:00
}
2016-09-17 15:47:26 +00:00
2017-08-24 23:41:18 +00:00
handlePin = ( status ) => {
if ( status . get ( 'pinned' ) ) {
this . props . dispatch ( unpin ( status ) ) ;
} else {
this . props . dispatch ( pin ( status ) ) ;
}
}
2017-05-12 12:44:10 +00:00
handleReplyClick = ( status ) => {
2018-10-05 15:46:35 +00:00
let { askReplyConfirmation , dispatch , intl } = this . props ;
if ( askReplyConfirmation ) {
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 , this . context . router . history ) ) ,
} ) ) ;
} else {
dispatch ( replyCompose ( status , this . context . router . history ) ) ;
}
2017-04-21 18:05:35 +00:00
}
2016-09-17 15:47:26 +00:00
2017-05-12 12:44:10 +00:00
handleModalReblog = ( status ) => {
2017-04-11 02:28:52 +00:00
this . props . dispatch ( reblog ( status ) ) ;
2017-04-21 18:05:35 +00:00
}
2017-12-09 18:41:24 +00:00
2017-05-12 12:44:10 +00:00
handleReblogClick = ( status , e ) => {
2017-02-17 01:33:10 +00:00
if ( status . get ( 'reblogged' ) ) {
this . props . dispatch ( unreblog ( status ) ) ;
} else {
2018-10-18 16:42:02 +00:00
if ( ( e && e . shiftKey ) || ! boostModal ) {
2017-04-11 12:34:14 +00:00
this . handleModalReblog ( status ) ;
} else {
this . props . dispatch ( openModal ( 'BOOST' , { status , onReblog : this . handleModalReblog } ) ) ;
}
2017-02-17 01:33:10 +00:00
}
2017-04-21 18:05:35 +00:00
}
2016-09-17 15:47:26 +00:00
2018-04-11 17:42:25 +00:00
handleBookmarkClick = ( status ) => {
if ( status . get ( 'bookmarked' ) ) {
this . props . dispatch ( unbookmark ( status ) ) ;
} else {
this . props . dispatch ( bookmark ( status ) ) ;
}
}
2018-08-31 14:41:58 +00:00
handleDeleteClick = ( status , history , withRedraft = false ) => {
2017-04-23 02:39:50 +00:00
const { dispatch , intl } = this . props ;
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
} ) ) ;
}
2017-04-21 18:05:35 +00:00
}
2016-10-09 20:19:15 +00:00
2018-04-10 19:38:02 +00:00
handleDirectClick = ( account , router ) => {
this . props . dispatch ( directCompose ( account , router ) ) ;
}
2017-05-12 12:44:10 +00:00
handleMentionClick = ( account , router ) => {
2017-01-30 20:40:55 +00:00
this . props . dispatch ( mentionCompose ( account , router ) ) ;
2017-04-21 18:05:35 +00:00
}
2016-10-24 15:11:02 +00:00
2017-05-12 12:44:10 +00:00
handleOpenMedia = ( media , index ) => {
2017-04-01 20:11:28 +00:00
this . props . dispatch ( openModal ( 'MEDIA' , { media , index } ) ) ;
2017-04-21 18:05:35 +00:00
}
2016-10-24 16:07:40 +00:00
2017-05-12 12:44:10 +00:00
handleOpenVideo = ( media , time ) => {
2017-04-13 15:01:09 +00:00
this . props . dispatch ( openModal ( 'VIDEO' , { media , time } ) ) ;
2017-04-21 18:05:35 +00:00
}
2017-04-13 13:04:18 +00:00
2017-12-26 16:13:38 +00:00
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' ) ) ) ;
}
}
2018-03-28 17:56:46 +00:00
handleToggleAll = ( ) => {
const { isExpanded } = this . state ;
this . setState ( { isExpanded : ! isExpanded , threadExpanded : ! isExpanded } ) ;
}
2019-03-26 16:34:02 +00:00
handleBlockClick = ( status ) => {
2017-12-26 16:13:38 +00:00
const { dispatch , intl } = this . props ;
2019-03-26 16:34:02 +00:00
const account = status . get ( 'account' ) ;
2017-12-26 16:13:38 +00: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 ) ,
onConfirm : ( ) => dispatch ( blockAccount ( account . get ( 'id' ) ) ) ,
2019-03-26 16:34:02 +00:00
secondary : intl . formatMessage ( messages . blockAndReport ) ,
onSecondary : ( ) => {
dispatch ( blockAccount ( account . get ( 'id' ) ) ) ;
dispatch ( initReport ( account , status ) ) ;
} ,
2017-12-26 16:13:38 +00:00
} ) ) ;
}
2017-05-12 12:44:10 +00:00
handleReport = ( status ) => {
2017-02-14 19:59:26 +00:00
this . props . dispatch ( initReport ( status . get ( 'account' ) , status ) ) ;
2017-04-21 18:05:35 +00:00
}
2017-02-14 19:59:26 +00:00
2017-08-31 01:38:35 +00:00
handleEmbed = ( status ) => {
this . props . dispatch ( openModal ( 'EMBED' , { url : status . get ( 'url' ) } ) ) ;
}
2017-10-05 23:07:59 +00:00
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 ) ;
}
handleHotkeyOpenProfile = ( ) => {
this . context . router . history . push ( ` /accounts/ ${ this . props . status . getIn ( [ 'account' , 'id' ] ) } ` ) ;
}
handleMoveUp = id => {
const { status , ancestorsIds , descendantsIds } = this . props ;
if ( id === status . get ( 'id' ) ) {
this . _selectChild ( ancestorsIds . size - 1 ) ;
} else {
let index = ancestorsIds . indexOf ( id ) ;
if ( index === - 1 ) {
index = descendantsIds . indexOf ( id ) ;
this . _selectChild ( ancestorsIds . size + index ) ;
} else {
this . _selectChild ( index - 1 ) ;
}
}
}
handleMoveDown = id => {
const { status , ancestorsIds , descendantsIds } = this . props ;
if ( id === status . get ( 'id' ) ) {
this . _selectChild ( ancestorsIds . size + 1 ) ;
} else {
let index = ancestorsIds . indexOf ( id ) ;
if ( index === - 1 ) {
index = descendantsIds . indexOf ( id ) ;
this . _selectChild ( ancestorsIds . size + index + 2 ) ;
} else {
this . _selectChild ( index + 1 ) ;
}
}
}
_selectChild ( index ) {
const element = this . node . querySelectorAll ( '.focusable' ) [ index ] ;
if ( element ) {
element . focus ( ) ;
}
}
2019-03-08 19:34:31 +00:00
handleHeaderClick = ( ) => {
this . column . scrollTop ( ) ;
}
2016-09-15 22:21:51 +00:00
renderChildren ( list ) {
2017-10-05 23:07:59 +00:00
return list . map ( id => (
< StatusContainer
key = { id }
id = { id }
2018-03-28 17:56:46 +00:00
expanded = { this . state . threadExpanded }
2017-10-05 23:07:59 +00:00
onMoveUp = { this . handleMoveUp }
onMoveDown = { this . handleMoveDown }
2018-07-08 18:04:53 +00:00
contextType = 'thread'
2017-10-05 23:07:59 +00:00
/ >
) ) ;
}
2017-11-27 22:05:03 +00:00
setExpansion = value => {
2018-03-28 13:40:34 +00:00
this . setState ( { isExpanded : value } ) ;
2017-11-27 22:05:03 +00:00
}
2017-10-05 23:07:59 +00:00
setRef = c => {
this . node = c ;
}
2019-03-08 19:34:31 +00:00
setColumnRef = c => {
this . column = c ;
}
2018-11-28 19:20:03 +00:00
componentDidUpdate ( prevProps ) {
2018-11-30 11:27:19 +00:00
if ( this . props . params . statusId && ( this . props . params . statusId !== prevProps . params . statusId || prevProps . ancestorsIds . size < this . props . ancestorsIds . size ) ) {
2018-11-28 19:20:03 +00:00
const { status , ancestorsIds } = this . props ;
2017-10-11 17:21:44 +00:00
2018-11-28 19:20:03 +00:00
if ( status && ancestorsIds && ancestorsIds . size > 0 ) {
const element = this . node . querySelectorAll ( '.focusable' ) [ ancestorsIds . size - 1 ] ;
2017-10-05 23:07:59 +00:00
2018-11-28 19:20:03 +00:00
window . requestAnimationFrame ( ( ) => {
element . scrollIntoView ( true ) ;
} ) ;
}
2017-10-05 23:07:59 +00:00
}
2017-04-21 18:05:35 +00:00
}
2016-09-15 22:21:51 +00:00
2017-11-07 13:24:55 +00:00
componentWillUnmount ( ) {
detachFullscreenListener ( this . onFullScreenChange ) ;
}
onFullScreenChange = ( ) => {
this . setState ( { fullscreen : isFullscreen ( ) } ) ;
}
2018-07-27 15:59:52 +00:00
shouldUpdateScroll = ( prevRouterProps , { location } ) => {
2018-10-06 16:53:49 +00:00
if ( ( ( ( prevRouterProps || { } ) . location || { } ) . state || { } ) . mastodonModalOpen ) return false ;
return ! ( location . state && location . state . mastodonModalOpen ) ;
2018-07-27 15:59:52 +00:00
}
2016-09-15 22:21:51 +00:00
render ( ) {
2016-10-24 15:11:02 +00:00
let ancestors , descendants ;
2017-11-27 22:05:03 +00:00
const { setExpansion } = this ;
2019-01-20 10:47:17 +00:00
const { status , settings , ancestorsIds , descendantsIds , intl , domain } = this . props ;
2017-11-27 22:05:03 +00:00
const { fullscreen , isExpanded } = this . state ;
2016-09-15 22:21:51 +00:00
if ( status === null ) {
2016-10-07 14:00:11 +00:00
return (
< Column >
2017-02-19 07:32:35 +00:00
< ColumnBackButton / >
2017-02-26 22:06:27 +00:00
< MissingIndicator / >
2016-10-07 14:00:11 +00:00
< / C o l u m n >
) ;
2016-09-15 22:21:51 +00:00
}
2016-10-30 14:06:43 +00:00
if ( ancestorsIds && ancestorsIds . size > 0 ) {
2016-10-24 15:11:02 +00:00
ancestors = < div > { this . renderChildren ( ancestorsIds ) } < / d i v > ;
}
2016-10-30 14:06:43 +00:00
if ( descendantsIds && descendantsIds . size > 0 ) {
2016-10-24 15:11:02 +00:00
descendants = < div > { this . renderChildren ( descendantsIds ) } < / d i v > ;
}
2017-10-05 23:07:59 +00:00
const handlers = {
moveUp : this . handleHotkeyMoveUp ,
moveDown : this . handleHotkeyMoveDown ,
reply : this . handleHotkeyReply ,
favourite : this . handleHotkeyFavourite ,
boost : this . handleHotkeyBoost ,
mention : this . handleHotkeyMention ,
openProfile : this . handleHotkeyOpenProfile ,
2017-11-27 22:05:03 +00:00
toggleSpoiler : this . handleExpandedToggle ,
2017-10-05 23:07:59 +00:00
} ;
2016-09-15 22:21:51 +00:00
return (
2019-03-08 19:34:31 +00:00
< Column ref = { this . setColumnRef } label = { intl . formatMessage ( messages . detailedStatus ) } >
2018-03-28 17:56:46 +00:00
< ColumnHeader
2019-02-27 12:47:27 +00:00
icon = 'comment'
title = { intl . formatMessage ( messages . tootHeading ) }
2019-03-08 19:34:31 +00:00
onClick = { this . handleHeaderClick }
2018-03-28 17:56:46 +00:00
showBackButton
extraButton = { (
< button className = 'column-header__button' title = { intl . formatMessage ( ! isExpanded ? messages . revealAll : messages . hideAll ) } aria - label = { intl . formatMessage ( ! isExpanded ? messages . revealAll : messages . hideAll ) } onClick = { this . handleToggleAll } aria - pressed = { ! isExpanded ? 'false' : 'true' } > < i className = { ` fa fa- ${ ! isExpanded ? 'eye-slash' : 'eye' } ` } / > < / b u t t o n >
) }
/ >
2016-09-18 11:03:37 +00:00
2018-07-27 15:59:52 +00:00
< ScrollContainer scrollKey = 'thread' shouldUpdateScroll = { this . shouldUpdateScroll } >
2017-11-07 13:24:55 +00:00
< div className = { classNames ( 'scrollable' , 'detailed-status__wrapper' , { fullscreen } ) } ref = { this . setRef } >
2016-10-24 15:11:02 +00:00
{ ancestors }
2016-09-18 11:03:37 +00:00
2017-10-05 23:07:59 +00:00
< HotKeys handlers = { handlers } >
2018-08-28 10:10:40 +00:00
< div className = 'focusable' tabIndex = '0' aria - label = { textForScreenReader ( intl , status , false , ! status . get ( 'hidden' ) ) } >
2017-10-05 23:07:59 +00:00
< DetailedStatus
status = { status }
2017-10-11 17:43:10 +00:00
settings = { settings }
2017-10-05 23:07:59 +00:00
onOpenVideo = { this . handleOpenVideo }
onOpenMedia = { this . handleOpenMedia }
2017-11-27 22:05:03 +00:00
expanded = { isExpanded }
2018-03-28 17:56:46 +00:00
onToggleHidden = { this . handleExpandedToggle }
2019-01-20 10:47:17 +00:00
domain = { domain }
2017-10-05 23:07:59 +00:00
/ >
< ActionBar
status = { status }
onReply = { this . handleReplyClick }
onFavourite = { this . handleFavouriteClick }
onReblog = { this . handleReblogClick }
2018-04-11 17:42:25 +00:00
onBookmark = { this . handleBookmarkClick }
2017-10-05 23:07:59 +00:00
onDelete = { this . handleDeleteClick }
2018-04-10 19:38:02 +00:00
onDirect = { this . handleDirectClick }
2017-10-05 23:07:59 +00:00
onMention = { this . handleMentionClick }
2017-12-26 16:13:38 +00:00
onMute = { this . handleMuteClick }
onMuteConversation = { this . handleConversationMuteClick }
onBlock = { this . handleBlockClick }
2017-10-05 23:07:59 +00:00
onReport = { this . handleReport }
onPin = { this . handlePin }
onEmbed = { this . handleEmbed }
/ >
< / d i v >
< / H o t K e y s >
2016-10-19 16:20:19 +00:00
2016-10-24 15:11:02 +00:00
{ descendants }
2016-10-19 16:20:19 +00:00
< / d i v >
< / S c r o l l C o n t a i n e r >
2016-10-07 14:00:11 +00:00
< / C o l u m n >
2016-09-15 22:21:51 +00:00
) ;
}
2017-04-21 18:05:35 +00:00
}