2019-07-02 08:10:25 +01: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 { FormattedMessage , injectIntl } from 'react-intl' ;
import { connectGroupStream } from '../../../actions/streaming' ;
import { expandGroupTimeline } from '../../../actions/timelines' ;
import MissingIndicator from '../../../components/missing_indicator' ;
import LoadingIndicator from '../../../components/loading_indicator' ;
2019-07-15 14:47:05 +01:00
import ComposeFormContainer from '../../../../gabsocial/features/compose/containers/compose_form_container' ;
import { me } from 'gabsocial/initial_state' ;
import Avatar from '../../../components/avatar' ;
2019-07-02 08:10:25 +01:00
const mapStateToProps = ( state , props ) => ( {
2019-07-15 14:47:05 +01:00
account : state . getIn ( [ 'accounts' , me ] ) ,
group : state . getIn ( [ 'groups' , props . params . id ] ) ,
relationships : state . getIn ( [ 'group_relationships' , props . params . id ] ) ,
hasUnread : state . getIn ( [ 'timelines' , ` group: ${ props . params . id } ` , 'unread' ] ) > 0 ,
2019-07-02 08:10:25 +01:00
} ) ;
export default @ connect ( mapStateToProps )
@ injectIntl
class GroupTimeline extends React . PureComponent {
2019-07-15 14:47:05 +01:00
static contextTypes = {
router : PropTypes . object ,
} ;
2019-07-02 08:10:25 +01:00
2019-07-15 14:47:05 +01:00
static propTypes = {
params : PropTypes . object . isRequired ,
dispatch : PropTypes . func . isRequired ,
columnId : PropTypes . string ,
hasUnread : PropTypes . bool ,
group : PropTypes . oneOfType ( [ ImmutablePropTypes . map , PropTypes . bool ] ) ,
relationships : ImmutablePropTypes . map ,
account : ImmutablePropTypes . map ,
intl : PropTypes . object . isRequired ,
} ;
2019-07-02 08:10:25 +01:00
2019-07-15 14:47:05 +01:00
componentDidMount ( ) {
const { dispatch } = this . props ;
const { id } = this . props . params ;
2019-07-02 08:10:25 +01:00
2019-07-15 14:47:05 +01:00
dispatch ( expandGroupTimeline ( id ) ) ;
2019-07-02 08:10:25 +01:00
2019-07-15 14:47:05 +01:00
this . disconnect = dispatch ( connectGroupStream ( id ) ) ;
}
2019-07-02 08:10:25 +01:00
2019-07-15 14:47:05 +01:00
componentWillUnmount ( ) {
if ( this . disconnect ) {
this . disconnect ( ) ;
this . disconnect = null ;
}
}
2019-07-02 08:10:25 +01:00
2019-07-15 14:47:05 +01:00
handleLoadMore = maxId => {
const { id } = this . props . params ;
this . props . dispatch ( expandGroupTimeline ( id , { maxId } ) ) ;
}
2019-07-02 08:10:25 +01:00
2019-07-15 14:47:05 +01:00
render ( ) {
const { columnId , group , relationships , account } = this . props ;
const { id } = this . props . params ;
2019-07-02 08:10:25 +01:00
2019-07-15 14:47:05 +01:00
if ( typeof group === 'undefined' ) {
return (
< Column >
< LoadingIndicator / >
< / C o l u m n >
) ;
} else if ( group === false ) {
return (
< Column >
< MissingIndicator / >
< / C o l u m n >
) ;
}
2019-07-02 08:10:25 +01:00
2019-07-15 14:47:05 +01:00
return (
< div >
{ relationships && relationships . get ( 'member' ) && (
< div className = 'timeline-compose-block' >
< div className = 'timeline-compose-block__avatar' >
< Avatar account = { account } size = { 46 } / >
< / d i v >
< ComposeFormContainer group = { group } shouldCondense = { true } autoFocus = { false } / >
< / d i v >
) }
2019-07-02 08:10:25 +01:00
2019-07-15 14:47:05 +01:00
< StatusListContainer
alwaysPrepend
scrollKey = { ` group_timeline- ${ columnId } ` }
timelineId = { ` group: ${ id } ` }
onLoadMore = { this . handleLoadMore }
emptyMessage = { < FormattedMessage id = 'empty_column.group' defaultMessage = 'There is nothing in this group yet. When members of this group post new statuses, they will appear here.' / > }
/ >
< / d i v >
) ;
}
}