Subversion Repositories eFlore/Applications.coel

Rev

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

Rev Author Line No. Line
936 jpm 1
package org.tela_botanica.client.vues;
453 jp_milcent 2
 
3
import java.util.ArrayList;
4
import java.util.HashMap;
5
import java.util.Iterator;
6
 
7
import org.tela_botanica.client.ComposantClass;
8
import org.tela_botanica.client.Mediateur;
813 jpm 9
import org.tela_botanica.client.RegistreId;
907 jpm 10
import org.tela_botanica.client.configuration.Configuration;
453 jp_milcent 11
import org.tela_botanica.client.i18n.Constantes;
12
import org.tela_botanica.client.interfaces.Rafraichissable;
13
import org.tela_botanica.client.modeles.Valeur;
14
import org.tela_botanica.client.modeles.ValeurListe;
961 jpm 15
import org.tela_botanica.client.modeles.aDonnee;
935 jpm 16
import org.tela_botanica.client.modeles.projet.Projet;
17
import org.tela_botanica.client.modeles.projet.ProjetListe;
1322 gduche 18
import org.tela_botanica.client.synchronisation.Sequenceur;
967 jpm 19
import org.tela_botanica.client.util.Debug;
819 gduche 20
import org.tela_botanica.client.util.UtilString;
453 jp_milcent 21
 
813 jpm 22
import com.extjs.gxt.ui.client.Registry;
453 jp_milcent 23
import com.extjs.gxt.ui.client.Style.Scroll;
24
import com.extjs.gxt.ui.client.util.Format;
25
import com.extjs.gxt.ui.client.util.Params;
26
import com.extjs.gxt.ui.client.widget.HtmlContainer;
27
import com.extjs.gxt.ui.client.widget.LayoutContainer;
28
import com.extjs.gxt.ui.client.widget.TabItem;
29
import com.extjs.gxt.ui.client.widget.layout.FitLayout;
30
import com.google.gwt.core.client.GWT;
31
 
