import { localize } from 'i18n-calypso';
import { Component } from 'react';
import { connect } from 'react-redux';
import EmptyContent from 'calypso/components/empty-content';
import { withReaderPerformanceTrackerStop } from 'calypso/reader/reader-performance-tracker';
import { recordAction, recordGaEvent } from 'calypso/reader/stats';
import { recordReaderTracksEvent } from 'calypso/state/reader/analytics/actions';
class ConversationsEmptyContent extends Component {
shouldComponentUpdate() {
return false;
}
recordAction = () => {
recordAction( 'clicked_search_on_empty' );
recordGaEvent( 'Clicked Search on EmptyContent' );
this.props.recordReaderTracksEvent( 'calypso_reader_search_on_empty_stream_clicked' );
};
/* eslint-disable wpcalypso/jsx-classname-namespace */
render() {
const action = (
{ this.props.translate( 'Find posts to follow' ) }
);
const secondaryAction = null;
return (
);
}
/* eslint-enable wpcalypso/jsx-classname-namespace */
}
export default connect( null, { recordReaderTracksEvent } )(
withReaderPerformanceTrackerStop( localize( ConversationsEmptyContent ) )
);