Skip to content
Snippets Groups Projects
Commit a8ca252e authored by Alexis POYEN's avatar Alexis POYEN
Browse files

Resolve "Zoom button"

parent f957fc68
No related branches found
No related tags found
No related merge requests found
// Imports // Imports
import * as Auth from "/services/auth/auth.js"; import * as Auth from "/services/auth/auth.js";
import * as results from "/services/election/calculate-election-generic.js";
import * as PartyModel from "/services/model/party-model.js"; import * as PartyModel from "/services/model/party-model.js";
import * as CandidateListModel from "/services/model/candidateList-model.js"; import * as CandidateListModel from "/services/model/candidateList-model.js";
import * as AreaModel from "/services/model/area-model.js"; import * as AreaModel from "/services/model/area-model.js";
import * as Scroller from "/services/common/scroller.js";
import * as ResultsZone from "/components/visualization/results-zone.js";
export async function mount(where, parent) { export async function mount(where, parent) {
const resultGeneralComponent = new ResultGeneralComponent(parent); const resultGeneralComponent = new ResultGeneralComponent(parent);
......
...@@ -173,6 +173,12 @@ class ResultComponent { ...@@ -173,6 +173,12 @@ class ResultComponent {
}, },
false false
); );
this.interval = setInterval(async () => {
this.calculateResults();
this.resultsZone.displayResults();
this.resultsGeneral.displayRoundResults();
}, 10000);
} }
async calculateResults() { async calculateResults() {
......
...@@ -34,7 +34,7 @@ class ResultZoneComponent { ...@@ -34,7 +34,7 @@ class ResultZoneComponent {
</p> </p>
<button id="zoom-map" class="button is-success"> <button id="zoom-map" class="button is-success">
<span class="icon is-small"> <span class="icon is-small">
<i class="fas fa-search"></i> <i class="fa fa-expand"></i>
</span> </span>
</button> </button>
</header> </header>
...@@ -57,7 +57,7 @@ class ResultZoneComponent { ...@@ -57,7 +57,7 @@ class ResultZoneComponent {
</label> </label>
<button id="zoom-news-flow" class="button is-success"> <button id="zoom-news-flow" class="button is-success">
<span class="icon is-small"> <span class="icon is-small">
<i class="fas fa-search"></i> <i class="fa fa-expand"></i>
</span> </span>
</button> </button>
</header> </header>
...@@ -74,7 +74,7 @@ class ResultZoneComponent { ...@@ -74,7 +74,7 @@ class ResultZoneComponent {
</p> </p>
<button id="zoom-results" class="button is-success"> <button id="zoom-results" class="button is-success">
<span class="icon is-small"> <span class="icon is-small">
<i class="fas fa-search"></i> <i class="fa fa-expand"></i>
</span> </span>
</button> </button>
</header> </header>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment