mirror of
https://github.com/status-im/visual-identity.git
synced 2025-02-22 01:08:15 +00:00
105 lines
3.2 KiB
JavaScript
105 lines
3.2 KiB
JavaScript
import React, { Fragment } from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import web3 from "Embark/web3"
|
|
import EmbarkJS from 'Embark/EmbarkJS';
|
|
import PollManager from 'Embark/contracts/PollManager';
|
|
import AdminView from './components/AdminView';
|
|
import Voting from './components/Voting';
|
|
import SNT from 'Embark/contracts/SNT';
|
|
import { VotingContext } from './context';
|
|
import Web3Render from './components/standard/Web3Render';
|
|
import fetchIdeas from './utils/fetchIdeas';
|
|
import { getPolls, omitUnvotedDupes } from './utils/polls';
|
|
window['SNT'] = SNT;
|
|
|
|
import './dapp.css';
|
|
|
|
const MAINNET = 1;
|
|
|
|
class App extends React.Component {
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
}
|
|
state = { admin: false, pollOrder: 'NEWEST_ADDED', web3Provider: true };
|
|
|
|
componentDidMount(){
|
|
EmbarkJS.onReady((err) => {
|
|
if (err) this.setState({ web3Provider: false });
|
|
else {
|
|
this._getPolls();
|
|
this._setAccounts();
|
|
}
|
|
web3.eth.net.getId((err, netId) => {
|
|
if (netId !== MAINNET) this.setState({ web3Provider: false})
|
|
})
|
|
fetchIdeas().then(ideaSites => { this.setState({ ideaSites })});
|
|
})
|
|
}
|
|
|
|
setAccount(_account){
|
|
this.setState({account: _account});
|
|
}
|
|
|
|
_getPolls = async () => {
|
|
const { nPolls, poll } = PollManager.methods;
|
|
const polls = await nPolls().call();
|
|
if (polls) getPolls(polls, poll).then(omitUnvotedDupes).then(rawPolls => { this.setState({ rawPolls })});
|
|
else this.setState({ rawPolls: [] });
|
|
}
|
|
|
|
_setAccounts() {
|
|
const { fromWei } = web3.utils;
|
|
web3.eth.getAccounts(async (err, [address]) => {
|
|
const balance = await SNT.methods.balanceOf(address).call();
|
|
this.setState({ snt: { balance: fromWei(balance) }});
|
|
})
|
|
}
|
|
|
|
updatePoll = async (idPoll) => {
|
|
const { poll } = PollManager.methods;
|
|
const { rawPolls } = this.state;
|
|
const newPolls = [...rawPolls];
|
|
const updatedPoll = await poll(idPoll).call();
|
|
newPolls[idPoll] = updatedPoll;
|
|
this.setState({ rawPolls: newPolls });
|
|
}
|
|
|
|
appendToPoll = (idPoll, data) => {
|
|
const { rawPolls } = this.state;
|
|
const newPolls = [...rawPolls];
|
|
newPolls[idPoll] = { ...newPolls[idPoll], ...data }
|
|
this.setState({ rawPolls: newPolls });
|
|
}
|
|
|
|
setPollOrder = pollOrder => { this.setState({ pollOrder }) }
|
|
|
|
_renderStatus(title, available) {
|
|
let className = available ? 'pull-right status-online' : 'pull-right status-offline';
|
|
return <Fragment>
|
|
{title}
|
|
<span className={className}></span>
|
|
</Fragment>;
|
|
}
|
|
|
|
render(){
|
|
const { admin, web3Provider } = this.state;
|
|
const { _getPolls, updatePoll, setPollOrder, appendToPoll } = this;
|
|
const toggleAdmin = () => this.setState({ admin: true });
|
|
const votingContext = { getPolls: _getPolls, toggleAdmin, updatePoll, appendToPoll, setPollOrder, ...this.state };
|
|
return (
|
|
<Web3Render ready={web3Provider}>
|
|
<VotingContext.Provider value={votingContext}>
|
|
<Fragment>
|
|
{admin ?
|
|
<AdminView setAccount={this.setAccount} /> :
|
|
<Voting />}
|
|
</Fragment>
|
|
</VotingContext.Provider>
|
|
</Web3Render>
|
|
);
|
|
}
|
|
}
|
|
|
|
ReactDOM.render(<App></App>, document.getElementById('app'));
|