2018-01-30 18:00:02 +01:00
|
|
|
import React from 'react';
|
|
|
|
import NavBar from 'containers/NavBar';
|
2018-02-02 03:42:03 +01:00
|
|
|
import ChannelClaimsDisplay from 'containers/ChannelClaimsDisplay';
|
2018-01-30 20:46:22 +01:00
|
|
|
import request from 'utils/request';
|
2018-01-30 18:00:02 +01:00
|
|
|
|
|
|
|
class ShowChannel extends React.Component {
|
2018-01-30 20:46:22 +01:00
|
|
|
constructor (props) {
|
|
|
|
super(props);
|
|
|
|
this.state = {
|
2018-02-01 01:00:11 +01:00
|
|
|
error: null,
|
2018-01-30 20:46:22 +01:00
|
|
|
};
|
2018-02-01 01:00:11 +01:00
|
|
|
this.getAndStoreChannelData = this.getAndStoreChannelData.bind(this);
|
2018-01-30 20:46:22 +01:00
|
|
|
}
|
2018-01-30 18:00:02 +01:00
|
|
|
componentDidMount () {
|
2018-02-02 03:42:03 +01:00
|
|
|
this.getAndStoreChannelData(this.props.request.name, this.props.request.id);
|
2018-02-01 01:00:11 +01:00
|
|
|
}
|
2018-02-02 03:42:03 +01:00
|
|
|
getAndStoreChannelData (name, id) {
|
|
|
|
if (!id) id = 'none';
|
|
|
|
const url = `/api/channel-data/${name}/${id}`;
|
2018-01-31 19:40:26 +01:00
|
|
|
const that = this;
|
2018-01-30 20:46:22 +01:00
|
|
|
return request(url)
|
|
|
|
.then(({ success, message, data }) => {
|
2018-02-01 01:00:11 +01:00
|
|
|
console.log('api/channel-data response:', data);
|
2018-01-30 20:46:22 +01:00
|
|
|
if (!success) {
|
2018-01-31 19:40:26 +01:00
|
|
|
return that.setState({error: message});
|
2018-01-30 20:46:22 +01:00
|
|
|
}
|
2018-02-02 03:42:03 +01:00
|
|
|
this.props.onChannelDataChange(data.channelName, data.longChannelClaimId, data.shortChannelClaimId);
|
2018-01-30 20:46:22 +01:00
|
|
|
})
|
|
|
|
.catch((error) => {
|
|
|
|
that.setState({error: error.message});
|
|
|
|
});
|
2018-01-30 18:00:02 +01:00
|
|
|
}
|
|
|
|
render () {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<NavBar/>
|
2018-01-30 20:46:22 +01:00
|
|
|
{this.state.error ? (
|
|
|
|
<div className="row row--tall row--padded">
|
|
|
|
<div className="column column--10">
|
|
|
|
<p>{this.state.error}</p>
|
|
|
|
</div>
|
2018-01-30 18:00:02 +01:00
|
|
|
</div>
|
2018-01-30 20:46:22 +01:00
|
|
|
) : (
|
|
|
|
<div className="row row--tall row--padded">
|
|
|
|
<div className="column column--10">
|
2018-02-02 03:42:03 +01:00
|
|
|
<h2>channel name: {this.props.channel.name}</h2>
|
|
|
|
<p>full channel id: {this.props.channel.longId ? this.props.channel.longId : 'loading...'}</p>
|
|
|
|
<p>short channel id: {this.props.channel.shortId ? this.props.channel.shortId : 'loading...'}</p>
|
2018-01-30 20:46:22 +01:00
|
|
|
</div>
|
|
|
|
<div className="column column--10">
|
2018-02-02 03:42:03 +01:00
|
|
|
{this.props.channel.name && <ChannelClaimsDisplay/>}
|
2018-01-30 18:00:02 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-01-30 20:46:22 +01:00
|
|
|
)}
|
2018-01-30 18:00:02 +01:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default ShowChannel;
|