import web3 from "Embark/web3" import React from 'react'; import $ from 'jquery'; import { Button, Alert } from 'react-bootstrap'; import EmbarkJS from 'Embark/EmbarkJS'; import Voting from './voting'; class Proposal extends React.Component { constructor(props) { super(props); this.state = { url: null, title: null, description: null, error: null }; } componentDidUpdate(prevProps, prevState, snapshot){ if(prevProps.data.description !== this.props.data.description) this.getProposalData(); } componentDidMount(){ __embarkContext.execWhenReady(() => { this.getProposalData(); }); } getProposalData(){ let hash = web3.utils.toAscii(this.props.data.description); EmbarkJS.Storage.get(hash) .then((content) => { let jsonObj = JSON.parse(content); this.setState({ url: jsonObj.url, title: jsonObj.title, description: jsonObj.description }) }) .catch((err) => { if(err){ console.log("Storage get Error => " + err.message); } }); } render(){ return (
{ this.state.error !== null ? { this.state.error } : '' }

{ this.state.title }

{ this.state.description }

{ this.state.url }
); } } export default Proposal;