721 |
gduche |
1 |
package org.tela_botanica.client.composants;
|
|
|
2 |
|
|
|
3 |
import org.tela_botanica.client.Mediateur;
|
|
|
4 |
import org.tela_botanica.client.RegistreId;
|
907 |
jpm |
5 |
import org.tela_botanica.client.configuration.Configuration;
|
721 |
gduche |
6 |
import org.tela_botanica.client.images.Images;
|
|
|
7 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
|
|
8 |
import org.tela_botanica.client.modeles.Valeur;
|
|
|
9 |
import org.tela_botanica.client.modeles.ValeurListe;
|
955 |
jpm |
10 |
import org.tela_botanica.client.modeles.aDonnee;
|
1318 |
gduche |
11 |
import org.tela_botanica.client.synchronisation.Sequenceur;
|
1468 |
jpm |
12 |
import org.tela_botanica.client.util.Debug;
|
857 |
jpm |
13 |
import org.tela_botanica.client.vues.Formulaire;
|
721 |
gduche |
14 |
|
|
|
15 |
import com.extjs.gxt.ui.client.Registry;
|
|
|
16 |
import com.extjs.gxt.ui.client.event.ButtonEvent;
|
|
|
17 |
import com.extjs.gxt.ui.client.event.SelectionListener;
|
|
|
18 |
import com.extjs.gxt.ui.client.store.ListStore;
|
|
|
19 |
import com.extjs.gxt.ui.client.widget.LayoutContainer;
|
|
|
20 |
import com.extjs.gxt.ui.client.widget.Text;
|
|
|
21 |
import com.extjs.gxt.ui.client.widget.button.Button;
|
|
|
22 |
import com.extjs.gxt.ui.client.widget.layout.ColumnData;
|
|
|
23 |
import com.extjs.gxt.ui.client.widget.layout.ColumnLayout;
|
|
|
24 |
|
857 |
jpm |
25 |
public class ChampMultiValeursMultiTypes extends ChampMultiValeurs implements Rafraichissable {
|
721 |
gduche |
26 |
|
|
|
27 |
private Configuration config = (Configuration) Registry.get(RegistreId.CONFIG);
|
857 |
jpm |
28 |
private String idListeType = null;
|
|
|
29 |
private String idListeCombo = null;
|
721 |
gduche |
30 |
|
|
|
31 |
public ChampMultiValeursMultiTypes() {
|
971 |
gduche |
32 |
super(false, true, null, 0, 0);
|
721 |
gduche |
33 |
}
|
|
|
34 |
|
|
|
35 |
public ChampMultiValeursMultiTypes(String label) {
|
971 |
gduche |
36 |
super(false, true, label, 0, 0);
|
721 |
gduche |
37 |
}
|
|
|
38 |
|
971 |
gduche |
39 |
public ChampMultiValeursMultiTypes(String label, int largeurTotale, int largeurType) {
|
|
|
40 |
super(false, true, label, largeurTotale, largeurType);
|
721 |
gduche |
41 |
}
|
|
|
42 |
|
857 |
jpm |
43 |
public ChampMultiValeursMultiTypes(String label, int largeurTotale, boolean combobox) {
|
861 |
jpm |
44 |
super(true, true, label, largeurTotale, largeurTotale);
|
857 |
jpm |
45 |
}
|
|
|
46 |
|
861 |
jpm |
47 |
public ChampMultiValeursMultiTypes(String label, int largeurTotale, int largeurType, boolean combobox) {
|
|
|
48 |
super(true, true, label, largeurTotale, largeurType);
|
|
|
49 |
}
|
|
|
50 |
|
857 |
jpm |
51 |
public void initialiserType(String idListe) {
|
1318 |
gduche |
52 |
initialiserType(idListe, null);
|
|
|
53 |
}
|
|
|
54 |
|
|
|
55 |
public void initialiserType(String idListe, Sequenceur sequenceur) {
|
857 |
jpm |
56 |
Mediateur mediateur = (Mediateur) Registry.get(RegistreId.MEDIATEUR);
|
|
|
57 |
idListeType = idListe;
|
1318 |
gduche |
58 |
mediateur.obtenirListeValeurEtRafraichir(this, idListeType, sequenceur);
|
721 |
gduche |
59 |
}
|
|
|
60 |
|
857 |
jpm |
61 |
public void initialiserCombobox(String idListe) {
|
|
|
62 |
Mediateur mediateur = (Mediateur) Registry.get(RegistreId.MEDIATEUR);
|
|
|
63 |
this.idListeCombo = idListe;
|
1318 |
gduche |
64 |
mediateur.obtenirListeValeurEtRafraichir(this, idListeCombo, null);
|
721 |
gduche |
65 |
}
|
|
|
66 |
|
|
|
67 |
public void rafraichir(Object nouvellesDonnees) {
|
|
|
68 |
if (nouvellesDonnees instanceof ValeurListe) {
|
|
|
69 |
ValeurListe listeValeurs = (ValeurListe) nouvellesDonnees;
|
|
|
70 |
if (listeValeurs.getId().equals(config.getListeId(idListeType))) {
|
857 |
jpm |
71 |
Formulaire.rafraichirComboBox(listeValeurs, types);
|
|
|
72 |
} else if (listeValeurs.getId().equals(config.getListeId(idListeCombo))) {
|
|
|
73 |
Formulaire.rafraichirComboBox(listeValeurs, champValeurCombo, "id_valeur");
|
721 |
gduche |
74 |
}
|
857 |
jpm |
75 |
}
|
721 |
gduche |
76 |
}
|
|
|
77 |
|
857 |
jpm |
78 |
public void ajouterValeur(final String texte, final String type, final String id) {
|
1468 |
jpm |
79 |
|
861 |
jpm |
80 |
LayoutContainer colonneConteneur = new LayoutContainer();
|
|
|
81 |
colonneConteneur.setLayout(new ColumnLayout());
|
955 |
jpm |
82 |
valeurs.put(id + aDonnee.SEPARATEUR_TYPE_VALEUR + texte, colonneConteneur);
|
721 |
gduche |
83 |
|
861 |
jpm |
84 |
Text champType = new Text();
|
|
|
85 |
champType.setText(type + " : ");
|
|
|
86 |
champType.setWidth(largeurType);
|
|
|
87 |
colonneConteneur.add(champType, new ColumnData(largeurType));
|
721 |
gduche |
88 |
|
1468 |
jpm |
89 |
// on recupere le nom de la valeur à partir de son id
|
|
|
90 |
|
|
|
91 |
String texteValeur = texte;
|
|
|
92 |
if (estComboBox) {
|
|
|
93 |
ListStore<Valeur> valeursStore = champValeurCombo.getStore();
|
|
|
94 |
Valeur objetValeur = valeursStore.findModel("id_valeur", texte);
|
|
|
95 |
if (objetValeur != null) {
|
|
|
96 |
texteValeur = objetValeur.getNom();
|
|
|
97 |
}
|
|
|
98 |
}
|
|
|
99 |
|
861 |
jpm |
100 |
Text champValeur = new Text();
|
1468 |
jpm |
101 |
champValeur.setText(texteValeur);
|
861 |
jpm |
102 |
champValeur.setWidth(largeurChamp);
|
|
|
103 |
colonneConteneur.add(champValeur, new ColumnData(largeurChamp));
|
721 |
gduche |
104 |
|
|
|
105 |
Button supprimerBouton = new Button();
|
|
|
106 |
supprimerBouton.setIcon(Images.ICONES.supprimer());
|
|
|
107 |
supprimerBouton.setText(boutonSupprimerLabel);
|
955 |
jpm |
108 |
supprimerBouton.setData("valeur", id + aDonnee.SEPARATEUR_TYPE_VALEUR + texte);
|
721 |
gduche |
109 |
supprimerBouton.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
|
|
110 |
public void componentSelected(ButtonEvent ce) {
|
|
|
111 |
String valeur = ce.getComponent().getData("valeur");
|
|
|
112 |
LayoutContainer valeurLayout = valeurs.get(valeur);
|
|
|
113 |
principalLayout.remove(valeurLayout);
|
|
|
114 |
|
|
|
115 |
valeurs.remove(valeur);
|
|
|
116 |
|
|
|
117 |
supprimerValeurDuRecapitulatif(valeur);
|
|
|
118 |
|
|
|
119 |
actualiserLayoutGlobal();
|
|
|
120 |
}
|
|
|
121 |
});
|
861 |
jpm |
122 |
colonneConteneur.add(supprimerBouton, new ColumnData(largeurBouton));
|
721 |
gduche |
123 |
|
|
|
124 |
// Ajout du layout de la valeur au layout principal
|
861 |
jpm |
125 |
principalLayout.add(colonneConteneur);
|
721 |
gduche |
126 |
|
|
|
127 |
// Ajout de la valeur au champ récapitulatif des valeurs ajoutées
|
955 |
jpm |
128 |
if (estComboBox && champValeurCombo.getValue() != null) {
|
863 |
gduche |
129 |
ajouterValeurAuRecapitulatif(champValeurCombo.getValue().getId(), id);
|
|
|
130 |
} else {
|
857 |
jpm |
131 |
ajouterValeurAuRecapitulatif(texte, id);
|
|
|
132 |
}
|
721 |
gduche |
133 |
reinitialiserChamp();
|
|
|
134 |
actualiserLayoutGlobal();
|
|
|
135 |
}
|
|
|
136 |
|
|
|
137 |
public void ajouterValeurAuRecapitulatif(String texte, String id) {
|
|
|
138 |
String texteRecapitulatif = "";
|
|
|
139 |
if (champRecapitulatif.getValue() != null) {
|
|
|
140 |
texteRecapitulatif = champRecapitulatif.getValue();
|
|
|
141 |
}
|
955 |
jpm |
142 |
texteRecapitulatif += id + aDonnee.SEPARATEUR_TYPE_VALEUR + texte + aDonnee.SEPARATEUR_VALEURS;
|
721 |
gduche |
143 |
champRecapitulatif.setValue(texteRecapitulatif);
|
|
|
144 |
}
|
|
|
145 |
|
|
|
146 |
public void peupler(String chaineExistante) {
|
1468 |
jpm |
147 |
|
955 |
jpm |
148 |
if (valeurs.size() > 0) {
|
853 |
gduche |
149 |
reinitialiser();
|
|
|
150 |
}
|
721 |
gduche |
151 |
if (chaineExistante != null && !chaineExistante.trim().equals("")) {
|
955 |
jpm |
152 |
String[] valeurs = chaineExistante.split(aDonnee.SEPARATEUR_VALEURS);
|
721 |
gduche |
153 |
for (int i = 0; i < valeurs.length; i++) {
|
955 |
jpm |
154 |
String[] idEtValeur = valeurs[i].split(aDonnee.SEPARATEUR_TYPE_VALEUR);
|
1367 |
cyprien |
155 |
if (idEtValeur.length == 2) {
|
|
|
156 |
String idType = idEtValeur[0];
|
|
|
157 |
String idValeur = idEtValeur[1];
|
|
|
158 |
|
|
|
159 |
ListStore<Valeur> typeStore = types.getStore();
|
|
|
160 |
Valeur objetType = typeStore.findModel("id_valeur", idType);
|
|
|
161 |
String texteType = "";
|
|
|
162 |
if (objetType != null) {
|
|
|
163 |
texteType = objetType.getNom();
|
|
|
164 |
} else {
|
|
|
165 |
texteType = idType;
|
|
|
166 |
}
|
1468 |
jpm |
167 |
|
|
|
168 |
ajouterValeur(idValeur, texteType, idType);
|
824 |
gduche |
169 |
} else {
|
1367 |
cyprien |
170 |
InfoLogger.display("ChampMultiValeursMultiTypes > méthode peupler", "Erreur dans le split d'une valeur, chaine="+chaineExistante, true);
|
824 |
gduche |
171 |
}
|
721 |
gduche |
172 |
}
|
|
|
173 |
}
|
|
|
174 |
}
|
|
|
175 |
}
|