Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CI
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Guillaume DEWISME
CI
Commits
0991533a
Commit
0991533a
authored
Mar 23, 2025
by
Quentin Hamitouche
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add reset vote button
parent
e39e1f33
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
42 additions
and
18 deletions
+42
-18
App.js
frontend/src/App.js
+13
-0
VotingSession.js
frontend/src/components/VotingSession.js
+29
-18
No files found.
frontend/src/App.js
View file @
0991533a
...
...
@@ -48,6 +48,7 @@ function App() {
votedProposalId
:
voter
.
votedProposalId
.
toString
()
});
}
catch
(
error
)
{
console
.
log
(
error
);
// Si l'utilisateur n'est pas un électeur, une erreur est générée
setIsVoter
(
false
);
}
...
...
@@ -87,6 +88,9 @@ function App() {
case
'endProposalsRegistration'
:
tx
=
await
contract
.
endProposalsRegistration
();
break
;
case
'resetVoting'
:
tx
=
await
contract
.
resetVoting
();
break
;
case
'startVotingSession'
:
tx
=
await
contract
.
startVotingSession
(
duration
);
break
;
...
...
@@ -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
const
delegateVote
=
async
(
delegateAddress
)
=>
{
if
(
!
contract
)
return
;
...
...
@@ -286,8 +297,10 @@ function App() {
/
>
<
VotingSession
isOwner
=
{
isOwner
}
isVoter
=
{
isVoter
}
submitVote
=
{
submitVote
}
resetVote
=
{
resetVote
}
delegateVote
=
{
delegateVote
}
fetchVoterInfo
=
{
fetchVoterInfo
}
fetchProposals
=
{
fetchProposals
}
...
...
frontend/src/components/VotingSession.js
View file @
0991533a
import
React
,
{
useState
,
useEffect
}
from
'react'
;
import
{
ethers
}
from
'ethers'
;
const
VotingSession
=
({
const
VotingSession
=
({
isOwner
,
isVoter
,
submitVote
,
delegateVote
,
...
...
@@ -10,7 +11,8 @@ const VotingSession = ({
currentStatus
,
proposals
,
loading
,
voterInfo
voterInfo
,
resetVote
})
=>
{
const
[
selectedProposal
,
setSelectedProposal
]
=
useState
(
null
);
const
[
delegateAddress
,
setDelegateAddress
]
=
useState
(
''
);
...
...
@@ -68,24 +70,33 @@ const VotingSession = ({
return
(
<
div
className
=
"card"
>
<
h2
>
R
é
sultat
du
vote
<
/h2
>
<
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
>
{
isOwner
&&
(
<
button
className
=
"button"
onClick
=
{
resetVote
}
disabled
=
{
loading
}
>
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
>
);
}
return
(
<
div
className
=
"card"
>
<
h2
>
Session
de
vote
<
/h2
>
{
parseInt
(
currentStatus
)
===
3
&&
(
return
(
<
div
className
=
"card"
>
<
h2
>
Session
de
vote
<
/h2
>
{
parseInt
(
currentStatus
)
===
3
&&
(
<>
{
!
voterInfo
.
hasVoted
?
(
<
div
className
=
"voter-actions"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment