2020-03-27 13:59:38 -07: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' ;
2021-10-08 14:32:49 -07:00
import Column from 'soapbox/features/ui/components/column' ;
2020-03-27 13:59:38 -07:00
import { FormattedMessage , defineMessages , injectIntl } from 'react-intl' ;
import { connectListStream } from '../../actions/streaming' ;
import { expandListTimeline } from '../../actions/timelines' ;
import { fetchList , deleteList } from '../../actions/lists' ;
import { openModal } from '../../actions/modal' ;
import MissingIndicator from '../../components/missing_indicator' ;
import LoadingIndicator from '../../components/loading_indicator' ;
2020-05-28 15:52:07 -07:00
import Button from 'soapbox/components/button' ;
2020-03-27 13:59:38 -07:00
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' } ,
} ) ;
const mapStateToProps = ( state , props ) => ( {
list : state . getIn ( [ 'lists' , props . params . id ] ) ,
2021-10-08 14:32:49 -07:00
// hasUnread: state.getIn(['timelines', `list:${props.params.id}`, 'unread']) > 0,
2020-03-27 13:59:38 -07:00
} ) ;
export default @ connect ( mapStateToProps )
@ injectIntl
class ListTimeline extends React . PureComponent {
static contextTypes = {
router : PropTypes . object ,
} ;
static propTypes = {
params : PropTypes . object . isRequired ,
dispatch : PropTypes . func . isRequired ,
2021-10-08 14:32:49 -07:00
// hasUnread: PropTypes.bool,
2020-03-27 13:59:38 -07:00
list : PropTypes . oneOfType ( [ ImmutablePropTypes . map , PropTypes . bool ] ) ,
intl : PropTypes . object . isRequired ,
} ;
2020-04-14 14:47:35 -07:00
componentDidMount ( ) {
2020-03-27 13:59:38 -07:00
this . handleConnect ( this . props . params . id ) ;
}
2020-04-14 14:47:35 -07:00
componentWillUnmount ( ) {
2020-03-27 13:59:38 -07:00
this . handleDisconnect ( ) ;
}
2020-07-04 16:41:41 -07:00
componentDidUpdate ( prevProps ) {
if ( this . props . params . id !== prevProps . params . id ) {
2020-03-27 13:59:38 -07:00
this . handleDisconnect ( ) ;
2020-07-04 16:41:41 -07:00
this . handleConnect ( this . props . params . id ) ;
2020-03-27 13:59:38 -07:00
}
}
handleConnect ( id ) {
const { dispatch } = this . props ;
dispatch ( fetchList ( id ) ) ;
dispatch ( expandListTimeline ( id ) ) ;
this . disconnect = dispatch ( connectListStream ( id ) ) ;
}
handleDisconnect ( ) {
if ( this . disconnect ) {
this . disconnect ( ) ;
this . disconnect = null ;
}
}
handleLoadMore = maxId => {
const { id } = this . props . params ;
this . props . dispatch ( expandListTimeline ( id , { maxId } ) ) ;
}
handleEditClick = ( ) => {
this . props . dispatch ( openModal ( 'LIST_EDITOR' , { listId : this . props . params . id } ) ) ;
}
handleDeleteClick = ( ) => {
const { dispatch , 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 ) ) ;
this . context . router . history . push ( '/lists' ) ;
} ,
} ) ) ;
}
2020-04-14 14:47:35 -07:00
render ( ) {
2021-10-08 14:32:49 -07:00
const { list } = this . props ;
2020-03-27 13:59:38 -07:00
const { id } = this . props . params ;
const title = list ? list . get ( 'title' ) : id ;
if ( typeof list === 'undefined' ) {
return (
< Column >
< div >
< LoadingIndicator / >
< / d i v >
< / C o l u m n >
) ;
} else if ( list === false ) {
return (
< Column >
< MissingIndicator / >
< / C o l u m n >
) ;
}
const emptyMessage = (
< div >
< FormattedMessage id = 'empty_column.list' defaultMessage = 'There is nothing in this list yet. When members of this list create new posts, they will appear here.' / >
2020-04-14 11:44:40 -07:00
< br / > < br / >
< Button onClick = { this . handleEditClick } > < FormattedMessage id = 'list.click_to_add' defaultMessage = 'Click here to add people' / > < / B u t t o n >
2020-03-27 13:59:38 -07:00
< / d i v >
) ;
return (
2021-10-08 14:32:49 -07:00
< Column label = { title } heading = { title } transparent >
{ / * < H o m e C o l u m n H e a d e r a c t i v e I t e m = ' l i s t s ' a c t i v e S u b I t e m = { i d } a c t i v e = { h a s U n r e a d } >
2020-03-27 13:59:38 -07:00
< div className = 'column-header__links' >
< button className = 'text-btn column-header__setting-btn' tabIndex = '0' onClick = { this . handleEditClick } >
< Icon id = '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 } >
< Icon id = 'trash' / > < FormattedMessage id = 'lists.delete' defaultMessage = 'Delete list' / >
< / b u t t o n >
2020-04-14 11:44:40 -07:00
< hr / >
2020-03-27 13:59:38 -07:00
< Link to = '/lists' className = 'text-btn column-header__setting-btn column-header__setting-btn--link' >
< FormattedMessage id = 'lists.view_all' defaultMessage = 'View all lists' / >
< Icon id = 'arrow-right' / >
< / L i n k >
< / d i v >
2021-10-08 14:32:49 -07:00
< /HomeColumnHeader> */ }
2020-03-27 13:59:38 -07:00
< StatusListContainer
scrollKey = 'list_timeline'
timelineId = { ` list: ${ id } ` }
onLoadMore = { this . handleLoadMore }
emptyMessage = { emptyMessage }
/ >
< / C o l u m n >
) ;
}
}