File size: 1,584 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
import page from '@automattic/calypso-router';
import { localize } from 'i18n-calypso';
import PropTypes from 'prop-types';
import { Component } from 'react';
import ExpandableSidebarMenu from 'calypso/layout/sidebar/expandable';
import ReaderListIcon from 'calypso/reader/components/icons/list-icon';
import ReaderSidebarListsList from './list';
import './style.scss';
export class ReaderSidebarLists extends Component {
static propTypes = {
lists: PropTypes.array,
path: PropTypes.string.isRequired,
isOpen: PropTypes.bool,
onClick: PropTypes.func,
currentListOwner: PropTypes.string,
currentListSlug: PropTypes.string,
translate: PropTypes.func,
};
selectMenu = () => {
const { onClick, lists, isOpen, path } = this.props;
const defaultSelection = lists?.length
? `/reader/list/${ lists[ 0 ]?.owner }/${ lists[ 0 ]?.slug }`
: '/reader/list/new';
if ( ! isOpen ) {
onClick();
}
if ( path !== defaultSelection ) {
page( defaultSelection );
}
};
render() {
const { translate, isOpen, onClick, path, ...passedProps } = this.props;
return (
<li>
<ExpandableSidebarMenu
expanded={ isOpen }
title={ translate( 'Lists' ) }
onClick={ this.selectMenu }
customIcon={ <ReaderListIcon viewBox="0 0 24 24" /> }
disableFlyout
className={ path.startsWith( '/reader/list' ) && 'sidebar__menu--selected' }
expandableIconClick={ onClick }
>
<ReaderSidebarListsList path={ path } { ...passedProps } />
</ExpandableSidebarMenu>
</li>
);
}
}
export default localize( ReaderSidebarLists );
|