2020-08-17 21:07:16 +01:00
import React from 'react'
2020-08-17 21:59:29 +01:00
import PropTypes from 'prop-types'
2020-08-17 21:39:25 +01:00
import { connect } from 'react-redux'
2020-07-25 00:48:31 +01:00
import ImmutablePropTypes from 'react-immutable-proptypes'
import { FormattedMessage } from 'react-intl'
import ImmutablePureComponent from 'react-immutable-pure-component'
import debounce from 'lodash.debounce'
import { fetchBookmarkedStatuses , expandBookmarkedStatuses } from '../actions/bookmarks'
import { meUsername } from '../initial_state'
import StatusList from '../components/status_list'
import ColumnIndicator from '../components/column_indicator'
class BookmarkedStatuses extends ImmutablePureComponent {
componentWillMount ( ) {
2020-12-16 07:39:07 +00:00
this . props . dispatch ( fetchBookmarkedStatuses ( this . props . bookmarkCollectionId ) )
2020-07-25 00:48:31 +01:00
}
handleLoadMore = debounce ( ( ) => {
2020-12-16 07:39:07 +00:00
this . props . dispatch ( expandBookmarkedStatuses ( this . props . bookmarkCollectionId ) )
2020-07-25 00:48:31 +01:00
} , 300 , { leading : true } )
render ( ) {
2020-07-29 21:40:47 +01:00
const {
statusIds ,
hasMore ,
isLoading ,
isMyAccount ,
} = this . props
2020-07-25 00:48:31 +01:00
if ( ! isMyAccount ) {
return < ColumnIndicator type = 'missing' / >
}
return (
< StatusList
statusIds = { statusIds }
scrollKey = 'bookmarked_statuses'
hasMore = { hasMore }
isLoading = { isLoading }
onLoadMore = { this . handleLoadMore }
emptyMessage = { < FormattedMessage id = 'empty_column.bookmarked_statuses' defaultMessage = "You don't have any bookmarked gabs yet. If you are GabPRO, when you bookmark one, it will show up here." / > }
/ >
)
}
}
2020-12-16 07:39:07 +00:00
const mapStateToProps = ( state , { params : { username , bookmarkCollectionId } } ) => ( {
bookmarkCollectionId ,
isMyAccount : ( username . toLowerCase ( ) === meUsername . toLowerCase ( ) ) ,
statusIds : state . getIn ( [ 'status_lists' , 'bookmarks' , 'items' ] ) ,
isLoading : state . getIn ( [ 'status_lists' , 'bookmarks' , 'isLoading' ] , true ) ,
hasMore : ! ! state . getIn ( [ 'status_lists' , 'bookmarks' , 'next' ] ) ,
} )
2020-08-19 01:22:15 +01:00
BookmarkedStatuses . propTypes = {
dispatch : PropTypes . func . isRequired ,
statusIds : ImmutablePropTypes . list . isRequired ,
hasMore : PropTypes . bool ,
isLoading : PropTypes . bool ,
isMyAccount : PropTypes . bool . isRequired ,
}
export default connect ( mapStateToProps ) ( BookmarkedStatuses )