visual-identity/app/components/voting-dapp/proposal.js

52 lines
1.3 KiB
JavaScript
Raw Normal View History

import React from 'react';
2018-05-22 15:11:53 +00:00
import $ from 'jquery';
import {Button} from 'react-bootstrap';
2018-05-29 15:00:21 +00:00
import EmbarkJS from 'Embark/EmbarkJS';
import ProposalForm from './proposal-form';
2018-05-22 15:11:53 +00:00
class Proposal extends React.Component {
2018-05-22 15:11:53 +00:00
constructor(props) {
super(props);
2018-05-29 15:00:21 +00:00
2018-05-22 15:11:53 +00:00
this.state = {
2018-05-29 15:00:21 +00:00
url: null,
title: null,
description: null
2018-05-22 15:11:53 +00:00
};
}
componentDidMount(){
2018-05-29 15:00:21 +00:00
__embarkContext.execWhenReady(() => {
EmbarkJS.Storage.get(this.props.data.description)
.then((content) => {
let jsonObj = JSON.parse(content);
this.setState({
url: jsonObj.url,
title: jsonObj.title,
description: jsonObj.description
})
})
.catch((err) => {
if(err){
// TODO handle error
console.log("Storage get Error => " + err.message);
}
});
});
2018-05-22 15:11:53 +00:00
}
render(){
return (<div>
2018-05-29 15:00:21 +00:00
<h3>{ this.state.title }</h3>
<p>{ this.state.description }</p>
2018-05-22 15:11:53 +00:00
<a href={ this.state.url } target="_blank">{ this.state.url }</a>
2018-05-29 15:00:21 +00:00
<ProposalForm />
2018-05-22 15:11:53 +00:00
</div>);
}
}
export default Proposal;