import { localize } from 'i18n-calypso'; import PropTypes from 'prop-types'; import { Component } from 'react'; import ReactDom from 'react-dom'; import { connect } from 'react-redux'; import AutoDirection from 'calypso/components/auto-direction'; import { recordAction, recordGaEvent } from 'calypso/reader/stats'; import { getCurrentUser } from 'calypso/state/current-user/selectors'; import { recordReaderTracksEvent } from 'calypso/state/reader/analytics/actions'; import ReaderSidebarHelper from '../helper'; import { MenuItem, MenuItemLink } from '../menu'; export class ReaderSidebarListsListItem extends Component { static propTypes = { list: PropTypes.object.isRequired, path: PropTypes.string.isRequired, currentListOwner: PropTypes.string, currentListSlug: PropTypes.string, currentUser: PropTypes.object, }; componentDidMount() { // Scroll to the current list if ( this.props.list.slug === this.props.currentListSlug && this.props.list.owner === this.props.currentListOwner ) { const node = ReactDom.findDOMNode( this ); node.scrollIntoView(); } } handleListSidebarClick = () => { recordAction( 'clicked_reader_sidebar_list_item' ); recordGaEvent( 'Clicked Reader Sidebar List Item' ); this.props.recordReaderTracksEvent( 'calypso_reader_sidebar_list_item_clicked', { list: decodeURIComponent( this.props.list.slug ), } ); }; render() { const { list, translate, currentUser } = this.props; const listRelativeUrl = `/reader/list/${ list.owner }/${ list.slug }`; const listManagementUrls = [ listRelativeUrl + '/items', listRelativeUrl + '/edit', listRelativeUrl + '/export', listRelativeUrl + '/delete', ]; const pathSegments = this.props.path?.split( '/' ); const lastPathSegment = Array.isArray( pathSegments ) && pathSegments[ pathSegments.length - 1 ]; const isCurrentList = lastPathSegment && // Prevents partial slug matches (e.g. bluefuton/test and bluefuton/test2) lastPathSegment.toLowerCase() === list.slug.toLowerCase() && ReaderSidebarHelper.pathStartsWithOneOf( [ listRelativeUrl ], this.props.path ); const isCurrentListManage = ReaderSidebarHelper.pathStartsWithOneOf( listManagementUrls, this.props.path ); const selected = isCurrentList || isCurrentListManage; // Show author name in parentheses if the list is owned by someone other than the current user const isOwnedByCurrentUser = currentUser && list.owner === currentUser.username; const displayTitle = isOwnedByCurrentUser ? list.title : `${ list.title } (${ list.owner })`; return (
{ displayTitle }
); } } export default connect( ( state ) => ( { currentUser: getCurrentUser( state ), } ), { recordReaderTracksEvent, } )( localize( ReaderSidebarListsListItem ) );