41 |
aurelien |
1 |
package org.tela_botanica.del.client.vues.plateformedetermination;
|
|
|
2 |
|
629 |
aurelien |
3 |
import java.util.Iterator;
|
170 |
aurelien |
4 |
import java.util.List;
|
|
|
5 |
|
181 |
benjamin |
6 |
import org.tela_botanica.del.client.cache.CacheClient;
|
648 |
benjamin |
7 |
import org.tela_botanica.del.client.composants.fenetreoverlay.FenetreOverlayDefilanteVue;
|
|
|
8 |
import org.tela_botanica.del.client.composants.fenetreoverlay.FenetreOverlaySimplePresenteur;
|
|
|
9 |
import org.tela_botanica.del.client.composants.formulaires.formulaireproposition.FormulairePropositionPresenteur;
|
|
|
10 |
import org.tela_botanica.del.client.composants.formulaires.formulaireproposition.FormulairePropositionVue;
|
625 |
gduche |
11 |
import org.tela_botanica.del.client.composants.metadonnees.MetadonneesEnLigneVue;
|
447 |
gduche |
12 |
import org.tela_botanica.del.client.composants.metadonnees.MetadonneesPresenteur;
|
477 |
benjamin |
13 |
import org.tela_botanica.del.client.composants.observations.ObservationImagesPresenteur;
|
|
|
14 |
import org.tela_botanica.del.client.composants.observations.ObservationImagesVue;
|
262 |
aurelien |
15 |
import org.tela_botanica.del.client.composants.presenteur.Presenteur;
|
647 |
gduche |
16 |
import org.tela_botanica.del.client.composants.votes.moyennevotes.MoyenneVotePresenteur;
|
|
|
17 |
import org.tela_botanica.del.client.composants.votes.moyennevotes.MoyenneVoteVue;
|
629 |
aurelien |
18 |
import org.tela_botanica.del.client.modeles.Image;
|
552 |
benjamin |
19 |
import org.tela_botanica.del.client.modeles.ModeRecherche;
|
170 |
aurelien |
20 |
import org.tela_botanica.del.client.modeles.MoyenneVote;
|
629 |
aurelien |
21 |
import org.tela_botanica.del.client.modeles.Protocole;
|
248 |
aurelien |
22 |
import org.tela_botanica.del.client.modeles.VoteDetermination;
|
|
|
23 |
import org.tela_botanica.del.client.navigation.evenement.BusEvenementiel;
|
|
|
24 |
import org.tela_botanica.del.client.navigation.evenement.ajoutdetermination.EvenementAjoutDetermination;
|
|
|
25 |
import org.tela_botanica.del.client.navigation.evenement.ajoutdetermination.GestionnaireEvenementAjoutDetermination;
|
|
|
26 |
import org.tela_botanica.del.client.navigation.evenement.voteDetermination.EvenementVoteDetermination;
|
|
|
27 |
import org.tela_botanica.del.client.navigation.evenement.voteDetermination.GestionnaireEvenementVoteDetermination;
|
170 |
aurelien |
28 |
import org.tela_botanica.del.client.services.CalculVoteDeterminationService;
|
629 |
aurelien |
29 |
import org.tela_botanica.del.client.services.rest.ProtocoleService;
|
|
|
30 |
import org.tela_botanica.del.client.utils.MockDatasource;
|
72 |
aurelien |
31 |
import org.tela_botanica.del.client.vues.plateformedetermination.formulairerechercheeflore.FormulaireRechercheEflorePresenteur;
|
46 |
aurelien |
32 |
import org.tela_botanica.del.client.vues.plateformedetermination.forum.ForumPresenteur;
|
303 |
aurelien |
33 |
import org.tela_botanica.del.client.vues.plateformedetermination.forum.ForumVue;
|
41 |
aurelien |
34 |
|
262 |
aurelien |
35 |
import com.google.gwt.event.dom.client.ClickEvent;
|
|
|
36 |
import com.google.gwt.event.dom.client.ClickHandler;
|
303 |
aurelien |
37 |
import com.google.gwt.user.client.ui.Button;
|
41 |
aurelien |
38 |
import com.google.gwt.user.client.ui.HasWidgets;
|
303 |
aurelien |
39 |
import com.google.gwt.user.client.ui.IsWidget;
|
625 |
gduche |
40 |
import com.google.gwt.user.client.ui.Panel;
|
41 |
aurelien |
41 |
|
262 |
aurelien |
42 |
public class DeterminationPresenteur extends Presenteur {
|
135 |
gduche |
43 |
|
602 |
aurelien |
44 |
public interface Vue extends IsWidget {
|
625 |
gduche |
45 |
public Panel getForum();
|
|
|
46 |
public Panel getDetailImageObservation();
|
|
|
47 |
public Panel getFormulaireRechercheEflore();
|
|
|
48 |
public Panel getVoteProtocole();
|
303 |
aurelien |
49 |
public Button getBoutonAjoutProposition();
|
447 |
gduche |
50 |
public HasWidgets getMetadonnees();
|
645 |
gduche |
51 |
//public void ajouterLigneVoteProtocole(IsWidget vue);
|
629 |
aurelien |
52 |
public void ajouterLigneVoteProtocole(String nom, IsWidget vue);
|
645 |
gduche |
53 |
public void afficherNomTaxonProbable(String nomTaxon);
|
303 |
aurelien |
54 |
}
|
436 |
benjamin |
55 |
|
303 |
aurelien |
56 |
private Vue vue;
|
436 |
benjamin |
57 |
|
602 |
aurelien |
58 |
FenetreOverlaySimplePresenteur fenetreOverlaySimplePresenteur;
|
629 |
aurelien |
59 |
|
|
|
60 |
private ProtocoleService protocoleService = MockDatasource.getInstance();
|
183 |
gduche |
61 |
|
303 |
aurelien |
62 |
public DeterminationPresenteur(Vue vue) {
|
|
|
63 |
this.vue = vue;
|
41 |
aurelien |
64 |
}
|
135 |
gduche |
65 |
|
41 |
aurelien |
66 |
public void go(HasWidgets composite) {
|
436 |
benjamin |
67 |
|
332 |
gduche |
68 |
if (CacheClient.getInstance().getImageCourante() != null) {
|
625 |
gduche |
69 |
new MetadonneesPresenteur(new MetadonneesEnLigneVue(), CacheClient.getInstance().getObservationCourante(), ModeRecherche.MODE_OBSERVATION).go(vue.getMetadonnees());
|
436 |
benjamin |
70 |
new ObservationImagesPresenteur(new ObservationImagesVue(), CacheClient.getInstance().getObservationCourante()).go(vue.getDetailImageObservation());
|
629 |
aurelien |
71 |
|
|
|
72 |
ajouterLignesVotesProtocole();
|
332 |
gduche |
73 |
}
|
303 |
aurelien |
74 |
new ForumPresenteur(new ForumVue()).go(vue.getForum());
|
|
|
75 |
new FormulaireRechercheEflorePresenteur().go(vue.getFormulaireRechercheEflore());
|
183 |
gduche |
76 |
|
170 |
aurelien |
77 |
calculerEtAfficherVoteDeterminationPlusPopulaire();
|
183 |
gduche |
78 |
|
303 |
aurelien |
79 |
composite.add(vue.asWidget());
|
436 |
benjamin |
80 |
|
248 |
aurelien |
81 |
gererEvenements();
|
41 |
aurelien |
82 |
}
|
645 |
gduche |
83 |
|
|
|
84 |
/*private void ajouterLignesVotesProtocole() {
|
|
|
85 |
List<Protocole> tousLesProtocoles = protocoleService.getProtocoles();
|
|
|
86 |
Image imageCourante = CacheClient.getInstance().getImageCourante();
|
|
|
87 |
for (Iterator<Protocole> iterator = tousLesProtocoles.iterator(); iterator.hasNext();) {
|
|
|
88 |
Protocole protocole = (Protocole) iterator.next();
|
|
|
89 |
MoyenneVotePresenteur presenteurCeProtocole = new MoyenneVotePresenteur(imageCourante, protocole, new MoyenneVoteVue());
|
|
|
90 |
presenteurCeProtocole.go(vue.getVoteProtocole());
|
|
|
91 |
|
|
|
92 |
LigneProtocolePresenteur presenteurLigneProtocole = new LigneProtocolePresenteur(new LigneProtocoleVue());
|
|
|
93 |
presenteurLigneProtocole.setNom(protocole.getNom());
|
|
|
94 |
presenteurLigneProtocole.setMoyenne(presenteurCeProtocole.getVue());
|
|
|
95 |
|
|
|
96 |
vue.ajouterLigneVoteProtocole(presenteurLigneProtocole.getVue());
|
|
|
97 |
}
|
|
|
98 |
}*/
|
629 |
aurelien |
99 |
|
|
|
100 |
private void ajouterLignesVotesProtocole() {
|
|
|
101 |
List<Protocole> tousLesProtocoles = protocoleService.getProtocoles();
|
|
|
102 |
Image imageCourante = CacheClient.getInstance().getImageCourante();
|
|
|
103 |
for (Iterator<Protocole> iterator = tousLesProtocoles.iterator(); iterator.hasNext();) {
|
|
|
104 |
Protocole protocole = (Protocole) iterator.next();
|
|
|
105 |
MoyenneVotePresenteur presenteurCeProtocole = new MoyenneVotePresenteur(imageCourante, protocole, new MoyenneVoteVue());
|
|
|
106 |
presenteurCeProtocole.go(vue.getVoteProtocole());
|
|
|
107 |
vue.ajouterLigneVoteProtocole(protocole.getNom(), presenteurCeProtocole.getVue());
|
|
|
108 |
}
|
|
|
109 |
}
|
645 |
gduche |
110 |
|
170 |
aurelien |
111 |
private void calculerEtAfficherVoteDeterminationPlusPopulaire() {
|
183 |
gduche |
112 |
|
234 |
gduche |
113 |
List<MoyenneVote> votesOrdonnes = CalculVoteDeterminationService.calculerVoteDeterminationPlusPopulaire(CacheClient.getInstance().getObservationCourante().getPropositionsDetermination());
|
183 |
gduche |
114 |
if (votesOrdonnes.size() > 0) {
|
645 |
gduche |
115 |
String nomTaxon = votesOrdonnes.get(0).getIntituleAssocie();
|
|
|
116 |
vue.afficherNomTaxonProbable(nomTaxon);
|
170 |
aurelien |
117 |
}
|
|
|
118 |
}
|
436 |
benjamin |
119 |
|
248 |
aurelien |
120 |
public void gererEvenements() {
|
|
|
121 |
BusEvenementiel.getInstance().addHandler(EvenementVoteDetermination.TYPE, new GestionnaireEvenementVoteDetermination() {
|
|
|
122 |
@Override
|
|
|
123 |
public void onVoteDetermination(VoteDetermination event) {
|
|
|
124 |
calculerEtAfficherVoteDeterminationPlusPopulaire();
|
|
|
125 |
}
|
|
|
126 |
});
|
436 |
benjamin |
127 |
|
|
|
128 |
vue.getBoutonAjoutProposition().addClickHandler(new ClickHandler() {
|
262 |
aurelien |
129 |
@Override
|
|
|
130 |
public void onClick(ClickEvent event) {
|
602 |
aurelien |
131 |
fenetreOverlaySimplePresenteur = new FenetreOverlaySimplePresenteur(new FenetreOverlayDefilanteVue());
|
|
|
132 |
fenetreOverlaySimplePresenteur.ouvrirFenetreModale(new FormulairePropositionPresenteur(new FormulairePropositionVue()));
|
262 |
aurelien |
133 |
}
|
|
|
134 |
});
|
436 |
benjamin |
135 |
|
262 |
aurelien |
136 |
BusEvenementiel.getInstance().addHandler(EvenementAjoutDetermination.TYPE, new GestionnaireEvenementAjoutDetermination() {
|
|
|
137 |
@Override
|
|
|
138 |
public void onAjoutDetermination(EvenementAjoutDetermination event) {
|
602 |
aurelien |
139 |
if (fenetreOverlaySimplePresenteur != null && fenetreOverlaySimplePresenteur.fenetreModaleEstOuverte()) {
|
|
|
140 |
fenetreOverlaySimplePresenteur.fermerFenetreModale();
|
262 |
aurelien |
141 |
}
|
|
|
142 |
}
|
|
|
143 |
});
|
248 |
aurelien |
144 |
}
|
41 |
aurelien |
145 |
}
|