Subversion Repositories eFlore/Applications.del

Rev

Rev 1792 | Rev 1995 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
322 gduche 1
package org.tela_botanica.del.client.composants.moteurrecherche;
2
 
1367 aurelien 3
import java.util.Iterator;
4
import java.util.Map;
5
 
335 benjamin 6
import org.tela_botanica.del.client.i18n.I18n;
7
import org.tela_botanica.del.client.modeles.InformationsRecherche;
322 gduche 8
 
9
import com.google.gwt.core.client.GWT;
10
import com.google.gwt.event.dom.client.HasClickHandlers;
11
import com.google.gwt.event.dom.client.HasKeyPressHandlers;
12
import com.google.gwt.uibinder.client.UiBinder;
13
import com.google.gwt.uibinder.client.UiField;
1367 aurelien 14
import com.google.gwt.user.client.DOM;
322 gduche 15
import com.google.gwt.user.client.ui.Button;
16
import com.google.gwt.user.client.ui.Composite;
386 aurelien 17
import com.google.gwt.user.client.ui.HasWidgets;
322 gduche 18
import com.google.gwt.user.client.ui.Label;
1367 aurelien 19
import com.google.gwt.user.client.ui.ListBox;
322 gduche 20
import com.google.gwt.user.client.ui.Panel;
21
import com.google.gwt.user.client.ui.TextBox;
22
import com.google.gwt.user.client.ui.Widget;
23
 
