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;
|
447 |
gduche |
6 |
import org.tela_botanica.del.client.composants.metadonnees.MetadonneesPresenteur;
|
|
|
7 |
import org.tela_botanica.del.client.composants.metadonnees.MetadonneesVue;
|
262 |
aurelien |
8 |
import org.tela_botanica.del.client.composants.presenteur.Presenteur;
|
170 |
aurelien |
9 |
import org.tela_botanica.del.client.modeles.MoyenneVote;
|
248 |
aurelien |
10 |
import org.tela_botanica.del.client.modeles.VoteDetermination;
|
|
|
11 |
import org.tela_botanica.del.client.navigation.evenement.BusEvenementiel;
|
|
|
12 |
import org.tela_botanica.del.client.navigation.evenement.ajoutdetermination.EvenementAjoutDetermination;
|
|
|
13 |
import org.tela_botanica.del.client.navigation.evenement.ajoutdetermination.GestionnaireEvenementAjoutDetermination;
|
|
|
14 |
import org.tela_botanica.del.client.navigation.evenement.voteDetermination.EvenementVoteDetermination;
|
|
|
15 |
import org.tela_botanica.del.client.navigation.evenement.voteDetermination.GestionnaireEvenementVoteDetermination;
|
170 |
aurelien |
16 |
import org.tela_botanica.del.client.services.CalculVoteDeterminationService;
|
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;
|
436 |
benjamin |
26 |
import org.tela_botanica.del.client.vues.rechercheobservations.observationimages.ObservationImagesPresenteur;
|
|
|
27 |
import org.tela_botanica.del.client.vues.rechercheobservations.observationimages.ObservationImagesVue;
|
41 |
aurelien |
28 |
|
262 |
aurelien |
29 |
import com.google.gwt.event.dom.client.ClickEvent;
|
|
|
30 |
import com.google.gwt.event.dom.client.ClickHandler;
|
303 |
aurelien |
31 |
import com.google.gwt.user.client.ui.Button;
|
41 |
aurelien |
32 |
import com.google.gwt.user.client.ui.HasWidgets;
|
303 |
aurelien |
33 |
import com.google.gwt.user.client.ui.IsWidget;
|
|
|
34 |
import com.google.gwt.user.client.ui.VerticalPanel;
|
41 |
aurelien |
35 |
|
262 |
aurelien |
36 |
public class DeterminationPresenteur extends Presenteur {
|
135 |
gduche |
37 |
|
303 |
aurelien |
38 |
public abstract interface Vue extends IsWidget {
|
|
|
39 |
public VerticalPanel getForum();
|
436 |
benjamin |
40 |
|
303 |
aurelien |
41 |
public VerticalPanel getDetailImageObservation();
|
436 |
benjamin |
42 |
|
303 |
aurelien |
43 |
public VerticalPanel getFormulaireRechercheEflore();
|
436 |
benjamin |
44 |
|
|
|
45 |
public VerticalPanel getVote();
|
|
|
46 |
|
303 |
aurelien |
47 |
public VerticalPanel getBarreRepartition();
|
436 |
benjamin |
48 |
|
303 |
aurelien |
49 |
public Button getBoutonAjoutProposition();
|
447 |
gduche |
50 |
|
|
|
51 |
public HasWidgets getMetadonnees();
|
303 |
aurelien |
52 |
}
|
436 |
benjamin |
53 |
|
303 |
aurelien |
54 |
private Vue vue;
|
436 |
benjamin |
55 |
|
170 |
aurelien |
56 |
BarreRepartitionVotePresenteur barreRepartitionVotePresenteur;
|
183 |
gduche |
57 |
|
303 |
aurelien |
58 |
public DeterminationPresenteur(Vue vue) {
|
|
|
59 |
this.vue = vue;
|
41 |
aurelien |
60 |
}
|
135 |
gduche |
61 |
|
41 |
aurelien |
62 |
public void go(HasWidgets composite) {
|
436 |
benjamin |
63 |
|
332 |
gduche |
64 |
if (CacheClient.getInstance().getImageCourante() != null) {
|
447 |
gduche |
65 |
new MetadonneesPresenteur(new MetadonneesVue(), CacheClient.getInstance().getObservationCourante()).go(vue.getMetadonnees());
|
436 |
benjamin |
66 |
new ObservationImagesPresenteur(new ObservationImagesVue(), CacheClient.getInstance().getObservationCourante()).go(vue.getDetailImageObservation());
|
332 |
gduche |
67 |
new EnsembleVotesPresenteur(new EnsembleVotesVue()).go(vue.getVote());
|
|
|
68 |
}
|
303 |
aurelien |
69 |
new ForumPresenteur(new ForumVue()).go(vue.getForum());
|
|
|
70 |
new FormulaireRechercheEflorePresenteur().go(vue.getFormulaireRechercheEflore());
|
183 |
gduche |
71 |
|
276 |
aurelien |
72 |
barreRepartitionVotePresenteur = new BarreRepartitionVotePresenteur(new BarreRepartitionVoteVue());
|
303 |
aurelien |
73 |
barreRepartitionVotePresenteur.go(vue.getBarreRepartition());
|
170 |
aurelien |
74 |
calculerEtAfficherVoteDeterminationPlusPopulaire();
|
183 |
gduche |
75 |
|
303 |
aurelien |
76 |
composite.add(vue.asWidget());
|
436 |
benjamin |
77 |
|
248 |
aurelien |
78 |
gererEvenements();
|
41 |
aurelien |
79 |
}
|
183 |
gduche |
80 |
|
170 |
aurelien |
81 |
private void calculerEtAfficherVoteDeterminationPlusPopulaire() {
|
183 |
gduche |
82 |
|
234 |
gduche |
83 |
List<MoyenneVote> votesOrdonnes = CalculVoteDeterminationService.calculerVoteDeterminationPlusPopulaire(CacheClient.getInstance().getObservationCourante().getPropositionsDetermination());
|
183 |
gduche |
84 |
if (votesOrdonnes.size() > 0) {
|
188 |
aurelien |
85 |
barreRepartitionVotePresenteur.afficherVotes(votesOrdonnes.get(0));
|
170 |
aurelien |
86 |
}
|
|
|
87 |
}
|
436 |
benjamin |
88 |
|
248 |
aurelien |
89 |
public void gererEvenements() {
|
|
|
90 |
BusEvenementiel.getInstance().addHandler(EvenementVoteDetermination.TYPE, new GestionnaireEvenementVoteDetermination() {
|
|
|
91 |
@Override
|
|
|
92 |
public void onVoteDetermination(VoteDetermination event) {
|
|
|
93 |
calculerEtAfficherVoteDeterminationPlusPopulaire();
|
|
|
94 |
}
|
|
|
95 |
});
|
436 |
benjamin |
96 |
|
|
|
97 |
vue.getBoutonAjoutProposition().addClickHandler(new ClickHandler() {
|
262 |
aurelien |
98 |
@Override
|
|
|
99 |
public void onClick(ClickEvent event) {
|
436 |
benjamin |
100 |
|
303 |
aurelien |
101 |
ouvrirFenetreModale(new FormulairePropositionPresenteur(new FormulairePropositionVue()));
|
262 |
aurelien |
102 |
}
|
|
|
103 |
});
|
436 |
benjamin |
104 |
|
262 |
aurelien |
105 |
BusEvenementiel.getInstance().addHandler(EvenementAjoutDetermination.TYPE, new GestionnaireEvenementAjoutDetermination() {
|
436 |
benjamin |
106 |
|
262 |
aurelien |
107 |
@Override
|
|
|
108 |
public void onAjoutDetermination(EvenementAjoutDetermination event) {
|
436 |
benjamin |
109 |
if (fenetreModaleEstOuverte()) {
|
262 |
aurelien |
110 |
fermerFenetreModale();
|
|
|
111 |
}
|
|
|
112 |
}
|
|
|
113 |
});
|
248 |
aurelien |
114 |
}
|
41 |
aurelien |
115 |
}
|