handle fetching state on downloads and publishes pages #1593
6 changed files with 74 additions and 652 deletions
|
@ -89,9 +89,6 @@
|
||||||
"babel-preset-env": "^1.6.1",
|
"babel-preset-env": "^1.6.1",
|
||||||
"babel-preset-react": "^6.24.1",
|
"babel-preset-react": "^6.24.1",
|
||||||
"babel-preset-stage-2": "^6.18.0",
|
"babel-preset-stage-2": "^6.18.0",
|
||||||
"danger": "^3.6.0",
|
|
||||||
"danger-plugin-eslint": "^0.1.0",
|
|
||||||
"danger-plugin-yarn": "^1.3.0",
|
|
||||||
"decompress": "^4.2.0",
|
"decompress": "^4.2.0",
|
||||||
|
|||||||
"del": "^3.0.0",
|
"del": "^3.0.0",
|
||||||
"devtron": "^1.4.0",
|
"devtron": "^1.4.0",
|
||||||
|
|
|
@ -2,10 +2,9 @@
|
||||||
import * as React from 'react';
|
import * as React from 'react';
|
||||||
import classnames from 'classnames';
|
import classnames from 'classnames';
|
||||||
import Spinner from 'component/spinner';
|
import Spinner from 'component/spinner';
|
||||||
import { isShowingChildren } from 'util/dom';
|
|
||||||
|
|
||||||
// time in ms to wait to show loading spinner
|
// time in ms to wait to show loading spinner
|
||||||
const LOADER_TIMEOUT = 1500;
|
const LOADER_TIMEOUT = 1000;
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
children: React.Node | Array<React.Node>,
|
children: React.Node | Array<React.Node>,
|
||||||
|
@ -21,23 +20,6 @@ type State = {
|
||||||
};
|
};
|
||||||
|
|
||||||
class Page extends React.PureComponent<Props, State> {
|
class Page extends React.PureComponent<Props, State> {
|
||||||
static getDerivedStateFromProps(nextProps: Props, prevState: State) {
|
|
||||||
const { children } = nextProps;
|
|
||||||
const { showLoader } = prevState;
|
|
||||||
|
|
||||||
// If we aren't showing the loader, don't bother updating
|
|
||||||
if (!showLoader) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isShowingChildren(children)) {
|
|
||||||
return {
|
|
||||||
showLoader: false,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
super();
|
super();
|
||||||
|
|
||||||
|
@ -49,16 +31,29 @@ class Page extends React.PureComponent<Props, State> {
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
const { children } = this.props;
|
const { loading } = this.props;
|
||||||
|
if (loading) {
|
||||||
|
this.beginLoadingTimeout();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (!isShowingChildren(children))
|
componentDidUpdate(prevProps: Props) {
|
||||||
this.loaderTimeout = setTimeout(() => {
|
const { loading } = this.props;
|
||||||
this.setState({ showLoader: true });
|
if (!this.loaderTimeout && !prevProps.loading && loading) {
|
||||||
}, LOADER_TIMEOUT);
|
this.beginLoadingTimeout();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillUnmount() {
|
componentWillUnmount() {
|
||||||
this.loaderTimeout = null;
|
if (this.loaderTimeout) {
|
||||||
|
this.loaderTimeout = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
beginLoadingTimeout() {
|
||||||
|
this.loaderTimeout = setTimeout(() => {
|
||||||
|
this.setState({ showLoader: true });
|
||||||
|
}, LOADER_TIMEOUT);
|
||||||
}
|
}
|
||||||
|
|
||||||
loaderTimeout: ?TimeoutID;
|
loaderTimeout: ?TimeoutID;
|
||||||
|
@ -67,10 +62,6 @@ class Page extends React.PureComponent<Props, State> {
|
||||||
const { pageTitle, children, noPadding, extraPadding, notContained, loading } = this.props;
|
const { pageTitle, children, noPadding, extraPadding, notContained, loading } = this.props;
|
||||||
const { showLoader } = this.state;
|
const { showLoader } = this.state;
|
||||||
|
|
||||||
// We don't want to show the loading spinner right away if it will only flash on the
|
|
||||||
// screen for a short time, wait until we know it will be loading for a bit before showing it
|
|
||||||
const shouldShowLoader = loading || (!isShowingChildren(children) && showLoader);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<main
|
<main
|
||||||
className={classnames('main', {
|
className={classnames('main', {
|
||||||
|
@ -85,7 +76,7 @@ class Page extends React.PureComponent<Props, State> {
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
{!loading && children}
|
{!loading && children}
|
||||||
{shouldShowLoader && (
|
{showLoader && (
|
||||||
<div className="page__empty">
|
<div className="page__empty">
|
||||||
<Spinner />
|
<Spinner />
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -11,15 +11,20 @@ import { setSubscriptionNotifications, doFetchMySubscriptions } from 'redux/acti
|
||||||
import SubscriptionsPage from './view';
|
import SubscriptionsPage from './view';
|
||||||
|
|
||||||
const select = state => ({
|
const select = state => ({
|
||||||
isFetchingSubscriptions: selectIsFetchingSubscriptions(state),
|
loading:
|
||||||
|
selectIsFetchingSubscriptions(state) ||
|
||||||
|
Object.keys(selectSubscriptionsBeingFetched(state)).length,
|
||||||
subscriptionsBeingFetched: selectSubscriptionsBeingFetched(state),
|
subscriptionsBeingFetched: selectSubscriptionsBeingFetched(state),
|
||||||
subscriptions: selectSubscriptions(state),
|
subscriptions: selectSubscriptions(state),
|
||||||
subscriptionClaims: selectSubscriptionClaims(state),
|
subscriptionClaims: selectSubscriptionClaims(state),
|
||||||
notifications: selectNotifications(state),
|
notifications: selectNotifications(state),
|
||||||
});
|
});
|
||||||
|
|
||||||
export default connect(select, {
|
export default connect(
|
||||||
doFetchClaimsByChannel,
|
select,
|
||||||
setSubscriptionNotifications,
|
{
|
||||||
doFetchMySubscriptions,
|
doFetchClaimsByChannel,
|
||||||
})(SubscriptionsPage);
|
setSubscriptionNotifications,
|
||||||
|
doFetchMySubscriptions,
|
||||||
|
}
|
||||||
|
)(SubscriptionsPage);
|
||||||
|
|
|
@ -14,10 +14,10 @@ type Props = {
|
||||||
doFetchMySubscriptions: () => void,
|
doFetchMySubscriptions: () => void,
|
||||||
setSubscriptionNotifications: ({}) => void,
|
setSubscriptionNotifications: ({}) => void,
|
||||||
subscriptions: Array<Subscription>,
|
subscriptions: Array<Subscription>,
|
||||||
isFetchingSubscriptions: boolean,
|
|
||||||
subscriptionClaims: Array<{ uri: string, claims: Array<Claim> }>,
|
subscriptionClaims: Array<{ uri: string, claims: Array<Claim> }>,
|
||||||
subscriptionsBeingFetched: {},
|
subscriptionsBeingFetched: {},
|
||||||
notifications: {},
|
notifications: {},
|
||||||
|
loading: boolean,
|
||||||
};
|
};
|
||||||
|
|
||||||
export default class extends React.PureComponent<Props> {
|
export default class extends React.PureComponent<Props> {
|
||||||
|
@ -52,10 +52,13 @@ export default class extends React.PureComponent<Props> {
|
||||||
if (claim.claims.length) {
|
if (claim.claims.length) {
|
||||||
subscriptionClaimMap[claim.uri] = 1;
|
subscriptionClaimMap[claim.uri] = 1;
|
||||||
} else if (isDev) {
|
} else if (isDev) {
|
||||||
console
|
// eslint-disable no-console
|
||||||
.error
|
console.error(
|
||||||
// `claim for ${claim.uri} was added to byId in redux but there are no loaded fetched claims`
|
`Claim for ${
|
||||||
();
|
claim.uri
|
||||||
|
} was added to byId in redux but there are no loaded fetched claims. This shouldn't happen because a subscription should have claims attached to it.`
|
||||||
|
);
|
||||||
|
// eslint-enable no-console
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -67,7 +70,7 @@ export default class extends React.PureComponent<Props> {
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const { subscriptions, subscriptionClaims, isFetchingSubscriptions } = this.props;
|
const { subscriptions, subscriptionClaims, loading } = this.props;
|
||||||
|
|
||||||
let claimList = [];
|
let claimList = [];
|
||||||
subscriptionClaims.forEach(claimData => {
|
subscriptionClaims.forEach(claimData => {
|
||||||
|
@ -77,7 +80,7 @@ export default class extends React.PureComponent<Props> {
|
||||||
const subscriptionUris = claimList.map(claim => `lbry://${claim.name}#${claim.claim_id}`);
|
const subscriptionUris = claimList.map(claim => `lbry://${claim.name}#${claim.claim_id}`);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Page notContained loading={isFetchingSubscriptions}>
|
<Page notContained loading={loading}>
|
||||||
<HiddenNsfwClaims uris={subscriptionUris} />
|
<HiddenNsfwClaims uris={subscriptionUris} />
|
||||||
{!subscriptions.length && (
|
{!subscriptions.length && (
|
||||||
<div className="page__empty">
|
<div className="page__empty">
|
||||||
|
|
|
@ -1,12 +0,0 @@
|
||||||
// @flow
|
|
||||||
import * as React from 'react';
|
|
||||||
|
|
||||||
// is a child component being rendered?
|
|
||||||
export const isShowingChildren = (children: React.Node): boolean => {
|
|
||||||
if (Array.isArray(children)) {
|
|
||||||
const firstChildIndex = children.findIndex(child => child);
|
|
||||||
return firstChildIndex > -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
return !!children;
|
|
||||||
};
|
|
Loading…
Reference in a new issue
This was causing issues with Flow for me. We aren't using danger-ci atm so we can remove it (hopefully just for now. it would be nice to get it back)