2018-01-30 09:00:02 -08:00
|
|
|
import React from 'react';
|
2018-02-07 11:30:39 -08:00
|
|
|
import ErrorPage from 'components/ErrorPage';
|
2018-01-30 09:00:02 -08:00
|
|
|
import NavBar from 'containers/NavBar';
|
2018-02-02 18:16:18 -08:00
|
|
|
import ChannelClaimsDisplay from 'containers/ChannelClaimsDisplay';
|
2018-01-30 09:00:02 -08:00
|
|
|
|
|
|
|
class ShowChannel extends React.Component {
|
|
|
|
render () {
|
2018-02-12 18:18:56 -08:00
|
|
|
const { channel } = this.props;
|
2018-02-08 16:42:13 -08:00
|
|
|
if (channel) {
|
2018-02-12 18:18:56 -08:00
|
|
|
const { name, longId, shortId } = channel;
|
2018-02-08 16:42:13 -08:00
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<NavBar/>
|
|
|
|
<div className="row row--tall row--padded">
|
|
|
|
<div className="column column--10">
|
2018-02-14 09:19:22 -08:00
|
|
|
<h2>channel name: {name || 'loading...'}</h2>
|
|
|
|
<p className={'fine-print'}>full channel id: {longId || 'loading...'}</p>
|
|
|
|
<p className={'fine-print'}>short channel id: {shortId || 'loading...'}</p>
|
2018-02-08 16:42:13 -08:00
|
|
|
</div>
|
|
|
|
<div className="column column--10">
|
2018-02-12 18:18:56 -08:00
|
|
|
<ChannelClaimsDisplay />
|
2018-02-08 16:42:13 -08:00
|
|
|
</div>
|
2018-01-30 09:00:02 -08:00
|
|
|
</div>
|
2018-02-07 11:30:39 -08:00
|
|
|
</div>
|
2018-02-08 16:42:13 -08:00
|
|
|
);
|
|
|
|
};
|
|
|
|
return (
|
|
|
|
<ErrorPage error={'loading channel data...'}/>
|
2018-01-30 09:00:02 -08:00
|
|
|
);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default ShowChannel;
|