|
|
import { Button, Gridicon } from '@automattic/components'; |
|
|
import { localize } from 'i18n-calypso'; |
|
|
import { map } from 'lodash'; |
|
|
import PropTypes from 'prop-types'; |
|
|
import { PureComponent } from 'react'; |
|
|
import { connect } from 'react-redux'; |
|
|
import { RelatedPostCard } from 'calypso/blocks/reader-related-card'; |
|
|
import QueryReaderPost from 'calypso/components/data/query-reader-post'; |
|
|
import { keyForPost } from 'calypso/reader/post-key'; |
|
|
import { recordAction, recordTrackForPost } from 'calypso/reader/stats'; |
|
|
import { getPostsByKeys } from 'calypso/state/reader/posts/selectors'; |
|
|
import { dismissPost } from 'calypso/state/reader/site-dismissals/actions'; |
|
|
|
|
|
function dismissPostAnalytics( uiIndex, storeId, post ) { |
|
|
recordTrackForPost( 'calypso_reader_recommended_post_dismissed', post, { |
|
|
recommendation_source: 'in-stream', |
|
|
ui_position: uiIndex, |
|
|
} ); |
|
|
recordAction( 'in_stream_rec_dismiss' ); |
|
|
} |
|
|
|
|
|
const handleSiteClick = ( uiIndex ) => ( post ) => { |
|
|
recordTrackForPost( 'calypso_reader_recommended_site_clicked', post, { |
|
|
recommendation_source: 'in-stream', |
|
|
ui_position: uiIndex, |
|
|
} ); |
|
|
recordAction( 'in_stream_rec_site_click' ); |
|
|
}; |
|
|
|
|
|
const handlePostClick = ( uiIndex ) => ( post ) => { |
|
|
recordTrackForPost( 'calypso_reader_recommended_post_clicked', post, { |
|
|
recommendation_source: 'in-stream', |
|
|
ui_position: uiIndex, |
|
|
} ); |
|
|
recordAction( 'in_stream_rec_post_click' ); |
|
|
}; |
|
|
|
|
|
export class RecommendedPosts extends PureComponent { |
|
|
static propTypes = { |
|
|
index: PropTypes.number, |
|
|
translate: PropTypes.func, |
|
|
recommendations: PropTypes.array, |
|
|
}; |
|
|
|
|
|
|
|
|
render() { |
|
|
const { posts, recommendations } = this.props; |
|
|
|
|
|
return ( |
|
|
<div className="reader-stream__recommended-posts"> |
|
|
<QueryReaderPost postKey={ recommendations[ 0 ] } /> |
|
|
<QueryReaderPost postKey={ recommendations[ 1 ] } /> |
|
|
<h1 className="reader-stream__recommended-posts-header"> |
|
|
<Gridicon icon="thumbs-up" size={ 18 } /> |
|
|
|
|
|
{ this.props.translate( 'Recommended Posts' ) } |
|
|
</h1> |
|
|
<ul className="reader-stream__recommended-posts-list"> |
|
|
{ map( posts, ( post, index ) => { |
|
|
const uiIndex = this.props.index + index; |
|
|
return ( |
|
|
<li |
|
|
className="reader-stream__recommended-posts-list-item" |
|
|
key={ `${ index }-${ post && post.global_ID }` } |
|
|
> |
|
|
<div className="reader-stream__recommended-post-dismiss"> |
|
|
<Button |
|
|
borderless |
|
|
title={ this.props.translate( 'Dismiss this recommendation' ) } |
|
|
onClick={ () => { |
|
|
dismissPostAnalytics( uiIndex, this.props.streamKey, post ); |
|
|
this.props.dismissPost( { |
|
|
streamKey: this.props.streamKey, |
|
|
postKey: keyForPost( post ), |
|
|
} ); |
|
|
} } |
|
|
> |
|
|
<Gridicon icon="cross" size={ 14 } /> |
|
|
</Button> |
|
|
</div> |
|
|
<RelatedPostCard |
|
|
post={ post } |
|
|
onPostClick={ handlePostClick( uiIndex ) } |
|
|
onSiteClick={ handleSiteClick( uiIndex ) } |
|
|
followSource={ this.props.followSource } |
|
|
/> |
|
|
</li> |
|
|
); |
|
|
} ) } |
|
|
</ul> |
|
|
</div> |
|
|
); |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
export default connect( |
|
|
( state, ownProps ) => ( { |
|
|
posts: getPostsByKeys( state, ownProps.recommendations ), |
|
|
} ), |
|
|
{ dismissPost } |
|
|
)( localize( RecommendedPosts ) ); |
|
|
|