File size: 4,029 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 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 | /* eslint-disable wpcalypso/jsx-classname-namespace */
import { Button, Card, Gridicon } from '@automattic/components';
import { useTranslate } from 'i18n-calypso';
import { useState } from 'react';
import FollowButton from 'calypso/blocks/follow-button/button';
import SitePlaceholder from 'calypso/blocks/site/placeholder';
import { useDispatch, useSelector } from 'calypso/state';
import { addReaderListSite, deleteReaderListSite } from 'calypso/state/reader/lists/actions';
import { getMatchingItem } from 'calypso/state/reader/lists/selectors';
import ItemRemoveDialog from './item-remove-dialog';
import { Item, List, Site, SiteError } from './types';
function isSiteError( site: Site | SiteError ): site is SiteError {
return 'errors' in site;
}
function SiteTitle( { site: { name, URL, feed_URL } }: { site: Site } ) {
return <>{ name || URL || feed_URL }</>;
}
function renderSite( site: Site ) {
return (
<div className="site-item list-item">
<a className="list-item__content" href={ `/reader/feeds/${ site.feed_ID }` }>
<div className="list-item__icon">
{ site.icon?.img && (
<img src={ site.icon.img } className="list-item__img image" alt="" />
) }
{ ! site.icon?.img && <Gridicon icon="site" size={ 36 } /> }
</div>
<div className="list-item__info">
<div className="list-item__title">
<SiteTitle site={ site } />
</div>
<div className="list-item__domain">{ site.description || site.feed_URL }</div>
</div>
</a>
</div>
);
}
function renderSiteError( err: SiteError ) {
return (
<div className="site-item list-item is-error">
<div className="list-item__content">
<div className="list-item__icon">
<Gridicon icon="notice" size={ 24 } />
</div>
<div className="list-item__info">
<div className="list-item__title">
{ err.error_data.site_gone ? 'Site has been deleted' : 'Unknown error' }
</div>
<div className="list-item__domain"></div>
</div>
</div>
</div>
);
}
/* eslint-disable wpcalypso/jsx-classname-namespace */
export default function SiteItem( props: {
hideIfInList?: boolean;
isFollowed?: boolean;
item: Item;
list: List;
owner: string;
hideFollowButton?: boolean;
} ) {
const { item, list, owner } = props;
const site = props.item.meta?.data?.site as Site | SiteError | undefined;
const dispatch = useDispatch();
const translate = useTranslate();
const isInList = !! useSelector( ( state ) =>
getMatchingItem( state, { siteId: props.item.site_ID, listId: props.list.ID } )
);
const isRecommendedBlogsList = list.slug === 'recommended-blogs';
const [ showDeleteConfirmation, setShowDeleteConfirmation ] = useState( false );
const addItem = () =>
item.site_ID && dispatch( addReaderListSite( list.ID, owner, list.slug, item.site_ID ) );
const deleteItem = ( shouldDelete: boolean ) => {
setShowDeleteConfirmation( false );
shouldDelete &&
item.site_ID &&
dispatch( deleteReaderListSite( list.ID, owner, list.slug, item.site_ID ) );
};
if ( isInList && props.hideIfInList ) {
return null;
}
if ( ! site ) {
// TODO: Add support for removing invalid site list item
return (
<Card className="list-manage__site-card">
<SitePlaceholder />
</Card>
);
}
return (
<Card className="list-manage__site-card">
{ isSiteError( site ) ? renderSiteError( site ) : renderSite( site ) }
{ props.isFollowed && ! props.hideFollowButton && (
<FollowButton followLabel={ translate( 'Following site' ) } following />
) }
{ ! isInList ? (
<Button primary onClick={ addItem }>
{ isRecommendedBlogsList ? translate( 'Recommend' ) : translate( 'Add' ) }
</Button>
) : (
<Button primary onClick={ () => setShowDeleteConfirmation( true ) }>
{ translate( 'Remove' ) }
</Button>
) }
{ ! isSiteError( site ) && (
<ItemRemoveDialog
onClose={ deleteItem }
title={ <SiteTitle site={ site } /> }
type="site"
visibility={ showDeleteConfirmation }
/>
) }
</Card>
);
}
|