File size: 2,438 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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
import { formatListBullets, Icon } from '@wordpress/icons';
import { useTranslate } from 'i18n-calypso';
import { useEffect, useState } from 'react';
import { connect } from 'react-redux';
import EmptyContent from 'calypso/components/empty-content';
import { UserData } from 'calypso/lib/user/user';
import { List } from 'calypso/reader/list-manage/types';
import { requestUserLists } from 'calypso/state/reader/lists/actions';
interface AppState {
reader: {
lists: {
userLists: Record< string, List[] >;
isRequestingUserLists: Record< string, boolean >;
};
};
}
interface UserListsProps {
user: UserData;
requestUserLists?: ( userLogin: string ) => void;
lists?: List[];
isLoading?: boolean;
}
export const UserLists = ( {
user,
requestUserLists,
lists,
isLoading,
}: UserListsProps ): JSX.Element => {
const translate = useTranslate();
const [ hasRequested, setHasRequested ] = useState( false );
const userLogin = user.user_login;
useEffect( () => {
if ( ! hasRequested && requestUserLists && userLogin ) {
requestUserLists( userLogin );
setHasRequested( true );
}
}, [ userLogin, requestUserLists, hasRequested ] );
if ( isLoading || ! hasRequested ) {
return <></>;
}
if ( ! lists || lists.length === 0 ) {
return (
<div className="user-profile__lists">
<EmptyContent
illustration={ null }
icon={ <Icon icon={ formatListBullets } size={ 48 } /> }
title={ null }
line={ translate( 'No lists yet.' ) }
/>
</div>
);
}
return (
<div className="user-profile__lists">
<div className="user-profile__lists-body">
{ lists.map( ( list: List ) => (
<a
className="user-profile__lists-body-link"
href={ `/reader/list/${ list.owner }/${ list.slug }` }
key={ list.ID }
>
<div className="card reader-post-card is-compact is-clickable">
<div className="reader-post-card__post-heading">
<h2 className="reader-post-card__title">{ list.title }</h2>
</div>
<div className="reader-post-card__post-content">{ list.description }</div>
</div>
</a>
) ) }
</div>
</div>
);
};
export default connect(
( state: AppState, ownProps: UserListsProps ) => ( {
lists: state.reader.lists.userLists[ ownProps.user.user_login ?? '' ] ?? [],
isLoading: state.reader.lists.isRequestingUserLists[ ownProps.user.user_login ?? '' ] ?? false,
} ),
{
requestUserLists,
}
)( UserLists );
|