2018-01-30 18:00:02 +01:00
|
|
|
import React from 'react';
|
2018-02-01 04:12:54 +01:00
|
|
|
import ErrorPage from 'components/ErrorPage';
|
2018-02-02 04:36:08 +01:00
|
|
|
import ShowAsset from 'containers/ShowAsset';
|
2018-02-02 03:42:03 +01:00
|
|
|
import ShowChannel from 'containers/ShowChannel';
|
2018-01-30 18:00:02 +01:00
|
|
|
import lbryUri from 'utils/lbryUri';
|
|
|
|
|
2018-02-02 20:10:58 +01:00
|
|
|
import { CHANNEL, ASSET } from 'constants/show_request_types';
|
|
|
|
|
2018-01-30 18:00:02 +01:00
|
|
|
class ShowPage extends React.Component {
|
|
|
|
constructor (props) {
|
|
|
|
super(props);
|
|
|
|
this.state = {
|
2018-02-01 23:29:33 +01:00
|
|
|
error: null,
|
2018-01-30 18:00:02 +01:00
|
|
|
};
|
2018-01-31 20:49:20 +01:00
|
|
|
this.parseUrlAndUpdateState = this.parseUrlAndUpdateState.bind(this);
|
|
|
|
this.parseAndUpdateIdentifierAndClaim = this.parseAndUpdateIdentifierAndClaim.bind(this);
|
|
|
|
this.parseAndUpdateClaimOnly = this.parseAndUpdateClaimOnly.bind(this);
|
2018-01-30 18:00:02 +01:00
|
|
|
}
|
|
|
|
componentDidMount () {
|
2018-01-31 02:15:23 +01:00
|
|
|
console.log('ShowPage did mount');
|
2018-01-30 18:00:02 +01:00
|
|
|
const identifier = this.props.match.params.identifier;
|
|
|
|
const claim = this.props.match.params.claim;
|
2018-01-31 23:50:35 +01:00
|
|
|
this.parseUrlAndUpdateState(identifier, claim);
|
|
|
|
}
|
|
|
|
componentWillReceiveProps (nextProps) {
|
2018-02-03 01:49:39 +01:00
|
|
|
if (nextProps.match.params !== this.props.match.params) {
|
|
|
|
console.log('ShowPage received new params props');
|
2018-01-31 23:50:35 +01:00
|
|
|
const identifier = nextProps.match.params.identifier;
|
|
|
|
const claim = nextProps.match.params.claim;
|
|
|
|
this.parseUrlAndUpdateState(identifier, claim);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
parseUrlAndUpdateState (identifier, claim) {
|
2018-01-30 18:00:02 +01:00
|
|
|
if (identifier) {
|
2018-01-31 20:49:20 +01:00
|
|
|
return this.parseAndUpdateIdentifierAndClaim(identifier, claim);
|
2018-01-30 18:00:02 +01:00
|
|
|
}
|
2018-01-31 20:49:20 +01:00
|
|
|
this.parseAndUpdateClaimOnly(claim);
|
|
|
|
}
|
2018-02-01 23:29:33 +01:00
|
|
|
parseAndUpdateIdentifierAndClaim (modifier, claim) {
|
2018-01-31 20:49:20 +01:00
|
|
|
// this is a request for an asset
|
|
|
|
// claim will be an asset claim
|
|
|
|
// the identifier could be a channel or a claim id
|
2018-02-01 23:29:33 +01:00
|
|
|
let isChannel, channelName, channelClaimId, claimId, claimName, extension;
|
2018-01-31 20:49:20 +01:00
|
|
|
try {
|
2018-02-01 23:29:33 +01:00
|
|
|
({ isChannel, channelName, channelClaimId, claimId } = lbryUri.parseIdentifier(modifier));
|
|
|
|
({ claimName, extension } = lbryUri.parseClaim(claim));
|
2018-01-31 20:49:20 +01:00
|
|
|
} catch (error) {
|
2018-02-01 04:12:54 +01:00
|
|
|
return this.setState({error: error.message});
|
2018-01-31 20:49:20 +01:00
|
|
|
}
|
2018-02-01 23:29:33 +01:00
|
|
|
// update the store
|
|
|
|
if (isChannel) {
|
2018-02-02 20:10:58 +01:00
|
|
|
return this.props.onAssetRequest(claimName, null, channelName, channelClaimId, extension);
|
2018-02-01 23:29:33 +01:00
|
|
|
} else {
|
2018-02-02 20:10:58 +01:00
|
|
|
return this.props.onAssetRequest(claimName, claimId, null, null, extension);
|
2018-02-01 23:29:33 +01:00
|
|
|
}
|
2018-01-31 20:49:20 +01:00
|
|
|
}
|
|
|
|
parseAndUpdateClaimOnly (claim) {
|
|
|
|
// this could be a request for an asset or a channel page
|
|
|
|
// claim could be an asset claim or a channel claim
|
2018-01-30 18:00:02 +01:00
|
|
|
let isChannel, channelName, channelClaimId;
|
|
|
|
try {
|
|
|
|
({ isChannel, channelName, channelClaimId } = lbryUri.parseIdentifier(claim));
|
|
|
|
} catch (error) {
|
2018-02-01 04:12:54 +01:00
|
|
|
return this.setState({error: error.message});
|
2018-01-30 18:00:02 +01:00
|
|
|
}
|
2018-02-01 23:29:33 +01:00
|
|
|
// return early if this request is for a channel
|
2018-01-30 18:00:02 +01:00
|
|
|
if (isChannel) {
|
2018-02-02 20:10:58 +01:00
|
|
|
return this.props.onChannelRequest(channelName, channelClaimId);
|
2018-01-30 18:00:02 +01:00
|
|
|
}
|
2018-02-01 23:29:33 +01:00
|
|
|
// if not for a channel, parse the claim request
|
|
|
|
let claimName, extension; // if I am destructuring below, do I still need to declare these here?
|
2018-01-30 18:00:02 +01:00
|
|
|
try {
|
2018-02-01 23:29:33 +01:00
|
|
|
({claimName, extension} = lbryUri.parseClaim(claim));
|
2018-01-30 18:00:02 +01:00
|
|
|
} catch (error) {
|
2018-02-01 04:12:54 +01:00
|
|
|
return this.setState({error: error.message});
|
2018-01-30 18:00:02 +01:00
|
|
|
}
|
2018-02-02 20:10:58 +01:00
|
|
|
this.props.onAssetRequest(claimName, null, null, null, extension);
|
2018-01-30 18:00:02 +01:00
|
|
|
}
|
|
|
|
render () {
|
2018-01-31 02:15:23 +01:00
|
|
|
console.log('rendering ShowPage');
|
2018-02-02 20:10:58 +01:00
|
|
|
console.log('ShowPage props', this.props);
|
2018-02-01 04:12:54 +01:00
|
|
|
if (this.state.error) {
|
|
|
|
return (
|
|
|
|
<ErrorPage error={this.state.error}/>
|
|
|
|
);
|
|
|
|
}
|
2018-02-02 20:10:58 +01:00
|
|
|
switch (this.props.requestType) {
|
|
|
|
case CHANNEL:
|
2018-02-03 03:16:18 +01:00
|
|
|
return <ShowChannel />;
|
2018-02-02 20:10:58 +01:00
|
|
|
case ASSET:
|
2018-02-03 03:16:18 +01:00
|
|
|
return <ShowAsset />;
|
2018-02-02 20:10:58 +01:00
|
|
|
default:
|
|
|
|
return <p>loading...</p>;
|
2018-01-30 18:00:02 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default ShowPage;
|