2022-02-24 23:34:33 +00:00
import PropTypes from 'prop-types' ;
2023-05-28 14:38:10 +00:00
import { PureComponent } from 'react' ;
import { FormattedMessage } from 'react-intl' ;
2022-02-24 23:34:33 +00:00
import ImmutablePropTypes from 'react-immutable-proptypes' ;
import { connect } from 'react-redux' ;
2023-05-28 14:38:10 +00:00
2022-02-24 23:34:33 +00:00
import { fetchTrendingLinks } from 'flavours/glitch/actions/trends' ;
2022-10-09 04:08:37 +00:00
import DismissableBanner from 'flavours/glitch/components/dismissable_banner' ;
2023-05-28 14:38:10 +00:00
import LoadingIndicator from 'flavours/glitch/components/loading_indicator' ;
import Story from './components/story' ;
2022-02-24 23:34:33 +00:00
const mapStateToProps = state => ( {
links : state . getIn ( [ 'trends' , 'links' , 'items' ] ) ,
isLoading : state . getIn ( [ 'trends' , 'links' , 'isLoading' ] ) ,
} ) ;
2023-05-28 12:18:23 +00:00
class Links extends PureComponent {
2022-02-24 23:34:33 +00:00
static propTypes = {
links : ImmutablePropTypes . list ,
isLoading : PropTypes . bool ,
dispatch : PropTypes . func . isRequired ,
} ;
componentDidMount ( ) {
const { dispatch } = this . props ;
dispatch ( fetchTrendingLinks ( ) ) ;
}
render ( ) {
const { isLoading , links } = this . props ;
2022-10-09 04:08:37 +00:00
const banner = (
< DismissableBanner id = 'explore/links' >
< FormattedMessage id = 'dismissable_banner.explore_links' defaultMessage = 'These news stories are being talked about by people on this and other servers of the decentralized network right now.' / >
< / DismissableBanner >
) ;
2022-09-29 02:39:33 +00:00
if ( ! isLoading && links . isEmpty ( ) ) {
return (
< div className = 'explore__links scrollable scrollable--flex' >
2022-10-09 04:08:37 +00:00
{ banner }
2022-09-29 02:39:33 +00:00
< div className = 'empty-column-indicator' >
< FormattedMessage id = 'empty_column.explore_statuses' defaultMessage = 'Nothing is trending right now. Check back later!' / >
< / div >
< / div >
) ;
}
2022-02-24 23:34:33 +00:00
return (
< div className = 'explore__links' >
2022-10-09 04:08:37 +00:00
{ banner }
2022-02-24 23:34:33 +00:00
{ isLoading ? ( < LoadingIndicator / > ) : links . map ( link => (
< Story
key = { link . get ( 'id' ) }
url = { link . get ( 'url' ) }
title = { link . get ( 'title' ) }
publisher = { link . get ( 'provider_name' ) }
sharedTimes = { link . getIn ( [ 'history' , 0 , 'accounts' ] ) * 1 + link . getIn ( [ 'history' , 1 , 'accounts' ] ) * 1 }
thumbnail = { link . get ( 'image' ) }
blurhash = { link . get ( 'blurhash' ) }
/ >
) ) }
< / div >
) ;
}
}
2023-03-24 22:15:25 +00:00
export default connect ( mapStateToProps ) ( Links ) ;