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