637 |
jp_milcent |
1 |
package org.tela_botanica.client.vues;
|
|
|
2 |
|
639 |
jp_milcent |
3 |
import java.util.Iterator;
|
687 |
jp_milcent |
4 |
import java.util.List;
|
639 |
jp_milcent |
5 |
|
980 |
jpm |
6 |
import org.tela_botanica.client.ComposantClass;
|
637 |
jp_milcent |
7 |
import org.tela_botanica.client.Mediateur;
|
687 |
jp_milcent |
8 |
import org.tela_botanica.client.RegistreId;
|
980 |
jpm |
9 |
import org.tela_botanica.client.composants.ChampComboBoxListeValeurs;
|
1218 |
cyprien |
10 |
import org.tela_botanica.client.composants.InfoLogger;
|
907 |
jpm |
11 |
import org.tela_botanica.client.configuration.Configuration;
|
637 |
jp_milcent |
12 |
import org.tela_botanica.client.i18n.Constantes;
|
1076 |
jpm |
13 |
import org.tela_botanica.client.i18n.ErrorMessages;
|
637 |
jp_milcent |
14 |
import org.tela_botanica.client.images.Images;
|
687 |
jp_milcent |
15 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
639 |
jp_milcent |
16 |
import org.tela_botanica.client.modeles.Valeur;
|
|
|
17 |
import org.tela_botanica.client.modeles.ValeurListe;
|
703 |
jp_milcent |
18 |
import org.tela_botanica.client.modeles.aDonneeListe;
|
1218 |
cyprien |
19 |
import org.tela_botanica.client.util.Debug;
|
637 |
jp_milcent |
20 |
|
687 |
jp_milcent |
21 |
import com.extjs.gxt.ui.client.Registry;
|
637 |
jp_milcent |
22 |
import com.extjs.gxt.ui.client.Style.HorizontalAlignment;
|
703 |
jp_milcent |
23 |
import com.extjs.gxt.ui.client.Style.SortDir;
|
639 |
jp_milcent |
24 |
import com.extjs.gxt.ui.client.event.BaseEvent;
|
637 |
jp_milcent |
25 |
import com.extjs.gxt.ui.client.event.ButtonEvent;
|
639 |
jp_milcent |
26 |
import com.extjs.gxt.ui.client.event.ComponentEvent;
|
|
|
27 |
import com.extjs.gxt.ui.client.event.Events;
|
|
|
28 |
import com.extjs.gxt.ui.client.event.Listener;
|
637 |
jp_milcent |
29 |
import com.extjs.gxt.ui.client.event.SelectionListener;
|
703 |
jp_milcent |
30 |
import com.extjs.gxt.ui.client.store.ListStore;
|
1164 |
jpm |
31 |
import com.extjs.gxt.ui.client.widget.Info;
|
637 |
jp_milcent |
32 |
import com.extjs.gxt.ui.client.widget.LayoutContainer;
|
|
|
33 |
import com.extjs.gxt.ui.client.widget.TabItem;
|
934 |
jpm |
34 |
import com.extjs.gxt.ui.client.widget.button.Button;
|
637 |
jp_milcent |
35 |
import com.extjs.gxt.ui.client.widget.button.ButtonBar;
|
639 |
jp_milcent |
36 |
import com.extjs.gxt.ui.client.widget.form.CheckBox;
|
|
|
37 |
import com.extjs.gxt.ui.client.widget.form.CheckBoxGroup;
|
703 |
jp_milcent |
38 |
import com.extjs.gxt.ui.client.widget.form.ComboBox;
|
639 |
jp_milcent |
39 |
import com.extjs.gxt.ui.client.widget.form.Field;
|
637 |
jp_milcent |
40 |
import com.extjs.gxt.ui.client.widget.form.FormPanel;
|
639 |
jp_milcent |
41 |
import com.extjs.gxt.ui.client.widget.form.Radio;
|
|
|
42 |
import com.extjs.gxt.ui.client.widget.form.RadioGroup;
|
980 |
jpm |
43 |
import com.extjs.gxt.ui.client.widget.form.TextArea;
|
|
|
44 |
import com.extjs.gxt.ui.client.widget.form.TextField;
|
639 |
jp_milcent |
45 |
import com.extjs.gxt.ui.client.widget.form.FormPanel.LabelAlign;
|
637 |
jp_milcent |
46 |
import com.extjs.gxt.ui.client.widget.layout.FitLayout;
|
639 |
jp_milcent |
47 |
import com.extjs.gxt.ui.client.widget.layout.FormData;
|
637 |
jp_milcent |
48 |
import com.extjs.gxt.ui.client.widget.layout.FormLayout;
|
639 |
jp_milcent |
49 |
import com.extjs.gxt.ui.client.widget.tips.ToolTipConfig;
|
687 |
jp_milcent |
50 |
import com.google.gwt.core.client.GWT;
|
637 |
jp_milcent |
51 |
|
687 |
jp_milcent |
52 |
public abstract class Formulaire extends LayoutContainer implements Rafraichissable {
|
637 |
jp_milcent |
53 |
|
|
|
54 |
public static final String MODE_AJOUTER = "AJOUT";
|
|
|
55 |
public static final String MODE_MODIFIER = "MODIF";
|
|
|
56 |
|
934 |
jpm |
57 |
public Constantes i18nC = null;
|
1076 |
jpm |
58 |
public ErrorMessages i18nM = null;
|
934 |
jpm |
59 |
public Mediateur mediateur = null;
|
|
|
60 |
public Configuration config = null;
|
687 |
jp_milcent |
61 |
|
934 |
jpm |
62 |
public String mode = null;
|
|
|
63 |
public int tabIndex = 100;
|
637 |
jp_milcent |
64 |
|
934 |
jpm |
65 |
public FormPanel panneauFormulaire = null;
|
|
|
66 |
public ButtonBar barreOutilsValidation = null;
|
775 |
jpm |
67 |
|
934 |
jpm |
68 |
public String menuIdCourant = null;
|
|
|
69 |
public static Boolean clicBoutonvalidation = false;
|
|
|
70 |
public Rafraichissable vueExterneARafraichirApresValidation = null;
|
775 |
jpm |
71 |
|
|
|
72 |
public FormPanel getFormulaire() {
|
|
|
73 |
return panneauFormulaire;
|
|
|
74 |
}
|
639 |
jp_milcent |
75 |
|
648 |
jp_milcent |
76 |
public void initialiserFormulaire(Mediateur mediateurCourrant, String modeDeCreation, String idMenuCourrant) {
|
637 |
jp_milcent |
77 |
// Initialisation de variables
|
|
|
78 |
mode = modeDeCreation;
|
|
|
79 |
mediateur = mediateurCourrant;
|
|
|
80 |
i18nC = Mediateur.i18nC;
|
1077 |
jpm |
81 |
i18nM = Mediateur.i18nM;
|
648 |
jp_milcent |
82 |
menuIdCourant = idMenuCourrant;
|
687 |
jp_milcent |
83 |
config = (Configuration) Registry.get(RegistreId.CONFIG);
|
648 |
jp_milcent |
84 |
|
637 |
jp_milcent |
85 |
// Iniatilisation du layoutContainer
|
|
|
86 |
setLayout(new FitLayout());
|
|
|
87 |
setBorders(false);
|
|
|
88 |
|
|
|
89 |
// Création du panneau du FORMULAIRE GÉNÉRAL
|
|
|
90 |
panneauFormulaire = new FormPanel();
|
|
|
91 |
panneauFormulaire.setBodyBorder(false);
|
|
|
92 |
panneauFormulaire.setFrame(true);
|
775 |
jpm |
93 |
panneauFormulaire.setCollapsible(false);
|
637 |
jp_milcent |
94 |
panneauFormulaire.setButtonAlign(HorizontalAlignment.CENTER);
|
|
|
95 |
panneauFormulaire.setLayout(new FitLayout());
|
775 |
jpm |
96 |
|
|
|
97 |
if (modeDeCreation.equals(MODE_AJOUTER)) {
|
|
|
98 |
panneauFormulaire.setIcon(Images.ICONES.formAjouter());
|
|
|
99 |
} else if (modeDeCreation.equals(MODE_AJOUTER)) {
|
|
|
100 |
panneauFormulaire.setIcon(Images.ICONES.formModifier());
|
|
|
101 |
}
|
639 |
jp_milcent |
102 |
|
775 |
jpm |
103 |
barreOutilsValidation = new FormulaireBarreValidation(creerEcouteurValidation());
|
|
|
104 |
panneauFormulaire.setBottomComponent(barreOutilsValidation);
|
648 |
jp_milcent |
105 |
|
|
|
106 |
add(panneauFormulaire);
|
637 |
jp_milcent |
107 |
}
|
|
|
108 |
|
934 |
jpm |
109 |
public SelectionListener<ButtonEvent> creerEcouteurValidation() {
|
|
|
110 |
SelectionListener<ButtonEvent> ecouteur = new SelectionListener<ButtonEvent>() {
|
|
|
111 |
public void componentSelected(ButtonEvent ce) {
|
1218 |
cyprien |
112 |
|
934 |
jpm |
113 |
String code = ((Button) ce.getComponent()).getData("code");
|
|
|
114 |
if (code.equals(FormulaireBarreValidation.CODE_BOUTON_VALIDER)) {
|
1164 |
jpm |
115 |
if (mediateur.getUtilisateur().isIdentifie()) {
|
1218 |
cyprien |
116 |
clicBoutonvalidation = true;
|
1164 |
jpm |
117 |
soumettreFormulaire();
|
1218 |
cyprien |
118 |
|
1164 |
jpm |
119 |
} else {
|
1218 |
cyprien |
120 |
InfoLogger.display(i18nC.modeAnonyme(), i18nC.identificationNecessaire());
|
1164 |
jpm |
121 |
}
|
934 |
jpm |
122 |
} else if (code.equals(FormulaireBarreValidation.CODE_BOUTON_APPLIQUER)) {
|
1164 |
jpm |
123 |
if (mediateur.getUtilisateur().isIdentifie()) {
|
|
|
124 |
soumettreFormulaire();
|
|
|
125 |
} else {
|
1218 |
cyprien |
126 |
InfoLogger.display(i18nC.modeAnonyme(), i18nC.identificationNecessaire());
|
1164 |
jpm |
127 |
}
|
934 |
jpm |
128 |
} else if (code.equals(FormulaireBarreValidation.CODE_BOUTON_ANNULER)) {
|
|
|
129 |
mediateur.clicMenu(menuIdCourant);
|
|
|
130 |
} else if (code.equals(FormulaireBarreValidation.CODE_BOUTON_REINITIALISER)) {
|
|
|
131 |
reinitialiserFormulaire();
|
|
|
132 |
}
|
|
|
133 |
}
|
|
|
134 |
};
|
|
|
135 |
|
|
|
136 |
return ecouteur;
|
|
|
137 |
}
|
637 |
jp_milcent |
138 |
|
934 |
jpm |
139 |
public abstract boolean verifierFormulaire();
|
787 |
jpm |
140 |
|
934 |
jpm |
141 |
public abstract boolean soumettreFormulaire();
|
782 |
jpm |
142 |
|
934 |
jpm |
143 |
public abstract void reinitialiserFormulaire();
|
|
|
144 |
|
|
|
145 |
public TabItem creerOnglet(String nom, String id) {
|
637 |
jp_milcent |
146 |
TabItem onglet = new TabItem();
|
|
|
147 |
onglet.setId(id);
|
|
|
148 |
onglet.setText(nom);
|
687 |
jp_milcent |
149 |
FormulaireOnglet.parametrer(onglet);
|
637 |
jp_milcent |
150 |
return onglet;
|
|
|
151 |
}
|
639 |
jp_milcent |
152 |
|
1233 |
cyprien |
153 |
public void controlerFermeture() {
|
639 |
jp_milcent |
154 |
if (clicBoutonvalidation) {
|
782 |
jpm |
155 |
fermerFormulaire();
|
1233 |
cyprien |
156 |
}
|
639 |
jp_milcent |
157 |
}
|
|
|
158 |
|
934 |
jpm |
159 |
public void fermerFormulaire() {
|
782 |
jpm |
160 |
clicBoutonvalidation = false;
|
|
|
161 |
panneauFormulaire.setEnabled(false);
|
1233 |
cyprien |
162 |
mediateur.clicMenu(menuIdCourant);
|
782 |
jpm |
163 |
}
|
|
|
164 |
|
639 |
jp_milcent |
165 |
/** Méthode simplifiant la création de FormLayout.
|
|
|
166 |
* Chacun des paramètres peut prendre la valeur null pour utiliser la valeur par défaut.
|
|
|
167 |
*
|
|
|
168 |
* @param labelWidth largeur des labels.
|
|
|
169 |
* @param labelAlign alignement des labels
|
|
|
170 |
* @return
|
|
|
171 |
*/
|
912 |
jpm |
172 |
public static FormLayout creerFormLayout(Integer labelWidth, LabelAlign labelAlign) {
|
639 |
jp_milcent |
173 |
FormLayout formLayout = new FormLayout();
|
|
|
174 |
if (labelWidth != null) {
|
|
|
175 |
formLayout.setLabelWidth(labelWidth);
|
|
|
176 |
}
|
|
|
177 |
if (labelAlign != null) {
|
|
|
178 |
formLayout.setLabelAlign(labelAlign);
|
|
|
179 |
}
|
|
|
180 |
return formLayout;
|
|
|
181 |
}
|
|
|
182 |
|
|
|
183 |
/** Méthode simplifiant la création de bouton radio oui/non
|
|
|
184 |
*
|
|
|
185 |
* @param listeNom nom de la liste de valeur
|
|
|
186 |
* @return
|
|
|
187 |
*/
|
934 |
jpm |
188 |
public RadioGroup creerChoixUniqueRadioGroupe(String groupeNom, String listeNom) {
|
639 |
jp_milcent |
189 |
groupeNom += "_grp";
|
|
|
190 |
// NOTE : il semblerait qu'il faille aussi utiliser setName() pour éviter tout problème...
|
|
|
191 |
RadioGroup radioGroup = new RadioGroup(groupeNom);
|
|
|
192 |
radioGroup.setName(groupeNom);
|
|
|
193 |
|
|
|
194 |
if (listeNom.equals("ouiNon")) {
|
|
|
195 |
ValeurListe ouiNonListe = new ValeurListe();
|
|
|
196 |
ouiNonListe.ajouter(new Valeur("1", i18nC.oui(), "NULL", "NULL"));
|
|
|
197 |
ouiNonListe.ajouter(new Valeur("0", i18nC.non(), "NULL", "NULL"));
|
|
|
198 |
creerChoixUniqueBoutonRadio(radioGroup, ouiNonListe);
|
|
|
199 |
}
|
|
|
200 |
|
|
|
201 |
return radioGroup;
|
|
|
202 |
}
|
|
|
203 |
|
934 |
jpm |
204 |
public void creerChoixUniqueBoutonRadio(RadioGroup radioGroupe, ValeurListe listeValeurs) {
|
639 |
jp_milcent |
205 |
for (Iterator<String> it = listeValeurs.keySet().iterator(); it.hasNext();) {
|
|
|
206 |
Valeur val = listeValeurs.get(it.next());
|
|
|
207 |
|
|
|
208 |
Radio radioBtn = new Radio();
|
|
|
209 |
radioBtn.setName(radioGroupe.getName().replace("_grp", ""));
|
|
|
210 |
radioBtn.setId(val.getId()+"_"+radioBtn.getName());
|
|
|
211 |
radioBtn.setBoxLabel(val.getNom());
|
|
|
212 |
radioBtn.setValueAttribute(val.getId());
|
|
|
213 |
radioBtn.addListener(Events.Change, new Listener<ComponentEvent>() {
|
|
|
214 |
|
|
|
215 |
public void handleEvent(ComponentEvent be) {
|
|
|
216 |
//Window.alert(((Radio) be.component).getName());
|
|
|
217 |
afficherChampSupplementaire(((Radio) be.getComponent()));
|
|
|
218 |
}
|
|
|
219 |
|
|
|
220 |
});
|
|
|
221 |
|
|
|
222 |
if (! val.getDescription().equals("NULL")) {
|
|
|
223 |
radioBtn.setToolTip(new ToolTipConfig(val.getNom(), val.getDescription()));
|
|
|
224 |
}
|
|
|
225 |
radioGroupe.add(radioBtn);
|
|
|
226 |
}
|
|
|
227 |
}
|
|
|
228 |
|
934 |
jpm |
229 |
public void afficherChampSupplementaire(Radio radioBtn) {
|
775 |
jpm |
230 |
GWT.log("Vous devez redéfinir la méthode afficherChampSupplementaire(Radio radioBtn) dans votre classe formulaire.", null);
|
|
|
231 |
};
|
639 |
jp_milcent |
232 |
|
|
|
233 |
/** Méthode simplifiant la création de choix multiple sous forme de case à cocher.
|
|
|
234 |
* Apelle un service retournant la liste des valeurs représentant les cases à cocher.
|
|
|
235 |
* Ajoute ou pas un champ "Autre".
|
|
|
236 |
*
|
|
|
237 |
* @return ContentPanel le panneau contenant les cases à cocher
|
|
|
238 |
*/
|
831 |
jpm |
239 |
public static LayoutContainer creerChoixMultipleCp() {
|
639 |
jp_milcent |
240 |
LayoutContainer conteneur = new LayoutContainer();
|
|
|
241 |
conteneur.setLayout(creerFormLayout(650, LabelAlign.TOP));
|
|
|
242 |
return conteneur;
|
|
|
243 |
}
|
|
|
244 |
|
|
|
245 |
/** Méthode simplifiant la création de choix multiple sous forme de case à cocher.
|
|
|
246 |
* Apelle un service retournant la liste des valeurs représentant les cases à cocher.
|
|
|
247 |
* Ajoute ou pas un champ "Autre".
|
|
|
248 |
*
|
|
|
249 |
* @param cp panneau conteant le groupe de case à cocher
|
|
|
250 |
* @param cacGroup le groupe de case à cocher
|
|
|
251 |
* @param listeValeurs la liste de valeurs à transformer en case à cocher
|
|
|
252 |
* @param boolAutreChp booléen indiquant si oui ou non le champ autre doit apparaître
|
|
|
253 |
* @return
|
|
|
254 |
*/
|
831 |
jpm |
255 |
public static void creerChoixMultipleCac(LayoutContainer cp, final CheckBoxGroup cacGroupe, ValeurListe listeValeurs, final Field<String> autreChp) {
|
639 |
jp_milcent |
256 |
cp.addListener(Events.Hide, new Listener<BaseEvent>() {
|
|
|
257 |
public void handleEvent(BaseEvent be) {
|
|
|
258 |
cacGroupe.reset();
|
|
|
259 |
autreChp.setValue("");
|
|
|
260 |
}
|
|
|
261 |
|
|
|
262 |
});
|
|
|
263 |
|
|
|
264 |
cacGroupe.setAutoWidth(true);
|
|
|
265 |
cacGroupe.setStyleAttribute("padding", "3px");
|
|
|
266 |
cacGroupe.setData("liste_id", listeValeurs.getId());
|
|
|
267 |
for (Iterator<String> it = listeValeurs.keySet().iterator(); it.hasNext();) {
|
|
|
268 |
Valeur val = listeValeurs.get(it.next());
|
|
|
269 |
String nom = val.get("nom");
|
|
|
270 |
CheckBox cac = new CheckBox();
|
|
|
271 |
cac.setId("val-"+val.getId());
|
|
|
272 |
cac.setData("id", val.getId());
|
|
|
273 |
cac.setBoxLabel(nom);
|
|
|
274 |
if (! val.getDescription().equals("NULL")) {
|
|
|
275 |
cac.setToolTip(new ToolTipConfig(val.getNom(), val.getDescription()));
|
|
|
276 |
}
|
|
|
277 |
cacGroupe.add(cac);
|
|
|
278 |
}
|
|
|
279 |
cp.add(cacGroupe);
|
|
|
280 |
|
|
|
281 |
if (autreChp != null) {
|
|
|
282 |
// FIXME : éviter le chevauchement du texte des cases à cocher avec le label "Autre" sur les petits écrans
|
|
|
283 |
LayoutContainer conteneur = new LayoutContainer();
|
|
|
284 |
conteneur.setLayout(creerFormLayout(50, LabelAlign.TOP));
|
|
|
285 |
autreChp.setFieldLabel("Autre");
|
|
|
286 |
autreChp.setLabelStyle("font-weight:normal;");
|
|
|
287 |
conteneur.add(autreChp, new FormData(500, 0));
|
|
|
288 |
|
|
|
289 |
cp.add(conteneur);
|
|
|
290 |
}
|
|
|
291 |
cp.layout();
|
|
|
292 |
}
|
687 |
jp_milcent |
293 |
|
703 |
jp_milcent |
294 |
@SuppressWarnings({"unchecked"})
|
831 |
jpm |
295 |
public static void rafraichirComboBox(aDonneeListe<?> listeValeurs, ComboBox combo) {
|
|
|
296 |
rafraichirComboBox(listeValeurs, combo, "nom");
|
|
|
297 |
}
|
|
|
298 |
|
|
|
299 |
@SuppressWarnings({"unchecked"})
|
|
|
300 |
public static void rafraichirComboBox(aDonneeListe<?> listeValeurs, ComboBox combo, String champATrier) {
|
703 |
jp_milcent |
301 |
List<?> liste = listeValeurs.toList();
|
|
|
302 |
if (liste.size() > 0) {
|
831 |
jpm |
303 |
ListStore store = combo.getStore();
|
703 |
jp_milcent |
304 |
store.removeAll();
|
|
|
305 |
store.add(liste);
|
831 |
jpm |
306 |
store.sort(champATrier, SortDir.ASC);
|
703 |
jp_milcent |
307 |
combo.setStore(store);
|
|
|
308 |
}
|
|
|
309 |
}
|
980 |
jpm |
310 |
|
|
|
311 |
public static Listener<BaseEvent> creerEcouteurChampObligatoire() {
|
|
|
312 |
return new Listener<BaseEvent>() {
|
|
|
313 |
public void handleEvent(BaseEvent be) {
|
|
|
314 |
Field<?> champ = null;
|
|
|
315 |
boolean etreVide = true;
|
|
|
316 |
if (be.getSource() instanceof TextField<?>) {
|
|
|
317 |
champ = (TextField<?>) be.getSource();
|
|
|
318 |
etreVide = (champ.getRawValue().isEmpty()) ? true : false;
|
|
|
319 |
} else if (be.getSource() instanceof TextArea) {
|
|
|
320 |
champ = (TextArea) be.getSource();
|
|
|
321 |
etreVide = (champ.getRawValue().isEmpty()) ? true : false;
|
|
|
322 |
} else if (be.getSource() instanceof ChampComboBoxListeValeurs) {
|
|
|
323 |
champ = (ChampComboBoxListeValeurs) be.getSource();
|
|
|
324 |
etreVide = (champ.getValue() == null) ? true : false;
|
|
|
325 |
} else if (be.getSource() instanceof ComboBox<?>) {
|
|
|
326 |
champ = (ComboBox<?>) be.getSource();
|
|
|
327 |
etreVide = (champ.getValue() == null) ? true : false;
|
|
|
328 |
}
|
|
|
329 |
champ.removeStyleName(ComposantClass.OBLIGATOIRE);
|
|
|
330 |
champ.removeStyleName(ComposantClass.OBLIGATOIRE_OK);
|
|
|
331 |
if (etreVide == false) {
|
|
|
332 |
champ.addStyleName(ComposantClass.OBLIGATOIRE_OK);
|
|
|
333 |
} else {
|
|
|
334 |
champ.addStyleName(ComposantClass.OBLIGATOIRE);
|
|
|
335 |
}
|
|
|
336 |
}
|
|
|
337 |
};
|
|
|
338 |
}
|
687 |
jp_milcent |
339 |
}
|