lbry-desktop/ui/page/collection/internal/collectionActions/view.jsx

89 lines
2.8 KiB
React
Raw Normal View History

Playlists v2: Refactors, touch ups + Queue Mode (#1604) * Playlists v2 * Style pass * Change playlist items arrange icon * Playlist card body open by default * Refactor collectionEdit components * Paginate & Refactor bid field * Collection page changes * Add Thumbnail optional * Replace extra info for description on collection page * Playlist card right below video on medium screen * Allow editing private collections * Add edit option to menus * Allow deleting a public playlist but keeping a private version * Add queue to Save menu, remove edit option from Builtin pages, show queue on playlists page * Fix scroll to recent persisting on medium screen * Fix adding to queue from menu * Fixes for delete * PublishList: delay mounting Items tab to prevent lock-up (#1783) For a large list, the playlist publish form is unusable (super-slow typing) due to the entire list being mounted despite the tab is not active. The full solution is still to paginate it, but for now, don't mount the tab until it is selected. Add a spinner to indicate something is loading. It's not prefect, but it's throwaway code anyway. At least we can fill in the fields properly now. * Batch-resolve private collections (#1782) * makeSelectClaimForClaimId --> selectClaimForClaimId Move away from the problematic `makeSelect*`, especially in large loops. * Batch-resolve private collections 1758 This alleviates the lock-up that is caused by large number of invidual resolves. There will still be some minor stutter due to the large DOM that React needs to handle -- that is logged in 1758 and will be handled separately. At least the stutter is short (1-2s) and the app is still usable. Private list items are being resolve individually, super slow if the list is large (>100). Published lists doesn't have this issue. doFetchItemsInCollections contains most of the useful logic, but it isn't called for private/built-in lists because it's not an actual claim. Tweaked doFetchItemsInCollections to handle private (UUID-based) collections. * Use persisted state for floating player playlist card body - I find it annoying being open everytime * Fix removing edits from published playlist * Fix scroll on mobile * Allow going editing items from toast * Fix ClaimShareButton * Prevent edit/publish of builtin * Fix async inside forEach * Fix sync on queue edit * Fix autoplayCountdown replay * Fix deleting an item scrolling the playlist * CreatedAt fixes * Remove repost for now * Anon publish fixes * Fix mature case on floating Co-authored-by: infinite-persistence <64950861+infinite-persistence@users.noreply.github.com>
2022-07-13 15:59:59 +02:00
// @flow
import * as ICONS from 'constants/icons';
import React from 'react';
import Button from 'component/button';
import { useIsMobile } from 'effects/use-screensize';
import ClaimSupportButton from 'component/claimSupportButton';
import ClaimShareButton from 'component/claimShareButton';
import FileReactions from 'component/fileReactions';
import classnames from 'classnames';
import { ENABLE_FILE_REACTIONS } from 'config';
// import ClaimRepostButton from 'component/claimRepostButton';
import PlayButton from './internal/playButton';
import ShuffleButton from './internal/shuffleButton';
import CollectionDeleteButton from './internal/deleteButton';
import CollectionPublishButton from './internal/publishButton';
import CollectionReportButton from './internal/report-button';
type Props = {
uri: string,
claimId?: string,
isMyCollection: boolean,
collectionId: string,
showEdit: boolean,
setShowEdit: (boolean) => void,
isBuiltin: boolean,
collectionEmpty: boolean,
};
function CollectionActions(props: Props) {
const { uri, claimId, isMyCollection, collectionId, isBuiltin, showEdit, setShowEdit, collectionEmpty } = props;
const isMobile = useIsMobile();
return (
<div className={classnames('media__actions justify-space-between', { stretch: isMobile })}>
<SectionElement>
{!collectionEmpty && <PlayButton collectionId={collectionId} />}
{!collectionEmpty && <ShuffleButton collectionId={collectionId} />}
{!isBuiltin && (
<>
{uri && (
<>
{ENABLE_FILE_REACTIONS && <FileReactions uri={uri} />}
<ClaimSupportButton uri={uri} fileAction />
{/* <ClaimRepostButton uri={uri} /> */}
<ClaimShareButton uri={uri} collectionId={collectionId} fileAction webShareable />
</>
)}
{isMyCollection ? (
<>
<CollectionPublishButton uri={uri} collectionId={collectionId} />
<CollectionDeleteButton uri={uri} collectionId={collectionId} />
</>
) : (
claimId && <CollectionReportButton claimId={claimId} />
)}
</>
)}
</SectionElement>
{!collectionEmpty && isMyCollection && (
<div className="section">
<Button
title={__('Arrange')}
className={classnames('button-toggle', { 'button-toggle--active': showEdit })}
icon={ICONS.ARRANGE}
onClick={() => setShowEdit(!showEdit)}
/>
</div>
)}
</div>
);
}
type SectionProps = {
children: any,
};
const SectionElement = (props: SectionProps) => {
const { children } = props;
const isMobile = useIsMobile();
return isMobile ? children : <div className="section__actions">{children}</div>;
};
export default CollectionActions;