clean
This commit is contained in:
parent
3386880317
commit
6614eddba2
2 changed files with 0 additions and 87 deletions
|
@ -82,7 +82,6 @@ function CollectionButtons(props: Props) {
|
||||||
{!confirmDelete && (
|
{!confirmDelete && (
|
||||||
<div className="collection-preview__edit-group collection-preview__delete ">
|
<div className="collection-preview__edit-group collection-preview__delete ">
|
||||||
<Button
|
<Button
|
||||||
// button="alt"
|
|
||||||
className={'button-collection-manage button-collection-delete top-right bottom-right'}
|
className={'button-collection-manage button-collection-delete top-right bottom-right'}
|
||||||
icon={ICONS.DELETE}
|
icon={ICONS.DELETE}
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
|
@ -94,7 +93,6 @@ function CollectionButtons(props: Props) {
|
||||||
{confirmDelete && (
|
{confirmDelete && (
|
||||||
<div className="collection-preview__edit-group collection-preview__delete">
|
<div className="collection-preview__edit-group collection-preview__delete">
|
||||||
<Button
|
<Button
|
||||||
// button="alt"
|
|
||||||
className={'button-collection-manage button-collection-delete-cancel top-right'}
|
className={'button-collection-manage button-collection-delete-cancel top-right'}
|
||||||
icon={ICONS.REMOVE}
|
icon={ICONS.REMOVE}
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
|
@ -102,7 +100,6 @@ function CollectionButtons(props: Props) {
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<Button
|
<Button
|
||||||
// button="alt"
|
|
||||||
className={'button-collection-manage button-collection-delete-confirm bottom-right'}
|
className={'button-collection-manage button-collection-delete-confirm bottom-right'}
|
||||||
icon={ICONS.DELETE}
|
icon={ICONS.DELETE}
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
|
|
|
@ -26,8 +26,6 @@ import ClaimPreviewLoading from './claim-preview-loading';
|
||||||
import ClaimPreviewHidden from './claim-preview-no-mature';
|
import ClaimPreviewHidden from './claim-preview-no-mature';
|
||||||
import ClaimPreviewNoContent from './claim-preview-no-content';
|
import ClaimPreviewNoContent from './claim-preview-no-content';
|
||||||
import CollectionEditButtons from './collection-buttons';
|
import CollectionEditButtons from './collection-buttons';
|
||||||
import Button from 'component/button';
|
|
||||||
import * as ICONS from 'constants/icons';
|
|
||||||
|
|
||||||
import AbandonedChannelPreview from 'component/abandonedChannelPreview';
|
import AbandonedChannelPreview from 'component/abandonedChannelPreview';
|
||||||
|
|
||||||
|
@ -161,7 +159,6 @@ const ClaimPreview = forwardRef<any, {}>((props: Props, ref: any) => {
|
||||||
const shouldHideActions = hideActions || isMyCollection || type === 'small' || type === 'tooltip';
|
const shouldHideActions = hideActions || isMyCollection || type === 'small' || type === 'tooltip';
|
||||||
const canonicalUrl = claim && claim.canonical_url;
|
const canonicalUrl = claim && claim.canonical_url;
|
||||||
const lastCollectionIndex = collectionUris ? collectionUris.length - 1 : 0;
|
const lastCollectionIndex = collectionUris ? collectionUris.length - 1 : 0;
|
||||||
console.log('type', type);
|
|
||||||
const channelSubscribers = React.useMemo(() => {
|
const channelSubscribers = React.useMemo(() => {
|
||||||
if (channelSubCount === undefined) {
|
if (channelSubCount === undefined) {
|
||||||
return <span />;
|
return <span />;
|
||||||
|
@ -408,87 +405,6 @@ const ClaimPreview = forwardRef<any, {}>((props: Props, ref: any) => {
|
||||||
{!pending && (
|
{!pending && (
|
||||||
<>
|
<>
|
||||||
{renderActions && claim && renderActions(claim)}
|
{renderActions && claim && renderActions(claim)}
|
||||||
{false && Boolean(isMyCollection && listId) && (
|
|
||||||
<>
|
|
||||||
<div className="collection-preview__edit-buttons">
|
|
||||||
<div className="collection-preview__edit-group">
|
|
||||||
<Button
|
|
||||||
className={'button-collection-manage'}
|
|
||||||
icon={ICONS.UP_TOP}
|
|
||||||
disabled={collectionIndex === 0}
|
|
||||||
onClick={(e) => {
|
|
||||||
e.preventDefault();
|
|
||||||
e.stopPropagation();
|
|
||||||
if (editCollection) {
|
|
||||||
// $FlowFixMe
|
|
||||||
editCollection(listId, {
|
|
||||||
order: { from: collectionIndex, to: 0 },
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
<Button
|
|
||||||
className={'button-collection-manage'}
|
|
||||||
disabled={collectionIndex === 0}
|
|
||||||
icon={ICONS.UP}
|
|
||||||
onClick={(e) => {
|
|
||||||
e.preventDefault();
|
|
||||||
e.stopPropagation();
|
|
||||||
if (editCollection) {
|
|
||||||
// $FlowFixMe
|
|
||||||
editCollection(listId, {
|
|
||||||
order: { from: collectionIndex, to: Number(collectionIndex) - 1 },
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
<Button
|
|
||||||
className={'button-collection-manage'}
|
|
||||||
icon={ICONS.DOWN}
|
|
||||||
disabled={collectionIndex === lastCollectionIndex}
|
|
||||||
onClick={(e) => {
|
|
||||||
e.preventDefault();
|
|
||||||
e.stopPropagation();
|
|
||||||
if (editCollection) {
|
|
||||||
// $FlowFixMe
|
|
||||||
editCollection(listId, {
|
|
||||||
order: { from: collectionIndex, to: Number(collectionIndex + 1) },
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
<Button
|
|
||||||
className={'button-collection-manage'}
|
|
||||||
icon={ICONS.DOWN_BOTTOM}
|
|
||||||
disabled={collectionIndex === lastCollectionIndex}
|
|
||||||
onClick={(e) => {
|
|
||||||
e.preventDefault();
|
|
||||||
e.stopPropagation();
|
|
||||||
if (editCollection) {
|
|
||||||
// $FlowFixMe
|
|
||||||
editCollection(listId, {
|
|
||||||
order: { from: collectionIndex, to: lastCollectionIndex },
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<div className="collection-preview__edit-group">
|
|
||||||
<Button
|
|
||||||
// button="alt"
|
|
||||||
className={'button-collection-manage'}
|
|
||||||
icon={ICONS.DELETE}
|
|
||||||
onClick={(e) => {
|
|
||||||
e.preventDefault();
|
|
||||||
e.stopPropagation();
|
|
||||||
// $FlowFixMe
|
|
||||||
if (editCollection) editCollection(listId, { claims: [claim], remove: true });
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</>
|
|
||||||
)}
|
|
||||||
{shouldHideActions || renderActions ? null : actions !== undefined ? (
|
{shouldHideActions || renderActions ? null : actions !== undefined ? (
|
||||||
actions
|
actions
|
||||||
) : (
|
) : (
|
||||||
|
|
Loading…
Reference in a new issue