2019-06-11 20:10:58 +02:00
|
|
|
// @flow
|
2019-09-26 18:28:08 +02:00
|
|
|
import type { Node } from 'react';
|
2021-11-09 18:52:05 +01:00
|
|
|
import React, { useEffect, forwardRef } from 'react';
|
2020-02-04 22:59:49 +01:00
|
|
|
import { NavLink, withRouter } from 'react-router-dom';
|
2021-07-22 10:24:25 +02:00
|
|
|
import { isEmpty } from 'util/object';
|
2021-07-07 09:10:28 +02:00
|
|
|
import { lazyImport } from 'util/lazyImport';
|
2019-06-11 20:10:58 +02:00
|
|
|
import classnames from 'classnames';
|
2021-10-25 16:56:31 +02:00
|
|
|
import { isURIValid } from 'util/lbryURI';
|
2021-10-17 10:36:14 +02:00
|
|
|
import * as COLLECTIONS_CONSTS from 'constants/collections';
|
2021-12-01 13:32:42 +01:00
|
|
|
import { isChannelClaim } from 'util/claim';
|
2019-12-02 18:30:08 +01:00
|
|
|
import { formatLbryUrlForWeb } from 'util/url';
|
2021-07-22 10:24:25 +02:00
|
|
|
import { formatClaimPreviewTitle } from 'util/formatAriaLabel';
|
2022-01-10 04:13:07 +01:00
|
|
|
import { toCompactNotation } from 'util/string';
|
2022-04-01 16:56:18 +02:00
|
|
|
import ClaimPreviewProgress from 'component/claimPreviewProgress';
|
2022-04-15 13:02:51 +02:00
|
|
|
import Icon from 'component/common/icon';
|
2022-01-11 17:42:12 +01:00
|
|
|
import Tooltip from 'component/common/tooltip';
|
2020-01-06 19:32:35 +01:00
|
|
|
import FileThumbnail from 'component/fileThumbnail';
|
2019-06-11 20:10:58 +02:00
|
|
|
import UriIndicator from 'component/uriIndicator';
|
wip
wip
wip - everything but publish, autoplay, and styling
collection publishing
add channel to collection publish
cleanup
wip
bump
clear mass add after success
move collection item management controls
redirect replace to published collection id
bump
playlist selector on create
bump
use new collection add ui element
bump
wip
gitignore
add content json
wip
bump
context add to playlist
basic collections page style pass wip
wip: edits, buttons, styles...
change fileAuthor to claimAuthor
update, pending bugfixes, delete modal progress, collection header, other bugfixes
bump
cleaning
show page bugfix
builtin collection headers
no playlists, no grid title
wip
style tweaks
use normal looking claim previews for collection tiles
add collection changes
style library previews
collection menulist for delete/view on library
delete modal works for unpublished
rearrange collection publish tabs
clean up collection publishing and items
show on odysee
begin collectoin edit header and css renaming
better thumbnails
bump
fix collection publish redirect
view collection in menu does something
copy and thumbs
list previews, pending, context menus, list page
enter to add collection, lists page empty state
playable lists only, delete feature, bump
put fileListDownloaded back
better collection titles
improve collection claim details
fix horiz more icon
fix up channel page
style, copy, bump
refactor preview overlay properties,
fix reposts showing as floppydisk
add watch later toast,
small overlay properties on wunderbar results,
fix collection actions buttons
bump
cleanup
cleaning, refactoring
bump
preview thumb styling, cleanup
support discover page lists search
sync, bump
bump, fix sync more
enforce builtin order for now
new lists page empty state
try to indicate unpublished edits in lists
bump
fix autoplay and linting
consts, fix autoplay
bugs
fixes
cleanup
fix, bump
lists experimental ui, fixes
refactor listIndex out
hack in collection fallback thumb
bump
2021-02-06 08:03:51 +01:00
|
|
|
import PreviewOverlayProperties from 'component/previewOverlayProperties';
|
2019-06-19 07:05:43 +02:00
|
|
|
import ClaimTags from 'component/claimTags';
|
2019-06-11 20:10:58 +02:00
|
|
|
import SubscribeButton from 'component/subscribeButton';
|
|
|
|
import ChannelThumbnail from 'component/channelThumbnail';
|
2020-02-12 19:59:48 +01:00
|
|
|
import ClaimSupportButton from 'component/claimSupportButton';
|
2020-01-07 22:07:12 +01:00
|
|
|
import useGetThumbnail from 'effects/use-get-thumbnail';
|
2020-01-30 23:25:15 +01:00
|
|
|
import ClaimPreviewTitle from 'component/claimPreviewTitle';
|
2020-01-31 17:12:47 +01:00
|
|
|
import ClaimPreviewSubtitle from 'component/claimPreviewSubtitle';
|
2020-01-31 17:43:14 +01:00
|
|
|
import ClaimRepostAuthor from 'component/claimRepostAuthor';
|
2020-02-05 03:54:19 +01:00
|
|
|
import FileDownloadLink from 'component/fileDownloadLink';
|
2021-06-18 17:22:44 +02:00
|
|
|
import FileWatchLaterLink from 'component/fileWatchLaterLink';
|
2020-05-07 14:22:55 +02:00
|
|
|
import PublishPending from 'component/publishPending';
|
2021-03-03 19:50:16 +01:00
|
|
|
import ClaimMenuList from 'component/claimMenuList';
|
2021-11-03 22:52:18 +01:00
|
|
|
import ClaimPreviewReset from 'component/claimPreviewReset';
|
2020-12-04 01:10:23 +01:00
|
|
|
import ClaimPreviewLoading from './claim-preview-loading';
|
2020-12-22 16:16:39 +01:00
|
|
|
import ClaimPreviewHidden from './claim-preview-no-mature';
|
2020-12-04 01:10:23 +01:00
|
|
|
import ClaimPreviewNoContent from './claim-preview-no-content';
|
2021-03-25 19:52:18 +01:00
|
|
|
import { ENABLE_NO_SOURCE_CLAIMS } from 'config';
|
2022-01-12 20:14:12 +01:00
|
|
|
import CollectionEditButtons from 'component/collectionEditButtons';
|
2022-04-15 13:02:51 +02:00
|
|
|
import * as ICONS from 'constants/icons';
|
2022-02-02 13:48:24 +01:00
|
|
|
import { useIsMobile } from 'effects/use-screensize';
|
2022-04-26 16:59:40 +02:00
|
|
|
import usePersistedState from 'effects/use-persisted-state';
|
2019-06-11 20:10:58 +02:00
|
|
|
|
2021-07-15 01:58:56 +02:00
|
|
|
const AbandonedChannelPreview = lazyImport(() =>
|
|
|
|
import('component/abandonedChannelPreview' /* webpackChunkName: "abandonedChannelPreview" */)
|
|
|
|
);
|
2021-06-11 08:06:29 +02:00
|
|
|
|
2021-08-25 17:44:08 +02:00
|
|
|
// preview images used on the landing page and on the channel page
|
2019-06-11 20:10:58 +02:00
|
|
|
type Props = {
|
|
|
|
uri: string,
|
2021-07-06 21:29:12 +02:00
|
|
|
claim: ?Claim,
|
2021-07-13 00:39:23 +02:00
|
|
|
active: boolean,
|
2019-06-11 20:10:58 +02:00
|
|
|
obscureNsfw: boolean,
|
2019-07-08 22:54:58 +02:00
|
|
|
showUserBlocked: boolean,
|
2019-06-11 20:10:58 +02:00
|
|
|
claimIsMine: boolean,
|
|
|
|
pending?: boolean,
|
2020-12-22 16:16:39 +01:00
|
|
|
reflectingProgress?: any, // fxme
|
2021-02-16 22:09:20 +01:00
|
|
|
resolveUri: (string) => void,
|
2019-06-11 20:10:58 +02:00
|
|
|
isResolvingUri: boolean,
|
Fill in remaining Recsys fields
## Issue
6366 Recsys Evaluation Telemetry
The recommended list from lighthouse is obtained from `makeSelectRecommendedContentForUri`. This list is further tweaked by the GUI (e.g. move autoplay next item to top, remove blocked content, etc.). Recsys wants the final recommendation list and the clicked index (in exact order), so we need pass these info to the videojs recsys plugin somehow. Also, Recsys wants a recommendation list ID as well as the parent (referrer) ID, we so need to track the clicks and navigation.
## General Approach
- It seems easiest to just spew back the final (displayed) list and all the required info to Redux, and the recsys plugin (or anyone else in the future) can grab it.
- Try to touch few files as possible. The dirty work should all reside in `<RecommendedContent>` only.
## Changes
- `ClaimPreview`: add optional parameters to store an ID of the container that it is in (for this case, it is `ClaimList`) as well as the index within the container.
- When clicked, we store the container ID in the navigation history `state` object.
- For general cases, anyone can check this state from `history.location.state` to know which container referred/navigated to the current page. For the recsys use case, we can use this as the `parentUUID`.
- `ClaimList`: just relay `onClick` and set IDs.
- `RecommendedContent`: now handles the uuid generation (for both parent and child) and stores the data in Redux.
2021-07-28 14:07:49 +02:00
|
|
|
history: { push: (string | any) => void },
|
2019-06-11 20:10:58 +02:00
|
|
|
title: string,
|
|
|
|
nsfw: boolean,
|
2019-07-21 23:31:22 +02:00
|
|
|
placeholder: string,
|
2019-06-19 07:05:43 +02:00
|
|
|
type: string,
|
2022-04-05 08:48:02 +02:00
|
|
|
nonClickable?: boolean,
|
2021-10-25 16:56:31 +02:00
|
|
|
banState: { blacklisted?: boolean, filtered?: boolean, muted?: boolean, blocked?: boolean },
|
2019-07-11 20:06:25 +02:00
|
|
|
hasVisitedUri: boolean,
|
2021-03-03 19:50:16 +01:00
|
|
|
blockedUris: Array<string>,
|
2019-09-26 18:28:08 +02:00
|
|
|
actions: boolean | Node | string | number,
|
2021-02-16 22:09:20 +01:00
|
|
|
properties: boolean | Node | string | number | ((Claim) => Node),
|
2020-12-22 16:16:39 +01:00
|
|
|
empty?: Node,
|
2021-09-03 00:39:40 +02:00
|
|
|
onClick?: (e: any, claim?: ?Claim, index?: number) => any,
|
2020-01-07 22:07:12 +01:00
|
|
|
streamingUrl: ?string,
|
2021-02-16 22:09:20 +01:00
|
|
|
getFile: (string) => void,
|
|
|
|
customShouldHide?: (Claim) => boolean,
|
2021-10-01 14:10:27 +02:00
|
|
|
searchParams?: { [string]: string },
|
2020-02-05 19:01:07 +01:00
|
|
|
showUnresolvedClaim?: boolean,
|
2020-12-04 01:10:23 +01:00
|
|
|
showNullPlaceholder?: boolean,
|
2020-02-12 19:59:48 +01:00
|
|
|
includeSupportAction?: boolean,
|
2020-10-12 23:12:46 +02:00
|
|
|
hideActions?: boolean,
|
2021-02-16 22:09:20 +01:00
|
|
|
renderActions?: (Claim) => ?Node,
|
2020-10-20 19:10:02 +02:00
|
|
|
wrapperElement?: string,
|
2020-10-28 20:18:58 +01:00
|
|
|
hideRepostLabel?: boolean,
|
2020-12-22 16:16:39 +01:00
|
|
|
repostUrl?: string,
|
2021-03-03 19:50:16 +01:00
|
|
|
hideMenu?: boolean,
|
2021-03-25 19:52:18 +01:00
|
|
|
isLivestream?: boolean,
|
2021-11-09 18:52:05 +01:00
|
|
|
isLivestreamActive: boolean,
|
2022-04-15 13:02:51 +02:00
|
|
|
livestreamViewerCount: ?number,
|
wip
wip
wip - everything but publish, autoplay, and styling
collection publishing
add channel to collection publish
cleanup
wip
bump
clear mass add after success
move collection item management controls
redirect replace to published collection id
bump
playlist selector on create
bump
use new collection add ui element
bump
wip
gitignore
add content json
wip
bump
context add to playlist
basic collections page style pass wip
wip: edits, buttons, styles...
change fileAuthor to claimAuthor
update, pending bugfixes, delete modal progress, collection header, other bugfixes
bump
cleaning
show page bugfix
builtin collection headers
no playlists, no grid title
wip
style tweaks
use normal looking claim previews for collection tiles
add collection changes
style library previews
collection menulist for delete/view on library
delete modal works for unpublished
rearrange collection publish tabs
clean up collection publishing and items
show on odysee
begin collectoin edit header and css renaming
better thumbnails
bump
fix collection publish redirect
view collection in menu does something
copy and thumbs
list previews, pending, context menus, list page
enter to add collection, lists page empty state
playable lists only, delete feature, bump
put fileListDownloaded back
better collection titles
improve collection claim details
fix horiz more icon
fix up channel page
style, copy, bump
refactor preview overlay properties,
fix reposts showing as floppydisk
add watch later toast,
small overlay properties on wunderbar results,
fix collection actions buttons
bump
cleanup
cleaning, refactoring
bump
preview thumb styling, cleanup
support discover page lists search
sync, bump
bump, fix sync more
enforce builtin order for now
new lists page empty state
try to indicate unpublished edits in lists
bump
fix autoplay and linting
consts, fix autoplay
bugs
fixes
cleanup
fix, bump
lists experimental ui, fixes
refactor listIndex out
hack in collection fallback thumb
bump
2021-02-06 08:03:51 +01:00
|
|
|
collectionId?: string,
|
|
|
|
isCollectionMine: boolean,
|
2022-04-05 08:48:02 +02:00
|
|
|
disableNavigation?: boolean, // DEPRECATED - use 'nonClickable'. Remove this when channel-finder is consolidated (#810)
|
2021-07-16 08:53:38 +02:00
|
|
|
mediaDuration?: string,
|
|
|
|
date?: any,
|
Fill in remaining Recsys fields
## Issue
6366 Recsys Evaluation Telemetry
The recommended list from lighthouse is obtained from `makeSelectRecommendedContentForUri`. This list is further tweaked by the GUI (e.g. move autoplay next item to top, remove blocked content, etc.). Recsys wants the final recommendation list and the clicked index (in exact order), so we need pass these info to the videojs recsys plugin somehow. Also, Recsys wants a recommendation list ID as well as the parent (referrer) ID, we so need to track the clicks and navigation.
## General Approach
- It seems easiest to just spew back the final (displayed) list and all the required info to Redux, and the recsys plugin (or anyone else in the future) can grab it.
- Try to touch few files as possible. The dirty work should all reside in `<RecommendedContent>` only.
## Changes
- `ClaimPreview`: add optional parameters to store an ID of the container that it is in (for this case, it is `ClaimList`) as well as the index within the container.
- When clicked, we store the container ID in the navigation history `state` object.
- For general cases, anyone can check this state from `history.location.state` to know which container referred/navigated to the current page. For the recsys use case, we can use this as the `parentUUID`.
- `ClaimList`: just relay `onClick` and set IDs.
- `RecommendedContent`: now handles the uuid generation (for both parent and child) and stores the data in Redux.
2021-07-28 14:07:49 +02:00
|
|
|
indexInContainer?: number, // The index order of this component within 'containerId'.
|
2021-08-19 17:25:45 +02:00
|
|
|
channelSubCount?: number,
|
2022-01-06 22:13:26 +01:00
|
|
|
swipeLayout: boolean,
|
2022-01-11 17:42:12 +01:00
|
|
|
lang: string,
|
2022-01-12 20:14:12 +01:00
|
|
|
showEdit?: boolean,
|
|
|
|
dragHandleProps?: any,
|
|
|
|
unavailableUris?: Array<string>,
|
2022-03-09 19:05:37 +01:00
|
|
|
showMemberBadge?: boolean,
|
2022-05-03 13:21:51 +02:00
|
|
|
inWatchHistory?: boolean,
|
2019-06-11 20:10:58 +02:00
|
|
|
};
|
|
|
|
|
2019-08-02 08:28:14 +02:00
|
|
|
const ClaimPreview = forwardRef<any, {}>((props: Props, ref: any) => {
|
2019-06-11 20:10:58 +02:00
|
|
|
const {
|
2020-12-22 16:16:39 +01:00
|
|
|
// core
|
2019-06-11 20:10:58 +02:00
|
|
|
uri,
|
2020-12-22 16:16:39 +01:00
|
|
|
claim,
|
2019-06-11 20:10:58 +02:00
|
|
|
isResolvingUri,
|
2020-12-22 16:16:39 +01:00
|
|
|
// core actions
|
|
|
|
getFile,
|
2019-06-11 20:10:58 +02:00
|
|
|
resolveUri,
|
2020-12-22 16:16:39 +01:00
|
|
|
// claim properties
|
2021-01-26 17:55:27 +01:00
|
|
|
// is the claim consider nsfw?
|
2020-12-22 16:16:39 +01:00
|
|
|
nsfw,
|
2021-07-16 08:53:38 +02:00
|
|
|
date,
|
|
|
|
title,
|
2020-12-22 16:16:39 +01:00
|
|
|
claimIsMine,
|
|
|
|
streamingUrl,
|
2021-07-16 08:53:38 +02:00
|
|
|
mediaDuration,
|
2020-12-22 16:16:39 +01:00
|
|
|
// user properties
|
2019-07-11 20:06:25 +02:00
|
|
|
hasVisitedUri,
|
2020-12-22 16:16:39 +01:00
|
|
|
// component
|
|
|
|
history,
|
|
|
|
wrapperElement,
|
|
|
|
type,
|
2022-04-05 08:48:02 +02:00
|
|
|
nonClickable,
|
2020-12-22 16:16:39 +01:00
|
|
|
placeholder,
|
|
|
|
// pending
|
|
|
|
reflectingProgress,
|
|
|
|
pending,
|
|
|
|
empty,
|
|
|
|
// modifiers
|
2021-07-13 00:39:23 +02:00
|
|
|
active,
|
2020-12-22 16:16:39 +01:00
|
|
|
customShouldHide,
|
2021-10-01 14:10:27 +02:00
|
|
|
searchParams,
|
2020-12-22 16:16:39 +01:00
|
|
|
showNullPlaceholder,
|
2021-01-26 17:55:27 +01:00
|
|
|
// value from show mature content user setting
|
|
|
|
// true if the user doesn't wanna see nsfw content
|
2020-12-22 16:16:39 +01:00
|
|
|
obscureNsfw,
|
2019-07-08 22:54:58 +02:00
|
|
|
showUserBlocked,
|
2020-12-22 16:16:39 +01:00
|
|
|
showUnresolvedClaim,
|
|
|
|
hideRepostLabel = false,
|
|
|
|
hideActions = false,
|
2019-09-26 18:28:08 +02:00
|
|
|
properties,
|
|
|
|
onClick,
|
2020-12-22 16:16:39 +01:00
|
|
|
actions,
|
2021-10-25 16:56:31 +02:00
|
|
|
banState,
|
2020-02-12 19:59:48 +01:00
|
|
|
includeSupportAction,
|
2020-10-12 23:12:46 +02:00
|
|
|
renderActions,
|
2021-03-03 19:50:16 +01:00
|
|
|
hideMenu = false,
|
2020-12-22 16:16:39 +01:00
|
|
|
// repostUrl,
|
2021-11-05 20:14:00 +01:00
|
|
|
isLivestream,
|
2021-11-09 18:52:05 +01:00
|
|
|
isLivestreamActive,
|
2022-04-15 13:02:51 +02:00
|
|
|
livestreamViewerCount,
|
wip
wip
wip - everything but publish, autoplay, and styling
collection publishing
add channel to collection publish
cleanup
wip
bump
clear mass add after success
move collection item management controls
redirect replace to published collection id
bump
playlist selector on create
bump
use new collection add ui element
bump
wip
gitignore
add content json
wip
bump
context add to playlist
basic collections page style pass wip
wip: edits, buttons, styles...
change fileAuthor to claimAuthor
update, pending bugfixes, delete modal progress, collection header, other bugfixes
bump
cleaning
show page bugfix
builtin collection headers
no playlists, no grid title
wip
style tweaks
use normal looking claim previews for collection tiles
add collection changes
style library previews
collection menulist for delete/view on library
delete modal works for unpublished
rearrange collection publish tabs
clean up collection publishing and items
show on odysee
begin collectoin edit header and css renaming
better thumbnails
bump
fix collection publish redirect
view collection in menu does something
copy and thumbs
list previews, pending, context menus, list page
enter to add collection, lists page empty state
playable lists only, delete feature, bump
put fileListDownloaded back
better collection titles
improve collection claim details
fix horiz more icon
fix up channel page
style, copy, bump
refactor preview overlay properties,
fix reposts showing as floppydisk
add watch later toast,
small overlay properties on wunderbar results,
fix collection actions buttons
bump
cleanup
cleaning, refactoring
bump
preview thumb styling, cleanup
support discover page lists search
sync, bump
bump, fix sync more
enforce builtin order for now
new lists page empty state
try to indicate unpublished edits in lists
bump
fix autoplay and linting
consts, fix autoplay
bugs
fixes
cleanup
fix, bump
lists experimental ui, fixes
refactor listIndex out
hack in collection fallback thumb
bump
2021-02-06 08:03:51 +01:00
|
|
|
collectionId,
|
|
|
|
isCollectionMine,
|
2021-06-19 10:28:00 +02:00
|
|
|
disableNavigation,
|
Fill in remaining Recsys fields
## Issue
6366 Recsys Evaluation Telemetry
The recommended list from lighthouse is obtained from `makeSelectRecommendedContentForUri`. This list is further tweaked by the GUI (e.g. move autoplay next item to top, remove blocked content, etc.). Recsys wants the final recommendation list and the clicked index (in exact order), so we need pass these info to the videojs recsys plugin somehow. Also, Recsys wants a recommendation list ID as well as the parent (referrer) ID, we so need to track the clicks and navigation.
## General Approach
- It seems easiest to just spew back the final (displayed) list and all the required info to Redux, and the recsys plugin (or anyone else in the future) can grab it.
- Try to touch few files as possible. The dirty work should all reside in `<RecommendedContent>` only.
## Changes
- `ClaimPreview`: add optional parameters to store an ID of the container that it is in (for this case, it is `ClaimList`) as well as the index within the container.
- When clicked, we store the container ID in the navigation history `state` object.
- For general cases, anyone can check this state from `history.location.state` to know which container referred/navigated to the current page. For the recsys use case, we can use this as the `parentUUID`.
- `ClaimList`: just relay `onClick` and set IDs.
- `RecommendedContent`: now handles the uuid generation (for both parent and child) and stores the data in Redux.
2021-07-28 14:07:49 +02:00
|
|
|
indexInContainer,
|
2021-08-19 17:25:45 +02:00
|
|
|
channelSubCount,
|
2022-01-06 22:13:26 +01:00
|
|
|
swipeLayout = false,
|
2022-01-11 17:42:12 +01:00
|
|
|
lang,
|
2022-01-12 20:14:12 +01:00
|
|
|
showEdit,
|
|
|
|
dragHandleProps,
|
|
|
|
unavailableUris,
|
2022-03-09 19:05:37 +01:00
|
|
|
showMemberBadge,
|
2022-05-03 13:21:51 +02:00
|
|
|
inWatchHistory,
|
2019-06-11 20:10:58 +02:00
|
|
|
} = props;
|
2021-11-05 20:14:00 +01:00
|
|
|
|
2022-02-02 13:48:24 +01:00
|
|
|
const isMobile = useIsMobile();
|
|
|
|
|
2021-06-24 16:33:11 +02:00
|
|
|
const isCollection = claim && claim.value_type === 'collection';
|
|
|
|
const collectionClaimId = isCollection && claim && claim.claim_id;
|
|
|
|
const listId = collectionId || collectionClaimId;
|
2020-10-20 19:10:02 +02:00
|
|
|
const WrapperElement = wrapperElement || 'li';
|
2019-10-03 23:40:54 +02:00
|
|
|
const shouldFetch =
|
|
|
|
claim === undefined || (claim !== null && claim.value_type === 'channel' && isEmpty(claim.meta) && !pending);
|
2019-07-21 23:31:22 +02:00
|
|
|
const abandoned = !isResolvingUri && !claim;
|
2021-06-24 16:33:11 +02:00
|
|
|
const isMyCollection = listId && (isCollectionMine || listId.includes('-'));
|
2022-01-12 20:14:12 +01:00
|
|
|
if (isMyCollection && claim === null && unavailableUris) unavailableUris.push(uri);
|
|
|
|
|
wip
wip
wip - everything but publish, autoplay, and styling
collection publishing
add channel to collection publish
cleanup
wip
bump
clear mass add after success
move collection item management controls
redirect replace to published collection id
bump
playlist selector on create
bump
use new collection add ui element
bump
wip
gitignore
add content json
wip
bump
context add to playlist
basic collections page style pass wip
wip: edits, buttons, styles...
change fileAuthor to claimAuthor
update, pending bugfixes, delete modal progress, collection header, other bugfixes
bump
cleaning
show page bugfix
builtin collection headers
no playlists, no grid title
wip
style tweaks
use normal looking claim previews for collection tiles
add collection changes
style library previews
collection menulist for delete/view on library
delete modal works for unpublished
rearrange collection publish tabs
clean up collection publishing and items
show on odysee
begin collectoin edit header and css renaming
better thumbnails
bump
fix collection publish redirect
view collection in menu does something
copy and thumbs
list previews, pending, context menus, list page
enter to add collection, lists page empty state
playable lists only, delete feature, bump
put fileListDownloaded back
better collection titles
improve collection claim details
fix horiz more icon
fix up channel page
style, copy, bump
refactor preview overlay properties,
fix reposts showing as floppydisk
add watch later toast,
small overlay properties on wunderbar results,
fix collection actions buttons
bump
cleanup
cleaning, refactoring
bump
preview thumb styling, cleanup
support discover page lists search
sync, bump
bump, fix sync more
enforce builtin order for now
new lists page empty state
try to indicate unpublished edits in lists
bump
fix autoplay and linting
consts, fix autoplay
bugs
fixes
cleanup
fix, bump
lists experimental ui, fixes
refactor listIndex out
hack in collection fallback thumb
bump
2021-02-06 08:03:51 +01:00
|
|
|
const shouldHideActions = hideActions || isMyCollection || type === 'small' || type === 'tooltip';
|
2020-02-05 19:08:37 +01:00
|
|
|
const canonicalUrl = claim && claim.canonical_url;
|
2021-08-19 17:25:45 +02:00
|
|
|
const channelSubscribers = React.useMemo(() => {
|
|
|
|
if (channelSubCount === undefined) {
|
|
|
|
return <span />;
|
|
|
|
}
|
2022-01-11 17:42:12 +01:00
|
|
|
const formattedSubCount = toCompactNotation(channelSubCount, lang, 10000);
|
2022-01-18 19:30:43 +01:00
|
|
|
const formattedSubCountLocale = Number(channelSubCount).toLocaleString();
|
2021-08-19 17:25:45 +02:00
|
|
|
return (
|
2022-02-11 19:50:55 +01:00
|
|
|
<div className="media__subtitle">
|
|
|
|
<Tooltip title={formattedSubCountLocale} followCursor placement="top">
|
|
|
|
<span className="claim-preview__channel-sub-count">
|
|
|
|
{channelSubCount === 1 ? __('1 Follower') : __('%formattedSubCount% Followers', { formattedSubCount })}
|
|
|
|
</span>
|
|
|
|
</Tooltip>
|
|
|
|
</div>
|
2021-08-19 17:25:45 +02:00
|
|
|
);
|
|
|
|
}, [channelSubCount]);
|
2021-11-02 17:37:53 +01:00
|
|
|
const isValid = uri && isURIValid(uri, false);
|
2021-10-17 10:36:14 +02:00
|
|
|
|
2021-06-18 17:22:44 +02:00
|
|
|
// $FlowFixMe
|
|
|
|
const isPlayable =
|
|
|
|
claim &&
|
|
|
|
// $FlowFixMe
|
|
|
|
claim.value &&
|
|
|
|
// $FlowFixMe
|
|
|
|
claim.value.stream_type &&
|
|
|
|
// $FlowFixMe
|
|
|
|
(claim.value.stream_type === 'audio' || claim.value.stream_type === 'video');
|
2021-12-01 13:32:42 +01:00
|
|
|
const isChannelUri = isChannelClaim(claim, uri);
|
2019-07-29 16:12:53 +02:00
|
|
|
const signingChannel = claim && claim.signing_channel;
|
2021-09-10 17:01:12 +02:00
|
|
|
const repostedChannelUri =
|
|
|
|
claim && claim.repost_channel_url && claim.value_type === 'channel'
|
|
|
|
? claim.permanent_url || claim.canonical_url
|
|
|
|
: undefined;
|
2022-01-12 20:14:12 +01:00
|
|
|
const repostedContentUri = claim && (claim.reposted_claim ? claim.reposted_claim.permanent_url : claim.permanent_url);
|
2022-05-03 13:21:51 +02:00
|
|
|
const [watchHistory, setWatchHistory] = usePersistedState('watch-history', []);
|
2021-07-21 01:49:41 +02:00
|
|
|
|
|
|
|
// Get channel title ( use name as fallback )
|
|
|
|
let channelTitle = null;
|
|
|
|
if (signingChannel) {
|
|
|
|
const { value, name } = signingChannel;
|
|
|
|
if (value && value.title) {
|
|
|
|
channelTitle = value.title;
|
|
|
|
} else {
|
|
|
|
channelTitle = name;
|
|
|
|
}
|
|
|
|
}
|
2021-07-16 08:53:38 +02:00
|
|
|
|
|
|
|
// Aria-label value for claim preview
|
2021-07-22 10:24:25 +02:00
|
|
|
let ariaLabelData = isChannelUri ? title : formatClaimPreviewTitle(title, channelTitle, date, mediaDuration);
|
2021-07-16 08:53:38 +02:00
|
|
|
|
wip
wip
wip - everything but publish, autoplay, and styling
collection publishing
add channel to collection publish
cleanup
wip
bump
clear mass add after success
move collection item management controls
redirect replace to published collection id
bump
playlist selector on create
bump
use new collection add ui element
bump
wip
gitignore
add content json
wip
bump
context add to playlist
basic collections page style pass wip
wip: edits, buttons, styles...
change fileAuthor to claimAuthor
update, pending bugfixes, delete modal progress, collection header, other bugfixes
bump
cleaning
show page bugfix
builtin collection headers
no playlists, no grid title
wip
style tweaks
use normal looking claim previews for collection tiles
add collection changes
style library previews
collection menulist for delete/view on library
delete modal works for unpublished
rearrange collection publish tabs
clean up collection publishing and items
show on odysee
begin collectoin edit header and css renaming
better thumbnails
bump
fix collection publish redirect
view collection in menu does something
copy and thumbs
list previews, pending, context menus, list page
enter to add collection, lists page empty state
playable lists only, delete feature, bump
put fileListDownloaded back
better collection titles
improve collection claim details
fix horiz more icon
fix up channel page
style, copy, bump
refactor preview overlay properties,
fix reposts showing as floppydisk
add watch later toast,
small overlay properties on wunderbar results,
fix collection actions buttons
bump
cleanup
cleaning, refactoring
bump
preview thumb styling, cleanup
support discover page lists search
sync, bump
bump, fix sync more
enforce builtin order for now
new lists page empty state
try to indicate unpublished edits in lists
bump
fix autoplay and linting
consts, fix autoplay
bugs
fixes
cleanup
fix, bump
lists experimental ui, fixes
refactor listIndex out
hack in collection fallback thumb
bump
2021-02-06 08:03:51 +01:00
|
|
|
let navigateUrl = formatLbryUrlForWeb((claim && claim.canonical_url) || uri || '/');
|
2021-08-10 16:38:53 +02:00
|
|
|
let navigateSearch = new URLSearchParams();
|
2021-06-24 16:33:11 +02:00
|
|
|
if (listId) {
|
2021-08-10 16:38:53 +02:00
|
|
|
navigateSearch.set(COLLECTIONS_CONSTS.COLLECTION_ID, listId);
|
wip
wip
wip - everything but publish, autoplay, and styling
collection publishing
add channel to collection publish
cleanup
wip
bump
clear mass add after success
move collection item management controls
redirect replace to published collection id
bump
playlist selector on create
bump
use new collection add ui element
bump
wip
gitignore
add content json
wip
bump
context add to playlist
basic collections page style pass wip
wip: edits, buttons, styles...
change fileAuthor to claimAuthor
update, pending bugfixes, delete modal progress, collection header, other bugfixes
bump
cleaning
show page bugfix
builtin collection headers
no playlists, no grid title
wip
style tweaks
use normal looking claim previews for collection tiles
add collection changes
style library previews
collection menulist for delete/view on library
delete modal works for unpublished
rearrange collection publish tabs
clean up collection publishing and items
show on odysee
begin collectoin edit header and css renaming
better thumbnails
bump
fix collection publish redirect
view collection in menu does something
copy and thumbs
list previews, pending, context menus, list page
enter to add collection, lists page empty state
playable lists only, delete feature, bump
put fileListDownloaded back
better collection titles
improve collection claim details
fix horiz more icon
fix up channel page
style, copy, bump
refactor preview overlay properties,
fix reposts showing as floppydisk
add watch later toast,
small overlay properties on wunderbar results,
fix collection actions buttons
bump
cleanup
cleaning, refactoring
bump
preview thumb styling, cleanup
support discover page lists search
sync, bump
bump, fix sync more
enforce builtin order for now
new lists page empty state
try to indicate unpublished edits in lists
bump
fix autoplay and linting
consts, fix autoplay
bugs
fixes
cleanup
fix, bump
lists experimental ui, fixes
refactor listIndex out
hack in collection fallback thumb
bump
2021-02-06 08:03:51 +01:00
|
|
|
}
|
2021-10-01 14:10:27 +02:00
|
|
|
if (searchParams) {
|
|
|
|
Object.keys(searchParams).forEach((key) => {
|
|
|
|
navigateSearch.set(key, searchParams[key]);
|
|
|
|
});
|
|
|
|
}
|
Fill in remaining Recsys fields
## Issue
6366 Recsys Evaluation Telemetry
The recommended list from lighthouse is obtained from `makeSelectRecommendedContentForUri`. This list is further tweaked by the GUI (e.g. move autoplay next item to top, remove blocked content, etc.). Recsys wants the final recommendation list and the clicked index (in exact order), so we need pass these info to the videojs recsys plugin somehow. Also, Recsys wants a recommendation list ID as well as the parent (referrer) ID, we so need to track the clicks and navigation.
## General Approach
- It seems easiest to just spew back the final (displayed) list and all the required info to Redux, and the recsys plugin (or anyone else in the future) can grab it.
- Try to touch few files as possible. The dirty work should all reside in `<RecommendedContent>` only.
## Changes
- `ClaimPreview`: add optional parameters to store an ID of the container that it is in (for this case, it is `ClaimList`) as well as the index within the container.
- When clicked, we store the container ID in the navigation history `state` object.
- For general cases, anyone can check this state from `history.location.state` to know which container referred/navigated to the current page. For the recsys use case, we can use this as the `parentUUID`.
- `ClaimList`: just relay `onClick` and set IDs.
- `RecommendedContent`: now handles the uuid generation (for both parent and child) and stores the data in Redux.
2021-07-28 14:07:49 +02:00
|
|
|
|
|
|
|
const handleNavLinkClick = (e) => {
|
|
|
|
if (onClick) {
|
2021-09-03 00:39:40 +02:00
|
|
|
onClick(e, claim, indexInContainer); // not sure indexInContainer is used for anything.
|
Fill in remaining Recsys fields
## Issue
6366 Recsys Evaluation Telemetry
The recommended list from lighthouse is obtained from `makeSelectRecommendedContentForUri`. This list is further tweaked by the GUI (e.g. move autoplay next item to top, remove blocked content, etc.). Recsys wants the final recommendation list and the clicked index (in exact order), so we need pass these info to the videojs recsys plugin somehow. Also, Recsys wants a recommendation list ID as well as the parent (referrer) ID, we so need to track the clicks and navigation.
## General Approach
- It seems easiest to just spew back the final (displayed) list and all the required info to Redux, and the recsys plugin (or anyone else in the future) can grab it.
- Try to touch few files as possible. The dirty work should all reside in `<RecommendedContent>` only.
## Changes
- `ClaimPreview`: add optional parameters to store an ID of the container that it is in (for this case, it is `ClaimList`) as well as the index within the container.
- When clicked, we store the container ID in the navigation history `state` object.
- For general cases, anyone can check this state from `history.location.state` to know which container referred/navigated to the current page. For the recsys use case, we can use this as the `parentUUID`.
- `ClaimList`: just relay `onClick` and set IDs.
- `RecommendedContent`: now handles the uuid generation (for both parent and child) and stores the data in Redux.
2021-07-28 14:07:49 +02:00
|
|
|
}
|
|
|
|
e.stopPropagation();
|
|
|
|
};
|
|
|
|
|
2020-02-04 22:59:49 +01:00
|
|
|
const navLinkProps = {
|
Fill in remaining Recsys fields
## Issue
6366 Recsys Evaluation Telemetry
The recommended list from lighthouse is obtained from `makeSelectRecommendedContentForUri`. This list is further tweaked by the GUI (e.g. move autoplay next item to top, remove blocked content, etc.). Recsys wants the final recommendation list and the clicked index (in exact order), so we need pass these info to the videojs recsys plugin somehow. Also, Recsys wants a recommendation list ID as well as the parent (referrer) ID, we so need to track the clicks and navigation.
## General Approach
- It seems easiest to just spew back the final (displayed) list and all the required info to Redux, and the recsys plugin (or anyone else in the future) can grab it.
- Try to touch few files as possible. The dirty work should all reside in `<RecommendedContent>` only.
## Changes
- `ClaimPreview`: add optional parameters to store an ID of the container that it is in (for this case, it is `ClaimList`) as well as the index within the container.
- When clicked, we store the container ID in the navigation history `state` object.
- For general cases, anyone can check this state from `history.location.state` to know which container referred/navigated to the current page. For the recsys use case, we can use this as the `parentUUID`.
- `ClaimList`: just relay `onClick` and set IDs.
- `RecommendedContent`: now handles the uuid generation (for both parent and child) and stores the data in Redux.
2021-07-28 14:07:49 +02:00
|
|
|
to: {
|
|
|
|
pathname: navigateUrl,
|
2021-08-10 16:38:53 +02:00
|
|
|
search: navigateSearch.toString() ? '?' + navigateSearch.toString() : '',
|
Fill in remaining Recsys fields
## Issue
6366 Recsys Evaluation Telemetry
The recommended list from lighthouse is obtained from `makeSelectRecommendedContentForUri`. This list is further tweaked by the GUI (e.g. move autoplay next item to top, remove blocked content, etc.). Recsys wants the final recommendation list and the clicked index (in exact order), so we need pass these info to the videojs recsys plugin somehow. Also, Recsys wants a recommendation list ID as well as the parent (referrer) ID, we so need to track the clicks and navigation.
## General Approach
- It seems easiest to just spew back the final (displayed) list and all the required info to Redux, and the recsys plugin (or anyone else in the future) can grab it.
- Try to touch few files as possible. The dirty work should all reside in `<RecommendedContent>` only.
## Changes
- `ClaimPreview`: add optional parameters to store an ID of the container that it is in (for this case, it is `ClaimList`) as well as the index within the container.
- When clicked, we store the container ID in the navigation history `state` object.
- For general cases, anyone can check this state from `history.location.state` to know which container referred/navigated to the current page. For the recsys use case, we can use this as the `parentUUID`.
- `ClaimList`: just relay `onClick` and set IDs.
- `RecommendedContent`: now handles the uuid generation (for both parent and child) and stores the data in Redux.
2021-07-28 14:07:49 +02:00
|
|
|
},
|
2021-09-03 00:39:40 +02:00
|
|
|
onClick: handleNavLinkClick,
|
|
|
|
onAuxClick: handleNavLinkClick,
|
2020-02-04 22:59:49 +01:00
|
|
|
};
|
2019-10-24 22:41:27 +02:00
|
|
|
|
|
|
|
// do not block abandoned and nsfw claims if showUserBlocked is passed
|
2019-10-17 18:58:28 +02:00
|
|
|
let shouldHide =
|
2019-10-24 22:41:27 +02:00
|
|
|
placeholder !== 'loading' &&
|
|
|
|
!showUserBlocked &&
|
2020-12-22 16:16:39 +01:00
|
|
|
((abandoned && !showUnresolvedClaim) || (!claimIsMine && obscureNsfw && nsfw));
|
2019-07-05 20:11:55 +02:00
|
|
|
|
|
|
|
// This will be replaced once blocking is done at the wallet server level
|
2021-10-25 16:56:31 +02:00
|
|
|
if (!shouldHide && !claimIsMine && (banState.blacklisted || banState.filtered)) {
|
|
|
|
shouldHide = true;
|
2019-07-05 20:11:55 +02:00
|
|
|
}
|
2021-10-25 16:56:31 +02:00
|
|
|
|
2019-08-02 02:56:25 +02:00
|
|
|
// block stream claims
|
2021-10-25 16:56:31 +02:00
|
|
|
if (!shouldHide && !showUserBlocked && (banState.muted || banState.blocked)) {
|
|
|
|
shouldHide = true;
|
2019-08-02 02:56:25 +02:00
|
|
|
}
|
2019-06-11 20:10:58 +02:00
|
|
|
|
2020-01-08 17:36:49 +01:00
|
|
|
if (!shouldHide && customShouldHide && claim) {
|
|
|
|
if (customShouldHide(claim)) {
|
|
|
|
shouldHide = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-13 20:12:27 +01:00
|
|
|
// Weird placement warning
|
|
|
|
// Make sure this happens after we figure out if this claim needs to be hidden
|
wip
wip
wip - everything but publish, autoplay, and styling
collection publishing
add channel to collection publish
cleanup
wip
bump
clear mass add after success
move collection item management controls
redirect replace to published collection id
bump
playlist selector on create
bump
use new collection add ui element
bump
wip
gitignore
add content json
wip
bump
context add to playlist
basic collections page style pass wip
wip: edits, buttons, styles...
change fileAuthor to claimAuthor
update, pending bugfixes, delete modal progress, collection header, other bugfixes
bump
cleaning
show page bugfix
builtin collection headers
no playlists, no grid title
wip
style tweaks
use normal looking claim previews for collection tiles
add collection changes
style library previews
collection menulist for delete/view on library
delete modal works for unpublished
rearrange collection publish tabs
clean up collection publishing and items
show on odysee
begin collectoin edit header and css renaming
better thumbnails
bump
fix collection publish redirect
view collection in menu does something
copy and thumbs
list previews, pending, context menus, list page
enter to add collection, lists page empty state
playable lists only, delete feature, bump
put fileListDownloaded back
better collection titles
improve collection claim details
fix horiz more icon
fix up channel page
style, copy, bump
refactor preview overlay properties,
fix reposts showing as floppydisk
add watch later toast,
small overlay properties on wunderbar results,
fix collection actions buttons
bump
cleanup
cleaning, refactoring
bump
preview thumb styling, cleanup
support discover page lists search
sync, bump
bump, fix sync more
enforce builtin order for now
new lists page empty state
try to indicate unpublished edits in lists
bump
fix autoplay and linting
consts, fix autoplay
bugs
fixes
cleanup
fix, bump
lists experimental ui, fixes
refactor listIndex out
hack in collection fallback thumb
bump
2021-02-06 08:03:51 +01:00
|
|
|
const thumbnailUrl = useGetThumbnail(uri, claim, streamingUrl, getFile, shouldHide);
|
2020-01-13 20:12:27 +01:00
|
|
|
|
2019-09-26 18:28:08 +02:00
|
|
|
function handleOnClick(e) {
|
|
|
|
if (onClick) {
|
2021-09-03 00:39:40 +02:00
|
|
|
onClick(e, claim, indexInContainer);
|
2020-01-30 22:01:23 +01:00
|
|
|
}
|
|
|
|
|
2021-06-19 10:28:00 +02:00
|
|
|
if (claim && !pending && !disableNavigation) {
|
Fill in remaining Recsys fields
## Issue
6366 Recsys Evaluation Telemetry
The recommended list from lighthouse is obtained from `makeSelectRecommendedContentForUri`. This list is further tweaked by the GUI (e.g. move autoplay next item to top, remove blocked content, etc.). Recsys wants the final recommendation list and the clicked index (in exact order), so we need pass these info to the videojs recsys plugin somehow. Also, Recsys wants a recommendation list ID as well as the parent (referrer) ID, we so need to track the clicks and navigation.
## General Approach
- It seems easiest to just spew back the final (displayed) list and all the required info to Redux, and the recsys plugin (or anyone else in the future) can grab it.
- Try to touch few files as possible. The dirty work should all reside in `<RecommendedContent>` only.
## Changes
- `ClaimPreview`: add optional parameters to store an ID of the container that it is in (for this case, it is `ClaimList`) as well as the index within the container.
- When clicked, we store the container ID in the navigation history `state` object.
- For general cases, anyone can check this state from `history.location.state` to know which container referred/navigated to the current page. For the recsys use case, we can use this as the `parentUUID`.
- `ClaimList`: just relay `onClick` and set IDs.
- `RecommendedContent`: now handles the uuid generation (for both parent and child) and stores the data in Redux.
2021-07-28 14:07:49 +02:00
|
|
|
history.push({
|
|
|
|
pathname: navigateUrl,
|
2021-08-10 16:38:53 +02:00
|
|
|
search: navigateSearch.toString() ? '?' + navigateSearch.toString() : '',
|
Fill in remaining Recsys fields
## Issue
6366 Recsys Evaluation Telemetry
The recommended list from lighthouse is obtained from `makeSelectRecommendedContentForUri`. This list is further tweaked by the GUI (e.g. move autoplay next item to top, remove blocked content, etc.). Recsys wants the final recommendation list and the clicked index (in exact order), so we need pass these info to the videojs recsys plugin somehow. Also, Recsys wants a recommendation list ID as well as the parent (referrer) ID, we so need to track the clicks and navigation.
## General Approach
- It seems easiest to just spew back the final (displayed) list and all the required info to Redux, and the recsys plugin (or anyone else in the future) can grab it.
- Try to touch few files as possible. The dirty work should all reside in `<RecommendedContent>` only.
## Changes
- `ClaimPreview`: add optional parameters to store an ID of the container that it is in (for this case, it is `ClaimList`) as well as the index within the container.
- When clicked, we store the container ID in the navigation history `state` object.
- For general cases, anyone can check this state from `history.location.state` to know which container referred/navigated to the current page. For the recsys use case, we can use this as the `parentUUID`.
- `ClaimList`: just relay `onClick` and set IDs.
- `RecommendedContent`: now handles the uuid generation (for both parent and child) and stores the data in Redux.
2021-07-28 14:07:49 +02:00
|
|
|
});
|
2019-06-11 20:10:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-26 16:59:40 +02:00
|
|
|
function removeFromHistory(e, uri) {
|
|
|
|
e.stopPropagation();
|
|
|
|
if (watchHistory.find((entry) => entry === uri)) {
|
|
|
|
watchHistory.splice(watchHistory.indexOf(uri), 1);
|
2022-05-03 13:21:51 +02:00
|
|
|
setWatchHistory(watchHistory);
|
2022-04-26 16:59:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-11 20:10:58 +02:00
|
|
|
useEffect(() => {
|
2020-12-28 20:26:55 +01:00
|
|
|
if (isValid && !isResolvingUri && shouldFetch && uri) {
|
2019-06-11 20:10:58 +02:00
|
|
|
resolveUri(uri);
|
|
|
|
}
|
2021-02-16 22:09:20 +01:00
|
|
|
}, [isValid, uri, isResolvingUri, shouldFetch, resolveUri]);
|
2019-06-11 20:10:58 +02:00
|
|
|
|
2021-03-25 19:52:18 +01:00
|
|
|
if ((shouldHide && !showNullPlaceholder) || (isLivestream && !ENABLE_NO_SOURCE_CLAIMS)) {
|
2019-06-11 20:10:58 +02:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2020-12-22 16:16:39 +01:00
|
|
|
if (placeholder === 'loading' || (uri && !claim && isResolvingUri)) {
|
2021-01-13 16:44:44 +01:00
|
|
|
return <ClaimPreviewLoading isChannel={isChannelUri} type={type} />;
|
2020-12-04 01:10:23 +01:00
|
|
|
}
|
|
|
|
|
2021-01-26 17:55:27 +01:00
|
|
|
if (claim && showNullPlaceholder && shouldHide && nsfw && obscureNsfw) {
|
2020-12-22 16:16:39 +01:00
|
|
|
return (
|
2021-01-13 16:44:44 +01:00
|
|
|
<ClaimPreviewHidden
|
|
|
|
message={__('Mature content hidden by your preferences')}
|
|
|
|
isChannel={isChannelUri}
|
|
|
|
type={type}
|
|
|
|
/>
|
2020-12-22 16:16:39 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (claim && showNullPlaceholder && shouldHide) {
|
2021-01-13 16:44:44 +01:00
|
|
|
return <ClaimPreviewHidden message={__('This content is hidden')} isChannel={isChannelUri} type={type} />;
|
2019-06-11 20:10:58 +02:00
|
|
|
}
|
2020-12-04 01:10:23 +01:00
|
|
|
|
2020-12-22 16:16:39 +01:00
|
|
|
if (!claim && (showNullPlaceholder || empty)) {
|
2021-01-13 16:44:44 +01:00
|
|
|
return empty || <ClaimPreviewNoContent isChannel={isChannelUri} type={type} />;
|
2020-12-04 01:10:23 +01:00
|
|
|
}
|
|
|
|
|
wip
wip
wip - everything but publish, autoplay, and styling
collection publishing
add channel to collection publish
cleanup
wip
bump
clear mass add after success
move collection item management controls
redirect replace to published collection id
bump
playlist selector on create
bump
use new collection add ui element
bump
wip
gitignore
add content json
wip
bump
context add to playlist
basic collections page style pass wip
wip: edits, buttons, styles...
change fileAuthor to claimAuthor
update, pending bugfixes, delete modal progress, collection header, other bugfixes
bump
cleaning
show page bugfix
builtin collection headers
no playlists, no grid title
wip
style tweaks
use normal looking claim previews for collection tiles
add collection changes
style library previews
collection menulist for delete/view on library
delete modal works for unpublished
rearrange collection publish tabs
clean up collection publishing and items
show on odysee
begin collectoin edit header and css renaming
better thumbnails
bump
fix collection publish redirect
view collection in menu does something
copy and thumbs
list previews, pending, context menus, list page
enter to add collection, lists page empty state
playable lists only, delete feature, bump
put fileListDownloaded back
better collection titles
improve collection claim details
fix horiz more icon
fix up channel page
style, copy, bump
refactor preview overlay properties,
fix reposts showing as floppydisk
add watch later toast,
small overlay properties on wunderbar results,
fix collection actions buttons
bump
cleanup
cleaning, refactoring
bump
preview thumb styling, cleanup
support discover page lists search
sync, bump
bump, fix sync more
enforce builtin order for now
new lists page empty state
try to indicate unpublished edits in lists
bump
fix autoplay and linting
consts, fix autoplay
bugs
fixes
cleanup
fix, bump
lists experimental ui, fixes
refactor listIndex out
hack in collection fallback thumb
bump
2021-02-06 08:03:51 +01:00
|
|
|
if (!shouldFetch && showUnresolvedClaim && !isResolvingUri && isChannelUri && claim === null) {
|
2021-06-11 08:06:29 +02:00
|
|
|
return (
|
|
|
|
<React.Suspense fallback={null}>
|
|
|
|
<AbandonedChannelPreview uri={uri} type />
|
|
|
|
</React.Suspense>
|
|
|
|
);
|
2020-02-05 07:14:37 +01:00
|
|
|
}
|
wip
wip
wip - everything but publish, autoplay, and styling
collection publishing
add channel to collection publish
cleanup
wip
bump
clear mass add after success
move collection item management controls
redirect replace to published collection id
bump
playlist selector on create
bump
use new collection add ui element
bump
wip
gitignore
add content json
wip
bump
context add to playlist
basic collections page style pass wip
wip: edits, buttons, styles...
change fileAuthor to claimAuthor
update, pending bugfixes, delete modal progress, collection header, other bugfixes
bump
cleaning
show page bugfix
builtin collection headers
no playlists, no grid title
wip
style tweaks
use normal looking claim previews for collection tiles
add collection changes
style library previews
collection menulist for delete/view on library
delete modal works for unpublished
rearrange collection publish tabs
clean up collection publishing and items
show on odysee
begin collectoin edit header and css renaming
better thumbnails
bump
fix collection publish redirect
view collection in menu does something
copy and thumbs
list previews, pending, context menus, list page
enter to add collection, lists page empty state
playable lists only, delete feature, bump
put fileListDownloaded back
better collection titles
improve collection claim details
fix horiz more icon
fix up channel page
style, copy, bump
refactor preview overlay properties,
fix reposts showing as floppydisk
add watch later toast,
small overlay properties on wunderbar results,
fix collection actions buttons
bump
cleanup
cleaning, refactoring
bump
preview thumb styling, cleanup
support discover page lists search
sync, bump
bump, fix sync more
enforce builtin order for now
new lists page empty state
try to indicate unpublished edits in lists
bump
fix autoplay and linting
consts, fix autoplay
bugs
fixes
cleanup
fix, bump
lists experimental ui, fixes
refactor listIndex out
hack in collection fallback thumb
bump
2021-02-06 08:03:51 +01:00
|
|
|
if (placeholder === 'publish' && !claim && uri.startsWith('lbry://@')) {
|
2019-12-20 16:13:50 +01:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2021-04-29 09:22:56 +02:00
|
|
|
let liveProperty = null;
|
Livestream category improvements (#7115)
* ❌ Remove old method of displaying active livestreams
Completely remove it for now to make the commit deltas clearer.
We'll replace it with the new method at the end.
* Fetch and store active-livestream info in redux
* Tiles can now query active-livestream state from redux instead of getting from parent.
* ⏪ ClaimTilesDiscover: revert and cleanup
## Simplify
- Simplify to just `uris` instead of having multiple arrays (`uris`, `modifiedUris`, `prevUris`)
- The `prevUris` is for CLS prevention. With this removal, the CLS issue is back, but we'll handle it differently later.
- Temporarily disable the view-count fetching. Code is left there so that I don't forget.
## Fix
- `shouldPerformSearch` was never true when `prefixUris` is present. Corrected the logic.
- Aside: prefix and pin is so similar in function. Hm ....
* ClaimTilesDiscover: factor out options
## Change
Move the `option` code outside and passed in as a pre-calculated prop.
## Reason
To skip rendering while waiting for `claim_search`, we need to add `React.memo(areEqual)`. However, the flag that determines if we are fetching `claim_search` (fetchingClaimSearchByQuery[]) depends on the derived options as the key.
Instead of calculating `options` twice, we moved it to the props so both sides can use it.
It also makes the component a bit more readable.
The downside is that the prop-passing might not be clear.
* ClaimTilesDiscover: reduce ~17 renders at startup to just 2.
* ClaimTilesDiscover: fill with placeholder while waiting for claim_search
## Issue
Livestream claims are fetched seperately, so they might already exists. While claim_search is running, the list only consists of livestreams (collapsed).
## Fix
Fill up the space with placeholders to prevent layout shift.
* Add 'useFetchViewCount' to handle fetching from lists
This effect also stashes fetched uris, so that we won't re-fetch the same uris during the same instance (e.g. during infinite scroll).
* ⏪ ClaimListDiscover: revert and cleanup
## Revert
- Removed the 'finalUris' stuff that was meant to "pause" visual changes when fetching. I think it'll be cleaner to use React.memo to achieve that.
## Alterations
- Added `renderUri` to make it clear which array that this component will render.
- Re-do the way we fetch view counts now that 'finalUris' is gone. Not the best method, but at least correct for now.
* ClaimListDiscover: add prefixUris, similar to ClaimTilesDiscover
This will be initially used to append livestreams at the top.
* ✅ Re-enable active livestream tiles using the new method
* doFetchActiveLivestreams: add interval check
- Added a default minimum of 5 minutes between fetches. Clients can bypass this through `forceFetch` if needed.
* doFetchActiveLivestreams: add option check
We'll need to support different 'orderBy', so adding an "options check" when determining if we just made the same fetch.
* WildWest: limit livestream tiles + add ability to show more
Most likely this behavior will change in the future, so we'll leave `ClaimListDiscover` untouched and handle the logic at the page level.
This solution uses 2 `ClaimListDiscover` -- if the reduced livestream list is visible, it handles the header; else the normal list handles the header.
* Use better tile-count on larger screens.
Used the same method as how the homepage does it.
2021-09-24 16:26:21 +02:00
|
|
|
if (isLivestreamActive === true) {
|
2022-04-15 13:02:51 +02:00
|
|
|
if (livestreamViewerCount) {
|
|
|
|
liveProperty = (claim) => (
|
|
|
|
<span className="livestream__viewer-count">
|
|
|
|
{livestreamViewerCount} <Icon icon={ICONS.EYE} />
|
|
|
|
</span>
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
liveProperty = (claim) => <>LIVE</>;
|
|
|
|
}
|
2021-04-29 09:22:56 +02:00
|
|
|
}
|
|
|
|
|
2019-06-11 20:10:58 +02:00
|
|
|
return (
|
2020-10-20 19:10:02 +02:00
|
|
|
<WrapperElement
|
2019-08-02 08:28:14 +02:00
|
|
|
ref={ref}
|
2019-06-11 20:10:58 +02:00
|
|
|
role="link"
|
2019-09-26 18:28:08 +02:00
|
|
|
onClick={pending || type === 'inline' ? undefined : handleOnClick}
|
2020-01-31 17:43:14 +01:00
|
|
|
className={classnames('claim-preview__wrapper', {
|
2021-01-13 16:44:44 +01:00
|
|
|
'claim-preview__wrapper--channel': isChannelUri && type !== 'inline',
|
2020-01-31 17:43:14 +01:00
|
|
|
'claim-preview__wrapper--inline': type === 'inline',
|
|
|
|
'claim-preview__wrapper--small': type === 'small',
|
Livestream category improvements (#7115)
* ❌ Remove old method of displaying active livestreams
Completely remove it for now to make the commit deltas clearer.
We'll replace it with the new method at the end.
* Fetch and store active-livestream info in redux
* Tiles can now query active-livestream state from redux instead of getting from parent.
* ⏪ ClaimTilesDiscover: revert and cleanup
## Simplify
- Simplify to just `uris` instead of having multiple arrays (`uris`, `modifiedUris`, `prevUris`)
- The `prevUris` is for CLS prevention. With this removal, the CLS issue is back, but we'll handle it differently later.
- Temporarily disable the view-count fetching. Code is left there so that I don't forget.
## Fix
- `shouldPerformSearch` was never true when `prefixUris` is present. Corrected the logic.
- Aside: prefix and pin is so similar in function. Hm ....
* ClaimTilesDiscover: factor out options
## Change
Move the `option` code outside and passed in as a pre-calculated prop.
## Reason
To skip rendering while waiting for `claim_search`, we need to add `React.memo(areEqual)`. However, the flag that determines if we are fetching `claim_search` (fetchingClaimSearchByQuery[]) depends on the derived options as the key.
Instead of calculating `options` twice, we moved it to the props so both sides can use it.
It also makes the component a bit more readable.
The downside is that the prop-passing might not be clear.
* ClaimTilesDiscover: reduce ~17 renders at startup to just 2.
* ClaimTilesDiscover: fill with placeholder while waiting for claim_search
## Issue
Livestream claims are fetched seperately, so they might already exists. While claim_search is running, the list only consists of livestreams (collapsed).
## Fix
Fill up the space with placeholders to prevent layout shift.
* Add 'useFetchViewCount' to handle fetching from lists
This effect also stashes fetched uris, so that we won't re-fetch the same uris during the same instance (e.g. during infinite scroll).
* ⏪ ClaimListDiscover: revert and cleanup
## Revert
- Removed the 'finalUris' stuff that was meant to "pause" visual changes when fetching. I think it'll be cleaner to use React.memo to achieve that.
## Alterations
- Added `renderUri` to make it clear which array that this component will render.
- Re-do the way we fetch view counts now that 'finalUris' is gone. Not the best method, but at least correct for now.
* ClaimListDiscover: add prefixUris, similar to ClaimTilesDiscover
This will be initially used to append livestreams at the top.
* ✅ Re-enable active livestream tiles using the new method
* doFetchActiveLivestreams: add interval check
- Added a default minimum of 5 minutes between fetches. Clients can bypass this through `forceFetch` if needed.
* doFetchActiveLivestreams: add option check
We'll need to support different 'orderBy', so adding an "options check" when determining if we just made the same fetch.
* WildWest: limit livestream tiles + add ability to show more
Most likely this behavior will change in the future, so we'll leave `ClaimListDiscover` untouched and handle the logic at the page level.
This solution uses 2 `ClaimListDiscover` -- if the reduced livestream list is visible, it handles the header; else the normal list handles the header.
* Use better tile-count on larger screens.
Used the same method as how the homepage does it.
2021-09-24 16:26:21 +02:00
|
|
|
'claim-preview__live': isLivestreamActive,
|
2021-07-13 00:39:23 +02:00
|
|
|
'claim-preview__active': active,
|
2022-04-05 08:48:02 +02:00
|
|
|
'non-clickable': nonClickable,
|
2019-06-11 20:10:58 +02:00
|
|
|
})}
|
|
|
|
>
|
2021-03-30 01:05:18 +02:00
|
|
|
<>
|
|
|
|
{!hideRepostLabel && <ClaimRepostAuthor uri={uri} />}
|
|
|
|
<div
|
|
|
|
className={classnames('claim-preview', {
|
|
|
|
'claim-preview--small': type === 'small' || type === 'tooltip',
|
|
|
|
'claim-preview--large': type === 'large',
|
|
|
|
'claim-preview--inline': type === 'inline',
|
|
|
|
'claim-preview--tooltip': type === 'tooltip',
|
|
|
|
'claim-preview--channel': isChannelUri,
|
|
|
|
'claim-preview--visited': !isChannelUri && !claimIsMine && hasVisitedUri,
|
|
|
|
'claim-preview--pending': pending,
|
2022-01-12 20:14:12 +01:00
|
|
|
'claim-preview--collection-mine': isMyCollection && showEdit,
|
2022-01-06 22:13:26 +01:00
|
|
|
'swipe-list__item': swipeLayout,
|
2021-03-30 01:05:18 +02:00
|
|
|
})}
|
|
|
|
>
|
2022-01-12 20:14:12 +01:00
|
|
|
{isMyCollection && showEdit && (
|
|
|
|
<CollectionEditButtons uri={uri} collectionId={listId} dragHandleProps={dragHandleProps} />
|
|
|
|
)}
|
|
|
|
|
2021-03-30 01:05:18 +02:00
|
|
|
{isChannelUri && claim ? (
|
2021-07-16 08:53:38 +02:00
|
|
|
<UriIndicator focusable={false} uri={uri} link>
|
2022-04-01 16:56:18 +02:00
|
|
|
<ChannelThumbnail
|
|
|
|
uri={uri}
|
|
|
|
small={type === 'inline'}
|
|
|
|
showMemberBadge={showMemberBadge}
|
|
|
|
checkMembership={false}
|
|
|
|
/>
|
2021-03-30 01:05:18 +02:00
|
|
|
</UriIndicator>
|
|
|
|
) : (
|
|
|
|
<>
|
|
|
|
{!pending ? (
|
2021-07-15 05:12:40 +02:00
|
|
|
<NavLink aria-hidden tabIndex={-1} {...navLinkProps}>
|
2021-03-30 01:05:18 +02:00
|
|
|
<FileThumbnail thumbnail={thumbnailUrl}>
|
2021-08-02 17:03:55 +02:00
|
|
|
<div className="claim-preview__hover-actions">
|
2022-01-12 20:14:12 +01:00
|
|
|
{isPlayable && <FileWatchLaterLink focusable={false} uri={repostedContentUri} />}
|
2021-08-04 15:45:24 +02:00
|
|
|
</div>
|
2021-08-25 17:44:08 +02:00
|
|
|
{/* @if TARGET='app' */}
|
2021-08-04 15:45:24 +02:00
|
|
|
<div className="claim-preview__hover-actions">
|
2021-08-02 17:03:55 +02:00
|
|
|
{claim && !isCollection && (
|
2021-07-15 22:14:21 +02:00
|
|
|
<FileDownloadLink focusable={false} uri={canonicalUrl} hideOpenButton hideDownloadStatus />
|
2021-08-02 17:03:55 +02:00
|
|
|
)}
|
|
|
|
</div>
|
2021-08-25 17:44:08 +02:00
|
|
|
{/* @endif */}
|
Livestream category improvements (#7115)
* ❌ Remove old method of displaying active livestreams
Completely remove it for now to make the commit deltas clearer.
We'll replace it with the new method at the end.
* Fetch and store active-livestream info in redux
* Tiles can now query active-livestream state from redux instead of getting from parent.
* ⏪ ClaimTilesDiscover: revert and cleanup
## Simplify
- Simplify to just `uris` instead of having multiple arrays (`uris`, `modifiedUris`, `prevUris`)
- The `prevUris` is for CLS prevention. With this removal, the CLS issue is back, but we'll handle it differently later.
- Temporarily disable the view-count fetching. Code is left there so that I don't forget.
## Fix
- `shouldPerformSearch` was never true when `prefixUris` is present. Corrected the logic.
- Aside: prefix and pin is so similar in function. Hm ....
* ClaimTilesDiscover: factor out options
## Change
Move the `option` code outside and passed in as a pre-calculated prop.
## Reason
To skip rendering while waiting for `claim_search`, we need to add `React.memo(areEqual)`. However, the flag that determines if we are fetching `claim_search` (fetchingClaimSearchByQuery[]) depends on the derived options as the key.
Instead of calculating `options` twice, we moved it to the props so both sides can use it.
It also makes the component a bit more readable.
The downside is that the prop-passing might not be clear.
* ClaimTilesDiscover: reduce ~17 renders at startup to just 2.
* ClaimTilesDiscover: fill with placeholder while waiting for claim_search
## Issue
Livestream claims are fetched seperately, so they might already exists. While claim_search is running, the list only consists of livestreams (collapsed).
## Fix
Fill up the space with placeholders to prevent layout shift.
* Add 'useFetchViewCount' to handle fetching from lists
This effect also stashes fetched uris, so that we won't re-fetch the same uris during the same instance (e.g. during infinite scroll).
* ⏪ ClaimListDiscover: revert and cleanup
## Revert
- Removed the 'finalUris' stuff that was meant to "pause" visual changes when fetching. I think it'll be cleaner to use React.memo to achieve that.
## Alterations
- Added `renderUri` to make it clear which array that this component will render.
- Re-do the way we fetch view counts now that 'finalUris' is gone. Not the best method, but at least correct for now.
* ClaimListDiscover: add prefixUris, similar to ClaimTilesDiscover
This will be initially used to append livestreams at the top.
* ✅ Re-enable active livestream tiles using the new method
* doFetchActiveLivestreams: add interval check
- Added a default minimum of 5 minutes between fetches. Clients can bypass this through `forceFetch` if needed.
* doFetchActiveLivestreams: add option check
We'll need to support different 'orderBy', so adding an "options check" when determining if we just made the same fetch.
* WildWest: limit livestream tiles + add ability to show more
Most likely this behavior will change in the future, so we'll leave `ClaimListDiscover` untouched and handle the logic at the page level.
This solution uses 2 `ClaimListDiscover` -- if the reduced livestream list is visible, it handles the header; else the normal list handles the header.
* Use better tile-count on larger screens.
Used the same method as how the homepage does it.
2021-09-24 16:26:21 +02:00
|
|
|
{(!isLivestream || isLivestreamActive) && (
|
2021-03-30 01:05:18 +02:00
|
|
|
<div className="claim-preview__file-property-overlay">
|
wip
wip
wip - everything but publish, autoplay, and styling
collection publishing
add channel to collection publish
cleanup
wip
bump
clear mass add after success
move collection item management controls
redirect replace to published collection id
bump
playlist selector on create
bump
use new collection add ui element
bump
wip
gitignore
add content json
wip
bump
context add to playlist
basic collections page style pass wip
wip: edits, buttons, styles...
change fileAuthor to claimAuthor
update, pending bugfixes, delete modal progress, collection header, other bugfixes
bump
cleaning
show page bugfix
builtin collection headers
no playlists, no grid title
wip
style tweaks
use normal looking claim previews for collection tiles
add collection changes
style library previews
collection menulist for delete/view on library
delete modal works for unpublished
rearrange collection publish tabs
clean up collection publishing and items
show on odysee
begin collectoin edit header and css renaming
better thumbnails
bump
fix collection publish redirect
view collection in menu does something
copy and thumbs
list previews, pending, context menus, list page
enter to add collection, lists page empty state
playable lists only, delete feature, bump
put fileListDownloaded back
better collection titles
improve collection claim details
fix horiz more icon
fix up channel page
style, copy, bump
refactor preview overlay properties,
fix reposts showing as floppydisk
add watch later toast,
small overlay properties on wunderbar results,
fix collection actions buttons
bump
cleanup
cleaning, refactoring
bump
preview thumb styling, cleanup
support discover page lists search
sync, bump
bump, fix sync more
enforce builtin order for now
new lists page empty state
try to indicate unpublished edits in lists
bump
fix autoplay and linting
consts, fix autoplay
bugs
fixes
cleanup
fix, bump
lists experimental ui, fixes
refactor listIndex out
hack in collection fallback thumb
bump
2021-02-06 08:03:51 +01:00
|
|
|
<PreviewOverlayProperties uri={uri} small={type === 'small'} properties={liveProperty} />
|
2021-03-30 01:05:18 +02:00
|
|
|
</div>
|
|
|
|
)}
|
2022-04-01 16:56:18 +02:00
|
|
|
<ClaimPreviewProgress uri={uri} />
|
2021-03-30 01:05:18 +02:00
|
|
|
</FileThumbnail>
|
2020-05-07 14:22:55 +02:00
|
|
|
</NavLink>
|
2021-03-30 01:05:18 +02:00
|
|
|
) : (
|
|
|
|
<FileThumbnail thumbnail={thumbnailUrl} />
|
2020-05-07 14:22:55 +02:00
|
|
|
)}
|
2021-03-30 01:05:18 +02:00
|
|
|
</>
|
|
|
|
)}
|
|
|
|
|
|
|
|
<div className="claim-preview__text">
|
|
|
|
<div className="claim-preview-metadata">
|
|
|
|
<div className="claim-preview-info">
|
|
|
|
{pending ? (
|
wip
wip
wip - everything but publish, autoplay, and styling
collection publishing
add channel to collection publish
cleanup
wip
bump
clear mass add after success
move collection item management controls
redirect replace to published collection id
bump
playlist selector on create
bump
use new collection add ui element
bump
wip
gitignore
add content json
wip
bump
context add to playlist
basic collections page style pass wip
wip: edits, buttons, styles...
change fileAuthor to claimAuthor
update, pending bugfixes, delete modal progress, collection header, other bugfixes
bump
cleaning
show page bugfix
builtin collection headers
no playlists, no grid title
wip
style tweaks
use normal looking claim previews for collection tiles
add collection changes
style library previews
collection menulist for delete/view on library
delete modal works for unpublished
rearrange collection publish tabs
clean up collection publishing and items
show on odysee
begin collectoin edit header and css renaming
better thumbnails
bump
fix collection publish redirect
view collection in menu does something
copy and thumbs
list previews, pending, context menus, list page
enter to add collection, lists page empty state
playable lists only, delete feature, bump
put fileListDownloaded back
better collection titles
improve collection claim details
fix horiz more icon
fix up channel page
style, copy, bump
refactor preview overlay properties,
fix reposts showing as floppydisk
add watch later toast,
small overlay properties on wunderbar results,
fix collection actions buttons
bump
cleanup
cleaning, refactoring
bump
preview thumb styling, cleanup
support discover page lists search
sync, bump
bump, fix sync more
enforce builtin order for now
new lists page empty state
try to indicate unpublished edits in lists
bump
fix autoplay and linting
consts, fix autoplay
bugs
fixes
cleanup
fix, bump
lists experimental ui, fixes
refactor listIndex out
hack in collection fallback thumb
bump
2021-02-06 08:03:51 +01:00
|
|
|
<ClaimPreviewTitle uri={uri} />
|
2021-03-30 01:05:18 +02:00
|
|
|
) : (
|
2021-07-21 01:49:41 +02:00
|
|
|
<NavLink aria-label={ariaLabelData} aria-current={active ? 'page' : null} {...navLinkProps}>
|
2021-03-30 01:05:18 +02:00
|
|
|
<ClaimPreviewTitle uri={uri} />
|
|
|
|
</NavLink>
|
|
|
|
)}
|
|
|
|
</div>
|
2022-02-11 19:50:55 +01:00
|
|
|
<div className="claim-tile__info" uri={uri}>
|
|
|
|
{!isChannelUri && signingChannel && (
|
|
|
|
<div className="claim-preview__channel-staked">
|
|
|
|
<UriIndicator focusable={false} uri={uri} link hideAnonymous>
|
2022-04-01 16:56:18 +02:00
|
|
|
<ChannelThumbnail
|
|
|
|
uri={signingChannel.permanent_url}
|
|
|
|
xsmall
|
|
|
|
showMemberBadge={showMemberBadge}
|
|
|
|
checkMembership={false}
|
|
|
|
/>
|
2022-02-11 19:50:55 +01:00
|
|
|
</UriIndicator>
|
|
|
|
</div>
|
|
|
|
)}
|
2022-03-09 19:05:37 +01:00
|
|
|
<ClaimPreviewSubtitle
|
|
|
|
uri={uri}
|
|
|
|
type={type}
|
|
|
|
showAtSign={isChannelUri}
|
|
|
|
showMemberBadge={!showMemberBadge}
|
|
|
|
/>
|
2022-02-11 19:50:55 +01:00
|
|
|
{(pending || !!reflectingProgress) && <PublishPending uri={uri} />}
|
|
|
|
{channelSubscribers}
|
|
|
|
</div>
|
2020-01-31 17:43:14 +01:00
|
|
|
</div>
|
2021-03-30 01:05:18 +02:00
|
|
|
{type !== 'small' && (
|
|
|
|
<div className="claim-preview__actions">
|
|
|
|
{!pending && (
|
|
|
|
<>
|
|
|
|
{renderActions && claim && renderActions(claim)}
|
|
|
|
{shouldHideActions || renderActions ? null : actions !== undefined ? (
|
|
|
|
actions
|
|
|
|
) : (
|
|
|
|
<div className="claim-preview__primary-actions">
|
2021-10-25 16:56:31 +02:00
|
|
|
{isChannelUri && !banState.muted && !claimIsMine && (
|
2021-09-10 17:01:12 +02:00
|
|
|
<SubscribeButton
|
|
|
|
uri={repostedChannelUri || (uri.startsWith('lbry://') ? uri : `lbry://${uri}`)}
|
|
|
|
/>
|
2021-03-30 01:05:18 +02:00
|
|
|
)}
|
2021-03-03 19:50:16 +01:00
|
|
|
|
2021-03-30 01:05:18 +02:00
|
|
|
{includeSupportAction && <ClaimSupportButton uri={uri} />}
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
{claim && (
|
|
|
|
<React.Fragment>
|
2022-02-02 13:48:24 +01:00
|
|
|
{typeof properties === 'function'
|
|
|
|
? properties(claim)
|
|
|
|
: properties !== undefined
|
|
|
|
? properties
|
|
|
|
: !isMobile && <ClaimTags uri={uri} type={type} />}
|
2021-03-30 01:05:18 +02:00
|
|
|
</React.Fragment>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</div>
|
2019-06-11 20:10:58 +02:00
|
|
|
</div>
|
2022-05-03 13:21:51 +02:00
|
|
|
{inWatchHistory && (
|
2022-04-26 16:59:40 +02:00
|
|
|
<div onClick={(e) => removeFromHistory(e, uri)} className="claim-preview__history-remove">
|
|
|
|
<Icon icon={ICONS.REMOVE} />
|
|
|
|
</div>
|
|
|
|
)}
|
2021-11-09 18:52:05 +01:00
|
|
|
{/* Todo: check isLivestreamActive once we have that data consistently everywhere. */}
|
|
|
|
{claim && isLivestream && <ClaimPreviewReset uri={uri} />}
|
2021-11-03 22:52:18 +01:00
|
|
|
|
2021-07-22 09:37:57 +02:00
|
|
|
{!hideMenu && <ClaimMenuList uri={uri} collectionId={listId} />}
|
2021-03-30 01:05:18 +02:00
|
|
|
</>
|
2020-10-20 19:10:02 +02:00
|
|
|
</WrapperElement>
|
2019-06-11 20:10:58 +02:00
|
|
|
);
|
2019-08-02 08:28:14 +02:00
|
|
|
});
|
2019-06-11 20:10:58 +02:00
|
|
|
|
2019-06-28 09:27:55 +02:00
|
|
|
export default withRouter(ClaimPreview);
|