2018-01-30 18:00:02 +01:00
|
|
|
import React from 'react';
|
2018-03-16 21:03:54 +01:00
|
|
|
import ErrorPage from 'pages/ErrorPage';
|
2018-03-08 05:31:10 +01:00
|
|
|
import ShowAssetLite from 'containers/ShowAssetLite';
|
|
|
|
import ShowAssetDetails from 'containers/ShowAssetDetails';
|
|
|
|
import ShowChannel from 'containers/ShowChannel';
|
2018-01-30 18:00:02 +01:00
|
|
|
|
2018-02-14 20:39:24 +01:00
|
|
|
import { CHANNEL, ASSET_LITE, ASSET_DETAILS } from 'constants/show_request_types';
|
2018-02-02 20:10:58 +01:00
|
|
|
|
2018-01-30 18:00:02 +01:00
|
|
|
class ShowPage extends React.Component {
|
|
|
|
componentDidMount () {
|
2018-02-23 00:43:26 +01:00
|
|
|
this.props.onHandleShowPageUri(this.props.match.params);
|
2018-01-31 23:50:35 +01:00
|
|
|
}
|
|
|
|
componentWillReceiveProps (nextProps) {
|
2018-02-03 01:49:39 +01:00
|
|
|
if (nextProps.match.params !== this.props.match.params) {
|
2018-02-23 00:43:26 +01:00
|
|
|
this.props.onHandleShowPageUri(nextProps.match.params);
|
2018-01-30 18:00:02 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
render () {
|
2018-02-07 20:30:39 +01:00
|
|
|
const { error, requestType } = this.props;
|
|
|
|
if (error) {
|
2018-02-01 04:12:54 +01:00
|
|
|
return (
|
2018-02-23 00:43:26 +01:00
|
|
|
<ErrorPage error={error} />
|
2018-02-01 04:12:54 +01:00
|
|
|
);
|
|
|
|
}
|
2018-02-07 20:30:39 +01:00
|
|
|
switch (requestType) {
|
2018-02-02 20:10:58 +01:00
|
|
|
case CHANNEL:
|
2018-02-03 03:16:18 +01:00
|
|
|
return <ShowChannel />;
|
2018-02-14 20:39:24 +01:00
|
|
|
case ASSET_LITE:
|
|
|
|
return <ShowAssetLite />;
|
|
|
|
case ASSET_DETAILS:
|
|
|
|
return <ShowAssetDetails />;
|
2018-02-02 20:10:58 +01:00
|
|
|
default:
|
|
|
|
return <p>loading...</p>;
|
2018-01-30 18:00:02 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default ShowPage;
|