2022-10-08 21:55:09 -04:00
import PropTypes from 'prop-types' ;
2023-05-23 11:15:17 -04:00
2019-09-30 22:57:27 -04:00
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
2023-05-23 11:15:17 -04:00
import { Helmet } from 'react-helmet' ;
import ImmutablePropTypes from 'react-immutable-proptypes' ;
import ImmutablePureComponent from 'react-immutable-pure-component' ;
2022-10-08 21:55:09 -04:00
import { connect } from 'react-redux' ;
2023-05-23 11:15:17 -04:00
2023-08-29 04:56:19 -04:00
import { debounce } from 'lodash' ;
2024-01-16 05:27:26 -05:00
import RefreshIcon from '@/material-icons/400-24px/refresh.svg?react' ;
2023-08-29 04:56:19 -04:00
import { fetchFavourites , expandFavourites } from 'mastodon/actions/interactions' ;
2022-10-08 21:55:09 -04:00
import ColumnHeader from 'mastodon/components/column_header' ;
2023-05-08 21:11:56 -04:00
import { Icon } from 'mastodon/components/icon' ;
2023-06-13 13:26:25 -04:00
import { LoadingIndicator } from 'mastodon/components/loading_indicator' ;
2022-10-08 21:55:09 -04:00
import ScrollableList from 'mastodon/components/scrollable_list' ;
import AccountContainer from 'mastodon/containers/account_container' ;
import Column from 'mastodon/features/ui/components/column' ;
2019-09-30 22:57:27 -04:00
const messages = defineMessages ( {
refresh : { id : 'refresh' , defaultMessage : 'Refresh' } ,
} ) ;
2016-11-04 08:39:24 -04:00
const mapStateToProps = ( state , props ) => ( {
2023-08-29 04:56:19 -04:00
accountIds : state . getIn ( [ 'user_lists' , 'favourited_by' , props . params . statusId , 'items' ] ) ,
hasMore : ! ! state . getIn ( [ 'user_lists' , 'favourited_by' , props . params . statusId , 'next' ] ) ,
isLoading : state . getIn ( [ 'user_lists' , 'favourited_by' , props . params . statusId , 'isLoading' ] , true ) ,
2016-11-04 08:39:24 -04:00
} ) ;
2018-09-14 11:59:48 -04:00
class Favourites extends ImmutablePureComponent {
2016-11-04 08:39:24 -04:00
2017-05-12 08:44:10 -04:00
static propTypes = {
params : PropTypes . object . isRequired ,
dispatch : PropTypes . func . isRequired ,
2017-05-20 11:31:47 -04:00
accountIds : ImmutablePropTypes . list ,
2023-08-29 04:56:19 -04:00
hasMore : PropTypes . bool ,
isLoading : PropTypes . bool ,
2019-07-19 03:25:22 -04:00
multiColumn : PropTypes . bool ,
2019-09-30 22:57:27 -04:00
intl : PropTypes . object . isRequired ,
2017-05-12 08:44:10 -04:00
} ;
2023-05-10 03:05:32 -04:00
UNSAFE _componentWillMount ( ) {
2019-09-29 10:27:00 -04:00
if ( ! this . props . accountIds ) {
this . props . dispatch ( fetchFavourites ( this . props . params . statusId ) ) ;
}
2017-04-21 14:05:35 -04:00
}
2016-11-04 08:39:24 -04:00
2019-09-30 22:57:27 -04:00
handleRefresh = ( ) => {
this . props . dispatch ( fetchFavourites ( this . props . params . statusId ) ) ;
2023-01-29 19:45:35 -05:00
} ;
2019-09-30 22:57:27 -04:00
2023-08-29 04:56:19 -04:00
handleLoadMore = debounce ( ( ) => {
this . props . dispatch ( expandFavourites ( this . props . params . statusId ) ) ;
} , 300 , { leading : true } ) ;
2016-11-04 08:39:24 -04:00
render ( ) {
2023-08-29 04:56:19 -04:00
const { intl , accountIds , hasMore , isLoading , multiColumn } = this . props ;
2016-11-04 08:39:24 -04:00
if ( ! accountIds ) {
return (
< Column >
< LoadingIndicator / >
< / Column >
) ;
}
2023-07-21 13:09:13 -04:00
const emptyMessage = < FormattedMessage id = 'empty_column.favourites' defaultMessage = 'No one has favorited this post yet. When someone does, they will show up here.' / > ;
2018-08-26 10:39:37 -04:00
2016-11-04 08:39:24 -04:00
return (
2019-09-30 22:57:27 -04:00
< Column bindToDocument = { ! multiColumn } >
< ColumnHeader
showBackButton
multiColumn = { multiColumn }
extraButton = { (
2023-10-24 13:45:08 -04:00
< button type = 'button' className = 'column-header__button' title = { intl . formatMessage ( messages . refresh ) } aria - label = { intl . formatMessage ( messages . refresh ) } onClick = { this . handleRefresh } > < Icon id = 'refresh' icon = { RefreshIcon } / > < / button >
2019-09-30 22:57:27 -04:00
) }
/ >
2016-11-04 08:39:24 -04:00
2018-08-26 10:39:37 -04:00
< ScrollableList
scrollKey = 'favourites'
2023-08-29 04:56:19 -04:00
onLoadMore = { this . handleLoadMore }
hasMore = { hasMore }
isLoading = { isLoading }
2018-08-26 10:39:37 -04:00
emptyMessage = { emptyMessage }
2019-07-19 03:25:22 -04:00
bindToDocument = { ! multiColumn }
2018-08-26 10:39:37 -04:00
>
{ accountIds . map ( id =>
2020-03-08 11:02:36 -04:00
< AccountContainer key = { id } id = { id } withNote = { false } / > ,
2018-08-26 10:39:37 -04:00
) }
< / ScrollableList >
2022-10-20 08:35:29 -04:00
< Helmet >
< meta name = 'robots' content = 'noindex' / >
< / Helmet >
2016-11-04 08:39:24 -04:00
< / Column >
) ;
}
2017-04-21 14:05:35 -04:00
}
2023-03-23 22:17:53 -04:00
export default connect ( mapStateToProps ) ( injectIntl ( Favourites ) ) ;