File size: 5,971 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 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 |
import { Card } from '@automattic/components';
import { useTranslate } from 'i18n-calypso';
import { useDispatch, useSelector } from 'react-redux';
import ReaderExportButton from 'calypso/blocks/reader-export-button';
import { READER_EXPORT_TYPE_LIST } from 'calypso/blocks/reader-export-button/constants';
import QueryReaderList from 'calypso/components/data/query-reader-list';
import QueryReaderListItems from 'calypso/components/data/query-reader-list-items';
import EmptyContent from 'calypso/components/empty-content';
import NavigationHeader from 'calypso/components/navigation-header';
import SectionNav from 'calypso/components/section-nav';
import NavItem from 'calypso/components/section-nav/item';
import NavTabs from 'calypso/components/section-nav/tabs';
import { preventWidows } from 'calypso/lib/formatting';
import ReaderMain from 'calypso/reader/components/reader-main';
import Missing from 'calypso/reader/list-stream/missing';
import { createReaderList, updateReaderList } from 'calypso/state/reader/lists/actions';
import {
getListByOwnerAndSlug,
getListItems,
isCreatingList as isCreatingListSelector,
isUpdatingList as isUpdatingListSelector,
isMissingByOwnerAndSlug,
} from 'calypso/state/reader/lists/selectors';
import ItemAdder from './item-adder';
import ListDelete from './list-delete';
import ListForm from './list-form';
import ListItem from './list-item';
import SubscriptionItemAdder from './subscription-item-adder';
import './style.scss';
function Details( { list } ) {
const dispatch = useDispatch();
const isUpdatingList = useSelector( isUpdatingListSelector );
return (
<ListForm
list={ list }
isSubmissionDisabled={ isUpdatingList }
onSubmit={ ( newList ) => dispatch( updateReaderList( newList ) ) }
/>
);
}
function Items( { list, listItems, owner } ) {
const translate = useTranslate();
if ( ! listItems ) {
return <Card>{ translate( 'Loading…' ) }</Card>;
}
return (
<>
<ItemAdder key="item-adder" list={ list } listItems={ listItems } owner={ owner } />
{ listItems?.length > 0 && (
<>
<h1 className="list-manage__subscriptions-header">{ translate( 'Added sites' ) }</h1>
{ listItems.map( ( item ) => (
<ListItem
key={ item.feed_ID || item.site_ID || item.tag_ID }
owner={ owner }
list={ list }
item={ item }
/>
) ) }
</>
) }
<SubscriptionItemAdder list={ list } listItems={ listItems } owner={ owner } />
</>
);
}
function Export( { list, listItems } ) {
const translate = useTranslate();
return (
<Card>
<p>
{ translate(
'You can export this list to use on other services. The file will be in OPML format.'
) }
</p>
<ReaderExportButton
exportType={ READER_EXPORT_TYPE_LIST }
listId={ list.ID }
disabled={ ! listItems?.length }
variant="primary"
/>
</Card>
);
}
function ReaderListCreate() {
const translate = useTranslate();
const dispatch = useDispatch();
const isCreatingList = useSelector( isCreatingListSelector );
return (
<ReaderMain>
<NavigationHeader title={ translate( 'Create List' ) } />
<ListForm
isCreateForm
isSubmissionDisabled={ isCreatingList }
onSubmit={ ( list ) => dispatch( createReaderList( list ) ) }
/>
</ReaderMain>
);
}
function ReaderListEdit( props ) {
const { selectedSection } = props;
const translate = useTranslate();
const list = useSelector( ( state ) => getListByOwnerAndSlug( state, props.owner, props.slug ) );
const isMissing = useSelector( ( state ) =>
isMissingByOwnerAndSlug( state, props.owner, props.slug )
);
const listItems = useSelector( ( state ) =>
list ? getListItems( state, list.ID ) : undefined
);
const sectionProps = { ...props, list, listItems };
// Only the list owner can manage the list
if ( list && ! list.is_owner ) {
return (
<EmptyContent
title={ preventWidows( translate( "You don't have permission to manage this list." ) ) }
/>
);
}
// The list does not exist
if ( isMissing ) {
return <Missing />;
}
return (
<>
{ ! list && <QueryReaderList owner={ props.owner } slug={ props.slug } /> }
{ ! listItems && list && <QueryReaderListItems owner={ props.owner } slug={ props.slug } /> }
<ReaderMain>
<NavigationHeader
title={ translate( 'Manage %(listName)s', {
args: { listName: list?.title || decodeURIComponent( props.slug ) },
} ) }
/>
{ ! list && <Card>{ translate( 'Loading…' ) }</Card> }
{ list && (
<>
<SectionNav>
<NavTabs>
<NavItem
selected={ selectedSection === 'details' }
path={ `/reader/list/${ props.owner }/${ props.slug }/edit` }
>
{ translate( 'Details' ) }
</NavItem>
<NavItem
selected={ selectedSection === 'items' }
count={ listItems?.length }
path={ `/reader/list/${ props.owner }/${ props.slug }/edit/items` }
>
{ translate( 'Sites' ) }
</NavItem>
<NavItem
selected={ selectedSection === 'export' }
path={ `/reader/list/${ props.owner }/${ props.slug }/export` }
>
{ translate( 'Export' ) }
</NavItem>
{ ! list?.is_immutable && (
<NavItem
selected={ selectedSection === 'delete' }
path={ `/reader/list/${ props.owner }/${ props.slug }/delete` }
>
{ translate( 'Delete' ) }
</NavItem>
) }
</NavTabs>
</SectionNav>
{ selectedSection === 'details' && <Details { ...sectionProps } /> }
{ selectedSection === 'items' && <Items { ...sectionProps } /> }
{ selectedSection === 'export' && <Export { ...sectionProps } /> }
{ selectedSection === 'delete' && <ListDelete { ...sectionProps } /> }
</>
) }
</ReaderMain>
</>
);
}
export default function ReaderListManage( props ) {
return props.isCreateForm ? <ReaderListCreate /> : <ReaderListEdit { ...props } />;
}
|