Subversion Repositories eFlore/Applications.coel

Rev

Rev 1249 | Details | Compare with Previous | Last modification | View Log | RSS feed

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