997 |
jpm |
1 |
package org.tela_botanica.client.vues.collection;
|
|
|
2 |
|
|
|
3 |
import java.util.ArrayList;
|
|
|
4 |
import java.util.HashMap;
|
|
|
5 |
import java.util.Iterator;
|
|
|
6 |
import java.util.List;
|
|
|
7 |
|
|
|
8 |
import org.tela_botanica.client.Mediateur;
|
|
|
9 |
import org.tela_botanica.client.images.Images;
|
|
|
10 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
|
|
11 |
import org.tela_botanica.client.modeles.Information;
|
|
|
12 |
import org.tela_botanica.client.modeles.Valeur;
|
|
|
13 |
import org.tela_botanica.client.modeles.ValeurListe;
|
|
|
14 |
import org.tela_botanica.client.modeles.aDonnee;
|
|
|
15 |
import org.tela_botanica.client.modeles.collection.Collection;
|
|
|
16 |
import org.tela_botanica.client.modeles.collection.CollectionACommentaire;
|
|
|
17 |
import org.tela_botanica.client.modeles.collection.CollectionACommentaireListe;
|
|
|
18 |
import org.tela_botanica.client.modeles.commentaire.Commentaire;
|
|
|
19 |
import org.tela_botanica.client.modeles.commentaire.CommentaireListe;
|
|
|
20 |
import org.tela_botanica.client.util.Debug;
|
|
|
21 |
import org.tela_botanica.client.vues.FenetreForm;
|
|
|
22 |
import org.tela_botanica.client.vues.Formulaire;
|
|
|
23 |
import org.tela_botanica.client.vues.FormulaireBarreValidation;
|
|
|
24 |
import org.tela_botanica.client.vues.FormulaireOnglet;
|
|
|
25 |
import org.tela_botanica.client.vues.commentaire.CommentaireForm;
|
|
|
26 |
|
|
|
27 |
import com.extjs.gxt.ui.client.event.BaseEvent;
|
|
|
28 |
import com.extjs.gxt.ui.client.event.ButtonEvent;
|
|
|
29 |
import com.extjs.gxt.ui.client.event.ComponentEvent;
|
|
|
30 |
import com.extjs.gxt.ui.client.event.Events;
|
|
|
31 |
import com.extjs.gxt.ui.client.event.KeyListener;
|
|
|
32 |
import com.extjs.gxt.ui.client.event.Listener;
|
|
|
33 |
import com.extjs.gxt.ui.client.event.SelectionListener;
|
|
|
34 |
import com.extjs.gxt.ui.client.store.ListStore;
|
|
|
35 |
import com.extjs.gxt.ui.client.store.Store;
|
|
|
36 |
import com.extjs.gxt.ui.client.store.StoreEvent;
|
|
|
37 |
import com.extjs.gxt.ui.client.widget.ContentPanel;
|
|
|
38 |
import com.extjs.gxt.ui.client.widget.Info;
|
|
|
39 |
import com.extjs.gxt.ui.client.widget.Text;
|
|
|
40 |
import com.extjs.gxt.ui.client.widget.button.Button;
|
|
|
41 |
import com.extjs.gxt.ui.client.widget.button.ButtonBar;
|
|
|
42 |
import com.extjs.gxt.ui.client.widget.form.ComboBox;
|
|
|
43 |
import com.extjs.gxt.ui.client.widget.form.FormPanel;
|
|
|
44 |
import com.extjs.gxt.ui.client.widget.form.ComboBox.TriggerAction;
|
|
|
45 |
import com.extjs.gxt.ui.client.widget.grid.CellEditor;
|
|
|
46 |
import com.extjs.gxt.ui.client.widget.grid.ColumnConfig;
|
|
|
47 |
import com.extjs.gxt.ui.client.widget.grid.ColumnData;
|
|
|
48 |
import com.extjs.gxt.ui.client.widget.grid.ColumnModel;
|
|
|
49 |
import com.extjs.gxt.ui.client.widget.grid.EditorGrid;
|
|
|
50 |
import com.extjs.gxt.ui.client.widget.grid.Grid;
|
|
|
51 |
import com.extjs.gxt.ui.client.widget.grid.GridCellRenderer;
|
|
|
52 |
import com.extjs.gxt.ui.client.widget.grid.GridSelectionModel;
|
|
|
53 |
import com.extjs.gxt.ui.client.widget.grid.RowNumberer;
|
|
|
54 |
import com.extjs.gxt.ui.client.widget.layout.FitLayout;
|
|
|
55 |
import com.extjs.gxt.ui.client.widget.toolbar.SeparatorToolItem;
|
|
|
56 |
import com.extjs.gxt.ui.client.widget.toolbar.ToolBar;
|
|
|
57 |
import com.google.gwt.core.client.GWT;
|
|
|
58 |
|
|
|
59 |
public class CollectionFormCommentaire extends FormulaireOnglet implements Rafraichissable {
|
|
|
60 |
|
|
|
61 |
private Collection collection = null;
|
|
|
62 |
private static int idGenere = 1;
|
|
|
63 |
|
|
|
64 |
private ContentPanel panneauPrincipal = null;
|
|
|
65 |
private ToolBar barreOutils = null;
|
|
|
66 |
private EditorGrid<CollectionACommentaire> grille;
|
|
|
67 |
private ComboBox<Valeur> typeCombo = null;
|
|
|
68 |
|
|
|
69 |
private CollectionACommentaireListe commentairesAjoutees = null;
|
|
|
70 |
private CollectionACommentaireListe commentairesSupprimees = null;
|
|
|
71 |
private ComboBox<Commentaire> commentairesSaisisComboBox = null;
|
|
|
72 |
private Button commentairesBoutonSupprimer = null;
|
|
|
73 |
private Button commentairesBoutonModifier = null;
|
|
|
74 |
|
|
|
75 |
private static boolean chargementTypesOk = false;
|
|
|
76 |
private static boolean chargementCommentairesOk = false;
|
|
|
77 |
|
|
|
78 |
private FenetreForm fenetreFormulaire = null;
|
|
|
79 |
|
|
|
80 |
public CollectionFormCommentaire(Formulaire formulaireCourrant) {
|
|
|
81 |
initialiserOnglet(formulaireCourrant);
|
|
|
82 |
setText(Mediateur.i18nC.collectionCommentaire());
|
|
|
83 |
setStyleAttribute("padding", "0");
|
|
|
84 |
|
|
|
85 |
panneauPrincipal = creerPanneauContenantGrille();
|
|
|
86 |
barreOutils = creerBarreOutilsGrille();
|
|
|
87 |
panneauPrincipal.setTopComponent(barreOutils);
|
|
|
88 |
grille = creerGrille();
|
|
|
89 |
panneauPrincipal.add(grille);
|
|
|
90 |
|
|
|
91 |
mediateur.obtenirListeValeurEtRafraichir(this, "typeCommentaireCollection");
|
|
|
92 |
add(panneauPrincipal);
|
|
|
93 |
|
|
|
94 |
initialiser();
|
|
|
95 |
}
|
|
|
96 |
|
|
|
97 |
private void initialiser() {
|
|
|
98 |
// Remise à zéro des modification dans la liste des auteurs
|
|
|
99 |
idGenere = 1;
|
|
|
100 |
commentairesAjoutees = new CollectionACommentaireListe();
|
|
|
101 |
commentairesSupprimees = new CollectionACommentaireListe();
|
|
|
102 |
|
|
|
103 |
// Actualisation de l'état des boutons de la barre d'outils
|
|
|
104 |
actualiserEtatBoutonsBarreOutils();
|
|
|
105 |
|
|
|
106 |
collection = ((CollectionForm) formulaire).collection;
|
|
|
107 |
}
|
|
|
108 |
|
|
|
109 |
private void initialiserChargement() {
|
|
|
110 |
chargementCommentairesOk = false;
|
|
|
111 |
}
|
|
|
112 |
|
|
|
113 |
private ContentPanel creerPanneauContenantGrille() {
|
|
|
114 |
ContentPanel panneau = new ContentPanel();
|
|
|
115 |
|
|
|
116 |
panneau.setHeading(i18nC.collectionCommentaireTitre());
|
|
|
117 |
panneau.setIcon(Images.ICONES.table());
|
|
|
118 |
panneau.setLayout(new FitLayout());
|
|
|
119 |
panneau.setFrame(true);
|
|
|
120 |
|
|
|
121 |
return panneau;
|
|
|
122 |
}
|
|
|
123 |
|
|
|
124 |
private ToolBar creerBarreOutilsGrille() {
|
|
|
125 |
ToolBar barreOutils = new ToolBar();
|
|
|
126 |
|
|
|
127 |
Button ajouterPersonneBouton = creerBoutonAjouter();
|
|
|
128 |
barreOutils.add(ajouterPersonneBouton);
|
|
|
129 |
|
|
|
130 |
barreOutils.add(new Text(" ou "));
|
|
|
131 |
|
|
|
132 |
commentairesSaisisComboBox = creerComboBoxCommentairesSaisies();
|
|
|
133 |
barreOutils.add(commentairesSaisisComboBox);
|
|
|
134 |
|
|
|
135 |
barreOutils.add(new SeparatorToolItem());
|
|
|
136 |
|
|
|
137 |
commentairesBoutonModifier = creerBoutonModifier();
|
|
|
138 |
barreOutils.add(commentairesBoutonModifier);
|
|
|
139 |
|
|
|
140 |
barreOutils.add(new SeparatorToolItem());
|
|
|
141 |
|
|
|
142 |
commentairesBoutonSupprimer = creerBoutonSupprimer();
|
|
|
143 |
barreOutils.add(commentairesBoutonSupprimer);
|
|
|
144 |
|
|
|
145 |
barreOutils.add(new SeparatorToolItem());
|
|
|
146 |
|
|
|
147 |
Button rafraichirPersonneBouton = creerBoutonRafraichir();
|
|
|
148 |
barreOutils.add(rafraichirPersonneBouton);
|
|
|
149 |
|
|
|
150 |
return barreOutils;
|
|
|
151 |
}
|
|
|
152 |
|
|
|
153 |
private Button creerBoutonAjouter() {
|
|
|
154 |
Button bouton = new Button(i18nC.ajouter());
|
|
|
155 |
bouton.setIcon(Images.ICONES.vcardAjouter());
|
|
|
156 |
bouton.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
|
|
157 |
|
|
|
158 |
@Override
|
|
|
159 |
public void componentSelected(ButtonEvent ce) {
|
|
|
160 |
fenetreFormulaire = creerFenetreModaleAvecFormulaireCommentaire(Formulaire.MODE_AJOUTER);
|
|
|
161 |
fenetreFormulaire.show();
|
|
|
162 |
}
|
|
|
163 |
});
|
|
|
164 |
return bouton;
|
|
|
165 |
}
|
|
|
166 |
|
|
|
167 |
private Button creerBoutonModifier() {
|
|
|
168 |
Button bouton = new Button(i18nC.modifier());
|
|
|
169 |
bouton.setIcon(Images.ICONES.vcardModifier());
|
|
|
170 |
bouton.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
|
|
171 |
@Override
|
|
|
172 |
public void componentSelected(ButtonEvent ce) {
|
|
|
173 |
CollectionACommentaire commentaireSaisiSelectionne = grille.getSelectionModel().getSelectedItem();
|
|
|
174 |
if (commentaireSaisiSelectionne == null) {
|
|
|
175 |
Info.display(i18nC.informationTitreGenerique(), i18nC.selectionnerCommentaire());
|
|
|
176 |
} else {
|
|
|
177 |
fenetreFormulaire = creerFenetreModaleAvecFormulaireCommentaire(Formulaire.MODE_MODIFIER);
|
|
|
178 |
fenetreFormulaire.show();
|
|
|
179 |
}
|
|
|
180 |
}
|
|
|
181 |
});
|
|
|
182 |
return bouton;
|
|
|
183 |
}
|
|
|
184 |
|
|
|
185 |
private FenetreForm creerFenetreModaleAvecFormulaireCommentaire(String mode) {
|
|
|
186 |
String commentaireId = null;
|
|
|
187 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
|
|
188 |
CollectionACommentaire commentaierSaisieSelectionnee = grille.getSelectionModel().getSelectedItem();
|
|
|
189 |
commentaireId = commentaierSaisieSelectionnee.getIdCommentaire();
|
|
|
190 |
}
|
|
|
191 |
|
|
|
192 |
final FenetreForm fenetre = new FenetreForm("");
|
|
|
193 |
final CommentaireForm formulaire = creerFormulaireCommentaire(fenetre, commentaireId);
|
|
|
194 |
fenetre.add(formulaire);
|
|
|
195 |
return fenetre;
|
|
|
196 |
}
|
|
|
197 |
|
|
|
198 |
private CommentaireForm creerFormulaireCommentaire(final FenetreForm fenetre, String commentaireId) {
|
|
|
199 |
CommentaireForm formulaire = new CommentaireForm(mediateur, commentaireId, this);
|
|
|
200 |
FormPanel panneauFormulaire = formulaire.getFormulaire();
|
|
|
201 |
fenetre.setHeading(panneauFormulaire.getHeading());
|
|
|
202 |
panneauFormulaire.setHeaderVisible(false);
|
|
|
203 |
panneauFormulaire.setTopComponent(null);
|
|
|
204 |
|
|
|
205 |
// FIXME : avec GXT-2.1.0 la redéfinition du bottom component ne marche plus. Nous le cachons et en créeons un dans la fenêtre.
|
|
|
206 |
panneauFormulaire.getBottomComponent().hide();
|
|
|
207 |
SelectionListener<ButtonEvent> ecouteur = creerEcouteurValidationFormulaireCommentaire(fenetre, formulaire);
|
|
|
208 |
final ButtonBar barreValidation = new FormulaireBarreValidation(ecouteur);
|
|
|
209 |
fenetre.setBottomComponent(barreValidation);
|
|
|
210 |
|
|
|
211 |
return formulaire;
|
|
|
212 |
}
|
|
|
213 |
|
|
|
214 |
private SelectionListener<ButtonEvent> creerEcouteurValidationFormulaireCommentaire(final FenetreForm fenetre, final CommentaireForm formulaire) {
|
|
|
215 |
SelectionListener<ButtonEvent> ecouteur = new SelectionListener<ButtonEvent>() {
|
|
|
216 |
@Override
|
|
|
217 |
public void componentSelected(ButtonEvent ce) {
|
|
|
218 |
String code = ((Button) ce.getComponent()).getData("code");
|
|
|
219 |
if (code.equals(FormulaireBarreValidation.CODE_BOUTON_VALIDER)) {
|
|
|
220 |
if (formulaire.soumettreFormulaire()) {
|
|
|
221 |
fenetre.hide();
|
|
|
222 |
}
|
|
|
223 |
} else if (code.equals(FormulaireBarreValidation.CODE_BOUTON_APPLIQUER)) {
|
|
|
224 |
formulaire.soumettreFormulaire();
|
|
|
225 |
} else if (code.equals(FormulaireBarreValidation.CODE_BOUTON_ANNULER)) {
|
|
|
226 |
fenetre.hide();
|
|
|
227 |
} else if (code.equals(FormulaireBarreValidation.CODE_BOUTON_REINITIALISER)) {
|
|
|
228 |
fenetreFormulaire.hide();
|
|
|
229 |
fenetreFormulaire = creerFenetreModaleAvecFormulaireCommentaire(formulaire.mode);
|
|
|
230 |
fenetreFormulaire.show();
|
|
|
231 |
}
|
|
|
232 |
}
|
|
|
233 |
};
|
|
|
234 |
|
|
|
235 |
return ecouteur;
|
|
|
236 |
}
|
|
|
237 |
|
|
|
238 |
private Button creerBoutonSupprimer() {
|
|
|
239 |
Button bouton = new Button(i18nC.supprimer());
|
|
|
240 |
bouton.setIcon(Images.ICONES.vcardSupprimer());
|
|
|
241 |
bouton.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
|
|
242 |
@Override
|
|
|
243 |
public void componentSelected(ButtonEvent ce) {
|
|
|
244 |
CollectionACommentaire commentaireSaisiSelectionnee = grille.getSelectionModel().getSelectedItem();
|
|
|
245 |
if (commentaireSaisiSelectionnee == null) {
|
|
|
246 |
Info.display(i18nC.informationTitreGenerique(), i18nC.selectionnerCommentaire());
|
|
|
247 |
} else {
|
|
|
248 |
supprimerDansGrille(commentaireSaisiSelectionnee);
|
|
|
249 |
}
|
|
|
250 |
}
|
|
|
251 |
});
|
|
|
252 |
return bouton;
|
|
|
253 |
}
|
|
|
254 |
|
|
|
255 |
private Button creerBoutonRafraichir() {
|
|
|
256 |
Button bouton = new Button(i18nC.rafraichir());
|
|
|
257 |
bouton.setIcon(Images.ICONES.rafraichir());
|
|
|
258 |
bouton.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
|
|
259 |
@Override
|
|
|
260 |
public void componentSelected(ButtonEvent ce) {
|
|
|
261 |
actualiserGrille();
|
|
|
262 |
}
|
|
|
263 |
});
|
|
|
264 |
return bouton;
|
|
|
265 |
}
|
|
|
266 |
|
|
|
267 |
private ComboBox<Commentaire> creerComboBoxCommentairesSaisies() {
|
|
|
268 |
ListStore<Commentaire> commentairesSaisiesStore = new ListStore<Commentaire>();
|
|
|
269 |
commentairesSaisiesStore.add(new ArrayList<Commentaire>());
|
|
|
270 |
|
|
|
271 |
ComboBox<Commentaire> comboBox = new ComboBox<Commentaire>();
|
|
|
272 |
comboBox.setWidth(200);
|
|
|
273 |
comboBox.setEmptyText(i18nC.chercherCommentaireSaisi());
|
|
|
274 |
comboBox.setTriggerAction(TriggerAction.ALL);
|
|
|
275 |
comboBox.setEditable(true);
|
|
|
276 |
comboBox.setDisplayField("titre");
|
|
|
277 |
comboBox.setStore(commentairesSaisiesStore);
|
|
|
278 |
comboBox.addKeyListener(new KeyListener() {
|
|
|
279 |
public void componentKeyUp(ComponentEvent ce) {
|
|
|
280 |
if (commentairesSaisisComboBox.getRawValue() != null && commentairesSaisisComboBox.getRawValue().length() > 0) {
|
|
|
281 |
if (!ce.isNavKeyPress()) {
|
|
|
282 |
obtenirCommentairesSaisis(commentairesSaisisComboBox.getRawValue());
|
|
|
283 |
}
|
|
|
284 |
}
|
|
|
285 |
}
|
|
|
286 |
});
|
|
|
287 |
comboBox.addListener(Events.Select, new Listener<BaseEvent>() {
|
|
|
288 |
@Override
|
|
|
289 |
public void handleEvent(BaseEvent be) {
|
|
|
290 |
if (commentairesSaisisComboBox.getValue() instanceof Commentaire) {
|
|
|
291 |
Commentaire commentaireSaisiSelectionnee = commentairesSaisisComboBox.getValue();
|
|
|
292 |
ajouterDansGrille(commentaireSaisiSelectionnee);
|
|
|
293 |
commentairesSaisisComboBox.setValue(null);
|
|
|
294 |
}
|
|
|
295 |
}
|
|
|
296 |
});
|
|
|
297 |
return comboBox;
|
|
|
298 |
}
|
|
|
299 |
|
|
|
300 |
private void ajouterDansGrille(Commentaire commentaire) {
|
|
|
301 |
ajouterDansGrille(commentaire, null, 0);
|
|
|
302 |
}
|
|
|
303 |
|
|
|
304 |
private void ajouterDansGrille(Commentaire commentaire, String type, int index) {
|
|
|
305 |
if (commentaire != null) {
|
|
|
306 |
CollectionACommentaire relationCollectionACommentaire = new CollectionACommentaire();
|
|
|
307 |
relationCollectionACommentaire.setCommentaire(commentaire);
|
|
|
308 |
relationCollectionACommentaire.setIdCommentaire(commentaire.getId());
|
|
|
309 |
if (type != null) {
|
|
|
310 |
relationCollectionACommentaire.set("_type_", type);
|
|
|
311 |
}
|
|
|
312 |
// Gestion de l'id de la collection
|
|
|
313 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
|
|
314 |
relationCollectionACommentaire.setIdCollection(collection.getId());
|
|
|
315 |
}
|
|
|
316 |
relationCollectionACommentaire.set("_etat_", aDonnee.ETAT_AJOUTE);
|
|
|
317 |
corrigerChampsGrille(relationCollectionACommentaire);
|
|
|
318 |
|
|
|
319 |
// Ajout à la grille
|
|
|
320 |
grille.stopEditing();
|
|
|
321 |
grille.getStore().insert(relationCollectionACommentaire, index);
|
|
|
322 |
grille.startEditing(index, 0);
|
|
|
323 |
grille.getSelectionModel().select(index, false);
|
|
|
324 |
}
|
|
|
325 |
}
|
|
|
326 |
|
|
|
327 |
private void supprimerDansGrille(CollectionACommentaire relationCollectionACommentaire) {
|
|
|
328 |
if (relationCollectionACommentaire != null) {
|
|
|
329 |
// Ajout de la personne supprimée à la liste
|
|
|
330 |
if ((relationCollectionACommentaire.get("_etat_").equals("") || !relationCollectionACommentaire.get("_etat_").equals(aDonnee.ETAT_AJOUTE))
|
|
|
331 |
&& relationCollectionACommentaire.getId() != null
|
|
|
332 |
&& !relationCollectionACommentaire.getId().equals("")) {
|
|
|
333 |
Debug.log("Nbre commentaires supprimées avant:"+commentairesSupprimees.size());
|
|
|
334 |
commentairesSupprimees.put("id"+idGenere++, relationCollectionACommentaire);
|
|
|
335 |
Debug.log("Commentaires supprimées : "+relationCollectionACommentaire.getCommentaire().getId());
|
|
|
336 |
Debug.log("Nbre commentaires supprimées :"+commentairesSupprimees.size());
|
|
|
337 |
}
|
|
|
338 |
|
|
|
339 |
// Suppression de l'enregistrement de la grille
|
|
|
340 |
grille.getStore().remove(relationCollectionACommentaire);
|
|
|
341 |
}
|
|
|
342 |
}
|
|
|
343 |
|
|
|
344 |
private EditorGrid<CollectionACommentaire> creerGrille() {
|
|
|
345 |
ListStore<CollectionACommentaire> storeGrille = new ListStore<CollectionACommentaire>();
|
|
|
346 |
storeGrille.addListener(Store.Add, new Listener<StoreEvent<CollectionACommentaire>>() {
|
|
|
347 |
public void handleEvent(StoreEvent<CollectionACommentaire> ce) {
|
|
|
348 |
actualiserEtatBoutonsBarreOutils();
|
|
|
349 |
}
|
|
|
350 |
});
|
|
|
351 |
storeGrille.addListener(Store.Remove, new Listener<StoreEvent<CollectionACommentaire>>() {
|
|
|
352 |
public void handleEvent(StoreEvent<CollectionACommentaire> ce) {
|
|
|
353 |
actualiserEtatBoutonsBarreOutils();
|
|
|
354 |
}
|
|
|
355 |
});
|
|
|
356 |
storeGrille.addListener(Store.Update, new Listener<StoreEvent<CollectionACommentaire>>() {
|
|
|
357 |
public void handleEvent(StoreEvent<CollectionACommentaire> ce) {
|
|
|
358 |
if (ce.getRecord().isModified("_type_") && !ce.getModel().get("_etat_").equals(aDonnee.ETAT_AJOUTE)) {
|
|
|
359 |
Debug.log("id type modifié : "+ce.getModel().get("_type_"));
|
|
|
360 |
ce.getModel().set("_etat_", aDonnee.ETAT_MODIFIE);
|
|
|
361 |
}
|
|
|
362 |
}
|
|
|
363 |
});
|
|
|
364 |
|
|
|
365 |
RowNumberer pluginLigneNumero = new RowNumberer();
|
|
|
366 |
|
|
|
367 |
List<ColumnConfig> colonnes = new ArrayList<ColumnConfig>();
|
|
|
368 |
colonnes.add(pluginLigneNumero);
|
|
|
369 |
|
|
|
370 |
colonnes.add(creerColonneType());
|
|
|
371 |
colonnes.add(new ColumnConfig("_titre_", i18nC.commentaireTitre(), 150));
|
|
|
372 |
colonnes.add(new ColumnConfig("_texte_", i18nC.commentaireTexte(), 75));
|
|
|
373 |
colonnes.add(new ColumnConfig("_ponderation_", i18nC.commentairePonderation(), 35));
|
|
|
374 |
colonnes.add(creerColonneAcces());
|
|
|
375 |
|
|
|
376 |
GridSelectionModel<CollectionACommentaire> modeleDeSelection = new GridSelectionModel<CollectionACommentaire>();
|
|
|
377 |
ColumnModel modeleDeColonnes = new ColumnModel(colonnes);
|
|
|
378 |
|
|
|
379 |
EditorGrid<CollectionACommentaire> grille = new EditorGrid<CollectionACommentaire>(storeGrille, modeleDeColonnes);
|
|
|
380 |
grille.setHeight("100%");
|
|
|
381 |
grille.setBorders(true);
|
|
|
382 |
grille.setSelectionModel(modeleDeSelection);
|
|
|
383 |
grille.addPlugin(pluginLigneNumero);
|
|
|
384 |
grille.getView().setForceFit(true);
|
|
|
385 |
grille.setAutoExpandColumn("_titre_");
|
|
|
386 |
grille.setStripeRows(true);
|
|
|
387 |
grille.setTrackMouseOver(true);
|
|
|
388 |
|
|
|
389 |
return grille;
|
|
|
390 |
}
|
|
|
391 |
|
|
|
392 |
private ColumnConfig creerColonneType() {
|
|
|
393 |
typeCombo = new ComboBox<Valeur>();
|
|
|
394 |
typeCombo.setForceSelection(true);
|
|
|
395 |
typeCombo.setTriggerAction(TriggerAction.ALL);
|
|
|
396 |
typeCombo.setDisplayField("nom");
|
|
|
397 |
typeCombo.setStore(new ListStore<Valeur>());
|
|
|
398 |
typeCombo.setEditable(false);
|
|
|
399 |
|
|
|
400 |
CellEditor typeEditeur = new CellEditor(typeCombo) {
|
|
|
401 |
@Override
|
|
|
402 |
public Object preProcessValue(Object valeur) {
|
|
|
403 |
Valeur retour = null;
|
|
|
404 |
if (valeur != null ) {
|
|
|
405 |
Debug.log(""+valeur.toString());
|
|
|
406 |
if (typeCombo.getStore().findModel("nom", valeur.toString()) != null) {
|
|
|
407 |
retour = typeCombo.getStore().findModel("nom", valeur.toString());
|
|
|
408 |
} else if (typeCombo.getStore().findModel("abr", valeur.toString()) != null) {
|
|
|
409 |
retour = typeCombo.getStore().findModel("abr", valeur.toString());
|
|
|
410 |
} else if (typeCombo.getStore().findModel("id_valeur", valeur.toString()) != null) {
|
|
|
411 |
retour = typeCombo.getStore().findModel("id_valeur", valeur.toString());
|
|
|
412 |
}
|
|
|
413 |
}
|
|
|
414 |
return retour;
|
|
|
415 |
}
|
|
|
416 |
|
|
|
417 |
@Override
|
|
|
418 |
public Object postProcessValue(Object valeur) {
|
|
|
419 |
String retour = null;
|
|
|
420 |
if (valeur != null ) {
|
|
|
421 |
if (valeur instanceof Valeur) {
|
|
|
422 |
Valeur valeurOntologie = (Valeur) valeur;
|
|
|
423 |
retour = valeurOntologie.getNom();
|
|
|
424 |
Debug.log("Retour:"+retour);
|
|
|
425 |
}
|
|
|
426 |
}
|
|
|
427 |
return retour;
|
|
|
428 |
}
|
|
|
429 |
};
|
|
|
430 |
|
|
|
431 |
GridCellRenderer<CollectionACommentaire> typeRendu = new GridCellRenderer<CollectionACommentaire>() {
|
|
|
432 |
@Override
|
|
|
433 |
public String render(CollectionACommentaire model, String property, ColumnData config, int rowIndex, int colIndex, ListStore<CollectionACommentaire> store, Grid<CollectionACommentaire> grid) {
|
|
|
434 |
String typeOrigine = model.get("_type_");
|
|
|
435 |
String type = typeOrigine;
|
|
|
436 |
if (typeCombo.getStore() != null && typeOrigine != null && typeOrigine.matches("[0-9"+aDonnee.SEPARATEUR_VALEURS+"]+")) {
|
|
|
437 |
type = "";
|
|
|
438 |
String[] valeurs = typeOrigine.split(aDonnee.SEPARATEUR_VALEURS);
|
|
|
439 |
int nbreValeurs = valeurs.length;
|
|
|
440 |
int indexAvtDernier = nbreValeurs - 1;
|
|
|
441 |
if (nbreValeurs > 0) {
|
|
|
442 |
for (int i = 0; i < nbreValeurs; i++) {
|
|
|
443 |
String valeur = valeurs[i];
|
|
|
444 |
if (valeur.matches("^[0-9]+$")) {
|
|
|
445 |
if (valeur.equals("0")) {
|
|
|
446 |
valeur = "";
|
|
|
447 |
} else if (typeCombo.getStore() != null) {
|
|
|
448 |
ListStore<Valeur> ontologie = typeCombo.getStore();
|
|
|
449 |
Valeur valeurOntologie = ontologie.findModel("id_valeur", valeur);
|
|
|
450 |
if (valeurOntologie != null) {
|
|
|
451 |
valeur = valeurOntologie.getNom();
|
|
|
452 |
}
|
|
|
453 |
}
|
|
|
454 |
}
|
|
|
455 |
if (i != indexAvtDernier) {
|
|
|
456 |
type += valeur+", ";
|
|
|
457 |
} else {
|
|
|
458 |
type += valeur;
|
|
|
459 |
}
|
|
|
460 |
}
|
|
|
461 |
}
|
|
|
462 |
}
|
|
|
463 |
model.set("_type_", type);
|
|
|
464 |
return type;
|
|
|
465 |
}
|
|
|
466 |
};
|
|
|
467 |
ColumnConfig typeColonne = new ColumnConfig("_type_", i18nC.commentaireType(), 100);
|
|
|
468 |
typeColonne.setEditor(typeEditeur);
|
|
|
469 |
typeColonne.setRenderer(typeRendu);
|
|
|
470 |
return typeColonne;
|
|
|
471 |
}
|
|
|
472 |
|
|
|
473 |
private ColumnConfig creerColonneAcces() {
|
|
|
474 |
GridCellRenderer<CollectionACommentaire> accesRendu = new GridCellRenderer<CollectionACommentaire>() {
|
|
|
475 |
@Override
|
|
|
476 |
public String render(CollectionACommentaire model, String property, ColumnData config, int rowIndex, int colIndex, ListStore<CollectionACommentaire> store, Grid<CollectionACommentaire> grid) {
|
|
|
477 |
String acces = (model.getCommentaire().etrePublic() ? i18nC.donneePublic() : i18nC.donneePrivee());
|
|
|
478 |
model.set("_public_", acces);
|
|
|
479 |
return acces;
|
|
|
480 |
}
|
|
|
481 |
};
|
|
|
482 |
ColumnConfig accesColonne = new ColumnConfig("_public_", i18nC.commentairePublic(), 30);
|
|
|
483 |
accesColonne.setRenderer(accesRendu);
|
|
|
484 |
return accesColonne;
|
|
|
485 |
}
|
|
|
486 |
|
|
|
487 |
public void actualiserEtatBoutonsBarreOutils() {
|
|
|
488 |
// Activation des boutons si la grille contient un élément
|
|
|
489 |
if (grille.getStore().getCount() > 0) {
|
|
|
490 |
commentairesBoutonSupprimer.enable();
|
|
|
491 |
commentairesBoutonModifier.enable();
|
|
|
492 |
}
|
|
|
493 |
// Désactivation des boutons si la grille ne contient plus d'élément
|
|
|
494 |
if (grille.getStore().getCount() == 0) {
|
|
|
495 |
commentairesBoutonSupprimer.disable();
|
|
|
496 |
commentairesBoutonModifier.disable();
|
|
|
497 |
}
|
|
|
498 |
}
|
|
|
499 |
|
|
|
500 |
public void rafraichir(Object nouvellesDonnees) {
|
|
|
501 |
if (nouvellesDonnees instanceof ValeurListe) {
|
|
|
502 |
ValeurListe listeValeurs = (ValeurListe) nouvellesDonnees;
|
|
|
503 |
rafraichirValeurListe(listeValeurs);
|
|
|
504 |
} else if (nouvellesDonnees instanceof Information) {
|
|
|
505 |
Information info = (Information) nouvellesDonnees;
|
|
|
506 |
rafraichirInformation(info);
|
|
|
507 |
} else if (nouvellesDonnees instanceof CommentaireListe) {
|
|
|
508 |
CommentaireListe listeCommentaires = (CommentaireListe) nouvellesDonnees;
|
|
|
509 |
rafraichirCommentairesListe(listeCommentaires);
|
|
|
510 |
} else {
|
|
|
511 |
GWT.log(Mediateur.i18nM.erreurRafraichir(nouvellesDonnees.getClass(), this.getClass()), null);
|
|
|
512 |
}
|
|
|
513 |
|
|
|
514 |
if (chargementTypesOk && chargementCommentairesOk) {
|
|
|
515 |
peupler();
|
|
|
516 |
initialiserChargement();
|
|
|
517 |
}
|
|
|
518 |
}
|
|
|
519 |
|
|
|
520 |
private void rafraichirValeurListe(ValeurListe listeValeurs) {
|
|
|
521 |
if (listeValeurs.getId().equals(config.getListeId("typeCommentaireCollection"))) {
|
|
|
522 |
Formulaire.rafraichirComboBox(listeValeurs, typeCombo);
|
|
|
523 |
chargementTypesOk = true;
|
|
|
524 |
} else {
|
|
|
525 |
GWT.log("Gestion de la liste "+listeValeurs.getId()+" non implémenté!", null);
|
|
|
526 |
}
|
|
|
527 |
}
|
|
|
528 |
|
|
|
529 |
public void rafraichirInformation(Information info) {
|
|
|
530 |
if (info.getMessages() != null && !info.getMessages().toString().equals("[]")) {
|
|
|
531 |
GWT.log("MESSAGES:\n"+info.getMessages().toString(), null);
|
|
|
532 |
}
|
|
|
533 |
String type = info.getType();
|
|
|
534 |
if (info.getType().equals("ajout_collection")) {
|
|
|
535 |
if (info.getDonnee(0) != null && info.getDonnee(0) instanceof String) {
|
|
|
536 |
String collectionId = (String) info.getDonnee(0);
|
|
|
537 |
|
|
|
538 |
// Suite à la récupération de l'id de la collection nouvellement ajoutée nous ajoutons les personnes liées
|
|
|
539 |
// En mode AJOUT, il ne peut que y avoir des personnes liées ajoutées
|
|
|
540 |
mediateur.ajouterCollectionACommentaire(this, collectionId, commentairesAjoutees);
|
|
|
541 |
}
|
|
|
542 |
} else if (type.equals("commentaire_modifiee")) {
|
|
|
543 |
if (info.getDonnee(0) != null) {
|
|
|
544 |
Commentaire commentaire = (Commentaire) info.getDonnee(0);
|
|
|
545 |
CollectionACommentaire commentaireDansGrille = grille.getStore().findModel("id_commentaire", commentaire.getId());
|
|
|
546 |
int index = grille.getStore().indexOf(commentaireDansGrille);
|
|
|
547 |
grille.getStore().remove(commentaireDansGrille);
|
|
|
548 |
String typeCommentaire = (String) commentaireDansGrille.get("_type_");
|
|
|
549 |
ajouterDansGrille(commentaire, typeCommentaire, index);
|
|
|
550 |
}
|
|
|
551 |
} else if (type.equals("commentaire_ajoutee")) {
|
|
|
552 |
if (info.getDonnee(0) != null) {
|
|
|
553 |
Commentaire commentaire = (Commentaire) info.getDonnee(0);
|
|
|
554 |
ajouterDansGrille(commentaire);
|
|
|
555 |
}
|
|
|
556 |
} else if (info.getType().equals("modif_collection_a_commentaire")) {
|
|
|
557 |
Info.display("Modification des notes liées à la collection", info.toString());
|
|
|
558 |
} else if (info.getType().equals("suppression_collection_a_commentaire")) {
|
|
|
559 |
Info.display("Suppression des notes liées à la collection", info.toString());
|
|
|
560 |
} else if (info.getType().equals("ajout_collection_a_commentaire")) {
|
|
|
561 |
Info.display("Ajout des notes liées à la collection", info.toString());
|
|
|
562 |
} else if (info.getType().equals("liste_collection_a_commentaire")) {
|
|
|
563 |
if (info.getDonnee(0) != null) {
|
|
|
564 |
initialiser();
|
|
|
565 |
collection.setCommentairesLiees((CollectionACommentaireListe) info.getDonnee(0));
|
|
|
566 |
chargementCommentairesOk = true;
|
|
|
567 |
}
|
|
|
568 |
}
|
|
|
569 |
}
|
|
|
570 |
|
|
|
571 |
private void rafraichirCommentairesListe(CommentaireListe listeCommentaires) {
|
|
|
572 |
commentairesSaisisComboBox.getStore().removeAll();
|
|
|
573 |
commentairesSaisisComboBox.getStore().add(listeCommentaires.toList());
|
|
|
574 |
commentairesSaisisComboBox.expand();
|
|
|
575 |
}
|
|
|
576 |
|
|
|
577 |
public void peupler() {
|
|
|
578 |
grille.getStore().removeAll();
|
|
|
579 |
grille.getStore().add(collection.getCommentairesLiees().toList());
|
|
|
580 |
layout();
|
|
|
581 |
Info.display(i18nC.chargementCommentaire(), i18nC.ok());
|
|
|
582 |
}
|
|
|
583 |
|
|
|
584 |
public void collecter() {
|
|
|
585 |
if (etreAccede()) {
|
|
|
586 |
int nbreCommentaire = grille.getStore().getCount();
|
|
|
587 |
for (int i = 0; i < nbreCommentaire; i++) {
|
|
|
588 |
CollectionACommentaire relationCollectionACommentaire = grille.getStore().getAt(i);
|
|
|
589 |
if (relationCollectionACommentaire.get("_etat_") != null) {
|
|
|
590 |
if (relationCollectionACommentaire.get("_etat_").equals(aDonnee.ETAT_MODIFIE)) {
|
|
|
591 |
// Comme il est impossible de modifier les relations nous supprimons l'ancien enregistrement et ajoutons un nouveau avec le nouveau id_role
|
|
|
592 |
commentairesSupprimees.put("id"+idGenere++, relationCollectionACommentaire);
|
|
|
593 |
Debug.log("AVANT:"+relationCollectionACommentaire.getType());
|
|
|
594 |
|
|
|
595 |
CollectionACommentaire relationAAjouter = (CollectionACommentaire) relationCollectionACommentaire.cloner(new CollectionACommentaire());
|
|
|
596 |
corrigerChampsGrille(relationAAjouter);// Nous modifions l'id_type
|
|
|
597 |
Debug.log("APRES:"+relationAAjouter.getType());
|
|
|
598 |
commentairesAjoutees.put("id"+idGenere++, relationAAjouter);
|
|
|
599 |
Debug.log("Commentaires modifiés : "+relationAAjouter.getCommentaire().getTitre());
|
|
|
600 |
}
|
|
|
601 |
if (relationCollectionACommentaire.get("_etat_").equals(aDonnee.ETAT_AJOUTE)) {
|
|
|
602 |
corrigerChampsGrille(relationCollectionACommentaire);// Nous modifions l'id_type
|
|
|
603 |
commentairesAjoutees.put("id"+idGenere++, relationCollectionACommentaire);
|
|
|
604 |
Debug.log("Commentaires ajoutés : "+relationCollectionACommentaire.getCommentaire().getTitre());
|
|
|
605 |
}
|
|
|
606 |
// Initialisation de la grille
|
|
|
607 |
relationCollectionACommentaire.set("_etat_", "");
|
|
|
608 |
}
|
|
|
609 |
}
|
|
|
610 |
grille.getStore().commitChanges();
|
|
|
611 |
}
|
|
|
612 |
}
|
|
|
613 |
|
|
|
614 |
private void corrigerChampsGrille(CollectionACommentaire relationCollectionACommentaire) {
|
|
|
615 |
String type = relationCollectionACommentaire.get("_type_");
|
|
|
616 |
String champModele = "nom";
|
|
|
617 |
if (type.matches("[0-9]+")) {
|
|
|
618 |
champModele = "id_valeur";
|
|
|
619 |
}
|
|
|
620 |
if (typeCombo.getStore().findModel(champModele, type) != null) {
|
|
|
621 |
String idType = typeCombo.getStore().findModel(champModele, type).getId();
|
|
|
622 |
relationCollectionACommentaire.setType(idType);
|
|
|
623 |
}
|
|
|
624 |
}
|
|
|
625 |
|
|
|
626 |
public void soumettre() {
|
|
|
627 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
|
|
628 |
if (commentairesAjoutees.size() == 0 && commentairesSupprimees.size() == 0) {
|
|
|
629 |
Info.display("Modification des commentaires liées", "Rien n'a été enregistré car le formulaire n'a pas été modifié.");
|
|
|
630 |
} else {
|
|
|
631 |
// Ajout des relations CollectionAPersonne
|
|
|
632 |
if (commentairesAjoutees.size() != 0) {
|
|
|
633 |
mediateur.ajouterCollectionACommentaire(this, collection.getId(), commentairesAjoutees);
|
|
|
634 |
}
|
|
|
635 |
// Suppression des relations StructureAPersonne
|
|
|
636 |
if (commentairesSupprimees.size() != 0) {
|
|
|
637 |
mediateur.supprimerCollectionACommentaire(this, commentairesSupprimees);
|
|
|
638 |
Debug.log("Nbre commentaires supprimées :"+commentairesSupprimees.size());
|
|
|
639 |
}
|
|
|
640 |
}
|
|
|
641 |
}
|
|
|
642 |
}
|
|
|
643 |
|
|
|
644 |
private void obtenirCommentairesSaisis(String titre) {
|
|
|
645 |
mediateur.selectionnerCommentaireParTitre(this, titre+"%");
|
|
|
646 |
}
|
|
|
647 |
|
|
|
648 |
private void actualiserGrille() {
|
|
|
649 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
|
|
650 |
mediateur.selectionnerCollectionACommentaire(this, collection.getId());
|
|
|
651 |
} else {
|
|
|
652 |
grille.getStore().removeAll();
|
|
|
653 |
layout();
|
|
|
654 |
}
|
|
|
655 |
}
|
|
|
656 |
}
|