453 |
jp_milcent |
1 |
package org.tela_botanica.client.vues;
|
|
|
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;
|
|
|
9 |
import org.tela_botanica.client.i18n.Constantes;
|
|
|
10 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
|
|
11 |
import org.tela_botanica.client.modeles.Projet;
|
|
|
12 |
import org.tela_botanica.client.modeles.ProjetListe;
|
|
|
13 |
import org.tela_botanica.client.modeles.Valeur;
|
|
|
14 |
import org.tela_botanica.client.modeles.ValeurListe;
|
|
|
15 |
|
|
|
16 |
import com.extjs.gxt.ui.client.Style.Scroll;
|
|
|
17 |
import com.extjs.gxt.ui.client.util.Format;
|
|
|
18 |
import com.extjs.gxt.ui.client.util.Params;
|
|
|
19 |
import com.extjs.gxt.ui.client.widget.HtmlContainer;
|
|
|
20 |
import com.extjs.gxt.ui.client.widget.LayoutContainer;
|
|
|
21 |
import com.extjs.gxt.ui.client.widget.TabItem;
|
|
|
22 |
import com.extjs.gxt.ui.client.widget.layout.FitLayout;
|
|
|
23 |
import com.google.gwt.core.client.GWT;
|
|
|
24 |
|
|
|
25 |
public abstract class DetailVue extends LayoutContainer implements Rafraichissable {
|
|
|
26 |
|
|
|
27 |
protected Mediateur mediateur = null;
|
|
|
28 |
protected Constantes i18nC = null;
|
|
|
29 |
|
|
|
30 |
protected HashMap<String, Valeur> ontologie = null;
|
|
|
31 |
protected ProjetListe projets = null;
|
|
|
32 |
|
|
|
33 |
protected String sautLigneTpl = null;
|
|
|
34 |
|
|
|
35 |
public DetailVue(Mediateur mediateurCourant) {
|
|
|
36 |
mediateur = mediateurCourant;
|
|
|
37 |
i18nC = mediateur.i18nC;
|
|
|
38 |
|
|
|
39 |
initialiserSautLigneTpl();
|
|
|
40 |
|
|
|
41 |
ontologie = new HashMap<String, Valeur>();
|
|
|
42 |
chargerOntologie();
|
|
|
43 |
|
|
|
44 |
setLayout(new FitLayout());
|
|
|
45 |
setBorders(false);
|
|
|
46 |
setScrollMode(Scroll.AUTO);
|
|
|
47 |
}
|
|
|
48 |
|
|
|
49 |
private void initialiserSautLigneTpl() {
|
|
|
50 |
sautLigneTpl = "<br />\n";
|
|
|
51 |
}
|
|
|
52 |
|
|
|
53 |
private void chargerOntologie() {
|
|
|
54 |
mediateur.selectionnerProjets(this);
|
|
|
55 |
}
|
|
|
56 |
|
|
|
57 |
protected String construireTxtProjet(String idProjet) {
|
|
|
58 |
String chaineARetourner = idProjet;
|
|
|
59 |
|
|
|
60 |
if (projets != null) {
|
|
|
61 |
Projet projet = projets.get(idProjet);
|
|
|
62 |
String nomDuProjet = projet.getNom();
|
|
|
63 |
if (!nomDuProjet.equals("")) {
|
|
|
64 |
chaineARetourner = nomDuProjet;
|
|
|
65 |
}
|
|
|
66 |
}
|
|
|
67 |
|
|
|
68 |
return chaineARetourner;
|
|
|
69 |
}
|
|
|
70 |
|
|
|
71 |
protected String construireTxtTruck(String chaineAAnalyser) {
|
|
|
72 |
ArrayList<String> termes = new ArrayList<String>();
|
|
|
73 |
|
|
|
74 |
if ((chaineAAnalyser != null) && (!chaineAAnalyser.trim().equals(""))) {
|
|
|
75 |
String[] valeurs = chaineAAnalyser.split(";;");
|
|
|
76 |
int nbreValeurs = valeurs.length;
|
|
|
77 |
if (nbreValeurs > 0) {
|
|
|
78 |
for (int i = 0; i < nbreValeurs; i++) {
|
|
|
79 |
String valeur = valeurs[i];
|
|
|
80 |
String valeurFormatee = formaterValeurTruck(valeur);
|
|
|
81 |
termes.add(valeurFormatee);
|
|
|
82 |
}
|
|
|
83 |
}
|
|
|
84 |
}
|
|
|
85 |
|
|
|
86 |
String chaineARetourner = formaterTableauDeTxt(termes);
|
|
|
87 |
return chaineARetourner;
|
|
|
88 |
}
|
|
|
89 |
|
|
|
90 |
private String formaterValeurTruck(String valeur) {
|
|
|
91 |
String chaineARetourner = "";
|
|
|
92 |
|
|
|
93 |
if (valeur.matches("^[^#]+##[^$]+$")) {
|
|
|
94 |
String[] cleValeur = valeur.split("##");
|
|
|
95 |
chaineARetourner = cleValeur[1]+" "+formaterParenthese(cleValeur[0]);
|
|
|
96 |
} else if (!valeur.equals("")) {
|
|
|
97 |
chaineARetourner = valeur;
|
|
|
98 |
} else {
|
|
|
99 |
GWT.log("Valeur truck posant problèlme :"+valeur, null);
|
|
|
100 |
}
|
|
|
101 |
|
|
|
102 |
return chaineARetourner;
|
|
|
103 |
}
|
|
|
104 |
|
|
|
105 |
protected String formaterParenthese(String chaineAAfficher) {
|
|
|
106 |
if (!chaineAAfficher.equals("")) {
|
|
|
107 |
chaineAAfficher = "("+chaineAAfficher+")";
|
|
|
108 |
}
|
|
|
109 |
return chaineAAfficher;
|
|
|
110 |
}
|
|
|
111 |
|
|
|
112 |
protected String formaterTableauDeTxt(ArrayList<String> tableauDeTxt) {
|
|
|
113 |
String chaineAAfficher = "";
|
|
|
114 |
int tailleDuTableau = tableauDeTxt.size();
|
|
|
115 |
if (tailleDuTableau > 0) {
|
|
|
116 |
int indexAvtDernier = tailleDuTableau - 1;
|
|
|
117 |
for (int i = 0; i < tailleDuTableau; i++) {
|
|
|
118 |
String mot = tableauDeTxt.get(i);
|
|
|
119 |
if (i != indexAvtDernier) {
|
|
|
120 |
chaineAAfficher += mot+", ";
|
|
|
121 |
} else {
|
|
|
122 |
chaineAAfficher += nettoyerPointFinal(mot)+".";
|
|
|
123 |
}
|
|
|
124 |
}
|
|
|
125 |
}
|
|
|
126 |
return chaineAAfficher;
|
|
|
127 |
}
|
|
|
128 |
|
|
|
129 |
protected String nettoyerPointFinal(String mot) {
|
|
|
130 |
mot = mot.replaceAll("[.]$", "");
|
|
|
131 |
return mot;
|
|
|
132 |
}
|
|
|
133 |
|
|
|
134 |
protected void afficherOnglet(String template, Params parametres, TabItem onglet) {
|
|
|
135 |
String cHtml = Format.substitute(template, parametres);
|
|
|
136 |
|
|
|
137 |
Params cssParams = new Params();
|
|
|
138 |
cssParams.set("css_corps", ComposantClass.DETAIL_CORPS_CONTENU);
|
|
|
139 |
cssParams.set("css_label", ComposantClass.LABEL);
|
|
|
140 |
cssParams.set("css_indentation", ComposantClass.INDENTATION);
|
|
|
141 |
cssParams.set("css_fieldset", ComposantClass.FIELDSET);
|
|
|
142 |
cssParams.set("css_clear", ComposantClass.CLEAR);
|
|
|
143 |
cHtml = Format.substitute(cHtml, cssParams);
|
|
|
144 |
|
|
|
145 |
HtmlContainer corpsConteneurDuHtml = new HtmlContainer(cHtml);
|
|
|
146 |
onglet.removeAll();
|
|
|
147 |
onglet.add(corpsConteneurDuHtml);
|
|
|
148 |
}
|
|
|
149 |
|
|
|
150 |
protected String formaterAutre(String chaineAAfficher) {
|
|
|
151 |
if (!chaineAAfficher.equals("")) {
|
|
|
152 |
chaineAAfficher = " ["+i18nC.autres()+" : "+chaineAAfficher+"]";
|
|
|
153 |
}
|
|
|
154 |
return chaineAAfficher;
|
|
|
155 |
}
|
|
|
156 |
|
|
|
157 |
protected String formaterOuiNon(String chaineAFormater) {
|
|
|
158 |
String txtARetourner = "";
|
|
|
159 |
if (chaineAFormater.equals("0")) {
|
|
|
160 |
txtARetourner = i18nC.non();
|
|
|
161 |
} else if (chaineAFormater.equals("1")) {
|
|
|
162 |
txtARetourner = i18nC.oui();
|
|
|
163 |
}
|
|
|
164 |
return txtARetourner;
|
|
|
165 |
}
|
|
|
166 |
|
|
|
167 |
protected String formaterSautDeLigne(String chaineAFormater) {
|
|
|
168 |
String txtARetourner = chaineAFormater.replaceAll("\n", sautLigneTpl);
|
|
|
169 |
return txtARetourner;
|
|
|
170 |
}
|
|
|
171 |
|
|
|
172 |
protected void ajouterListeValeursAOntologie(ValeurListe ontologieReceptionnee) {
|
|
|
173 |
Iterator<String> it = ontologieReceptionnee.keySet().iterator();
|
|
|
174 |
while (it.hasNext()) {
|
|
|
175 |
String cle = it.next();
|
|
|
176 |
Valeur valeur = ontologieReceptionnee.get(cle);
|
|
|
177 |
if (valeur != null) {
|
|
|
178 |
ontologie.put(cle, valeur);
|
|
|
179 |
}
|
|
|
180 |
}
|
|
|
181 |
}
|
|
|
182 |
}
|