Commit 0991533a authored by Quentin Hamitouche's avatar Quentin Hamitouche

Add reset vote button

parent e39e1f33
...@@ -48,6 +48,7 @@ function App() { ...@@ -48,6 +48,7 @@ function App() {
votedProposalId: voter.votedProposalId.toString() votedProposalId: voter.votedProposalId.toString()
}); });
} catch (error) { } catch (error) {
console.log(error);
// Si l'utilisateur n'est pas un électeur, une erreur est générée // Si l'utilisateur n'est pas un électeur, une erreur est générée
setIsVoter(false); setIsVoter(false);
} }
...@@ -87,6 +88,9 @@ function App() { ...@@ -87,6 +88,9 @@ function App() {
case 'endProposalsRegistration': case 'endProposalsRegistration':
tx = await contract.endProposalsRegistration(); tx = await contract.endProposalsRegistration();
break; break;
case 'resetVoting':
tx = await contract.resetVoting();
break;
case 'startVotingSession': case 'startVotingSession':
tx = await contract.startVotingSession(duration); tx = await contract.startVotingSession(duration);
break; break;
...@@ -204,6 +208,13 @@ function App() { ...@@ -204,6 +208,13 @@ function App() {
} }
}; };
// Réinitialisation d'un vote
const resetVote = async () => {
if (!contract || !isOwner) return;
handleWorkflowAction("resetVoting");
}
// Délégation de vote // Délégation de vote
const delegateVote = async (delegateAddress) => { const delegateVote = async (delegateAddress) => {
if (!contract) return; if (!contract) return;
...@@ -286,8 +297,10 @@ function App() { ...@@ -286,8 +297,10 @@ function App() {
/> />
<VotingSession <VotingSession
isOwner={isOwner}
isVoter={isVoter} isVoter={isVoter}
submitVote={submitVote} submitVote={submitVote}
resetVote={resetVote}
delegateVote={delegateVote} delegateVote={delegateVote}
fetchVoterInfo={fetchVoterInfo} fetchVoterInfo={fetchVoterInfo}
fetchProposals={fetchProposals} fetchProposals={fetchProposals}
......
import React, { useState, useEffect } from 'react'; import React, { useState, useEffect } from 'react';
import { ethers } from 'ethers'; import { ethers } from 'ethers';
const VotingSession = ({ const VotingSession = ({
isOwner,
isVoter, isVoter,
submitVote, submitVote,
delegateVote, delegateVote,
...@@ -10,7 +11,8 @@ const VotingSession = ({ ...@@ -10,7 +11,8 @@ const VotingSession = ({
currentStatus, currentStatus,
proposals, proposals,
loading, loading,
voterInfo voterInfo,
resetVote
}) => { }) => {
const [selectedProposal, setSelectedProposal] = useState(null); const [selectedProposal, setSelectedProposal] = useState(null);
const [delegateAddress, setDelegateAddress] = useState(''); const [delegateAddress, setDelegateAddress] = useState('');
...@@ -68,24 +70,33 @@ const VotingSession = ({ ...@@ -68,24 +70,33 @@ const VotingSession = ({
return ( return (
<div className="card"> <div className="card">
<h2>Résultat du vote</h2> <h2>Résultat du vote</h2>
<div className="winner-info"> {isOwner && (
<h3>Proposition gagnante :</h3> <button
<div className="proposal-item winner"> className="button"
<strong>Proposition #{winningProposalId}:</strong> {winningProposal.description} onClick={resetVote}
<div className="vote-count"> disabled={loading}
<span>{winningProposal.voteCount} vote(s)</span> >
Nouveau vote
</button>
)}
<div className="winner-info">
<h3>Proposition gagnante :</h3>
<div className="proposal-item winner">
<strong>Proposition #{winningProposalId}:</strong> {winningProposal.description}
<div className="vote-count">
<span>{winningProposal.voteCount} vote(s)</span>
</div>
</div>
</div> </div>
</div> </div>
</div> );
</div> }
);
}
return ( return (
<div className="card"> <div className="card">
<h2>Session de vote</h2> <h2>Session de vote</h2>
{parseInt(currentStatus) === 3 && ( {parseInt(currentStatus) === 3 && (
<> <>
{!voterInfo.hasVoted ? ( {!voterInfo.hasVoted ? (
<div className="voter-actions"> <div className="voter-actions">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment