41 |
aurelien |
1 |
package org.tela_botanica.del.client.vues.plateformedetermination;
|
|
|
2 |
|
170 |
aurelien |
3 |
import java.util.List;
|
|
|
4 |
|
|
|
5 |
import org.tela_botanica.del.client.modeles.MoyenneVote;
|
|
|
6 |
import org.tela_botanica.del.client.services.CalculVoteDeterminationService;
|
|
|
7 |
import org.tela_botanica.del.client.utils.MockDatasource;
|
46 |
aurelien |
8 |
import org.tela_botanica.del.client.vues.plateformedetermination.detail.DetailImageObservationPresenteur;
|
|
|
9 |
import org.tela_botanica.del.client.vues.plateformedetermination.formulaireproposition.FormulairePropositionPresenteur;
|
72 |
aurelien |
10 |
import org.tela_botanica.del.client.vues.plateformedetermination.formulairerechercheeflore.FormulaireRechercheEflorePresenteur;
|
46 |
aurelien |
11 |
import org.tela_botanica.del.client.vues.plateformedetermination.forum.ForumPresenteur;
|
103 |
benjamin |
12 |
import org.tela_botanica.del.client.vues.plateformedetermination.vote.EnsembleVotesPresenteur;
|
140 |
aurelien |
13 |
import org.tela_botanica.del.client.vues.plateformedetermination.vote.barrerepartition.BarreRepartitionVotePresenteur;
|
41 |
aurelien |
14 |
|
|
|
15 |
import com.google.gwt.user.client.ui.HasWidgets;
|
|
|
16 |
|
46 |
aurelien |
17 |
public class DeterminationPresenteur {
|
135 |
gduche |
18 |
|
46 |
aurelien |
19 |
DeterminationVue determinationVue = new DeterminationVue();
|
170 |
aurelien |
20 |
BarreRepartitionVotePresenteur barreRepartitionVotePresenteur;
|
|
|
21 |
|
46 |
aurelien |
22 |
public DeterminationPresenteur() {
|
41 |
aurelien |
23 |
|
|
|
24 |
}
|
135 |
gduche |
25 |
|
41 |
aurelien |
26 |
public void go(HasWidgets composite) {
|
135 |
gduche |
27 |
|
46 |
aurelien |
28 |
new DetailImageObservationPresenteur().go(determinationVue.getDetailImageObservation());
|
103 |
benjamin |
29 |
new EnsembleVotesPresenteur().go(determinationVue.getVote());
|
46 |
aurelien |
30 |
new ForumPresenteur().go(determinationVue.getForum());
|
|
|
31 |
new FormulairePropositionPresenteur().go(determinationVue.getFormulaireProposition());
|
135 |
gduche |
32 |
new FormulaireRechercheEflorePresenteur().go(determinationVue.getFormulaireRechercheEflore());
|
170 |
aurelien |
33 |
|
|
|
34 |
barreRepartitionVotePresenteur = new BarreRepartitionVotePresenteur();
|
|
|
35 |
barreRepartitionVotePresenteur.go(determinationVue.getBarreRepartition());
|
|
|
36 |
calculerEtAfficherVoteDeterminationPlusPopulaire();
|
|
|
37 |
|
46 |
aurelien |
38 |
composite.add(determinationVue);
|
41 |
aurelien |
39 |
}
|
170 |
aurelien |
40 |
|
|
|
41 |
private void calculerEtAfficherVoteDeterminationPlusPopulaire() {
|
|
|
42 |
|
|
|
43 |
List<MoyenneVote> votesOrdonnes = CalculVoteDeterminationService.calculerVoteDeterminationPlusPopulaire(MockDatasource.getInstance().getObservationCourante().getImageCelValidationDatas());
|
|
|
44 |
if(votesOrdonnes.size() > 0) {
|
|
|
45 |
barreRepartitionVotePresenteur.afficherVotes(votesOrdonnes.get(0).getScore(), votesOrdonnes.get(0).getIntituleAssocie());
|
|
|
46 |
}
|
|
|
47 |
}
|
41 |
aurelien |
48 |
}
|