2018-04-18 07:09:06 -04:00
import React from 'react' ;
import { connect } from 'react-redux' ;
import PropTypes from 'prop-types' ;
import Column from '../../components/column' ;
import ColumnHeader from '../../components/column_header' ;
2018-10-10 19:31:03 -04:00
import { mountConversations , unmountConversations , expandConversations } from '../../actions/conversations' ;
2018-04-18 07:09:06 -04:00
import { addColumn , removeColumn , moveColumn } from '../../actions/columns' ;
2018-10-08 08:43:38 -04:00
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
2018-04-18 07:09:06 -04:00
import { connectDirectStream } from '../../actions/streaming' ;
2018-10-07 17:44:58 -04:00
import ConversationsListContainer from './containers/conversations_list_container' ;
2018-04-18 07:09:06 -04:00
const messages = defineMessages ( {
2022-05-03 03:09:09 -04:00
title : { id : 'column.direct' , defaultMessage : 'Direct messages' } ,
2018-04-18 07:09:06 -04:00
} ) ;
2018-10-07 17:44:58 -04:00
export default @ connect ( )
2018-04-18 07:09:06 -04:00
@ injectIntl
2018-09-14 11:59:48 -04:00
class DirectTimeline extends React . PureComponent {
2018-04-18 07:09:06 -04:00
static propTypes = {
dispatch : PropTypes . func . isRequired ,
columnId : PropTypes . string ,
intl : PropTypes . object . isRequired ,
hasUnread : PropTypes . bool ,
multiColumn : PropTypes . bool ,
} ;
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 ( ) {
const { dispatch } = this . props ;
2018-10-10 19:31:03 -04:00
dispatch ( mountConversations ( ) ) ;
2018-10-07 17:44:58 -04:00
dispatch ( expandConversations ( ) ) ;
2018-04-18 07:09:06 -04:00
this . disconnect = dispatch ( connectDirectStream ( ) ) ;
}
componentWillUnmount ( ) {
2018-10-10 19:31:03 -04:00
this . props . dispatch ( unmountConversations ( ) ) ;
2018-04-18 07:09:06 -04:00
if ( this . disconnect ) {
this . disconnect ( ) ;
this . disconnect = null ;
}
}
setRef = c => {
this . column = c ;
}
handleLoadMore = maxId => {
2018-10-07 17:44:58 -04:00
this . props . dispatch ( expandConversations ( { maxId } ) ) ;
2018-04-18 07:09:06 -04:00
}
render ( ) {
2021-07-13 09:45:17 -04:00
const { intl , hasUnread , columnId , multiColumn } = this . props ;
2018-04-18 07:09:06 -04:00
const pinned = ! ! columnId ;
return (
2019-08-01 13:17:17 -04:00
< Column bindToDocument = { ! multiColumn } ref = { this . setRef } label = { intl . formatMessage ( messages . title ) } >
2018-04-18 07:09:06 -04:00
< ColumnHeader
2022-04-28 18:24:31 -04:00
icon = 'at'
2018-04-18 07:09:06 -04:00
active = { hasUnread }
title = { intl . formatMessage ( messages . title ) }
onPin = { this . handlePin }
onMove = { this . handleMove }
onClick = { this . handleHeaderClick }
pinned = { pinned }
multiColumn = { multiColumn }
2018-06-29 09:34:36 -04:00
/ >
2018-04-18 07:09:06 -04:00
2018-10-08 08:43:38 -04:00
< ConversationsListContainer
trackScroll = { ! pinned }
scrollKey = { ` direct_timeline- ${ columnId } ` }
timelineId = 'direct'
onLoadMore = { this . handleLoadMore }
2022-05-03 03:09:09 -04: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 > }
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." / > }
2018-10-08 08:43:38 -04:00
/ >
2018-04-18 07:09:06 -04:00
< / C o l u m n >
) ;
}
}