2022-10-09 01:55:09 +00:00
import { debounce } from 'lodash' ;
2017-04-21 18:05:35 +00:00
import PropTypes from 'prop-types' ;
2022-10-09 01:55:09 +00:00
import React from 'react' ;
import { Helmet } from 'react-helmet' ;
2017-06-24 10:24:02 +00:00
import ImmutablePropTypes from 'react-immutable-proptypes' ;
2017-05-03 00:04:16 +00:00
import ImmutablePureComponent from 'react-immutable-pure-component' ;
2022-10-09 01:55:09 +00:00
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
import { connect } from 'react-redux' ;
import { addColumn , removeColumn , moveColumn } from 'mastodon/actions/columns' ;
import { fetchFavouritedStatuses , expandFavouritedStatuses } from 'mastodon/actions/favourites' ;
import ColumnHeader from 'mastodon/components/column_header' ;
import StatusList from 'mastodon/components/status_list' ;
import Column from 'mastodon/features/ui/components/column' ;
2017-01-16 12:27:58 +00:00
const messages = defineMessages ( {
2017-05-20 15:31:47 +00:00
heading : { id : 'column.favourites' , defaultMessage : 'Favourites' } ,
2017-01-16 12:27:58 +00:00
} ) ;
const mapStateToProps = state => ( {
2017-06-24 10:24:02 +00:00
statusIds : state . getIn ( [ 'status_lists' , 'favourites' , 'items' ] ) ,
2017-12-09 01:22:13 +00:00
isLoading : state . getIn ( [ 'status_lists' , 'favourites' , 'isLoading' ] , true ) ,
2017-08-28 20:23:44 +00:00
hasMore : ! ! state . getIn ( [ 'status_lists' , 'favourites' , 'next' ] ) ,
2017-01-16 12:27:58 +00:00
} ) ;
2018-09-14 15:59:48 +00:00
export default @ connect ( mapStateToProps )
2017-06-23 17:36:54 +00:00
@ injectIntl
2018-09-14 15:59:48 +00:00
class Favourites extends ImmutablePureComponent {
2017-01-16 12:27:58 +00:00
2017-05-12 12:44:10 +00:00
static propTypes = {
dispatch : PropTypes . func . isRequired ,
2017-06-24 10:24:02 +00:00
statusIds : ImmutablePropTypes . list . isRequired ,
2017-05-12 12:44:10 +00:00
intl : PropTypes . object . isRequired ,
2017-07-14 22:49:34 +00:00
columnId : PropTypes . string ,
multiColumn : PropTypes . bool ,
2017-08-28 20:23:44 +00:00
hasMore : PropTypes . bool ,
2017-12-09 01:22:13 +00:00
isLoading : PropTypes . bool ,
2017-05-12 12:44:10 +00:00
} ;
2017-01-16 12:27:58 +00:00
componentWillMount ( ) {
this . props . dispatch ( fetchFavouritedStatuses ( ) ) ;
2017-04-21 18:05:35 +00:00
}
2017-01-16 12:27:58 +00:00
2017-07-14 22:49:34 +00:00
handlePin = ( ) => {
const { columnId , dispatch } = this . props ;
if ( columnId ) {
dispatch ( removeColumn ( columnId ) ) ;
} else {
dispatch ( addColumn ( 'FAVOURITES' , { } ) ) ;
}
}
handleMove = ( dir ) => {
const { columnId , dispatch } = this . props ;
dispatch ( moveColumn ( columnId , dir ) ) ;
}
handleHeaderClick = ( ) => {
this . column . scrollTop ( ) ;
}
setRef = c => {
this . column = c ;
}
2018-03-05 18:31:40 +00:00
handleLoadMore = debounce ( ( ) => {
2017-01-16 12:27:58 +00:00
this . props . dispatch ( expandFavouritedStatuses ( ) ) ;
2017-12-09 01:22:13 +00:00
} , 300 , { leading : true } )
2017-01-16 12:27:58 +00:00
render ( ) {
2021-07-13 13:45:17 +00:00
const { intl , statusIds , columnId , multiColumn , hasMore , isLoading } = this . props ;
2017-07-14 22:49:34 +00:00
const pinned = ! ! columnId ;
2017-01-16 12:27:58 +00:00
2022-04-28 22:24:31 +00:00
const emptyMessage = < FormattedMessage id = 'empty_column.favourited_statuses' defaultMessage = "You don't have any favourite posts yet. When you favourite one, it will show up here." / > ;
2018-08-26 14:39:37 +00:00
2017-01-16 12:27:58 +00:00
return (
2019-08-01 17:17:17 +00:00
< Column bindToDocument = { ! multiColumn } ref = { this . setRef } label = { intl . formatMessage ( messages . heading ) } >
2017-07-14 22:49:34 +00:00
< ColumnHeader
icon = 'star'
title = { intl . formatMessage ( messages . heading ) }
onPin = { this . handlePin }
onMove = { this . handleMove }
onClick = { this . handleHeaderClick }
pinned = { pinned }
multiColumn = { multiColumn }
2017-09-06 15:32:15 +00:00
showBackButton
2017-07-14 22:49:34 +00:00
/ >
< StatusList
trackScroll = { ! pinned }
statusIds = { statusIds }
scrollKey = { ` favourited_statuses- ${ columnId } ` }
2017-08-28 20:23:44 +00:00
hasMore = { hasMore }
2017-12-09 01:22:13 +00:00
isLoading = { isLoading }
2018-03-05 18:31:40 +00:00
onLoadMore = { this . handleLoadMore }
2018-08-26 14:39:37 +00:00
emptyMessage = { emptyMessage }
2019-07-19 07:25:22 +00:00
bindToDocument = { ! multiColumn }
2017-07-14 22:49:34 +00:00
/ >
2022-10-09 01:55:09 +00:00
< Helmet >
< title > { intl . formatMessage ( messages . heading ) } < / t i t l e >
< / H e l m e t >
2017-01-16 12:27:58 +00:00
< / C o l u m n >
) ;
}
2017-04-21 18:05:35 +00:00
}