2017-11-24 23:35:37 +00:00
import React from 'react' ;
import { connect } from 'react-redux' ;
import PropTypes from 'prop-types' ;
import ImmutablePropTypes from 'react-immutable-proptypes' ;
import StatusListContainer from '../ui/containers/status_list_container' ;
import Column from '../../components/column' ;
import ColumnHeader from '../../components/column_header' ;
import { addColumn , removeColumn , moveColumn } from '../../actions/columns' ;
2017-12-05 22:02:27 +00:00
import { FormattedMessage , defineMessages , injectIntl } from 'react-intl' ;
2017-11-24 23:35:37 +00:00
import { connectListStream } from '../../actions/streaming' ;
2018-03-24 14:25:15 +00:00
import { expandListTimeline } from '../../actions/timelines' ;
2017-12-05 22:02:27 +00:00
import { fetchList , deleteList } from '../../actions/lists' ;
import { openModal } from '../../actions/modal' ;
import MissingIndicator from '../../components/missing_indicator' ;
import LoadingIndicator from '../../components/loading_indicator' ;
const messages = defineMessages ( {
deleteMessage : { id : 'confirmations.delete_list.message' , defaultMessage : 'Are you sure you want to permanently delete this list?' } ,
deleteConfirm : { id : 'confirmations.delete_list.confirm' , defaultMessage : 'Delete' } ,
} ) ;
2017-11-24 23:35:37 +00:00
const mapStateToProps = ( state , props ) => ( {
list : state . getIn ( [ 'lists' , props . params . id ] ) ,
hasUnread : state . getIn ( [ 'timelines' , ` list: ${ props . params . id } ` , 'unread' ] ) > 0 ,
} ) ;
@ connect ( mapStateToProps )
2017-12-05 22:02:27 +00:00
@ injectIntl
2017-11-24 23:35:37 +00:00
export default class ListTimeline extends React . PureComponent {
2017-12-05 22:02:27 +00:00
static contextTypes = {
router : PropTypes . object ,
} ;
2017-11-24 23:35:37 +00:00
static propTypes = {
params : PropTypes . object . isRequired ,
dispatch : PropTypes . func . isRequired ,
columnId : PropTypes . string ,
hasUnread : PropTypes . bool ,
multiColumn : PropTypes . bool ,
2017-12-05 22:02:27 +00:00
list : PropTypes . oneOfType ( [ ImmutablePropTypes . map , PropTypes . bool ] ) ,
intl : PropTypes . object . isRequired ,
2017-11-24 23:35:37 +00:00
} ;
handlePin = ( ) => {
const { columnId , dispatch } = this . props ;
if ( columnId ) {
dispatch ( removeColumn ( columnId ) ) ;
} else {
dispatch ( addColumn ( 'LIST' , { id : this . props . params . id } ) ) ;
2017-12-05 22:02:27 +00:00
this . context . router . history . push ( '/' ) ;
2017-11-24 23:35:37 +00:00
}
}
handleMove = ( dir ) => {
const { columnId , dispatch } = this . props ;
dispatch ( moveColumn ( columnId , dir ) ) ;
}
handleHeaderClick = ( ) => {
this . column . scrollTop ( ) ;
}
componentDidMount ( ) {
const { dispatch } = this . props ;
const { id } = this . props . params ;
dispatch ( fetchList ( id ) ) ;
2018-03-24 14:25:15 +00:00
dispatch ( expandListTimeline ( id ) ) ;
2017-11-24 23:35:37 +00:00
this . disconnect = dispatch ( connectListStream ( id ) ) ;
}
componentWillUnmount ( ) {
if ( this . disconnect ) {
this . disconnect ( ) ;
this . disconnect = null ;
}
}
setRef = c => {
this . column = c ;
}
2018-03-24 14:25:15 +00:00
handleLoadMore = maxId => {
2017-11-24 23:35:37 +00:00
const { id } = this . props . params ;
2018-03-24 14:25:15 +00:00
this . props . dispatch ( expandListTimeline ( id , { maxId } ) ) ;
2017-11-24 23:35:37 +00:00
}
2017-12-05 22:02:27 +00:00
handleEditClick = ( ) => {
this . props . dispatch ( openModal ( 'LIST_EDITOR' , { listId : this . props . params . id } ) ) ;
}
handleDeleteClick = ( ) => {
const { dispatch , columnId , intl } = this . props ;
const { id } = this . props . params ;
dispatch ( openModal ( 'CONFIRM' , {
message : intl . formatMessage ( messages . deleteMessage ) ,
confirm : intl . formatMessage ( messages . deleteConfirm ) ,
onConfirm : ( ) => {
dispatch ( deleteList ( id ) ) ;
if ( ! ! columnId ) {
dispatch ( removeColumn ( columnId ) ) ;
} else {
this . context . router . history . push ( '/lists' ) ;
}
} ,
} ) ) ;
}
2017-11-24 23:35:37 +00:00
render ( ) {
const { hasUnread , columnId , multiColumn , list } = this . props ;
const { id } = this . props . params ;
const pinned = ! ! columnId ;
const title = list ? list . get ( 'title' ) : id ;
2017-12-05 22:02:27 +00:00
if ( typeof list === 'undefined' ) {
return (
< Column >
2018-01-17 22:56:03 +00:00
< div className = 'scrollable' >
< LoadingIndicator / >
< / d i v >
2017-12-05 22:02:27 +00:00
< / C o l u m n >
) ;
} else if ( list === false ) {
return (
< Column >
2018-01-17 22:56:03 +00:00
< div className = 'scrollable' >
< MissingIndicator / >
< / d i v >
2017-12-05 22:02:27 +00:00
< / C o l u m n >
) ;
}
2017-11-24 23:35:37 +00:00
return (
< Column ref = { this . setRef } >
< ColumnHeader
icon = 'bars'
active = { hasUnread }
title = { title }
onPin = { this . handlePin }
onMove = { this . handleMove }
onClick = { this . handleHeaderClick }
pinned = { pinned }
multiColumn = { multiColumn }
2017-12-05 22:02:27 +00:00
>
< div className = 'column-header__links' >
< button className = 'text-btn column-header__setting-btn' tabIndex = '0' onClick = { this . handleEditClick } >
< i className = 'fa fa-pencil' / > < FormattedMessage id = 'lists.edit' defaultMessage = 'Edit list' / >
< / b u t t o n >
< button className = 'text-btn column-header__setting-btn' tabIndex = '0' onClick = { this . handleDeleteClick } >
< i className = 'fa fa-trash' / > < FormattedMessage id = 'lists.delete' defaultMessage = 'Delete list' / >
< / b u t t o n >
< / d i v >
< hr / >
< / C o l u m n H e a d e r >
2017-11-24 23:35:37 +00:00
< StatusListContainer
trackScroll = { ! pinned }
scrollKey = { ` list_timeline- ${ columnId } ` }
timelineId = { ` list: ${ id } ` }
2018-03-24 14:25:15 +00:00
onLoadMore = { this . handleLoadMore }
2017-12-13 01:40:32 +00:00
emptyMessage = { < FormattedMessage id = 'empty_column.list' defaultMessage = 'There is nothing in this list yet. When members of this list post new statuses, they will appear here.' / > }
2017-11-24 23:35:37 +00:00
/ >
< / C o l u m n >
) ;
}
}