32
public abstract class DetailVue extends LayoutContainer implements Rafraichissable {
33
 
34
	protected Mediateur mediateur = null;
35
	protected Constantes i18nC = null;
36
 
37
	protected HashMap<String, Valeur> ontologie = null;
813 jpm 38
	protected boolean ontologieChargementOk = false;
39
	private HashMap<Integer, String> ontologiesEnAttenteDeReception = null;
40
 
453 jp_milcent 41
	protected ProjetListe projets = null;
813 jpm 42
	protected boolean projetsChargementOk = false;
43
 
453 jp_milcent 44
	protected String sautLigneTpl = null;
45
 
46
	public DetailVue(Mediateur mediateurCourant) {
47
		mediateur = mediateurCourant;
602 jp_milcent 48
		i18nC = Mediateur.i18nC;
453 jp_milcent 49
 
50
		initialiserSautLigneTpl();
51
 
52
		ontologie = new HashMap<String, Valeur>();
813 jpm 53
		ontologieChargementOk = false;
54
		ontologiesEnAttenteDeReception = new HashMap<Integer, String>();
55
		chargerProjets();
453 jp_milcent 56
 
57
		setLayout(new FitLayout());
58
		setBorders(false);
59
		setScrollMode(Scroll.AUTO);
60
	}
61
 
62
	private void initialiserSautLigneTpl() {
63
		sautLigneTpl = "<br />\n";
64
	}
65
 
813 jpm 66
	private void chargerProjets() {
1322 gduche 67
		mediateur.selectionnerProjet(this, null, null);
453 jp_milcent 68
	}
813 jpm 69
 
453 jp_milcent 70
	protected String construireTxtProjet(String idProjet) {
71
		String chaineARetourner = idProjet;
72
 
73
		if (projets != null) {
74
			Projet projet = projets.get(idProjet);
813 jpm 75
			if (projet != null) {
76
				String nomDuProjet = projet.getNom();
77
				if  (!nomDuProjet.equals("")) {
78
					chaineARetourner = nomDuProjet;
79
				}
453 jp_milcent 80
			}
81
		}
82
 
83
		return chaineARetourner;
84
	}
85
 
86
	protected String construireTxtTruck(String chaineAAnalyser) {
87
		ArrayList<String> termes = new ArrayList<String>();
88
 
89
		if ((chaineAAnalyser != null) && (!chaineAAnalyser.trim().equals("")))	{
961 jpm 90
			String[] valeurs = chaineAAnalyser.split(aDonnee.SEPARATEUR_VALEURS);
453 jp_milcent 91
			int nbreValeurs = valeurs.length;
92
			if (nbreValeurs > 0)	{
93
				for (int i = 0; i < nbreValeurs; i++)	{
94
					String valeur = valeurs[i];
95
					String valeurFormatee = formaterValeurTruck(valeur);
96
					termes.add(valeurFormatee);
97
				}
98
			}
99
		}
100
 
101
		String chaineARetourner = formaterTableauDeTxt(termes);
102
		return chaineARetourner;
103
	}
104
 
105
	private String formaterValeurTruck(String valeur) {
106
		String chaineARetourner = "";
107
 
108
		if (valeur.matches("^[^#]+##[^$]+$"))	{
961 jpm 109
			String[] cleValeur = valeur.split(aDonnee.SEPARATEUR_TYPE_VALEUR);
1044 gduche 110
			chaineARetourner = (UtilString.isEmpty(cleValeur[1]) || cleValeur[1].equals("null") ? aDonnee.VALEUR_NULL : cleValeur[1]) +" "+formaterParenthese(cleValeur[0]);
453 jp_milcent 111
		} else if (!valeur.equals(""))	{
112
			chaineARetourner = valeur;
113
		} else {
961 jpm 114
			GWT.log("Valeur truck posant problème :"+valeur, null);
453 jp_milcent 115
		}
116
 
117
		return chaineARetourner;
118
	}
119
 
120
	protected String formaterParenthese(String chaineAAfficher) {
121
		if (!chaineAAfficher.equals("")) {
122
			chaineAAfficher = "("+chaineAAfficher+")";
123
		}
124
		return chaineAAfficher;
125
	}
126
 
127
	protected String formaterTableauDeTxt(ArrayList<String> tableauDeTxt) {
128
		String chaineAAfficher = "";
129
		int tailleDuTableau = tableauDeTxt.size();
130
		if (tailleDuTableau > 0) {
131
			int indexAvtDernier = tailleDuTableau - 1;
132
			for (int i = 0; i < tailleDuTableau; i++)	{
133
				String mot = tableauDeTxt.get(i);
134
				if (i != indexAvtDernier) {
135
					chaineAAfficher += mot+", ";
136
				} else {
137
					chaineAAfficher += nettoyerPointFinal(mot)+".";
138
				}
139
			}
140
		}
819 gduche 141
		return UtilString.ucFirst(chaineAAfficher);
453 jp_milcent 142
	}
143
 
144
	protected String nettoyerPointFinal(String mot) {
145
		mot = mot.replaceAll("[.]$", "");
146
		return mot;
147
	}
148
 
803 jpm 149
	protected String formaterContenu(String template, Params parametres) {
453 jp_milcent 150
		String cHtml = Format.substitute(template, parametres);
151
 
152
		Params cssParams = new Params();
1121 jpm 153
		cssParams.set("css_lien_ext", ComposantClass.LIEN_EXTERNE);
453 jp_milcent 154
		cssParams.set("css_corps", ComposantClass.DETAIL_CORPS_CONTENU);
155
		cssParams.set("css_label", ComposantClass.LABEL);
156
		cssParams.set("css_indentation", ComposantClass.INDENTATION);
157
		cssParams.set("css_fieldset", ComposantClass.FIELDSET);
158
		cssParams.set("css_clear", ComposantClass.CLEAR);
159
		cHtml = Format.substitute(cHtml, cssParams);
160
 
803 jpm 161
		return cHtml;
162
	}
163
 
164
	protected void afficherOnglet(String template, Params parametres, TabItem onglet) {
165
		String cHtml = formaterContenu(template, parametres);
166
 
453 jp_milcent 167
		HtmlContainer corpsConteneurDuHtml = new HtmlContainer(cHtml);
168
		onglet.removeAll();
169
		onglet.add(corpsConteneurDuHtml);
170
	}
171
 
172
	protected String formaterAutre(String chaineAAfficher) {
173
		if (!chaineAAfficher.equals("")) {
174
			chaineAAfficher = " ["+i18nC.autres()+" : "+chaineAAfficher+"]";
175
		}
176
		return chaineAAfficher;
177
	}
178
 
179
	protected String formaterOuiNon(String chaineAFormater) {
180
		String txtARetourner = "";
181
		if (chaineAFormater.equals("0")) {
182
			txtARetourner = i18nC.non();
183
		} else if (chaineAFormater.equals("1")) {
184
			txtARetourner = i18nC.oui();
185
		}
186
		return txtARetourner;
187
	}
188
 
189
	protected String formaterSautDeLigne(String chaineAFormater) {
190
		String txtARetourner = chaineAFormater.replaceAll("\n", sautLigneTpl);
191
		return txtARetourner;
192
	}
193
 
813 jpm 194
	protected void lancerChargementListesValeurs(String[] listesCodes) {
1322 gduche 195
		lancerChargementListesValeurs(listesCodes, null);
196
	}
197
	protected void lancerChargementListesValeurs(String[] listesCodes, Sequenceur sequenceur) {
813 jpm 198
		Configuration configuration = (Configuration) Registry.get(RegistreId.CONFIG);
199
		for (int i = 0; i < listesCodes.length ; i++) {
200
			String code = listesCodes[i];
201
			ontologiesEnAttenteDeReception.put(configuration.getListeId(code), code);
1322 gduche 202
			mediateur.obtenirListeValeurEtRafraichir(this, code, sequenceur);
813 jpm 203
		}
204
	}
205
 
816 jpm 206
	protected void receptionerListeValeurs(ValeurListe listeValeursReceptionnee) {
1322 gduche 207
 
813 jpm 208
		mettreAJourOntologieEnAttenteDeReception(listeValeursReceptionnee);
209
		ajouterListeValeursAOntologie(listeValeursReceptionnee);
210
	}
211
 
212
	protected void mettreAJourOntologieEnAttenteDeReception(ValeurListe listeValeursReceptionnee) {
213
		ontologiesEnAttenteDeReception.remove(listeValeursReceptionnee.getId());
214
	}
215
 
216
	protected void ajouterListeValeursAOntologie(ValeurListe listeValeursReceptionnee) {
217
		Iterator<String> it = listeValeursReceptionnee.keySet().iterator();
453 jp_milcent 218
		while (it.hasNext()) {
219
			String cle = it.next();
813 jpm 220
			Valeur valeur = listeValeursReceptionnee.get(cle);
453 jp_milcent 221
			if (valeur != null) {
222
				ontologie.put(cle, valeur);
223
			}
224
		}
225
	}
524 gduche 226
 
936 jpm 227
	public String construireTxtListeOntologie(String chaineAAnalyser) {
967 jpm 228
		return construireTxtListeOntologie(chaineAAnalyser, true, true, false);
229
	}
230
 
231
	public String construireTxtListeOntologie(String chaineAAnalyser, boolean valeurEstOntologie, boolean typeEstOntologie, boolean donneeEstOntologie) {
524 gduche 232
		ArrayList<String> termes = new ArrayList<String>();
233
		ArrayList<String> autres = new ArrayList<String>();
1028 jpm 234
		chaineAAnalyser = chaineAAnalyser.trim();
235
		if (!UtilString.isEmpty(chaineAAnalyser)) {
961 jpm 236
			String[] valeurs = chaineAAnalyser.split(aDonnee.SEPARATEUR_VALEURS);
524 gduche 237
			int nbreValeurs = valeurs.length;
238
			if (nbreValeurs > 0)	{
239
				for (int i = 0; i < nbreValeurs; i++)	{
967 jpm 240
					String valeur = valeurs[i];
241
					// VALEUR SANS TYPE
242
					// La valeur sans type est une entrée de l'ontologie
243
					if (valeurEstOntologie && valeur.matches("^[0-9]+$"))	{
244
						if (valeur.equals("0")) {
245
							valeur = "";
246
						} else if (ontologie != null) {
1322 gduche 247
 
967 jpm 248
							Valeur valeurOntologie = ontologie.get(valeur);
249
							if (valeurOntologie != null) {
250
								valeur = valeurOntologie.getNom();
819 gduche 251
							}
524 gduche 252
						}
1322 gduche 253
 
967 jpm 254
					}
255
 
256
					// VALEUR AVEC TYPE
257
					// Type : AUTRE
258
					String valeurTypeAutre = aDonnee.TYPE_AUTRE+aDonnee.SEPARATEUR_TYPE_VALEUR;
1329 cyprien 259
					if (valeur.matches("^"+valeurTypeAutre+".*$")) {
967 jpm 260
						String txtAutre = valeur.replaceFirst("^"+valeurTypeAutre, "");
261
						if (!txtAutre.equals("")) {
262
							autres.add(txtAutre);
263
						}
264
						valeur = "";
265
					}
266
					// Type correspondant à une entrée de l'ontologie
267
					if (typeEstOntologie) {
268
						String valeurTypeOntologie = "[0-9]+"+aDonnee.SEPARATEUR_TYPE_VALEUR;
269
						if (valeur.matches("^"+valeurTypeOntologie+".+$")) {
270
							String type = valeur.substring(0, valeur.indexOf(aDonnee.SEPARATEUR_TYPE_VALEUR));
271
							if (ontologie != null && ontologie.get(type) != null) {
272
								Valeur valeurOntologie = ontologie.get(type);
273
								valeur = valeur.replaceFirst("^"+type, valeurOntologie.getNom()+": ");
524 gduche 274
							}
275
						}
276
					}
967 jpm 277
					// Donnée correspondant à une entrée de l'ontologie
278
					if (donneeEstOntologie) {
279
						String donneeOntologie = aDonnee.SEPARATEUR_TYPE_VALEUR+"[0-9]+";
280
						if (valeur.matches("^.+"+donneeOntologie+"$")) {
281
							String donnee = valeur.substring(valeur.indexOf(aDonnee.SEPARATEUR_TYPE_VALEUR), valeur.length());
282
							donnee = donnee.replaceFirst("^"+aDonnee.SEPARATEUR_TYPE_VALEUR, "");
283
							if (ontologie != null && ontologie.get(donnee) != null) {
284
								Valeur valeurOntologie = ontologie.get(donnee);
285
								valeur = valeur.replaceFirst(donnee+"$", valeurOntologie.getNom());
286
							}
287
						}
288
					}
289
 
290
					// Nettoyage final
291
					valeur = valeur.replaceFirst(aDonnee.SEPARATEUR_TYPE_VALEUR, "");
292
 
293
					if (!UtilString.isEmpty(valeur)) {
294
						termes.add(valeur);
295
					}
524 gduche 296
				}
297
			}
298
		}
299
 
300
		String chaineTermes = formaterTableauDeTxt(termes);
301
		String chaineAutres = formaterTableauDeTxt(autres);
302
		String chaineARetourner = chaineTermes+formaterAutre(chaineAutres);
303
 
304
		return chaineARetourner;
305
	}
453 jp_milcent 306
}