support channel pending state
This commit is contained in:
parent
6ff1cfc91e
commit
e065c81f88
11 changed files with 164 additions and 126 deletions
|
@ -1236,5 +1236,8 @@
|
||||||
"Loading your channels...": "Loading your channels...",
|
"Loading your channels...": "Loading your channels...",
|
||||||
"Try Out the App!": "Try Out the App!",
|
"Try Out the App!": "Try Out the App!",
|
||||||
"Download the app to track files you've viewed and downloaded.": "Download the app to track files you've viewed and downloaded.",
|
"Download the app to track files you've viewed and downloaded.": "Download the app to track files you've viewed and downloaded.",
|
||||||
"Create a New Channel": "Create a New Channel"
|
"Create a New Channel": "Create a New Channel",
|
||||||
|
"Thumbnail source": "Thumbnail source",
|
||||||
|
"Cover source": "Cover source",
|
||||||
|
"Your changes will be live in a few minutes": "Your changes will be live in a few minutes"
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,6 +31,7 @@ function ChannelAbout(props: Props) {
|
||||||
<div className="card">
|
<div className="card">
|
||||||
<section className="section card--section">
|
<section className="section card--section">
|
||||||
<Fragment>
|
<Fragment>
|
||||||
|
<label>{__('Description')}</label>
|
||||||
{description && (
|
{description && (
|
||||||
<div className="media__info-text media__info-text--constrained">
|
<div className="media__info-text media__info-text--constrained">
|
||||||
<MarkdownPreview content={description} />
|
<MarkdownPreview content={description} />
|
||||||
|
|
|
@ -8,6 +8,7 @@ import {
|
||||||
doUpdateChannel,
|
doUpdateChannel,
|
||||||
makeSelectAmountForUri,
|
makeSelectAmountForUri,
|
||||||
makeSelectClaimForUri,
|
makeSelectClaimForUri,
|
||||||
|
selectUpdateChannelError,
|
||||||
} from 'lbry-redux';
|
} from 'lbry-redux';
|
||||||
import ChannelPage from './view';
|
import ChannelPage from './view';
|
||||||
|
|
||||||
|
@ -24,6 +25,7 @@ const select = (state, props) => ({
|
||||||
languages: makeSelectMetadataItemForUri(props.uri, 'languages')(state),
|
languages: makeSelectMetadataItemForUri(props.uri, 'languages')(state),
|
||||||
amount: makeSelectAmountForUri(props.uri)(state),
|
amount: makeSelectAmountForUri(props.uri)(state),
|
||||||
claim: makeSelectClaimForUri(props.uri)(state),
|
claim: makeSelectClaimForUri(props.uri)(state),
|
||||||
|
updateError: selectUpdateChannelError(state),
|
||||||
});
|
});
|
||||||
|
|
||||||
const perform = dispatch => ({
|
const perform = dispatch => ({
|
||||||
|
|
|
@ -3,10 +3,10 @@ import React, { useState } from 'react';
|
||||||
import { FormField } from 'component/common/form';
|
import { FormField } from 'component/common/form';
|
||||||
import Button from 'component/button';
|
import Button from 'component/button';
|
||||||
import SelectAsset from 'component/selectAsset';
|
import SelectAsset from 'component/selectAsset';
|
||||||
import * as PAGES from 'constants/pages';
|
|
||||||
import { MINIMUM_PUBLISH_BID } from 'constants/claim';
|
import { MINIMUM_PUBLISH_BID } from 'constants/claim';
|
||||||
import TagsSearch from 'component/tagsSearch';
|
import TagsSearch from 'component/tagsSearch';
|
||||||
import { FF_MAX_CHARS_IN_DESCRIPTION } from 'constants/form-field';
|
import { FF_MAX_CHARS_IN_DESCRIPTION } from 'constants/form-field';
|
||||||
|
import ErrorText from 'component/common/error-text';
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
claim: ChannelClaim,
|
claim: ChannelClaim,
|
||||||
|
@ -22,10 +22,11 @@ type Props = {
|
||||||
tags: Array<string>,
|
tags: Array<string>,
|
||||||
locations: Array<string>,
|
locations: Array<string>,
|
||||||
languages: Array<string>,
|
languages: Array<string>,
|
||||||
updateChannel: any => void,
|
updateChannel: any => Promise<any>,
|
||||||
updateThumb: string => void,
|
updateThumb: string => void,
|
||||||
updateCover: string => void,
|
updateCover: string => void,
|
||||||
setEditing: boolean => void,
|
doneEditing: () => void,
|
||||||
|
updateError: string,
|
||||||
};
|
};
|
||||||
|
|
||||||
function ChannelForm(props: Props) {
|
function ChannelForm(props: Props) {
|
||||||
|
@ -41,10 +42,11 @@ function ChannelForm(props: Props) {
|
||||||
locations,
|
locations,
|
||||||
languages,
|
languages,
|
||||||
amount,
|
amount,
|
||||||
setEditing,
|
doneEditing,
|
||||||
updateChannel,
|
updateChannel,
|
||||||
updateThumb,
|
updateThumb,
|
||||||
updateCover,
|
updateCover,
|
||||||
|
updateError,
|
||||||
} = props;
|
} = props;
|
||||||
const { claim_id: claimId } = claim;
|
const { claim_id: claimId } = claim;
|
||||||
|
|
||||||
|
@ -101,13 +103,17 @@ function ChannelForm(props: Props) {
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleSubmit = () => {
|
const handleSubmit = () => {
|
||||||
updateChannel(params);
|
updateChannel(params).then(success => {
|
||||||
setEditing(false);
|
if (success) {
|
||||||
|
doneEditing();
|
||||||
|
}
|
||||||
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
// TODO clear and bail after submit
|
// TODO clear and bail after submit
|
||||||
return (
|
return (
|
||||||
<section className={'card--section'}>
|
<div className="card">
|
||||||
|
<section className={'section card--section'}>
|
||||||
<SelectAsset
|
<SelectAsset
|
||||||
onUpdate={v => handleThumbnailChange(v)}
|
onUpdate={v => handleThumbnailChange(v)}
|
||||||
currentValue={params.thumbnailUrl}
|
currentValue={params.thumbnailUrl}
|
||||||
|
@ -199,12 +205,17 @@ function ChannelForm(props: Props) {
|
||||||
/>
|
/>
|
||||||
<div className={'section__actions'}>
|
<div className={'section__actions'}>
|
||||||
<Button button="primary" label={__('Submit')} onClick={handleSubmit} />
|
<Button button="primary" label={__('Submit')} onClick={handleSubmit} />
|
||||||
<Button button="link" label={__('Cancel')} navigate={`$/${PAGES.CHANNELS}`} />
|
<Button button="link" label={__('Cancel')} onClick={doneEditing} />
|
||||||
</div>
|
</div>
|
||||||
|
{updateError && updateError.length ? (
|
||||||
|
<ErrorText>{updateError}</ErrorText>
|
||||||
|
) : (
|
||||||
<p className="help">
|
<p className="help">
|
||||||
{__('After submitting, you will not see the changes immediately. Please check back in a few minutes.')}
|
{__('After submitting, you will not see the changes immediately. Please check back in a few minutes.')}
|
||||||
</p>
|
</p>
|
||||||
|
)}
|
||||||
</section>
|
</section>
|
||||||
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,14 +8,15 @@ type Props = {
|
||||||
doOpenModal: (string, {}) => void,
|
doOpenModal: (string, {}) => void,
|
||||||
claim: StreamClaim,
|
claim: StreamClaim,
|
||||||
abandonActionCallback: any => void,
|
abandonActionCallback: any => void,
|
||||||
|
iconSize: number,
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function ClaimAbandonButton(props: Props) {
|
export default function ClaimAbandonButton(props: Props) {
|
||||||
const { doOpenModal, claim, abandonActionCallback } = props;
|
const { doOpenModal, claim, abandonActionCallback, iconSize } = props;
|
||||||
|
|
||||||
function abandonClaim() {
|
function abandonClaim() {
|
||||||
doOpenModal(MODALS.CONFIRM_CLAIM_REVOKE, { claim: claim, cb: abandonActionCallback });
|
doOpenModal(MODALS.CONFIRM_CLAIM_REVOKE, { claim: claim, cb: abandonActionCallback });
|
||||||
}
|
}
|
||||||
|
|
||||||
return <Button button="secondary" icon={ICONS.DELETE} onClick={abandonClaim} />;
|
return <Button disabled={!claim} button="alt" iconSize={iconSize} icon={ICONS.DELETE} onClick={abandonClaim} />;
|
||||||
}
|
}
|
||||||
|
|
|
@ -61,7 +61,7 @@ function ClaimPreviewTile(props: Props) {
|
||||||
const isRepost = claim && claim.repost_channel_url;
|
const isRepost = claim && claim.repost_channel_url;
|
||||||
const shouldFetch = claim === undefined;
|
const shouldFetch = claim === undefined;
|
||||||
const thumbnailUrl = useGetThumbnail(uri, claim, streamingUrl, getFile, placeholder) || thumbnail;
|
const thumbnailUrl = useGetThumbnail(uri, claim, streamingUrl, getFile, placeholder) || thumbnail;
|
||||||
const claimsInChannel = (claim && claim.meta.claims_in_channel) || 0;
|
const claimsInChannel = (claim && claim.meta && claim.meta.claims_in_channel) || 0;
|
||||||
const canonicalUrl = claim && claim.canonical_url;
|
const canonicalUrl = claim && claim.canonical_url;
|
||||||
const navigateUrl = formatLbryUrlForWeb(canonicalUrl || uri || '/');
|
const navigateUrl = formatLbryUrlForWeb(canonicalUrl || uri || '/');
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,7 @@ import {
|
||||||
selectCurrentChannelPage,
|
selectCurrentChannelPage,
|
||||||
makeSelectClaimForUri,
|
makeSelectClaimForUri,
|
||||||
selectChannelIsBlocked,
|
selectChannelIsBlocked,
|
||||||
|
makeSelectClaimIsPending,
|
||||||
} from 'lbry-redux';
|
} from 'lbry-redux';
|
||||||
import { selectBlackListedOutpoints, doFetchSubCount, makeSelectSubCountForUri } from 'lbryinc';
|
import { selectBlackListedOutpoints, doFetchSubCount, makeSelectSubCountForUri } from 'lbryinc';
|
||||||
import { makeSelectIsSubscribed } from 'redux/selectors/subscriptions';
|
import { makeSelectIsSubscribed } from 'redux/selectors/subscriptions';
|
||||||
|
@ -23,6 +24,7 @@ const select = (state, props) => ({
|
||||||
channelIsBlocked: selectChannelIsBlocked(props.uri)(state),
|
channelIsBlocked: selectChannelIsBlocked(props.uri)(state),
|
||||||
blackListedOutpoints: selectBlackListedOutpoints(state),
|
blackListedOutpoints: selectBlackListedOutpoints(state),
|
||||||
subCount: makeSelectSubCountForUri(props.uri)(state),
|
subCount: makeSelectSubCountForUri(props.uri)(state),
|
||||||
|
pending: makeSelectClaimIsPending(props.uri)(state),
|
||||||
});
|
});
|
||||||
|
|
||||||
const perform = dispatch => ({
|
const perform = dispatch => ({
|
||||||
|
|
|
@ -46,6 +46,7 @@ type Props = {
|
||||||
}>,
|
}>,
|
||||||
fetchSubCount: string => void,
|
fetchSubCount: string => void,
|
||||||
subCount: number,
|
subCount: number,
|
||||||
|
pending: boolean,
|
||||||
};
|
};
|
||||||
|
|
||||||
function ChannelPage(props: Props) {
|
function ChannelPage(props: Props) {
|
||||||
|
@ -64,6 +65,7 @@ function ChannelPage(props: Props) {
|
||||||
blackListedOutpoints,
|
blackListedOutpoints,
|
||||||
fetchSubCount,
|
fetchSubCount,
|
||||||
subCount,
|
subCount,
|
||||||
|
pending,
|
||||||
} = props;
|
} = props;
|
||||||
|
|
||||||
const { channelName } = parseURI(uri);
|
const { channelName } = parseURI(uri);
|
||||||
|
@ -98,6 +100,12 @@ function ChannelPage(props: Props) {
|
||||||
history.push(`${url}${search}`);
|
history.push(`${url}${search}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function doneEditing() {
|
||||||
|
setEditing(false);
|
||||||
|
setThumbPreview(thumbnail);
|
||||||
|
setCoverPreview(cover);
|
||||||
|
}
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
Lbryio.call('yt', 'get_youtuber', { channel_claim_id: claimId }).then(response => {
|
Lbryio.call('yt', 'get_youtuber', { channel_claim_id: claimId }).then(response => {
|
||||||
if (response.is_verified_youtuber) {
|
if (response.is_verified_youtuber) {
|
||||||
|
@ -176,12 +184,28 @@ function ChannelPage(props: Props) {
|
||||||
<HelpLink href="https://lbry.com/faq/views" />
|
<HelpLink href="https://lbry.com/faq/views" />
|
||||||
</span>
|
</span>
|
||||||
{channelIsMine && !editing && (
|
{channelIsMine && !editing && (
|
||||||
|
<>
|
||||||
|
{pending ? (
|
||||||
|
<span>{__('Your changes will be live in a few minutes')}</span>
|
||||||
|
) : (
|
||||||
<Button
|
<Button
|
||||||
button="alt"
|
button="alt"
|
||||||
title={__('Edit')}
|
title={__('Edit')}
|
||||||
onClick={() => setEditing(!editing)}
|
onClick={() => setEditing(!editing)}
|
||||||
icon={ICONS.EDIT}
|
icon={ICONS.EDIT}
|
||||||
iconSize={18}
|
iconSize={18}
|
||||||
|
disabled={pending}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
{channelIsMine && editing && (
|
||||||
|
<Button
|
||||||
|
button="alt"
|
||||||
|
title={__('Cancel')}
|
||||||
|
onClick={() => doneEditing()}
|
||||||
|
icon={ICONS.REMOVE}
|
||||||
|
iconSize={18}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
@ -203,7 +227,7 @@ function ChannelPage(props: Props) {
|
||||||
{editing ? (
|
{editing ? (
|
||||||
<ChannelEdit
|
<ChannelEdit
|
||||||
uri={uri}
|
uri={uri}
|
||||||
setEditing={setEditing}
|
doneEditing={doneEditing}
|
||||||
updateThumb={v => setThumbPreview(v)}
|
updateThumb={v => setThumbPreview(v)}
|
||||||
updateCover={v => setCoverPreview(v)}
|
updateCover={v => setCoverPreview(v)}
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -1,10 +1,16 @@
|
||||||
import { connect } from 'react-redux';
|
import { connect } from 'react-redux';
|
||||||
import { selectMyChannelClaims, doFetchChannelListMine, selectFetchingMyChannels } from 'lbry-redux';
|
import {
|
||||||
|
selectMyChannelClaims,
|
||||||
|
selectMyChannelUrls,
|
||||||
|
doFetchChannelListMine,
|
||||||
|
selectFetchingMyChannels,
|
||||||
|
} from 'lbry-redux';
|
||||||
import { selectYoutubeChannels } from 'redux/selectors/user';
|
import { selectYoutubeChannels } from 'redux/selectors/user';
|
||||||
import { doOpenModal } from 'redux/actions/app';
|
import { doOpenModal } from 'redux/actions/app';
|
||||||
import ChannelsPage from './view';
|
import ChannelsPage from './view';
|
||||||
|
|
||||||
const select = state => ({
|
const select = state => ({
|
||||||
|
channelUrls: selectMyChannelUrls(state),
|
||||||
channels: selectMyChannelClaims(state),
|
channels: selectMyChannelClaims(state),
|
||||||
fetchingChannels: selectFetchingMyChannels(state),
|
fetchingChannels: selectFetchingMyChannels(state),
|
||||||
youtubeChannels: selectYoutubeChannels(state),
|
youtubeChannels: selectYoutubeChannels(state),
|
||||||
|
|
|
@ -11,6 +11,7 @@ import Card from 'component/common/card';
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
channels: Array<ChannelClaim>,
|
channels: Array<ChannelClaim>,
|
||||||
|
channelUrls: Array<string>,
|
||||||
fetchChannelListMine: () => void,
|
fetchChannelListMine: () => void,
|
||||||
fetchingChannels: boolean,
|
fetchingChannels: boolean,
|
||||||
youtubeChannels: ?Array<any>,
|
youtubeChannels: ?Array<any>,
|
||||||
|
@ -18,30 +19,19 @@ type Props = {
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function ChannelsPage(props: Props) {
|
export default function ChannelsPage(props: Props) {
|
||||||
const { channels, fetchChannelListMine, fetchingChannels, youtubeChannels, openModal } = props;
|
const { channels, channelUrls, fetchChannelListMine, fetchingChannels, youtubeChannels, openModal } = props;
|
||||||
const hasYoutubeChannels = youtubeChannels && Boolean(youtubeChannels.length);
|
const hasYoutubeChannels = youtubeChannels && Boolean(youtubeChannels.length);
|
||||||
const hasPendingChannels = channels && channels.some(channel => channel.confirmations < 0);
|
const hasPendingChannels = channels && channels.some(channel => channel.confirmations < 0);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
fetchChannelListMine();
|
fetchChannelListMine();
|
||||||
|
|
||||||
let interval;
|
|
||||||
if (hasPendingChannels) {
|
|
||||||
interval = setInterval(() => {
|
|
||||||
fetchChannelListMine();
|
|
||||||
}, 5000);
|
|
||||||
}
|
|
||||||
|
|
||||||
return () => {
|
|
||||||
clearInterval(interval);
|
|
||||||
};
|
|
||||||
}, [fetchChannelListMine, hasPendingChannels]);
|
}, [fetchChannelListMine, hasPendingChannels]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Page>
|
<Page>
|
||||||
{hasYoutubeChannels && <YoutubeTransferStatus hideChannelLink />}
|
{hasYoutubeChannels && <YoutubeTransferStatus hideChannelLink />}
|
||||||
|
|
||||||
{channels && Boolean(channels.length) && (
|
{channelUrls && Boolean(channelUrls.length) && (
|
||||||
<Card
|
<Card
|
||||||
title={__('Your Channels')}
|
title={__('Your Channels')}
|
||||||
titleActions={
|
titleActions={
|
||||||
|
@ -53,12 +43,10 @@ export default function ChannelsPage(props: Props) {
|
||||||
/>
|
/>
|
||||||
}
|
}
|
||||||
isBodyList
|
isBodyList
|
||||||
body={
|
body={<ClaimList isCardBody loading={fetchingChannels} uris={channelUrls} />}
|
||||||
<ClaimList isCardBody loading={fetchingChannels} uris={channels.map(channel => channel.permanent_url)} />
|
|
||||||
}
|
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
{!(channels && channels.length) && (
|
{!(channelUrls && channelUrls.length) && (
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
{!fetchingChannels ? (
|
{!fetchingChannels ? (
|
||||||
<section className="main--empty">
|
<section className="main--empty">
|
||||||
|
|
|
@ -6,7 +6,7 @@ import {
|
||||||
batchActions,
|
batchActions,
|
||||||
selectMyClaims,
|
selectMyClaims,
|
||||||
doPublish,
|
doPublish,
|
||||||
doCheckPendingPublishes,
|
doCheckPendingClaims,
|
||||||
doCheckReflectingFiles,
|
doCheckReflectingFiles,
|
||||||
ACTIONS as LBRY_REDUX_ACTIONS,
|
ACTIONS as LBRY_REDUX_ACTIONS,
|
||||||
} from 'lbry-redux';
|
} from 'lbry-redux';
|
||||||
|
@ -101,5 +101,5 @@ export const doCheckPendingPublishesApp = () => (dispatch: Dispatch, getState: G
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
return dispatch(doCheckPendingPublishes(onConfirmed));
|
return dispatch(doCheckPendingClaims(onConfirmed));
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue