41 |
aurelien |
1 |
package org.tela_botanica.del.client.vues.plateformedetermination;
|
|
|
2 |
|
170 |
aurelien |
3 |
import java.util.List;
|
|
|
4 |
|
181 |
benjamin |
5 |
import org.tela_botanica.del.client.cache.CacheClient;
|
262 |
aurelien |
6 |
import org.tela_botanica.del.client.composants.presenteur.Presenteur;
|
170 |
aurelien |
7 |
import org.tela_botanica.del.client.modeles.MoyenneVote;
|
248 |
aurelien |
8 |
import org.tela_botanica.del.client.modeles.VoteDetermination;
|
|
|
9 |
import org.tela_botanica.del.client.navigation.evenement.BusEvenementiel;
|
|
|
10 |
import org.tela_botanica.del.client.navigation.evenement.ajoutdetermination.EvenementAjoutDetermination;
|
|
|
11 |
import org.tela_botanica.del.client.navigation.evenement.ajoutdetermination.GestionnaireEvenementAjoutDetermination;
|
|
|
12 |
import org.tela_botanica.del.client.navigation.evenement.voteDetermination.EvenementVoteDetermination;
|
|
|
13 |
import org.tela_botanica.del.client.navigation.evenement.voteDetermination.GestionnaireEvenementVoteDetermination;
|
170 |
aurelien |
14 |
import org.tela_botanica.del.client.services.CalculVoteDeterminationService;
|
46 |
aurelien |
15 |
import org.tela_botanica.del.client.vues.plateformedetermination.detail.DetailImageObservationPresenteur;
|
318 |
aurelien |
16 |
import org.tela_botanica.del.client.vues.plateformedetermination.detail.DetailImageObservationVue;
|
46 |
aurelien |
17 |
import org.tela_botanica.del.client.vues.plateformedetermination.formulaireproposition.FormulairePropositionPresenteur;
|
303 |
aurelien |
18 |
import org.tela_botanica.del.client.vues.plateformedetermination.formulaireproposition.FormulairePropositionVue;
|
72 |
aurelien |
19 |
import org.tela_botanica.del.client.vues.plateformedetermination.formulairerechercheeflore.FormulaireRechercheEflorePresenteur;
|
46 |
aurelien |
20 |
import org.tela_botanica.del.client.vues.plateformedetermination.forum.ForumPresenteur;
|
303 |
aurelien |
21 |
import org.tela_botanica.del.client.vues.plateformedetermination.forum.ForumVue;
|
103 |
benjamin |
22 |
import org.tela_botanica.del.client.vues.plateformedetermination.vote.EnsembleVotesPresenteur;
|
303 |
aurelien |
23 |
import org.tela_botanica.del.client.vues.plateformedetermination.vote.EnsembleVotesVue;
|
140 |
aurelien |
24 |
import org.tela_botanica.del.client.vues.plateformedetermination.vote.barrerepartition.BarreRepartitionVotePresenteur;
|
276 |
aurelien |
25 |
import org.tela_botanica.del.client.vues.plateformedetermination.vote.barrerepartition.BarreRepartitionVoteVue;
|
41 |
aurelien |
26 |
|
262 |
aurelien |
27 |
import com.google.gwt.event.dom.client.ClickEvent;
|
|
|
28 |
import com.google.gwt.event.dom.client.ClickHandler;
|
303 |
aurelien |
29 |
import com.google.gwt.user.client.ui.Button;
|
41 |
aurelien |
30 |
import com.google.gwt.user.client.ui.HasWidgets;
|
303 |
aurelien |
31 |
import com.google.gwt.user.client.ui.IsWidget;
|
|
|
32 |
import com.google.gwt.user.client.ui.VerticalPanel;
|
41 |
aurelien |
33 |
|
262 |
aurelien |
34 |
public class DeterminationPresenteur extends Presenteur {
|
135 |
gduche |
35 |
|
303 |
aurelien |
36 |
public abstract interface Vue extends IsWidget {
|
|
|
37 |
public VerticalPanel getForum();
|
|
|
38 |
public VerticalPanel getDetailImageObservation();
|
|
|
39 |
public VerticalPanel getFormulaireRechercheEflore();
|
|
|
40 |
public VerticalPanel getVote();
|
|
|
41 |
public VerticalPanel getBarreRepartition();
|
|
|
42 |
public Button getBoutonAjoutProposition();
|
|
|
43 |
}
|
|
|
44 |
private Vue vue;
|
|
|
45 |
|
170 |
aurelien |
46 |
BarreRepartitionVotePresenteur barreRepartitionVotePresenteur;
|
183 |
gduche |
47 |
|
303 |
aurelien |
48 |
public DeterminationPresenteur(Vue vue) {
|
|
|
49 |
this.vue = vue;
|
41 |
aurelien |
50 |
}
|
135 |
gduche |
51 |
|
41 |
aurelien |
52 |
public void go(HasWidgets composite) {
|
262 |
aurelien |
53 |
|
332 |
gduche |
54 |
if (CacheClient.getInstance().getImageCourante() != null) {
|
|
|
55 |
new DetailImageObservationPresenteur(new DetailImageObservationVue()).go(vue.getDetailImageObservation());
|
|
|
56 |
new EnsembleVotesPresenteur(new EnsembleVotesVue()).go(vue.getVote());
|
|
|
57 |
}
|
303 |
aurelien |
58 |
new ForumPresenteur(new ForumVue()).go(vue.getForum());
|
|
|
59 |
new FormulaireRechercheEflorePresenteur().go(vue.getFormulaireRechercheEflore());
|
183 |
gduche |
60 |
|
276 |
aurelien |
61 |
barreRepartitionVotePresenteur = new BarreRepartitionVotePresenteur(new BarreRepartitionVoteVue());
|
303 |
aurelien |
62 |
barreRepartitionVotePresenteur.go(vue.getBarreRepartition());
|
170 |
aurelien |
63 |
calculerEtAfficherVoteDeterminationPlusPopulaire();
|
183 |
gduche |
64 |
|
303 |
aurelien |
65 |
composite.add(vue.asWidget());
|
248 |
aurelien |
66 |
|
|
|
67 |
gererEvenements();
|
41 |
aurelien |
68 |
}
|
183 |
gduche |
69 |
|
170 |
aurelien |
70 |
private void calculerEtAfficherVoteDeterminationPlusPopulaire() {
|
183 |
gduche |
71 |
|
234 |
gduche |
72 |
List<MoyenneVote> votesOrdonnes = CalculVoteDeterminationService.calculerVoteDeterminationPlusPopulaire(CacheClient.getInstance().getObservationCourante().getPropositionsDetermination());
|
183 |
gduche |
73 |
if (votesOrdonnes.size() > 0) {
|
188 |
aurelien |
74 |
barreRepartitionVotePresenteur.afficherVotes(votesOrdonnes.get(0));
|
170 |
aurelien |
75 |
}
|
|
|
76 |
}
|
248 |
aurelien |
77 |
|
|
|
78 |
public void gererEvenements() {
|
|
|
79 |
BusEvenementiel.getInstance().addHandler(EvenementVoteDetermination.TYPE, new GestionnaireEvenementVoteDetermination() {
|
|
|
80 |
@Override
|
|
|
81 |
public void onVoteDetermination(VoteDetermination event) {
|
|
|
82 |
calculerEtAfficherVoteDeterminationPlusPopulaire();
|
|
|
83 |
}
|
|
|
84 |
});
|
262 |
aurelien |
85 |
|
303 |
aurelien |
86 |
vue.getBoutonAjoutProposition().addClickHandler(new ClickHandler() {
|
262 |
aurelien |
87 |
@Override
|
|
|
88 |
public void onClick(ClickEvent event) {
|
|
|
89 |
|
303 |
aurelien |
90 |
ouvrirFenetreModale(new FormulairePropositionPresenteur(new FormulairePropositionVue()));
|
262 |
aurelien |
91 |
}
|
|
|
92 |
});
|
|
|
93 |
|
|
|
94 |
BusEvenementiel.getInstance().addHandler(EvenementAjoutDetermination.TYPE, new GestionnaireEvenementAjoutDetermination() {
|
|
|
95 |
|
|
|
96 |
@Override
|
|
|
97 |
public void onAjoutDetermination(EvenementAjoutDetermination event) {
|
|
|
98 |
if(fenetreModaleEstOuverte()) {
|
|
|
99 |
fermerFenetreModale();
|
|
|
100 |
}
|
|
|
101 |
}
|
|
|
102 |
});
|
248 |
aurelien |
103 |
}
|
41 |
aurelien |
104 |
}
|