24
public class MoteurRechercheVue extends Composite implements MoteurRecherchePresenteur.Vue {
25
 
564 benjamin 26
	interface Binder extends UiBinder<Widget, MoteurRechercheVue> {
27
	}
335 benjamin 28
 
322 gduche 29
	private static Binder uiBinder = GWT.create(Binder.class);
30
	private String labelRecherche = "";
1986 aurelien 31
 
32
	private Map<String,String> listePays;
33
 
34
	private InformationsRecherche informationRecherche;
35
 
36
	// Si l'on charge une recherche précédente et que la liste des pays n'est
37
	// pas encore arrivée, on stocke le pays pour l'afficher quand la liste arrive
38
	private String paysEnAttente;
335 benjamin 39
 
40
	@UiField
1426 aurelien 41
	Panel rechercheAvancee, taxon, commune, zoneRss, conteneurMotCle, conteneurMotCleCel, conteneurMotCleDel  ;
335 benjamin 42
	@UiField
43
	Label lienRechercheAvancee, recherchePrecedente;
44
	@UiField
419 gduche 45
	Button boutonRecherche, boutonRechercheAvancee, boutonFermer, boutonVider;
335 benjamin 46
	@UiField
1426 aurelien 47
	TextBox recherchePrincipale, contientMots, departement, famille, genre, motCle, motCleCel, motCleDel, auteur, date;
1367 aurelien 48
	@UiField
1986 aurelien 49
	ListBox referentiel, pays;
335 benjamin 50
 
322 gduche 51
	public MoteurRechercheVue(String labelRecherche) {
52
		initWidget(uiBinder.createAndBindUi(this));
53
		this.labelRecherche = labelRecherche;
54
		recherchePrincipale.setText(labelRecherche);
55
		rechercheAvancee.setVisible(false);
56
	}
1367 aurelien 57
 
58
	@Override
59
	public void remplirListeReferentiels(Map<String, String> listeReferentiels) {
60
		for (Iterator<String> iterator = listeReferentiels.keySet().iterator(); iterator.hasNext();) {
61
			String codeRef = iterator.next();
62
			referentiel.addItem(listeReferentiels.get(codeRef), codeRef);
63
		}
1792 mathias 64
		referentiel.setItemSelected(1, true);
1367 aurelien 65
	}
1986 aurelien 66
 
67
	@Override
68
	public void remplirListePays(Map<String, String> listePays) {
69
		this.listePays = listePays;
70
		pays.clear();
71
		// Pour pouvoir annuler la selection de pays, on ajoute un item vide
72
		pays.addItem("", "");
73
		int index = 1;
74
		for (Iterator<String> iterator = listePays.keySet().iterator(); iterator.hasNext();) {
75
			String codePays = iterator.next();
76
			pays.addItem(listePays.get(codePays), codePays);
77
 
78
			if(paysEnAttente != null && codePays.equals(paysEnAttente)) {
79
				pays.setItemSelected(index, true);
80
			}
81
			index++;
82
		}
83
 
84
		if(paysEnAttente != null) {
85
			afficherLigneInfoRecherche(informationRecherche);
86
		}
87
		paysEnAttente = null;
88
	}
322 gduche 89
 
90
	public String getLabelRecherche() {
91
		return labelRecherche;
92
	}
335 benjamin 93
 
322 gduche 94
	public HasClickHandlers getLienRechercheAvancee() {
95
		return lienRechercheAvancee;
96
	}
97
 
98
	public HasClickHandlers getBoutonRechercheSimple() {
99
		return boutonRecherche;
100
	}
445 benjamin 101
 
408 gduche 102
	public HasClickHandlers getBoutonFermer() {
103
		return boutonFermer;
104
	}
445 benjamin 105
 
419 gduche 106
	public HasClickHandlers getBoutonVider() {
107
		return boutonVider;
108
	}
335 benjamin 109
 
322 gduche 110
	public HasClickHandlers getBoutonRechercheAvancee() {
111
		return boutonRechercheAvancee;
112
	}
113
 
114
	public HasKeyPressHandlers getChampSaisie() {
115
		return recherchePrincipale;
116
	}
117
 
118
	public String getValeurRechercheSimple() {
119
		return recherchePrincipale.getText();
120
	}
564 benjamin 121
 
545 jpm 122
	public void setValeurRechercheSimple(String valeurRecherche) {
123
		recherchePrincipale.setText(valeurRecherche);
533 jpm 124
	}
564 benjamin 125
 
322 gduche 126
	public HasClickHandlers getChampSaisieCliquable() {
127
		return recherchePrincipale;
128
	}
564 benjamin 129
 
545 jpm 130
	public String getContientMots() {
131
		return contientMots.getText();
132
	}
335 benjamin 133
 
533 jpm 134
	public void setContientMots(String mots) {
135
		contientMots.setText(mots);
136
	}
1986 aurelien 137
 
138
	public String getPays() {
139
		return pays.getValue(pays.getSelectedIndex());
140
	}
564 benjamin 141
 
545 jpm 142
	public String getDepartement() {
143
		return departement.getText();
144
	}
145
 
457 aurelien 146
	public void setValeurDepartement(String dpt) {
147
		departement.setValue(dpt);
148
	}
545 jpm 149
 
150
	public HasWidgets getCommune() {
151
		return commune;
152
	}
153
 
154
	public HasWidgets getTaxon() {
155
		return taxon;
156
	}
157
 
158
	public String getFamille() {
159
		return famille.getText();
160
	}
161
 
162
	public String getGenre() {
163
		return genre.getText();
164
	}
165
 
166
	public String getMotCle() {
167
		return motCle.getText();
168
	}
169
 
170
	public String getAuteur() {
171
		return auteur.getText();
172
	}
173
 
174
	public String getDate() {
175
		return date.getText();
176
	}
1367 aurelien 177
 
178
	public String getReferentiel() {
179
		return referentiel.getValue(referentiel.getSelectedIndex());
180
	}
564 benjamin 181
 
545 jpm 182
	public void focusSaisie() {
183
		this.recherchePrincipale.setFocus(true);
184
	}
322 gduche 185
 
545 jpm 186
	public void ajouterVue(HasWidgets composite) {
187
		composite.add(this.asWidget());
188
	}
564 benjamin 189
 
545 jpm 190
	public void basculerAffichageZoneCache() {
191
		rechercheAvancee.setVisible(!rechercheAvancee.isVisible());
192
		recherchePrincipale.setVisible(!recherchePrincipale.isVisible());
193
		boutonRecherche.setVisible(!boutonRecherche.isVisible());
194
	}
564 benjamin 195
 
545 jpm 196
	public void nettoyer() {
197
		chargerValeursRecherchePrecedente(new InformationsRecherche());
198
	}
564 benjamin 199
 
335 benjamin 200
	public void chargerValeursRecherchePrecedente(InformationsRecherche informationsRecherche) {
451 aurelien 201
		recherchePrincipale.setText(informationsRecherche.getRechercheLibre());
533 jpm 202
		contientMots.setText(informationsRecherche.getRechercheLibre());
451 aurelien 203
		departement.setText(informationsRecherche.getDepartement());
204
		famille.setText(informationsRecherche.getFamille());
205
		genre.setText(informationsRecherche.getGenre());
206
		motCle.setText(informationsRecherche.getMotClef());
1426 aurelien 207
		motCleCel.setText(informationsRecherche.getMotClefCel());
208
		motCleDel.setText(informationsRecherche.getMotClefDel());
451 aurelien 209
		auteur.setText(informationsRecherche.getAuteur());
210
		date.setText(informationsRecherche.getDate());
1367 aurelien 211
 
212
		for(int i = 0; i < referentiel.getItemCount(); i++) {
213
			if(referentiel.getValue(i).equals(informationsRecherche.getReferentiel())) {
214
				referentiel.setSelectedIndex(i);
215
			}
216
		}
1986 aurelien 217
 
218
		// la liste des pays du champs de recherche est asynchrone
219
		// donc elle peut ne pas avoir encore été chargée
220
		if(listePays != null) {
221
			for(int i = 0; i < pays.getItemCount(); i++) {
222
				if(pays.getValue(i).equals(paysEnAttente)) {
223
					pays.setSelectedIndex(i);
224
				}
225
			}
226
		} else {
227
			paysEnAttente = informationsRecherche.getPays();
228
		}
445 benjamin 229
 
335 benjamin 230
		afficherLigneInfoRecherche(informationsRecherche);
231
	}
232
 
233
	/**
234
	 * Affiche la ligne d'en tête montrant les elements de la requête à
235
	 * l'utilisateur
236
	 *
237
	 * @param informationRecherche
238
	 */
239
	private void afficherLigneInfoRecherche(InformationsRecherche informationRecherche) {
1986 aurelien 240
 
241
		this.informationRecherche = informationRecherche;
242
 
445 benjamin 243
		// tax dep com fam gen ta mo au date
335 benjamin 244
		StringBuffer texteRecherchePrecedente = new StringBuffer();
445 benjamin 245
 
246
		if (informationRecherche.getRechercheLibre() != null && !informationRecherche.getRechercheLibre().equals("")) {
335 benjamin 247
			texteRecherchePrecedente.append(I18n.getVocabulary().rechercheLibre() + ":" + informationRecherche.getRechercheLibre() + " ");
322 gduche 248
		}
445 benjamin 249
		if (informationRecherche.getTaxon() != null && !informationRecherche.getTaxon().equals("")) {
419 gduche 250
			texteRecherchePrecedente.append(I18n.getVocabulary().taxon() + ":" + informationRecherche.getTaxon() + " ");
322 gduche 251
		}
445 benjamin 252
		if (informationRecherche.getDepartement() != null && !informationRecherche.getDepartement().equals("")) {
419 gduche 253
			texteRecherchePrecedente.append(I18n.getVocabulary().departement() + ":" + informationRecherche.getDepartement() + " ");
254
		}
1986 aurelien 255
		if (listePays != null && informationRecherche.getPays() != null && !informationRecherche.getPays().equals("")) {
256
			texteRecherchePrecedente.append(I18n.getVocabulary().pays() + ":" + listePays.get(informationRecherche.getPays()) + " ");
257
		}
445 benjamin 258
		if (informationRecherche.getCommune() != null && !informationRecherche.getCommune().equals("")) {
335 benjamin 259
			texteRecherchePrecedente.append(I18n.getVocabulary().commune() + ":" + informationRecherche.getCommune() + " ");
322 gduche 260
		}
445 benjamin 261
		if (informationRecherche.getFamille() != null && !informationRecherche.getFamille().equals("")) {
335 benjamin 262
			texteRecherchePrecedente.append(I18n.getVocabulary().famille() + ":" + informationRecherche.getFamille() + " ");
322 gduche 263
		}
445 benjamin 264
		if (informationRecherche.getGenre() != null && !informationRecherche.getGenre().equals("")) {
335 benjamin 265
			texteRecherchePrecedente.append(I18n.getVocabulary().genre() + ":" + informationRecherche.getGenre() + " ");
322 gduche 266
		}
445 benjamin 267
		if (informationRecherche.getTag() != null && !informationRecherche.getTag().equals("")) {
419 gduche 268
			texteRecherchePrecedente.append(I18n.getVocabulary().tag() + ":" + informationRecherche.getTag() + " ");
269
		}
445 benjamin 270
		if (informationRecherche.getMotClef() != null && !informationRecherche.getMotClef().equals("")) {
335 benjamin 271
			texteRecherchePrecedente.append(I18n.getVocabulary().mot_clef() + ":" + informationRecherche.getMotClef() + " ");
322 gduche 272
		}
1426 aurelien 273
		if (informationRecherche.getMotClefCel() != null && !informationRecherche.getMotClefCel().equals("")) {
274
			texteRecherchePrecedente.append(I18n.getVocabulary().tagCel() + ":" + informationRecherche.getMotClefCel() + " ");
275
		}
276
		if (informationRecherche.getMotClefDel() != null && !informationRecherche.getMotClefDel().equals("")) {
277
			texteRecherchePrecedente.append(I18n.getVocabulary().tagDel() + ":" + informationRecherche.getMotClefDel() + " ");
278
		}
445 benjamin 279
		if (informationRecherche.getAuteur() != null && !informationRecherche.getAuteur().equals("")) {
419 gduche 280
			texteRecherchePrecedente.append(I18n.getVocabulary().auteur() + ":" + informationRecherche.getAuteur() + " ");
281
		}
445 benjamin 282
		if (informationRecherche.getDate() != null && !informationRecherche.getDate().equals("")) {
419 gduche 283
			texteRecherchePrecedente.append(I18n.getVocabulary().date() + ":" + informationRecherche.getDate() + " ");
284
		}
1367 aurelien 285
		if (informationRecherche.getReferentiel() != null && !informationRecherche.getReferentiel().equals("")) {
286
			texteRecherchePrecedente.append(I18n.getVocabulary().referentiel() + ":" + informationRecherche.getReferentiel() + " ");
287
		}
1986 aurelien 288
 
335 benjamin 289
		recherchePrecedente.setText(texteRecherchePrecedente.toString());
322 gduche 290
	}
564 benjamin 291
 
292
	@Override
293
	public HasKeyPressHandlers getChampsFamille() {
294
		return famille;
295
	}
296
 
297
	@Override
298
	public HasKeyPressHandlers getChampsGenre() {
299
		return genre;
300
	}
301
 
302
	@Override
303
	public HasKeyPressHandlers getChampsMotCle() {
304
		return motCle;
305
	}
306
 
307
	@Override
308
	public HasKeyPressHandlers getChampsAuteur() {
309
		return auteur;
310
	}
311
 
312
	@Override
313
	public HasKeyPressHandlers getChampsDate() {
314
		return date;
315
	}
671 aurelien 316
 
317
	@Override
318
	public HasKeyPressHandlers getChampsDepartement() {
319
		return departement;
320
	}
321
 
322
	@Override
323
	public HasKeyPressHandlers getChampsContientMots() {
324
		return contientMots;
325
	}
1120 gduche 326
 
327
	public HasWidgets getZoneRss() {
328
		return zoneRss;
329
	}
1367 aurelien 330
 
331
	@Override
332
	public void setReferentielLectureSeule(boolean lectureSeule) {
1792 mathias 333
		// la listbox ne possède aucun méthode directe pour être désactivée
1367 aurelien 334
		DOM.setElementProperty(referentiel.getElement(), "disabled", "disabled");
335
	}
1426 aurelien 336
 
337
	@Override
338
	public HasKeyPressHandlers getChampsMotCleDel() {
339
		return motCleDel;
340
	}
341
 
342
	@Override
343
	public HasKeyPressHandlers getChampsMotCleCel() {
344
		return motCleCel;
345
	}
346
 
347
	@Override
348
	public String getMotCleDel() {
349
		return motCleDel.getText();
350
	}
351
 
352
	@Override
353
	public String getMotCleCel() {
354
		return motCleCel.getText();
355
	}
356
 
357
	@Override
358
	public void cacherChampsTagsImage() {
359
		conteneurMotCleCel.setVisible(false);
360
		conteneurMotCleDel.setVisible(false);
361
	}
362
 
363
	@Override
364
	public void cacherChampsTagsObs() {
365
		conteneurMotCle.setVisible(false);
366
	}
545 jpm 367
}