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