Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
ELC_elections
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
gestion-des-assemblees
ELC_elections
Commits
07fcdc8f
Commit
07fcdc8f
authored
4 years ago
by
Alexis POYEN
Browse files
Options
Downloads
Patches
Plain Diff
Feat : breadcrumb to display deskRound captured
parent
413d6e0e
No related branches found
No related tags found
1 merge request
!42
Resolve "Capture votes"
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
web/components/vote/votes.js
+73
-17
73 additions, 17 deletions
web/components/vote/votes.js
web/style.css
+6
-1
6 additions, 1 deletion
web/style.css
with
79 additions
and
18 deletions
web/components/vote/votes.js
+
73
−
17
View file @
07fcdc8f
// Imports
import
*
as
Auth
from
"
/services/auth/auth.js
"
;
import
*
as
ElectionModel
from
"
/services/model/election-model.js
"
;
import
*
as
RoundModel
from
"
/services/model/round-model.js
"
;
import
*
as
AreaModel
from
"
/services/model/area-model.js
"
;
import
*
as
SectionModel
from
"
/services/model/section-model.js
"
;
import
*
as
DeskModel
from
"
/services/model/desk-model.js
"
;
import
*
as
DeskRoundModel
from
"
/services/model/deskRound-model.js
"
;
export
async
function
mount
(
parent
)
{
const
voteComponent
=
new
Vote
(
parent
);
...
...
@@ -10,34 +16,84 @@ class Vote {
constructor
(
parent
)
{
this
.
method
=
null
;
this
.
parent
=
parent
;
this
.
ElectionModel
=
ElectionModel
.
getElectionModel
();
this
.
RoundModel
=
RoundModel
.
getRoundModel
();
this
.
AreaModel
=
AreaModel
.
getAreaModel
();
this
.
SectionModel
=
SectionModel
.
getSectionModel
();
this
.
DeskModel
=
DeskModel
.
getDeskModel
();
this
.
DeskRoundModel
=
DeskRoundModel
.
getDeskRoundModel
();
}
async
displayVotes
(
RoundID
,
AreaID
,
DeskRoundID
)
{
this
.
ElectionModel
.
current_user
=
await
Auth
.
GetUser
();
this
.
RoundModel
.
current_user
=
await
Auth
.
GetUser
();
this
.
AreaModel
.
current_user
=
await
Auth
.
GetUser
();
this
.
SectionModel
.
current_user
=
await
Auth
.
GetUser
();
this
.
DeskModel
.
current_user
=
await
Auth
.
GetUser
();
this
.
DeskRoundModel
.
current_user
=
await
Auth
.
GetUser
();
this
.
RoundID
=
RoundID
;
this
.
AreaID
=
AreaID
;
this
.
DeskRoundID
=
DeskRoundID
;
document
.
getElementById
(
"
vote-section
"
).
innerHTML
=
/* HTML */
`
<header class="card-header">
<p class="card-header-title">
Votes
<p >
<nav class="breadcrumb card-header-title" aria-label="breadcrumbs">
<ul id="vote-breadcrumb"></ul>
</nav>
</p>
</header>
<div id="votes-tables" class="card-content"></div>
<nav class="level">
<div class="level-left"></div>
<div class="level-right">
<button id="votes-return" class="button is-danger level-item">
Retour
</button>
<button id="votes-cancel" class="button level-item">
Annuler
</button>
<button id="votes-save" class="button is-success level-item">
Sauvegarder
</button>
</div>
</nav>
<nav class="level">
<div class="level-left"></div>
<div class="level-right">
<button id="votes-return" class="button is-danger level-item">
Retour
</button>
<button id="votes-cancel" class="button level-item">
Annuler
</button>
<button id="votes-save" class="button is-success level-item">
Sauvegarder
</button>
</div>
</nav>
`
;
this
.
handleDom
();
await
this
.
loadElection
();
await
this
.
refreshBreadCrumb
();
}
handleDom
()
{}
async
refreshBreadCrumb
()
{
let
round
=
await
this
.
RoundModel
.
getRound
(
this
.
RoundID
);
let
election
=
await
this
.
ElectionModel
.
getElection
(
round
.
ElectionID
);
let
area
=
await
this
.
AreaModel
.
getArea
(
this
.
AreaID
);
let
deskRound
=
await
this
.
DeskRoundModel
.
getDeskRound
(
this
.
DeskRoundID
);
let
desk
=
await
this
.
DeskModel
.
getDesk
(
deskRound
.
DeskID
);
let
section
=
await
this
.
SectionModel
.
getSection
(
desk
.
SectionID
);
let
breadcrumb
=
document
.
getElementById
(
"
vote-breadcrumb
"
);
let
el
=
document
.
createElement
(
"
li
"
);
el
.
innerHTML
=
"
<a>
"
+
election
.
Name
+
"
</a>
"
;
breadcrumb
.
appendChild
(
el
);
el
=
document
.
createElement
(
"
li
"
);
el
.
innerHTML
=
"
<a>tour :
"
+
round
.
Round
+
"
, date :
"
+
new
Date
(
round
.
Date
).
toLocaleDateString
()
+
"
</a>
"
;
breadcrumb
.
appendChild
(
el
);
el
=
document
.
createElement
(
"
li
"
);
el
.
innerHTML
=
"
<a>
"
+
area
.
Name
+
"
</a>
"
;
breadcrumb
.
appendChild
(
el
);
el
=
document
.
createElement
(
"
li
"
);
el
.
innerHTML
=
"
<a>
"
+
section
.
Name
+
"
</a>
"
;
breadcrumb
.
appendChild
(
el
);
el
=
document
.
createElement
(
"
li
"
);
el
.
innerHTML
=
"
<a>
"
+
desk
.
Name
+
"
</a>
"
;
breadcrumb
.
appendChild
(
el
);
}
}
This diff is collapsed.
Click to expand it.
web/style.css
+
6
−
1
View file @
07fcdc8f
...
...
@@ -135,8 +135,13 @@ select {
.upper-text
{
writing-mode
:
sideways-lr
;
background-color
:
rgba
(
55
,
122
,
195
,
.95
);
background-color
:
rgba
(
55
,
122
,
195
,
0
.95
);
text-orientation
:
sideways-right
;
text-align
:
center
;
cursor
:
pointer
;
}
#vote-breadcrumb
a
{
color
:
#000
;
cursor
:
default
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment