mirror of
https://github.com/status-im/visual-identity.git
synced 2025-02-12 20:46:35 +00:00
Update votes on update
use global context for updating polls
This commit is contained in:
parent
8c6308362c
commit
57ef231576
@ -8,12 +8,14 @@ import Slider from '@material-ui/lab/Slider';
|
||||
import Tooltip from '@material-ui/core/Tooltip';
|
||||
import PollManager from 'Embark/contracts/PollManager';
|
||||
import MiniMeTokenInterface from 'Embark/contracts/MiniMeTokenInterface';
|
||||
import CircularProgress from '@material-ui/core/CircularProgress';
|
||||
import { VotingContext } from '../../context';
|
||||
|
||||
class Poll extends Component {
|
||||
|
||||
constructor(props){
|
||||
super(props);
|
||||
this.state = { value: 0, balance: 0, isSubmitting: false, ...props };
|
||||
this.state = { value: 0, balance: 0, isSubmitting: false };
|
||||
}
|
||||
|
||||
handleChange = (event, value) => {
|
||||
@ -26,7 +28,8 @@ class Poll extends Component {
|
||||
this.setState({isSubmitting: true});
|
||||
|
||||
const { customVote, poll, unvote } = PollManager.methods;
|
||||
const { idPoll, value } = this.state;
|
||||
const { updatePoll, idPoll } = this.props;
|
||||
const { value } = this.state;
|
||||
const balance4Voting = value * value;
|
||||
|
||||
const toSend = balance4Voting === 0 ? unvote(idPoll) : customVote(idPoll, balance4Voting);
|
||||
@ -39,10 +42,7 @@ class Poll extends Component {
|
||||
.then(res => {
|
||||
console.log('sucess:', res);
|
||||
this.setState({isSubmitting: false});
|
||||
return poll(idPoll).call();
|
||||
})
|
||||
.then(poll => {
|
||||
this.setState(poll);
|
||||
return updatePoll(idPoll);
|
||||
})
|
||||
.catch(res => {
|
||||
console.log('fail:', res);
|
||||
@ -68,16 +68,15 @@ class Poll extends Component {
|
||||
}
|
||||
|
||||
render(){
|
||||
const { _description,
|
||||
const {
|
||||
_description,
|
||||
_totalCensus,
|
||||
_voters,
|
||||
_qvResults,
|
||||
_results,
|
||||
_canVote,
|
||||
value,
|
||||
isSubmitting,
|
||||
balance,
|
||||
votes } = this.state;
|
||||
} = this.props;
|
||||
const { value, balance, isSubmitting } = this.state;
|
||||
|
||||
const disableVote = balance == 0 || !_canVote || isSubmitting;
|
||||
const maxValue = Math.floor(Math.sqrt(balance));
|
||||
@ -99,7 +98,7 @@ class Poll extends Component {
|
||||
<Tooltip id="tooltip-icon" placement="top" title={`${value * value} SNT - ${value} vote credits`}>
|
||||
<CardActions>
|
||||
<Slider disabled={disableVote} value={value} min={0} max={maxValue} step={1} onChange={this.handleChange} />
|
||||
<Button variant="contained" disabled={disableVote} color="primary" onClick={this.handleClick}>Vote</Button>
|
||||
{isSubmitting ? <CircularProgress /> : <Button variant="contained" disabled={disableVote} color="primary" onClick={this.handleClick}>Vote</Button>}
|
||||
</CardActions>
|
||||
</Tooltip>
|
||||
</Card>
|
||||
@ -108,10 +107,14 @@ class Poll extends Component {
|
||||
}
|
||||
|
||||
|
||||
const PollsList = ({ rawPolls }) => (
|
||||
const PollsList = () => (
|
||||
<VotingContext.Consumer>
|
||||
{({ updatePoll, rawPolls }) =>
|
||||
<Fragment>
|
||||
{rawPolls.map((poll, idx) => <Poll key={idx} idPoll={idx} {...poll} />)}
|
||||
{rawPolls.map((poll, idx) => <Poll key={idx} idPoll={idx} updatePoll={updatePoll} {...poll} />)}
|
||||
</Fragment>
|
||||
}
|
||||
</VotingContext.Consumer>
|
||||
)
|
||||
|
||||
export default PollsList
|
||||
|
13
app/dapp.js
13
app/dapp.js
@ -45,6 +45,15 @@ class App extends React.Component {
|
||||
else this.setState({ rawPolls: [] });
|
||||
}
|
||||
|
||||
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 });
|
||||
}
|
||||
|
||||
_renderStatus(title, available) {
|
||||
let className = available ? 'pull-right status-online' : 'pull-right status-offline';
|
||||
return <Fragment>
|
||||
@ -55,9 +64,9 @@ class App extends React.Component {
|
||||
|
||||
render(){
|
||||
const { admin, rawPolls } = this.state;
|
||||
const { _getPolls } = this;
|
||||
const { _getPolls, updatePoll } = this;
|
||||
const toggleAdmin = () => this.setState({ admin: true });
|
||||
const votingContext = { getPolls: _getPolls, rawPolls, toggleAdmin };
|
||||
const votingContext = { getPolls: _getPolls, rawPolls, toggleAdmin, updatePoll };
|
||||
return (
|
||||
<VotingContext.Provider value={votingContext}>
|
||||
<Fragment>
|
||||
|
Loading…
x
Reference in New Issue
Block a user