322 |
gduche |
1 |
package org.tela_botanica.del.client.composants.moteurrecherche;
|
|
|
2 |
|
335 |
benjamin |
3 |
import org.tela_botanica.del.client.cache.CacheClient;
|
602 |
aurelien |
4 |
import org.tela_botanica.del.client.composants.formulaires.autocompletion.AutoCompletionComboBoxPresenteur;
|
|
|
5 |
import org.tela_botanica.del.client.composants.formulaires.autocompletion.AutoCompletionComboBoxVue;
|
322 |
gduche |
6 |
import org.tela_botanica.del.client.composants.presenteur.Presenteur;
|
553 |
jpm |
7 |
import org.tela_botanica.del.client.config.Config;
|
335 |
benjamin |
8 |
import org.tela_botanica.del.client.modeles.InformationsRecherche;
|
451 |
aurelien |
9 |
import org.tela_botanica.del.client.modeles.ModeRecherche;
|
500 |
aurelien |
10 |
import org.tela_botanica.del.client.utils.UtilitairesAutoCompletionService;
|
322 |
gduche |
11 |
|
|
|
12 |
import com.google.gwt.event.dom.client.ClickEvent;
|
|
|
13 |
import com.google.gwt.event.dom.client.ClickHandler;
|
|
|
14 |
import com.google.gwt.event.dom.client.HasClickHandlers;
|
|
|
15 |
import com.google.gwt.event.dom.client.HasKeyPressHandlers;
|
|
|
16 |
import com.google.gwt.event.dom.client.KeyCodes;
|
|
|
17 |
import com.google.gwt.event.dom.client.KeyPressEvent;
|
|
|
18 |
import com.google.gwt.event.dom.client.KeyPressHandler;
|
386 |
aurelien |
19 |
import com.google.gwt.http.client.Response;
|
322 |
gduche |
20 |
import com.google.gwt.user.client.ui.HasWidgets;
|
|
|
21 |
import com.google.gwt.user.client.ui.IsWidget;
|
|
|
22 |
|
|
|
23 |
public abstract class MoteurRecherchePresenteur extends Presenteur {
|
335 |
benjamin |
24 |
|
322 |
gduche |
25 |
public abstract interface Vue extends IsWidget {
|
545 |
jpm |
26 |
public void ajouterVue(HasWidgets composite);
|
560 |
benjamin |
27 |
|
545 |
jpm |
28 |
public HasClickHandlers getLienRechercheAvancee();
|
560 |
benjamin |
29 |
|
545 |
jpm |
30 |
public void basculerAffichageZoneCache();
|
560 |
benjamin |
31 |
|
545 |
jpm |
32 |
public HasClickHandlers getBoutonRechercheSimple();
|
560 |
benjamin |
33 |
|
545 |
jpm |
34 |
public HasClickHandlers getBoutonFermer();
|
560 |
benjamin |
35 |
|
545 |
jpm |
36 |
public HasClickHandlers getBoutonVider();
|
560 |
benjamin |
37 |
|
545 |
jpm |
38 |
public HasClickHandlers getBoutonRechercheAvancee();
|
560 |
benjamin |
39 |
|
545 |
jpm |
40 |
public HasKeyPressHandlers getChampSaisie();
|
560 |
benjamin |
41 |
|
545 |
jpm |
42 |
public HasClickHandlers getChampSaisieCliquable();
|
560 |
benjamin |
43 |
|
545 |
jpm |
44 |
public String getValeurRechercheSimple();
|
560 |
benjamin |
45 |
|
322 |
gduche |
46 |
public String getLabelRecherche();
|
560 |
benjamin |
47 |
|
533 |
jpm |
48 |
public String getContientMots();
|
560 |
benjamin |
49 |
|
451 |
aurelien |
50 |
public String getDepartement();
|
560 |
benjamin |
51 |
|
457 |
aurelien |
52 |
public HasWidgets getCommune();
|
560 |
benjamin |
53 |
|
386 |
aurelien |
54 |
public HasWidgets getTaxon();
|
560 |
benjamin |
55 |
|
451 |
aurelien |
56 |
public String getFamille();
|
560 |
benjamin |
57 |
|
451 |
aurelien |
58 |
public String getGenre();
|
560 |
benjamin |
59 |
|
451 |
aurelien |
60 |
public String getMotCle();
|
560 |
benjamin |
61 |
|
451 |
aurelien |
62 |
public String getAuteur();
|
560 |
benjamin |
63 |
|
451 |
aurelien |
64 |
public String getDate();
|
560 |
benjamin |
65 |
|
533 |
jpm |
66 |
public void setValeurRechercheSimple(String valeurRecherche);
|
560 |
benjamin |
67 |
|
533 |
jpm |
68 |
public void setContientMots(String mots);
|
560 |
benjamin |
69 |
|
533 |
jpm |
70 |
public void setValeurDepartement(String dpt);
|
560 |
benjamin |
71 |
|
335 |
benjamin |
72 |
public void chargerValeursRecherchePrecedente(InformationsRecherche informationsRecherche);
|
560 |
benjamin |
73 |
|
407 |
gduche |
74 |
public void focusSaisie();
|
560 |
benjamin |
75 |
|
420 |
gduche |
76 |
public void nettoyer();
|
564 |
benjamin |
77 |
|
|
|
78 |
public HasKeyPressHandlers getChampsFamille();
|
|
|
79 |
|
|
|
80 |
public HasKeyPressHandlers getChampsGenre();
|
|
|
81 |
|
|
|
82 |
public HasKeyPressHandlers getChampsMotCle();
|
|
|
83 |
|
|
|
84 |
public HasKeyPressHandlers getChampsAuteur();
|
|
|
85 |
|
|
|
86 |
public HasKeyPressHandlers getChampsDate();
|
671 |
aurelien |
87 |
|
|
|
88 |
public HasKeyPressHandlers getChampsDepartement();
|
|
|
89 |
|
|
|
90 |
public HasKeyPressHandlers getChampsContientMots();
|
564 |
benjamin |
91 |
|
322 |
gduche |
92 |
}
|
|
|
93 |
|
553 |
jpm |
94 |
private Vue vue;
|
|
|
95 |
private Config config;
|
457 |
aurelien |
96 |
private ModeRecherche modeRecherche;
|
560 |
benjamin |
97 |
|
|
|
98 |
public enum TypeMoteur {
|
|
|
99 |
SIMPLE, AVANCEE
|
|
|
100 |
};
|
|
|
101 |
|
533 |
jpm |
102 |
private TypeMoteur typeMoteur = TypeMoteur.SIMPLE;
|
420 |
gduche |
103 |
|
553 |
jpm |
104 |
private AutoCompletionComboBoxPresenteur completionTaxonsPresenteur = null;
|
|
|
105 |
private AutoCompletionComboBoxPresenteur completionCommunesPresenteur = null;
|
560 |
benjamin |
106 |
|
451 |
aurelien |
107 |
public MoteurRecherchePresenteur(Vue vue, ModeRecherche mode) {
|
585 |
jpm |
108 |
initialiser(vue, mode, new Config());
|
322 |
gduche |
109 |
}
|
560 |
benjamin |
110 |
|
585 |
jpm |
111 |
public MoteurRecherchePresenteur(AutoCompletionComboBoxPresenteur presenteurAutoCompletionTaxon, AutoCompletionComboBoxPresenteur presenteurAutoCompletionCommunes, Vue vue, ModeRecherche mode, Config configuration) {
|
553 |
jpm |
112 |
completionTaxonsPresenteur = presenteurAutoCompletionTaxon;
|
|
|
113 |
completionCommunesPresenteur = presenteurAutoCompletionCommunes;
|
585 |
jpm |
114 |
initialiser(vue, mode, configuration);
|
553 |
jpm |
115 |
}
|
560 |
benjamin |
116 |
|
585 |
jpm |
117 |
private void initialiser(Vue vue, ModeRecherche mode, Config configuration) {
|
451 |
aurelien |
118 |
this.vue = vue;
|
|
|
119 |
setMode(mode);
|
585 |
jpm |
120 |
this.config = configuration;
|
560 |
benjamin |
121 |
if (completionTaxonsPresenteur == null)
|
|
|
122 |
this.creerCompletionTaxons();
|
|
|
123 |
if (completionCommunesPresenteur == null)
|
|
|
124 |
this.creerCompletionCommunes();
|
451 |
aurelien |
125 |
gererEvenements();
|
|
|
126 |
}
|
560 |
benjamin |
127 |
|
533 |
jpm |
128 |
public ModeRecherche getMode() {
|
|
|
129 |
return modeRecherche;
|
|
|
130 |
}
|
560 |
benjamin |
131 |
|
533 |
jpm |
132 |
private void setMode(ModeRecherche mode) {
|
|
|
133 |
modeRecherche = mode;
|
|
|
134 |
}
|
585 |
jpm |
135 |
|
|
|
136 |
public TypeMoteur getTypeMoteur() {
|
|
|
137 |
return this.typeMoteur;
|
|
|
138 |
}
|
|
|
139 |
|
533 |
jpm |
140 |
public void setTypeMoteur(TypeMoteur typeMoteur) {
|
|
|
141 |
this.typeMoteur = typeMoteur;
|
|
|
142 |
}
|
335 |
benjamin |
143 |
|
533 |
jpm |
144 |
public boolean estPourRechercheImages() {
|
|
|
145 |
return (modeRecherche == ModeRecherche.MODE_IMAGE);
|
|
|
146 |
}
|
|
|
147 |
|
|
|
148 |
public boolean estPourRechercheObservations() {
|
|
|
149 |
return (modeRecherche == ModeRecherche.MODE_OBSERVATION);
|
560 |
benjamin |
150 |
}
|
533 |
jpm |
151 |
|
545 |
jpm |
152 |
private void creerCompletionTaxons() {
|
553 |
jpm |
153 |
String url = this.config.getUrl("nomSciCompletionService");
|
|
|
154 |
completionTaxonsPresenteur = new AutoCompletionComboBoxPresenteur(new AutoCompletionComboBoxVue(), url) {
|
545 |
jpm |
155 |
protected String effectuerPreTraitementChaineRequete(String requete) {
|
|
|
156 |
return UtilitairesAutoCompletionService.effectuerPreTraitementChaineRequeteGenreEspeceSlash(requete);
|
|
|
157 |
// A décommenter lors de l'utilisation des web services eflore
|
|
|
158 |
// return
|
|
|
159 |
// RetourAutoCompletionService.effectuerPreTraitementChaineRequeteGenreEspeceEflore(requete);
|
|
|
160 |
}
|
|
|
161 |
|
|
|
162 |
@Override
|
|
|
163 |
protected String[] parserResultatRequete(Response response) {
|
|
|
164 |
return UtilitairesAutoCompletionService.parserRetourSimple(response);
|
|
|
165 |
// A décommenter lors de l'utilisation des web services eflore
|
|
|
166 |
// return RetourAutoCompletionService.parserRetourOss(response);
|
|
|
167 |
}
|
|
|
168 |
};
|
|
|
169 |
}
|
560 |
benjamin |
170 |
|
545 |
jpm |
171 |
private void creerCompletionCommunes() {
|
553 |
jpm |
172 |
String url = this.config.getUrl("communeCompletionService");
|
|
|
173 |
completionCommunesPresenteur = new AutoCompletionComboBoxPresenteur(new AutoCompletionComboBoxVue(), url) {
|
545 |
jpm |
174 |
protected String effectuerPreTraitementChaineRequete(String requete) {
|
|
|
175 |
return requete;
|
|
|
176 |
}
|
560 |
benjamin |
177 |
|
545 |
jpm |
178 |
@Override
|
|
|
179 |
protected void surSelectionSuggestion(String suggestion) {
|
560 |
benjamin |
180 |
setValeur(suggestion);
|
552 |
benjamin |
181 |
collecterInfosRecherche();
|
|
|
182 |
setValeur(getInformationsRechercheEnCache().getCommune());
|
|
|
183 |
vue.setValeurDepartement(getInformationsRechercheEnCache().getDepartement());
|
545 |
jpm |
184 |
}
|
|
|
185 |
|
|
|
186 |
@Override
|
|
|
187 |
protected String[] parserResultatRequete(Response response) {
|
|
|
188 |
return UtilitairesAutoCompletionService.parserRetourSimple(response);
|
|
|
189 |
}
|
|
|
190 |
};
|
|
|
191 |
}
|
560 |
benjamin |
192 |
|
322 |
gduche |
193 |
@Override
|
|
|
194 |
public void go(HasWidgets composite) {
|
335 |
benjamin |
195 |
afficherRequeteEtLancerRecherche();
|
545 |
jpm |
196 |
completionTaxonsPresenteur.go(vue.getTaxon());
|
|
|
197 |
completionCommunesPresenteur.go(vue.getCommune());
|
451 |
aurelien |
198 |
vue.ajouterVue(composite);
|
407 |
gduche |
199 |
vue.focusSaisie();
|
322 |
gduche |
200 |
}
|
|
|
201 |
|
|
|
202 |
@Override
|
|
|
203 |
protected void gererEvenements() {
|
|
|
204 |
vue.getLienRechercheAvancee().addClickHandler(new ClickHandler() {
|
|
|
205 |
public void onClick(ClickEvent event) {
|
560 |
benjamin |
206 |
setTypeMoteur(TypeMoteur.AVANCEE);
|
533 |
jpm |
207 |
vue.setContientMots(vue.getValeurRechercheSimple());
|
322 |
gduche |
208 |
vue.basculerAffichageZoneCache();
|
|
|
209 |
}
|
|
|
210 |
});
|
335 |
benjamin |
211 |
|
322 |
gduche |
212 |
vue.getBoutonRechercheSimple().addClickHandler(new ClickHandler() {
|
|
|
213 |
public void onClick(ClickEvent event) {
|
533 |
jpm |
214 |
setTypeMoteur(TypeMoteur.SIMPLE);
|
335 |
benjamin |
215 |
collecterInfosRecherche();
|
445 |
benjamin |
216 |
afficherRequeteEtLancerRecherche();
|
322 |
gduche |
217 |
}
|
|
|
218 |
});
|
335 |
benjamin |
219 |
|
408 |
gduche |
220 |
vue.getBoutonFermer().addClickHandler(new ClickHandler() {
|
|
|
221 |
public void onClick(ClickEvent event) {
|
533 |
jpm |
222 |
vue.setValeurRechercheSimple(vue.getContientMots());
|
408 |
gduche |
223 |
vue.basculerAffichageZoneCache();
|
|
|
224 |
}
|
|
|
225 |
});
|
420 |
gduche |
226 |
|
|
|
227 |
vue.getBoutonVider().addClickHandler(new ClickHandler() {
|
|
|
228 |
public void onClick(ClickEvent event) {
|
457 |
aurelien |
229 |
nettoyerChamps();
|
420 |
gduche |
230 |
InformationsRecherche infosRecherche = new InformationsRecherche();
|
451 |
aurelien |
231 |
if (estPourRechercheImages()) {
|
420 |
gduche |
232 |
CacheClient.getInstance().setInformationsRechercheImage(infosRecherche);
|
451 |
aurelien |
233 |
} else if (estPourRechercheObservations()) {
|
420 |
gduche |
234 |
CacheClient.getInstance().setInformationsRechercheObservation(infosRecherche);
|
|
|
235 |
}
|
|
|
236 |
}
|
|
|
237 |
});
|
|
|
238 |
|
322 |
gduche |
239 |
vue.getBoutonRechercheAvancee().addClickHandler(new ClickHandler() {
|
|
|
240 |
public void onClick(ClickEvent event) {
|
533 |
jpm |
241 |
setTypeMoteur(TypeMoteur.AVANCEE);
|
335 |
benjamin |
242 |
collecterInfosRecherche();
|
|
|
243 |
vue.basculerAffichageZoneCache();
|
|
|
244 |
afficherRequeteEtLancerRecherche();
|
322 |
gduche |
245 |
}
|
|
|
246 |
});
|
335 |
benjamin |
247 |
|
322 |
gduche |
248 |
vue.getChampSaisie().addKeyPressHandler(new KeyPressHandler() {
|
|
|
249 |
public void onKeyPress(KeyPressEvent event) {
|
|
|
250 |
if (event.getNativeEvent().getKeyCode() == KeyCodes.KEY_ENTER) {
|
533 |
jpm |
251 |
setTypeMoteur(TypeMoteur.SIMPLE);
|
335 |
benjamin |
252 |
collecterInfosRecherche();
|
445 |
benjamin |
253 |
afficherRequeteEtLancerRecherche();
|
322 |
gduche |
254 |
}
|
|
|
255 |
}
|
|
|
256 |
});
|
335 |
benjamin |
257 |
|
322 |
gduche |
258 |
vue.getChampSaisieCliquable().addClickHandler(new ClickHandler() {
|
|
|
259 |
public void onClick(ClickEvent event) {
|
445 |
benjamin |
260 |
if (vue.getValeurRechercheSimple().equals(vue.getLabelRecherche())) {
|
322 |
gduche |
261 |
vue.setValeurRechercheSimple("");
|
|
|
262 |
}
|
|
|
263 |
}
|
|
|
264 |
});
|
564 |
benjamin |
265 |
|
597 |
aurelien |
266 |
vue.getChampsAuteur().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
|
|
|
267 |
vue.getChampsDate().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
|
|
|
268 |
vue.getChampsFamille().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
|
|
|
269 |
vue.getChampsGenre().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
|
|
|
270 |
vue.getChampsMotCle().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
|
671 |
aurelien |
271 |
vue.getChampsDepartement().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
|
|
|
272 |
vue.getChampsContientMots().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
|
564 |
benjamin |
273 |
|
322 |
gduche |
274 |
}
|
560 |
benjamin |
275 |
|
597 |
aurelien |
276 |
public KeyPressHandler creerGestionnaireEvenementToucheEntree() {
|
564 |
benjamin |
277 |
return new KeyPressHandler() {
|
|
|
278 |
public void onKeyPress(KeyPressEvent event) {
|
|
|
279 |
if (event.getNativeEvent().getKeyCode() == KeyCodes.KEY_ENTER) {
|
|
|
280 |
vue.basculerAffichageZoneCache();
|
|
|
281 |
collecterInfosRecherche();
|
|
|
282 |
afficherRequeteEtLancerRecherche();
|
|
|
283 |
}
|
|
|
284 |
}
|
|
|
285 |
};
|
|
|
286 |
}
|
|
|
287 |
|
457 |
aurelien |
288 |
private void nettoyerChamps() {
|
545 |
jpm |
289 |
completionCommunesPresenteur.nettoyer();
|
|
|
290 |
completionTaxonsPresenteur.nettoyer();
|
457 |
aurelien |
291 |
vue.nettoyer();
|
|
|
292 |
}
|
335 |
benjamin |
293 |
|
451 |
aurelien |
294 |
public void collecterInfosRecherche() {
|
335 |
benjamin |
295 |
InformationsRecherche informationRecherche = new InformationsRecherche();
|
533 |
jpm |
296 |
informationRecherche.setRechercheLibre(this.getRechercheLibre());
|
545 |
jpm |
297 |
if (this.typeMoteur == TypeMoteur.AVANCEE) {
|
|
|
298 |
informationRecherche.setTaxon(completionTaxonsPresenteur.getValeur());
|
|
|
299 |
informationRecherche.setDepartement(vue.getDepartement());
|
|
|
300 |
informationRecherche.setCommune(completionCommunesPresenteur.getValeur());
|
|
|
301 |
informationRecherche.setFamille(vue.getFamille());
|
|
|
302 |
informationRecherche.setGenre(vue.getGenre());
|
|
|
303 |
informationRecherche.setMotClef(vue.getMotCle());
|
581 |
gduche |
304 |
informationRecherche.setTag(vue.getMotCle());
|
545 |
jpm |
305 |
informationRecherche.setAuteur(vue.getAuteur());
|
|
|
306 |
informationRecherche.setDate(vue.getDate());
|
|
|
307 |
}
|
445 |
benjamin |
308 |
|
451 |
aurelien |
309 |
if (estPourRechercheImages()) {
|
488 |
benjamin |
310 |
CacheClient.getInstance().setPageCouranteRechercheImages(1);
|
445 |
benjamin |
311 |
CacheClient.getInstance().setInformationsRechercheImage(informationRecherche);
|
451 |
aurelien |
312 |
} else if (estPourRechercheObservations()) {
|
488 |
benjamin |
313 |
CacheClient.getInstance().setPageCouranteRechercheObservations(1);
|
445 |
benjamin |
314 |
CacheClient.getInstance().setInformationsRechercheObservation(informationRecherche);
|
335 |
benjamin |
315 |
}
|
322 |
gduche |
316 |
}
|
560 |
benjamin |
317 |
|
533 |
jpm |
318 |
private String getRechercheLibre() {
|
|
|
319 |
String rechercheLibre = "";
|
|
|
320 |
switch (this.typeMoteur) {
|
560 |
benjamin |
321 |
case SIMPLE:
|
|
|
322 |
rechercheLibre = vue.getValeurRechercheSimple();
|
|
|
323 |
break;
|
|
|
324 |
case AVANCEE:
|
|
|
325 |
rechercheLibre = vue.getContientMots();
|
|
|
326 |
break;
|
|
|
327 |
default:
|
|
|
328 |
// TODO : voir comment gérer les exceptions proprement
|
|
|
329 |
// throw new
|
|
|
330 |
// Exception("Le type de moteur de recherche indiqué n'est pas disponilbe");
|
533 |
jpm |
331 |
}
|
|
|
332 |
return rechercheLibre;
|
|
|
333 |
}
|
335 |
benjamin |
334 |
|
|
|
335 |
private InformationsRecherche getInformationsRechercheEnCache() {
|
451 |
aurelien |
336 |
if (estPourRechercheImages()) {
|
335 |
benjamin |
337 |
return CacheClient.getInstance().getInformationsRechercheImage();
|
451 |
aurelien |
338 |
} else if (estPourRechercheObservations()) {
|
445 |
benjamin |
339 |
return CacheClient.getInstance().getInformationsRechercheObservation();
|
335 |
benjamin |
340 |
}
|
|
|
341 |
return null;
|
|
|
342 |
}
|
|
|
343 |
|
|
|
344 |
public void afficherRequeteEtLancerRecherche() {
|
|
|
345 |
InformationsRecherche informationsRecherche = getInformationsRechercheEnCache();
|
|
|
346 |
if (informationsRecherche != null) {
|
545 |
jpm |
347 |
completionTaxonsPresenteur.setValeur(informationsRecherche.getTaxon());
|
552 |
benjamin |
348 |
completionCommunesPresenteur.setValeur(informationsRecherche.getCommune());
|
335 |
benjamin |
349 |
vue.chargerValeursRecherchePrecedente(informationsRecherche);
|
|
|
350 |
}
|
|
|
351 |
lancerRecherche();
|
|
|
352 |
}
|
|
|
353 |
|
445 |
benjamin |
354 |
public abstract void lancerRecherche();
|
322 |
gduche |
355 |
}
|