2022-10-09 01:55:09 +00:00
import PropTypes from 'prop-types' ;
2017-10-16 04:02:39 +00:00
import React from 'react' ;
2022-10-09 01:55:09 +00:00
import { Helmet } from 'react-helmet' ;
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
2017-10-16 04:02:39 +00:00
import { connect } from 'react-redux' ;
2022-10-09 01:55:09 +00:00
import { addColumn , removeColumn , moveColumn } from 'flavours/glitch/actions/columns' ;
import { mountConversations , unmountConversations , expandConversations } from 'flavours/glitch/actions/conversations' ;
import { connectDirectStream } from 'flavours/glitch/actions/streaming' ;
import { expandDirectTimeline } from 'flavours/glitch/actions/timelines' ;
2017-12-04 07:26:40 +00:00
import Column from 'flavours/glitch/components/column' ;
import ColumnHeader from 'flavours/glitch/components/column_header' ;
2022-10-09 01:55:09 +00:00
import StatusListContainer from 'flavours/glitch/features/ui/containers/status_list_container' ;
2017-10-16 04:02:39 +00:00
import ColumnSettingsContainer from './containers/column_settings_container' ;
2019-06-09 10:07:23 +00:00
import ConversationsListContainer from './containers/conversations_list_container' ;
2017-10-16 04:02:39 +00:00
const messages = defineMessages ( {
title : { id : 'column.direct' , defaultMessage : 'Direct messages' } ,
} ) ;
const mapStateToProps = state => ( {
hasUnread : state . getIn ( [ 'timelines' , 'direct' , 'unread' ] ) > 0 ,
2019-06-09 10:07:23 +00:00
conversationsMode : state . getIn ( [ 'settings' , 'direct' , 'conversations' ] ) ,
2017-10-16 04:02:39 +00:00
} ) ;
2019-09-09 13:16:08 +00:00
export default @ connect ( mapStateToProps )
2017-10-16 04:02:39 +00:00
@ injectIntl
2019-09-09 13:16:08 +00:00
class DirectTimeline extends React . PureComponent {
2017-10-16 04:02:39 +00:00
static propTypes = {
dispatch : PropTypes . func . isRequired ,
columnId : PropTypes . string ,
intl : PropTypes . object . isRequired ,
hasUnread : PropTypes . bool ,
multiColumn : PropTypes . bool ,
2019-06-09 10:07:23 +00:00
conversationsMode : PropTypes . bool ,
2017-10-16 04:02:39 +00:00
} ;
handlePin = ( ) => {
const { columnId , dispatch } = this . props ;
if ( columnId ) {
dispatch ( removeColumn ( columnId ) ) ;
} else {
dispatch ( addColumn ( 'DIRECT' , { } ) ) ;
}
}
handleMove = ( dir ) => {
const { columnId , dispatch } = this . props ;
dispatch ( moveColumn ( columnId , dir ) ) ;
}
handleHeaderClick = ( ) => {
this . column . scrollTop ( ) ;
}
componentDidMount ( ) {
2019-06-09 10:07:23 +00:00
const { dispatch , conversationsMode } = this . props ;
dispatch ( mountConversations ( ) ) ;
if ( conversationsMode ) {
dispatch ( expandConversations ( ) ) ;
} else {
dispatch ( expandDirectTimeline ( ) ) ;
}
2017-10-16 04:02:39 +00:00
this . disconnect = dispatch ( connectDirectStream ( ) ) ;
}
2019-06-09 10:07:23 +00:00
componentDidUpdate ( prevProps ) {
const { dispatch , conversationsMode } = this . props ;
if ( prevProps . conversationsMode && ! conversationsMode ) {
dispatch ( expandDirectTimeline ( ) ) ;
} else if ( ! prevProps . conversationsMode && conversationsMode ) {
dispatch ( expandConversations ( ) ) ;
}
}
2017-10-16 04:02:39 +00:00
componentWillUnmount ( ) {
2019-06-09 10:07:23 +00:00
this . props . dispatch ( unmountConversations ( ) ) ;
2017-10-16 04:02:39 +00:00
if ( this . disconnect ) {
this . disconnect ( ) ;
this . disconnect = null ;
}
}
setRef = c => {
this . column = c ;
}
2019-06-09 10:07:23 +00:00
handleLoadMoreTimeline = maxId => {
2018-05-31 12:13:35 +00:00
this . props . dispatch ( expandDirectTimeline ( { maxId } ) ) ;
2017-10-16 04:02:39 +00:00
}
2019-06-09 10:07:23 +00:00
handleLoadMoreConversations = maxId => {
this . props . dispatch ( expandConversations ( { maxId } ) ) ;
}
2017-10-16 04:02:39 +00:00
render ( ) {
2019-06-09 10:07:23 +00:00
const { intl , hasUnread , columnId , multiColumn , conversationsMode } = this . props ;
2017-10-16 04:02:39 +00:00
const pinned = ! ! columnId ;
2019-06-09 10:07:23 +00:00
let contents ;
if ( conversationsMode ) {
contents = (
< ConversationsListContainer
trackScroll = { ! pinned }
scrollKey = { ` direct_timeline- ${ columnId } ` }
timelineId = 'direct'
onLoadMore = { this . handleLoadMore }
2022-05-03 08:59:23 +00:00
prepend = { < div className = 'follow_requests-unlocked_explanation' > < span > < FormattedMessage id = 'compose_form.encryption_warning' defaultMessage = 'Posts on Mastodon are not end-to-end encrypted. Do not share any dangerous information over Mastodon.' / > < a href = '/terms' target = '_blank' > < FormattedMessage id = 'compose_form.direct_message_warning_learn_more' defaultMessage = 'Learn more' / > < / a > < / s p a n > < / d i v > }
2019-06-09 10:07:23 +00:00
emptyMessage = { < FormattedMessage id = 'empty_column.direct' defaultMessage = "You don't have any direct messages yet. When you send or receive one, it will show up here." / > }
/ >
) ;
} else {
contents = (
< StatusListContainer
trackScroll = { ! pinned }
scrollKey = { ` direct_timeline- ${ columnId } ` }
timelineId = 'direct'
onLoadMore = { this . handleLoadMoreTimeline }
2022-05-03 09:38:17 +00:00
prepend = { < div className = 'follow_requests-unlocked_explanation' > < span > < FormattedMessage id = 'compose_form.encryption_warning' defaultMessage = 'Posts on Mastodon are not end-to-end encrypted. Do not share any dangerous information over Mastodon.' / > < a href = '/terms' target = '_blank' > < FormattedMessage id = 'compose_form.direct_message_warning_learn_more' defaultMessage = 'Learn more' / > < / a > < / s p a n > < / d i v > }
2019-06-09 10:07:23 +00:00
emptyMessage = { < FormattedMessage id = 'empty_column.direct' defaultMessage = "You don't have any direct messages yet. When you send or receive one, it will show up here." / > }
/ >
) ;
}
2017-10-16 04:02:39 +00:00
return (
2019-08-01 17:17:17 +00:00
< Column bindToDocument = { ! multiColumn } ref = { this . setRef } label = { intl . formatMessage ( messages . title ) } >
2017-10-16 04:02:39 +00:00
< ColumnHeader
icon = 'envelope'
active = { hasUnread }
title = { intl . formatMessage ( messages . title ) }
onPin = { this . handlePin }
onMove = { this . handleMove }
onClick = { this . handleHeaderClick }
pinned = { pinned }
multiColumn = { multiColumn }
>
< ColumnSettingsContainer / >
< / C o l u m n H e a d e r >
2019-06-09 10:07:23 +00:00
{ contents }
2022-10-09 01:55:09 +00:00
< Helmet >
< title > { intl . formatMessage ( messages . title ) } < / t i t l e >
2022-10-20 12:35:29 +00:00
< meta name = 'robots' content = 'noindex' / >
2022-10-09 01:55:09 +00:00
< / H e l m e t >
2017-10-16 04:02:39 +00:00
< / C o l u m n >
) ;
}
}