spee.ch/client/containers/ShowChannel/view.jsx

36 lines
1 KiB
React
Raw Normal View History

import React from 'react';
2018-03-08 18:26:33 +01:00
import SEO from 'components/SEO';
2018-03-16 21:03:54 +01:00
import ErrorPage from 'pages/ErrorPage';
2018-03-08 18:26:33 +01:00
import NavBar from 'containers/NavBar';
import ChannelClaimsDisplay from 'containers/ChannelClaimsDisplay';
class ShowChannel extends React.Component {
render () {
const { channel } = this.props;
2018-02-09 01:42:13 +01:00
if (channel) {
const { name, longId, shortId } = channel;
2018-02-09 01:42:13 +01:00
return (
<div>
<SEO pageTitle={name} channel={channel} />
<NavBar />
<div className='row row--tall row--padded'>
<div className='column column--10'>
<h2>channel name: {name}</h2>
<p className={'fine-print'}>full channel id: {longId}</p>
<p className={'fine-print'}>short channel id: {shortId}</p>
2018-02-09 01:42:13 +01:00
</div>
<div className='column column--10'>
<ChannelClaimsDisplay />
2018-02-09 01:42:13 +01:00
</div>
</div>
</div>
2018-02-09 01:42:13 +01:00
);
};
return (
<ErrorPage error={'loading channel data...'} />
);
}
};
export default ShowChannel;