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;
|
688 |
aurelien |
9 |
import org.tela_botanica.del.client.composants.formulaires.formulairecommentaire.FormulaireCommentairePresenteur;
|
|
|
10 |
import org.tela_botanica.del.client.composants.formulaires.formulairecommentaire.FormulaireCommentaireVue;
|
648 |
benjamin |
11 |
import org.tela_botanica.del.client.composants.formulaires.formulaireproposition.FormulairePropositionPresenteur;
|
|
|
12 |
import org.tela_botanica.del.client.composants.formulaires.formulaireproposition.FormulairePropositionVue;
|
625 |
gduche |
13 |
import org.tela_botanica.del.client.composants.metadonnees.MetadonneesEnLigneVue;
|
447 |
gduche |
14 |
import org.tela_botanica.del.client.composants.metadonnees.MetadonneesPresenteur;
|
477 |
benjamin |
15 |
import org.tela_botanica.del.client.composants.observations.ObservationImagesPresenteur;
|
|
|
16 |
import org.tela_botanica.del.client.composants.observations.ObservationImagesVue;
|
262 |
aurelien |
17 |
import org.tela_botanica.del.client.composants.presenteur.Presenteur;
|
552 |
benjamin |
18 |
import org.tela_botanica.del.client.modeles.ModeRecherche;
|
170 |
aurelien |
19 |
import org.tela_botanica.del.client.modeles.MoyenneVote;
|
847 |
aurelien |
20 |
import org.tela_botanica.del.client.modeles.ObservationServiceResultat;
|
629 |
aurelien |
21 |
import org.tela_botanica.del.client.modeles.Protocole;
|
814 |
aurelien |
22 |
import org.tela_botanica.del.client.modeles.ProtocoleServiceResultat;
|
248 |
aurelien |
23 |
import org.tela_botanica.del.client.modeles.VoteDetermination;
|
|
|
24 |
import org.tela_botanica.del.client.navigation.evenement.BusEvenementiel;
|
658 |
benjamin |
25 |
import org.tela_botanica.del.client.navigation.evenement.ajoutcommentaire.EvenementAjoutCommentaire;
|
|
|
26 |
import org.tela_botanica.del.client.navigation.evenement.ajoutcommentaire.GestionnaireEvenementAjoutCommentaire;
|
248 |
aurelien |
27 |
import org.tela_botanica.del.client.navigation.evenement.ajoutdetermination.EvenementAjoutDetermination;
|
|
|
28 |
import org.tela_botanica.del.client.navigation.evenement.ajoutdetermination.GestionnaireEvenementAjoutDetermination;
|
|
|
29 |
import org.tela_botanica.del.client.navigation.evenement.voteDetermination.EvenementVoteDetermination;
|
|
|
30 |
import org.tela_botanica.del.client.navigation.evenement.voteDetermination.GestionnaireEvenementVoteDetermination;
|
170 |
aurelien |
31 |
import org.tela_botanica.del.client.services.CalculVoteDeterminationService;
|
847 |
aurelien |
32 |
import org.tela_botanica.del.client.services.rest.ObservationService;
|
629 |
aurelien |
33 |
import org.tela_botanica.del.client.services.rest.ProtocoleService;
|
847 |
aurelien |
34 |
import org.tela_botanica.del.client.services.rest.async.ObservationsCallback;
|
814 |
aurelien |
35 |
import org.tela_botanica.del.client.services.rest.async.ProtocolesCallback;
|
72 |
aurelien |
36 |
import org.tela_botanica.del.client.vues.plateformedetermination.formulairerechercheeflore.FormulaireRechercheEflorePresenteur;
|
46 |
aurelien |
37 |
import org.tela_botanica.del.client.vues.plateformedetermination.forum.ForumPresenteur;
|
303 |
aurelien |
38 |
import org.tela_botanica.del.client.vues.plateformedetermination.forum.ForumVue;
|
650 |
gduche |
39 |
import org.tela_botanica.del.client.vues.plateformedetermination.ligneProtocole.LigneProtocolePresenteur;
|
|
|
40 |
import org.tela_botanica.del.client.vues.plateformedetermination.ligneProtocole.LigneProtocoleVue;
|
41 |
aurelien |
41 |
|
262 |
aurelien |
42 |
import com.google.gwt.event.dom.client.ClickEvent;
|
|
|
43 |
import com.google.gwt.event.dom.client.ClickHandler;
|
939 |
benjamin |
44 |
import com.google.gwt.user.client.Window;
|
303 |
aurelien |
45 |
import com.google.gwt.user.client.ui.Button;
|
41 |
aurelien |
46 |
import com.google.gwt.user.client.ui.HasWidgets;
|
303 |
aurelien |
47 |
import com.google.gwt.user.client.ui.IsWidget;
|
625 |
gduche |
48 |
import com.google.gwt.user.client.ui.Panel;
|
41 |
aurelien |
49 |
|
262 |
aurelien |
50 |
public class DeterminationPresenteur extends Presenteur {
|
135 |
gduche |
51 |
|
602 |
aurelien |
52 |
public interface Vue extends IsWidget {
|
625 |
gduche |
53 |
public Panel getForum();
|
939 |
benjamin |
54 |
|
625 |
gduche |
55 |
public Panel getDetailImageObservation();
|
939 |
benjamin |
56 |
|
625 |
gduche |
57 |
public Panel getFormulaireRechercheEflore();
|
939 |
benjamin |
58 |
|
625 |
gduche |
59 |
public Panel getVoteProtocole();
|
939 |
benjamin |
60 |
|
303 |
aurelien |
61 |
public Button getBoutonAjoutProposition();
|
939 |
benjamin |
62 |
|
658 |
benjamin |
63 |
public Button getBoutonAjoutCommentaire();
|
947 |
gduche |
64 |
|
|
|
65 |
public Button getBoutonAjoutPropositionBas();
|
939 |
benjamin |
66 |
|
947 |
gduche |
67 |
public Button getBoutonAjoutCommentaireBas();
|
|
|
68 |
|
447 |
gduche |
69 |
public HasWidgets getMetadonnees();
|
939 |
benjamin |
70 |
|
|
|
71 |
// public void ajouterLigneVoteProtocole(IsWidget vue);
|
|
|
72 |
// public void ajouterLigneVoteProtocole(String nom, IsWidget vue);
|
649 |
gduche |
73 |
public HasWidgets getNouvelleLigneProtocole();
|
939 |
benjamin |
74 |
|
645 |
gduche |
75 |
public void afficherNomTaxonProbable(String nomTaxon);
|
303 |
aurelien |
76 |
}
|
436 |
benjamin |
77 |
|
303 |
aurelien |
78 |
private Vue vue;
|
436 |
benjamin |
79 |
|
602 |
aurelien |
80 |
FenetreOverlaySimplePresenteur fenetreOverlaySimplePresenteur;
|
939 |
benjamin |
81 |
|
957 |
benjamin |
82 |
private ProtocoleService protocoleService;
|
|
|
83 |
private ObservationService observationService;
|
183 |
gduche |
84 |
|
957 |
benjamin |
85 |
public DeterminationPresenteur(Vue vue, ObservationService observationService, ProtocoleService protocoleService) {
|
303 |
aurelien |
86 |
this.vue = vue;
|
957 |
benjamin |
87 |
this.observationService = observationService;
|
|
|
88 |
this.protocoleService=protocoleService;
|
41 |
aurelien |
89 |
}
|
135 |
gduche |
90 |
|
847 |
aurelien |
91 |
public void go(final HasWidgets composite) {
|
939 |
benjamin |
92 |
|
|
|
93 |
// TODO afficher une icone de chargement si le chargement devient trop
|
|
|
94 |
// long
|
854 |
aurelien |
95 |
// car tout l'écran est asynchrone ici
|
939 |
benjamin |
96 |
observationService.getObservation(CacheClient.getInstance().getObservationCourante().getId(), new ObservationsCallback() {
|
|
|
97 |
|
|
|
98 |
@Override
|
|
|
99 |
public void surRetour(ObservationServiceResultat objetRetour) {
|
853 |
aurelien |
100 |
CacheClient.getInstance().setImageCourante(CacheClient.getInstance().getObservationCourante().getImages().get(0));
|
939 |
benjamin |
101 |
|
847 |
aurelien |
102 |
new MetadonneesPresenteur(new MetadonneesEnLigneVue(), CacheClient.getInstance().getObservationCourante(), ModeRecherche.MODE_OBSERVATION).go(vue.getMetadonnees());
|
|
|
103 |
new ObservationImagesPresenteur(new ObservationImagesVue(), CacheClient.getInstance().getObservationCourante()).go(vue.getDetailImageObservation());
|
436 |
benjamin |
104 |
|
847 |
aurelien |
105 |
chargerEtAjouterLignesVotesProtocole();
|
|
|
106 |
new ForumPresenteur(new ForumVue()).go(vue.getForum());
|
|
|
107 |
new FormulaireRechercheEflorePresenteur().go(vue.getFormulaireRechercheEflore());
|
629 |
aurelien |
108 |
|
847 |
aurelien |
109 |
calculerEtAfficherVoteDeterminationPlusPopulaire();
|
|
|
110 |
composite.add(vue.asWidget());
|
939 |
benjamin |
111 |
|
847 |
aurelien |
112 |
}
|
939 |
benjamin |
113 |
|
|
|
114 |
@Override
|
|
|
115 |
public void surErreur(String messageErreur) {
|
|
|
116 |
Window.alert(messageErreur);
|
|
|
117 |
}
|
|
|
118 |
});
|
248 |
aurelien |
119 |
gererEvenements();
|
41 |
aurelien |
120 |
}
|
645 |
gduche |
121 |
|
814 |
aurelien |
122 |
private void chargerEtAjouterLignesVotesProtocole() {
|
939 |
benjamin |
123 |
if (CacheClient.getInstance().getListeProtocoles() == null) {
|
814 |
aurelien |
124 |
protocoleService.getProtocoles(new ProtocolesCallback() {
|
939 |
benjamin |
125 |
|
814 |
aurelien |
126 |
@Override
|
939 |
benjamin |
127 |
public void surRetour(ProtocoleServiceResultat protocolesRecus) {
|
814 |
aurelien |
128 |
List<Protocole> listeProtocoles = protocolesRecus.getProtocoles();
|
|
|
129 |
ajouterLignesVotesProtocole(listeProtocoles);
|
|
|
130 |
}
|
|
|
131 |
});
|
|
|
132 |
} else {
|
|
|
133 |
List<Protocole> listeProtocoles = CacheClient.getInstance().getListeProtocoles();
|
|
|
134 |
ajouterLignesVotesProtocole(listeProtocoles);
|
|
|
135 |
}
|
|
|
136 |
}
|
939 |
benjamin |
137 |
|
814 |
aurelien |
138 |
private void ajouterLignesVotesProtocole(List<Protocole> listeProtocoles) {
|
|
|
139 |
for (Iterator<Protocole> iterator = listeProtocoles.iterator(); iterator.hasNext();) {
|
649 |
gduche |
140 |
Protocole protocole = iterator.next();
|
|
|
141 |
LigneProtocolePresenteur presenteurLigneProtocole = new LigneProtocolePresenteur(protocole, new LigneProtocoleVue());
|
|
|
142 |
presenteurLigneProtocole.go(vue.getNouvelleLigneProtocole());
|
629 |
aurelien |
143 |
}
|
|
|
144 |
}
|
939 |
benjamin |
145 |
|
170 |
aurelien |
146 |
private void calculerEtAfficherVoteDeterminationPlusPopulaire() {
|
183 |
gduche |
147 |
|
658 |
benjamin |
148 |
List<MoyenneVote> votesOrdonnes = CalculVoteDeterminationService.calculerVoteDeterminationPlusPopulaire(CacheClient.getInstance().getObservationCourante().getPropositionDeterminations());
|
183 |
gduche |
149 |
if (votesOrdonnes.size() > 0) {
|
645 |
gduche |
150 |
String nomTaxon = votesOrdonnes.get(0).getIntituleAssocie();
|
|
|
151 |
vue.afficherNomTaxonProbable(nomTaxon);
|
170 |
aurelien |
152 |
}
|
|
|
153 |
}
|
436 |
benjamin |
154 |
|
248 |
aurelien |
155 |
public void gererEvenements() {
|
|
|
156 |
BusEvenementiel.getInstance().addHandler(EvenementVoteDetermination.TYPE, new GestionnaireEvenementVoteDetermination() {
|
|
|
157 |
@Override
|
|
|
158 |
public void onVoteDetermination(VoteDetermination event) {
|
|
|
159 |
calculerEtAfficherVoteDeterminationPlusPopulaire();
|
|
|
160 |
}
|
|
|
161 |
});
|
436 |
benjamin |
162 |
|
947 |
gduche |
163 |
ClickHandler clicAjoutProposition = new ClickHandler() {
|
262 |
aurelien |
164 |
@Override
|
|
|
165 |
public void onClick(ClickEvent event) {
|
602 |
aurelien |
166 |
fenetreOverlaySimplePresenteur = new FenetreOverlaySimplePresenteur(new FenetreOverlayDefilanteVue());
|
|
|
167 |
fenetreOverlaySimplePresenteur.ouvrirFenetreModale(new FormulairePropositionPresenteur(new FormulairePropositionVue()));
|
262 |
aurelien |
168 |
}
|
947 |
gduche |
169 |
};
|
|
|
170 |
vue.getBoutonAjoutProposition().addClickHandler(clicAjoutProposition);
|
|
|
171 |
vue.getBoutonAjoutPropositionBas().addClickHandler(clicAjoutProposition);
|
|
|
172 |
|
|
|
173 |
ClickHandler clicAjoutCommentaire = new ClickHandler() {
|
658 |
benjamin |
174 |
@Override
|
|
|
175 |
public void onClick(ClickEvent event) {
|
|
|
176 |
FormulaireCommentairePresenteur commentairePresenteur = new FormulaireCommentairePresenteur(CacheClient.getInstance().getObservationCourante(), new FormulaireCommentaireVue());
|
|
|
177 |
fenetreOverlaySimplePresenteur = new FenetreOverlaySimplePresenteur(new FenetreOverlayDefilanteVue());
|
|
|
178 |
fenetreOverlaySimplePresenteur.ouvrirFenetreModale(commentairePresenteur);
|
|
|
179 |
}
|
947 |
gduche |
180 |
};
|
|
|
181 |
vue.getBoutonAjoutCommentaire().addClickHandler(clicAjoutCommentaire);
|
|
|
182 |
vue.getBoutonAjoutCommentaireBas().addClickHandler(clicAjoutCommentaire);
|
436 |
benjamin |
183 |
|
262 |
aurelien |
184 |
BusEvenementiel.getInstance().addHandler(EvenementAjoutDetermination.TYPE, new GestionnaireEvenementAjoutDetermination() {
|
|
|
185 |
@Override
|
|
|
186 |
public void onAjoutDetermination(EvenementAjoutDetermination event) {
|
602 |
aurelien |
187 |
if (fenetreOverlaySimplePresenteur != null && fenetreOverlaySimplePresenteur.fenetreModaleEstOuverte()) {
|
|
|
188 |
fenetreOverlaySimplePresenteur.fermerFenetreModale();
|
262 |
aurelien |
189 |
}
|
|
|
190 |
}
|
|
|
191 |
});
|
939 |
benjamin |
192 |
|
658 |
benjamin |
193 |
BusEvenementiel.getInstance().addHandler(EvenementAjoutCommentaire.TYPE, new GestionnaireEvenementAjoutCommentaire() {
|
|
|
194 |
|
|
|
195 |
@Override
|
|
|
196 |
public void onAjoutCommentaire(EvenementAjoutCommentaire event) {
|
|
|
197 |
if (fenetreOverlaySimplePresenteur != null && fenetreOverlaySimplePresenteur.fenetreModaleEstOuverte()) {
|
|
|
198 |
fenetreOverlaySimplePresenteur.fermerFenetreModale();
|
|
|
199 |
}
|
|
|
200 |
}
|
|
|
201 |
});
|
248 |
aurelien |
202 |
}
|
41 |
aurelien |
203 |
}
|