File size: 1,474 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 |
import { useTranslate } from 'i18n-calypso';
import { useState, useEffect } from 'react';
import { useSelector } from 'react-redux';
import { getReaderFollows } from 'calypso/state/reader/follows/selectors';
import ListItem from './list-item';
// This is different than the item adder as this simply shows followed subscriptions to recommended
// adding, and only appears if the list has been empty. This is also intended to show beneath the
// list items (where the item adder shows items above), so items it adds are not hidden beneath the
// long list of subs.
export default function SubscriptionItemAdder( { list, listItems, owner } ) {
const translate = useTranslate();
const [ renderAllFollows, setRenderAllFollows ] = useState( false );
const allFollows = useSelector( ( state ) => getReaderFollows( state ) );
// Continue showing the subscriptions list if we have showed it once in this session.
useEffect( () => {
if ( listItems?.length === 0 ) {
setRenderAllFollows( true );
}
}, [ listItems ] );
if ( ! renderAllFollows || ! allFollows?.length ) {
return null;
}
return (
<>
<h2 className="list-manage__subscriptions-header">{ translate( 'Your subscriptions' ) }</h2>
{ allFollows.map( ( item ) => (
<ListItem
hideIfInList
isFollowed
hideFollowButton
item={ item }
key={ item.feed_ID || item.site_ID || item.tag_ID || item.feed_URL }
list={ list }
owner={ owner }
/>
) ) }
</>
);
}
|