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 { fetchFavouritedStatuses , expandFavouritedStatuses } from '../../actions/favourites' ;
import Column from '../ui/components/column' ;
import ColumnHeader from '../../components/column_header' ;
import StatusList from '../../components/status_list' ;
import { injectIntl , FormattedMessage } from 'react-intl' ;
import ImmutablePureComponent from 'react-immutable-pure-component' ;
import { debounce } from 'lodash' ;
import { meUsername } from 'gabsocial/initial_state' ;
import MissingIndicator from 'gabsocial/components/missing_indicator' ;
const mapStateToProps = ( state , { params : { username } } ) => {
return {
2019-07-04 02:57:22 +01:00
isMyAccount : ( username . toLowerCase ( ) === meUsername . toLowerCase ( ) ) ,
2019-07-02 08:10:25 +01:00
statusIds : state . getIn ( [ 'status_lists' , 'favourites' , 'items' ] ) ,
isLoading : state . getIn ( [ 'status_lists' , 'favourites' , 'isLoading' ] , true ) ,
hasMore : ! ! state . getIn ( [ 'status_lists' , 'favourites' , 'next' ] ) ,
} ;
} ;
export default @ connect ( mapStateToProps )
@ injectIntl
class Favourites extends ImmutablePureComponent {
static propTypes = {
dispatch : PropTypes . func . isRequired ,
statusIds : ImmutablePropTypes . list . isRequired ,
intl : PropTypes . object . isRequired ,
hasMore : PropTypes . bool ,
isLoading : PropTypes . bool ,
isMyAccount : PropTypes . bool . isRequired ,
} ;
componentWillMount ( ) {
this . props . dispatch ( fetchFavouritedStatuses ( ) ) ;
}
handleLoadMore = debounce ( ( ) => {
this . props . dispatch ( expandFavouritedStatuses ( ) ) ;
} , 300 , { leading : true } )
render ( ) {
2019-07-10 19:20:31 +01:00
const { intl , statusIds , hasMore , isLoading , isMyAccount } = this . props ;
2019-07-02 08:10:25 +01:00
if ( ! isMyAccount ) {
return (
< Column >
< MissingIndicator / >
< / C o l u m n >
) ;
}
const emptyMessage = < FormattedMessage id = 'empty_column.favourited_statuses' defaultMessage = "You don't have any favourite gabs yet. When you favourite one, it will show up here." / > ;
return (
< Column >
< StatusList
statusIds = { statusIds }
2019-07-10 19:20:31 +01:00
scrollKey = 'favourited_statuses'
2019-07-02 08:10:25 +01:00
hasMore = { hasMore }
isLoading = { isLoading }
onLoadMore = { this . handleLoadMore }
emptyMessage = { emptyMessage }
/ >
< / C o l u m n >
) ;
}
}