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;
|
997 |
jpm |
8 |
import org.tela_botanica.client.images.Images;
|
|
|
9 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
|
|
10 |
import org.tela_botanica.client.modeles.Information;
|
|
|
11 |
import org.tela_botanica.client.modeles.Valeur;
|
|
|
12 |
import org.tela_botanica.client.modeles.ValeurListe;
|
|
|
13 |
import org.tela_botanica.client.modeles.aDonnee;
|
|
|
14 |
import org.tela_botanica.client.modeles.collection.Collection;
|
|
|
15 |
import org.tela_botanica.client.modeles.collection.CollectionACommentaire;
|
|
|
16 |
import org.tela_botanica.client.modeles.collection.CollectionACommentaireListe;
|
|
|
17 |
import org.tela_botanica.client.modeles.commentaire.Commentaire;
|
|
|
18 |
import org.tela_botanica.client.modeles.commentaire.CommentaireListe;
|
|
|
19 |
import org.tela_botanica.client.util.Debug;
|
|
|
20 |
import org.tela_botanica.client.vues.FenetreForm;
|
|
|
21 |
import org.tela_botanica.client.vues.Formulaire;
|
|
|
22 |
import org.tela_botanica.client.vues.FormulaireBarreValidation;
|
|
|
23 |
import org.tela_botanica.client.vues.FormulaireOnglet;
|
|
|
24 |
import org.tela_botanica.client.vues.commentaire.CommentaireForm;
|
|
|
25 |
|
1031 |
jpm |
26 |
import com.extjs.gxt.ui.client.Style.SortDir;
|
997 |
jpm |
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;
|
1031 |
jpm |
67 |
private ChampComboBoxMultiSelect<Valeur> typeCombo = null;
|
997 |
jpm |
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() {
|
1031 |
jpm |
393 |
typeCombo = new ChampComboBoxMultiSelect<Valeur>();
|
997 |
jpm |
394 |
typeCombo.setDisplayField("nom");
|
1031 |
jpm |
395 |
typeCombo.setValueField("id_valeur");
|
997 |
jpm |
396 |
typeCombo.setStore(new ListStore<Valeur>());
|
|
|
397 |
typeCombo.setEditable(false);
|
1031 |
jpm |
398 |
typeCombo.setForceSelection(true);
|
997 |
jpm |
399 |
|
|
|
400 |
CellEditor typeEditeur = new CellEditor(typeCombo) {
|
1031 |
jpm |
401 |
@SuppressWarnings("unchecked")
|
997 |
jpm |
402 |
@Override
|
|
|
403 |
public Object preProcessValue(Object valeur) {
|
1031 |
jpm |
404 |
Valeur retour = new Valeur();
|
997 |
jpm |
405 |
if (valeur != null ) {
|
1031 |
jpm |
406 |
if (valeur instanceof String) {
|
|
|
407 |
((ChampComboBoxMultiSelect<Valeur>) getField()).peuplerAvecTexte(valeur.toString());
|
997 |
jpm |
408 |
}
|
|
|
409 |
}
|
|
|
410 |
return retour;
|
|
|
411 |
}
|
|
|
412 |
|
|
|
413 |
@Override
|
|
|
414 |
public Object postProcessValue(Object valeur) {
|
|
|
415 |
String retour = null;
|
1031 |
jpm |
416 |
if (getField().getRawValue() != null ) {
|
|
|
417 |
retour = getField().getRawValue();
|
997 |
jpm |
418 |
}
|
1031 |
jpm |
419 |
Debug.log("Post : "+retour);
|
997 |
jpm |
420 |
return retour;
|
|
|
421 |
}
|
|
|
422 |
};
|
1031 |
jpm |
423 |
|
997 |
jpm |
424 |
GridCellRenderer<CollectionACommentaire> typeRendu = new GridCellRenderer<CollectionACommentaire>() {
|
|
|
425 |
@Override
|
|
|
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 |
Debug.log("Initialisation type origine :"+type);
|
|
|
429 |
if (typeCombo.getStore() != null && type != null && (type.matches("[0-9]+") || type.contains(aDonnee.SEPARATEUR_VALEURS))) {
|
|
|
430 |
type = typeCombo.formaterIdentifiantsEnTexte(type);
|
|
|
431 |
model.set("_type_", type);
|
|
|
432 |
Debug.log("Initialisation :"+type);
|
997 |
jpm |
433 |
}
|
|
|
434 |
return type;
|
|
|
435 |
}
|
|
|
436 |
};
|
|
|
437 |
ColumnConfig typeColonne = new ColumnConfig("_type_", i18nC.commentaireType(), 100);
|
|
|
438 |
typeColonne.setEditor(typeEditeur);
|
|
|
439 |
typeColonne.setRenderer(typeRendu);
|
|
|
440 |
return typeColonne;
|
|
|
441 |
}
|
|
|
442 |
|
|
|
443 |
private ColumnConfig creerColonneAcces() {
|
|
|
444 |
GridCellRenderer<CollectionACommentaire> accesRendu = new GridCellRenderer<CollectionACommentaire>() {
|
|
|
445 |
@Override
|
|
|
446 |
public String render(CollectionACommentaire model, String property, ColumnData config, int rowIndex, int colIndex, ListStore<CollectionACommentaire> store, Grid<CollectionACommentaire> grid) {
|
|
|
447 |
String acces = (model.getCommentaire().etrePublic() ? i18nC.donneePublic() : i18nC.donneePrivee());
|
|
|
448 |
model.set("_public_", acces);
|
|
|
449 |
return acces;
|
|
|
450 |
}
|
|
|
451 |
};
|
|
|
452 |
ColumnConfig accesColonne = new ColumnConfig("_public_", i18nC.commentairePublic(), 30);
|
|
|
453 |
accesColonne.setRenderer(accesRendu);
|
|
|
454 |
return accesColonne;
|
|
|
455 |
}
|
|
|
456 |
|
|
|
457 |
public void actualiserEtatBoutonsBarreOutils() {
|
|
|
458 |
// Activation des boutons si la grille contient un élément
|
|
|
459 |
if (grille.getStore().getCount() > 0) {
|
|
|
460 |
commentairesBoutonSupprimer.enable();
|
|
|
461 |
commentairesBoutonModifier.enable();
|
|
|
462 |
}
|
|
|
463 |
// Désactivation des boutons si la grille ne contient plus d'élément
|
|
|
464 |
if (grille.getStore().getCount() == 0) {
|
|
|
465 |
commentairesBoutonSupprimer.disable();
|
|
|
466 |
commentairesBoutonModifier.disable();
|
|
|
467 |
}
|
|
|
468 |
}
|
|
|
469 |
|
|
|
470 |
public void rafraichir(Object nouvellesDonnees) {
|
|
|
471 |
if (nouvellesDonnees instanceof ValeurListe) {
|
|
|
472 |
ValeurListe listeValeurs = (ValeurListe) nouvellesDonnees;
|
|
|
473 |
rafraichirValeurListe(listeValeurs);
|
|
|
474 |
} else if (nouvellesDonnees instanceof Information) {
|
|
|
475 |
Information info = (Information) nouvellesDonnees;
|
|
|
476 |
rafraichirInformation(info);
|
|
|
477 |
} else if (nouvellesDonnees instanceof CommentaireListe) {
|
|
|
478 |
CommentaireListe listeCommentaires = (CommentaireListe) nouvellesDonnees;
|
|
|
479 |
rafraichirCommentairesListe(listeCommentaires);
|
|
|
480 |
} else {
|
|
|
481 |
GWT.log(Mediateur.i18nM.erreurRafraichir(nouvellesDonnees.getClass(), this.getClass()), null);
|
|
|
482 |
}
|
|
|
483 |
|
|
|
484 |
if (chargementTypesOk && chargementCommentairesOk) {
|
|
|
485 |
peupler();
|
|
|
486 |
initialiserChargement();
|
|
|
487 |
}
|
|
|
488 |
}
|
|
|
489 |
|
|
|
490 |
private void rafraichirValeurListe(ValeurListe listeValeurs) {
|
|
|
491 |
if (listeValeurs.getId().equals(config.getListeId("typeCommentaireCollection"))) {
|
1031 |
jpm |
492 |
List<Valeur> liste = listeValeurs.toList();
|
|
|
493 |
if (liste.size() > 0) {
|
|
|
494 |
ListStore<Valeur> store = typeCombo.getStore();
|
|
|
495 |
store.removeAll();
|
|
|
496 |
store.add(liste);
|
|
|
497 |
store.sort("nom", SortDir.ASC);
|
|
|
498 |
typeCombo.setStore(store);
|
|
|
499 |
}
|
997 |
jpm |
500 |
chargementTypesOk = true;
|
|
|
501 |
} else {
|
|
|
502 |
GWT.log("Gestion de la liste "+listeValeurs.getId()+" non implémenté!", null);
|
|
|
503 |
}
|
|
|
504 |
}
|
|
|
505 |
|
|
|
506 |
public void rafraichirInformation(Information info) {
|
|
|
507 |
if (info.getMessages() != null && !info.getMessages().toString().equals("[]")) {
|
|
|
508 |
GWT.log("MESSAGES:\n"+info.getMessages().toString(), null);
|
|
|
509 |
}
|
|
|
510 |
String type = info.getType();
|
|
|
511 |
if (info.getType().equals("ajout_collection")) {
|
|
|
512 |
if (info.getDonnee(0) != null && info.getDonnee(0) instanceof String) {
|
|
|
513 |
String collectionId = (String) info.getDonnee(0);
|
|
|
514 |
|
|
|
515 |
// Suite à la récupération de l'id de la collection nouvellement ajoutée nous ajoutons les personnes liées
|
|
|
516 |
// En mode AJOUT, il ne peut que y avoir des personnes liées ajoutées
|
|
|
517 |
mediateur.ajouterCollectionACommentaire(this, collectionId, commentairesAjoutees);
|
|
|
518 |
}
|
|
|
519 |
} else if (type.equals("commentaire_modifiee")) {
|
|
|
520 |
if (info.getDonnee(0) != null) {
|
|
|
521 |
Commentaire commentaire = (Commentaire) info.getDonnee(0);
|
|
|
522 |
CollectionACommentaire commentaireDansGrille = grille.getStore().findModel("id_commentaire", commentaire.getId());
|
|
|
523 |
int index = grille.getStore().indexOf(commentaireDansGrille);
|
|
|
524 |
grille.getStore().remove(commentaireDansGrille);
|
|
|
525 |
String typeCommentaire = (String) commentaireDansGrille.get("_type_");
|
|
|
526 |
ajouterDansGrille(commentaire, typeCommentaire, index);
|
|
|
527 |
}
|
|
|
528 |
} else if (type.equals("commentaire_ajoutee")) {
|
|
|
529 |
if (info.getDonnee(0) != null) {
|
|
|
530 |
Commentaire commentaire = (Commentaire) info.getDonnee(0);
|
|
|
531 |
ajouterDansGrille(commentaire);
|
|
|
532 |
}
|
|
|
533 |
} else if (info.getType().equals("modif_collection_a_commentaire")) {
|
|
|
534 |
Info.display("Modification des notes liées à la collection", info.toString());
|
|
|
535 |
} else if (info.getType().equals("suppression_collection_a_commentaire")) {
|
|
|
536 |
Info.display("Suppression des notes liées à la collection", info.toString());
|
|
|
537 |
} else if (info.getType().equals("ajout_collection_a_commentaire")) {
|
|
|
538 |
Info.display("Ajout des notes liées à la collection", info.toString());
|
|
|
539 |
} else if (info.getType().equals("liste_collection_a_commentaire")) {
|
|
|
540 |
if (info.getDonnee(0) != null) {
|
|
|
541 |
initialiser();
|
|
|
542 |
collection.setCommentairesLiees((CollectionACommentaireListe) info.getDonnee(0));
|
|
|
543 |
chargementCommentairesOk = true;
|
|
|
544 |
}
|
|
|
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();
|
|
|
559 |
Info.display(i18nC.chargementCommentaire(), i18nC.ok());
|
|
|
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)) {
|
|
|
569 |
// Comme il est impossible de modifier les relations nous supprimons l'ancien enregistrement et ajoutons un nouveau avec le nouveau id_role
|
|
|
570 |
commentairesSupprimees.put("id"+idGenere++, relationCollectionACommentaire);
|
1077 |
jpm |
571 |
Debug.log("AVANT:"+relationCollectionACommentaire.getId()+"/"+relationCollectionACommentaire.getType());
|
997 |
jpm |
572 |
|
|
|
573 |
CollectionACommentaire relationAAjouter = (CollectionACommentaire) relationCollectionACommentaire.cloner(new CollectionACommentaire());
|
|
|
574 |
corrigerChampsGrille(relationAAjouter);// Nous modifions l'id_type
|
1077 |
jpm |
575 |
Debug.log("APRES:"+relationAAjouter.getId()+"/"+relationAAjouter.getType());
|
997 |
jpm |
576 |
commentairesAjoutees.put("id"+idGenere++, relationAAjouter);
|
|
|
577 |
Debug.log("Commentaires modifiés : "+relationAAjouter.getCommentaire().getTitre());
|
|
|
578 |
}
|
|
|
579 |
if (relationCollectionACommentaire.get("_etat_").equals(aDonnee.ETAT_AJOUTE)) {
|
|
|
580 |
corrigerChampsGrille(relationCollectionACommentaire);// Nous modifions l'id_type
|
|
|
581 |
commentairesAjoutees.put("id"+idGenere++, relationCollectionACommentaire);
|
|
|
582 |
Debug.log("Commentaires ajoutés : "+relationCollectionACommentaire.getCommentaire().getTitre());
|
|
|
583 |
}
|
|
|
584 |
// Initialisation de la grille
|
|
|
585 |
relationCollectionACommentaire.set("_etat_", "");
|
|
|
586 |
}
|
|
|
587 |
}
|
|
|
588 |
grille.getStore().commitChanges();
|
|
|
589 |
}
|
|
|
590 |
}
|
|
|
591 |
|
|
|
592 |
private void corrigerChampsGrille(CollectionACommentaire relationCollectionACommentaire) {
|
|
|
593 |
String type = relationCollectionACommentaire.get("_type_");
|
1077 |
jpm |
594 |
relationCollectionACommentaire.setType(typeCombo.formaterTexteEnIdentifiants(type));
|
997 |
jpm |
595 |
}
|
|
|
596 |
|
|
|
597 |
public void soumettre() {
|
|
|
598 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
|
|
599 |
if (commentairesAjoutees.size() == 0 && commentairesSupprimees.size() == 0) {
|
|
|
600 |
Info.display("Modification des commentaires liées", "Rien n'a été enregistré car le formulaire n'a pas été modifié.");
|
|
|
601 |
} else {
|
|
|
602 |
// Ajout des relations CollectionAPersonne
|
|
|
603 |
if (commentairesAjoutees.size() != 0) {
|
|
|
604 |
mediateur.ajouterCollectionACommentaire(this, collection.getId(), commentairesAjoutees);
|
|
|
605 |
}
|
|
|
606 |
// Suppression des relations StructureAPersonne
|
|
|
607 |
if (commentairesSupprimees.size() != 0) {
|
|
|
608 |
mediateur.supprimerCollectionACommentaire(this, commentairesSupprimees);
|
|
|
609 |
Debug.log("Nbre commentaires supprimées :"+commentairesSupprimees.size());
|
|
|
610 |
}
|
|
|
611 |
}
|
|
|
612 |
}
|
|
|
613 |
}
|
|
|
614 |
|
|
|
615 |
private void obtenirCommentairesSaisis(String titre) {
|
|
|
616 |
mediateur.selectionnerCommentaireParTitre(this, titre+"%");
|
|
|
617 |
}
|
|
|
618 |
|
|
|
619 |
private void actualiserGrille() {
|
|
|
620 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
|
|
621 |
mediateur.selectionnerCollectionACommentaire(this, collection.getId());
|
|
|
622 |
} else {
|
|
|
623 |
grille.getStore().removeAll();
|
|
|
624 |
layout();
|
|
|
625 |
}
|
|
|
626 |
}
|
|
|
627 |
}
|