934 |
jpm |
1 |
package org.tela_botanica.client.vues.collection;
|
719 |
jp_milcent |
2 |
|
|
|
3 |
import java.util.ArrayList;
|
|
|
4 |
import java.util.List;
|
|
|
5 |
|
|
|
6 |
import org.tela_botanica.client.Mediateur;
|
1218 |
cyprien |
7 |
import org.tela_botanica.client.composants.InfoLogger;
|
719 |
jp_milcent |
8 |
import org.tela_botanica.client.images.Images;
|
|
|
9 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
|
|
10 |
import org.tela_botanica.client.modeles.Information;
|
907 |
jpm |
11 |
import org.tela_botanica.client.modeles.aDonnee;
|
935 |
jpm |
12 |
import org.tela_botanica.client.modeles.collection.Collection;
|
|
|
13 |
import org.tela_botanica.client.modeles.collection.CollectionAPublication;
|
|
|
14 |
import org.tela_botanica.client.modeles.collection.CollectionAPublicationListe;
|
|
|
15 |
import org.tela_botanica.client.modeles.publication.Publication;
|
|
|
16 |
import org.tela_botanica.client.modeles.publication.PublicationListe;
|
907 |
jpm |
17 |
import org.tela_botanica.client.util.Debug;
|
934 |
jpm |
18 |
import org.tela_botanica.client.vues.FenetreForm;
|
|
|
19 |
import org.tela_botanica.client.vues.Formulaire;
|
|
|
20 |
import org.tela_botanica.client.vues.FormulaireBarreValidation;
|
|
|
21 |
import org.tela_botanica.client.vues.FormulaireOnglet;
|
935 |
jpm |
22 |
import org.tela_botanica.client.vues.publication.PublicationForm;
|
719 |
jp_milcent |
23 |
|
1278 |
gduche |
24 |
import com.extjs.gxt.ui.client.Style.Scroll;
|
799 |
jpm |
25 |
import com.extjs.gxt.ui.client.core.XTemplate;
|
775 |
jpm |
26 |
import com.extjs.gxt.ui.client.event.BaseEvent;
|
719 |
jp_milcent |
27 |
import com.extjs.gxt.ui.client.event.ButtonEvent;
|
|
|
28 |
import com.extjs.gxt.ui.client.event.ComponentEvent;
|
775 |
jpm |
29 |
import com.extjs.gxt.ui.client.event.Events;
|
719 |
jp_milcent |
30 |
import com.extjs.gxt.ui.client.event.KeyListener;
|
|
|
31 |
import com.extjs.gxt.ui.client.event.Listener;
|
|
|
32 |
import com.extjs.gxt.ui.client.event.SelectionListener;
|
|
|
33 |
import com.extjs.gxt.ui.client.store.ListStore;
|
|
|
34 |
import com.extjs.gxt.ui.client.store.Store;
|
|
|
35 |
import com.extjs.gxt.ui.client.store.StoreEvent;
|
|
|
36 |
import com.extjs.gxt.ui.client.widget.ContentPanel;
|
|
|
37 |
import com.extjs.gxt.ui.client.widget.Info;
|
862 |
jpm |
38 |
import com.extjs.gxt.ui.client.widget.Text;
|
719 |
jp_milcent |
39 |
import com.extjs.gxt.ui.client.widget.button.Button;
|
775 |
jpm |
40 |
import com.extjs.gxt.ui.client.widget.button.ButtonBar;
|
719 |
jp_milcent |
41 |
import com.extjs.gxt.ui.client.widget.form.ComboBox;
|
775 |
jpm |
42 |
import com.extjs.gxt.ui.client.widget.form.FormPanel;
|
719 |
jp_milcent |
43 |
import com.extjs.gxt.ui.client.widget.form.ComboBox.TriggerAction;
|
|
|
44 |
import com.extjs.gxt.ui.client.widget.grid.ColumnConfig;
|
910 |
jpm |
45 |
import com.extjs.gxt.ui.client.widget.grid.ColumnData;
|
719 |
jp_milcent |
46 |
import com.extjs.gxt.ui.client.widget.grid.ColumnModel;
|
907 |
jpm |
47 |
import com.extjs.gxt.ui.client.widget.grid.EditorGrid;
|
910 |
jpm |
48 |
import com.extjs.gxt.ui.client.widget.grid.Grid;
|
|
|
49 |
import com.extjs.gxt.ui.client.widget.grid.GridCellRenderer;
|
719 |
jp_milcent |
50 |
import com.extjs.gxt.ui.client.widget.grid.GridSelectionModel;
|
799 |
jpm |
51 |
import com.extjs.gxt.ui.client.widget.grid.RowExpander;
|
719 |
jp_milcent |
52 |
import com.extjs.gxt.ui.client.widget.grid.RowNumberer;
|
|
|
53 |
import com.extjs.gxt.ui.client.widget.layout.FitLayout;
|
1278 |
gduche |
54 |
import com.extjs.gxt.ui.client.widget.layout.FlowLayout;
|
719 |
jp_milcent |
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 CollectionFormPublication extends FormulaireOnglet implements Rafraichissable {
|
883 |
jpm |
60 |
|
1083 |
jpm |
61 |
public static final String ID = "publication";
|
883 |
jpm |
62 |
private Collection collection = null;
|
|
|
63 |
private static int idGenere = 1;
|
|
|
64 |
|
719 |
jp_milcent |
65 |
private ContentPanel panneauPrincipal = null;
|
|
|
66 |
private ToolBar barreOutils = null;
|
907 |
jpm |
67 |
private EditorGrid<CollectionAPublication> grille;
|
719 |
jp_milcent |
68 |
|
907 |
jpm |
69 |
private CollectionAPublicationListe publicationsAjoutees = null;
|
|
|
70 |
private CollectionAPublicationListe publicationsSupprimees = null;
|
719 |
jp_milcent |
71 |
private ComboBox<Publication> publicationsSaisiesComboBox = null;
|
|
|
72 |
private Button publicationsBoutonSupprimer = null;
|
|
|
73 |
private Button publicationsBoutonModifier = null;
|
|
|
74 |
|
781 |
jpm |
75 |
private FenetreForm fenetreFormulaire = null;
|
|
|
76 |
|
719 |
jp_milcent |
77 |
public CollectionFormPublication(Formulaire formulaireCourrant) {
|
1278 |
gduche |
78 |
|
719 |
jp_milcent |
79 |
initialiserOnglet(formulaireCourrant);
|
1083 |
jpm |
80 |
setId(ID);
|
719 |
jp_milcent |
81 |
setText(Mediateur.i18nC.collectionPublication());
|
|
|
82 |
setStyleAttribute("padding", "0");
|
|
|
83 |
panneauPrincipal = creerPanneauContenantGrille();
|
1278 |
gduche |
84 |
setLayout(new FitLayout());
|
719 |
jp_milcent |
85 |
barreOutils = creerBarreOutilsGrille();
|
|
|
86 |
panneauPrincipal.setTopComponent(barreOutils);
|
|
|
87 |
grille = creerGrille();
|
1278 |
gduche |
88 |
panneauPrincipal.setLayout(new FitLayout());
|
|
|
89 |
panneauPrincipal.add(grille);
|
|
|
90 |
|
719 |
jp_milcent |
91 |
add(panneauPrincipal);
|
|
|
92 |
|
|
|
93 |
initialiser();
|
|
|
94 |
}
|
|
|
95 |
|
|
|
96 |
private void initialiser() {
|
|
|
97 |
// Remise à zéro des modification dans la liste des auteurs
|
883 |
jpm |
98 |
idGenere = 1;
|
907 |
jpm |
99 |
publicationsAjoutees = new CollectionAPublicationListe();
|
|
|
100 |
publicationsSupprimees = new CollectionAPublicationListe();
|
719 |
jp_milcent |
101 |
|
|
|
102 |
// Actualisation de l'état des boutons de la barre d'outils
|
|
|
103 |
actualiserEtatBoutonsBarreOutils();
|
883 |
jpm |
104 |
|
|
|
105 |
collection = ((CollectionForm) formulaire).collection;
|
719 |
jp_milcent |
106 |
}
|
883 |
jpm |
107 |
|
719 |
jp_milcent |
108 |
private ContentPanel creerPanneauContenantGrille() {
|
|
|
109 |
ContentPanel panneau = new ContentPanel();
|
|
|
110 |
|
|
|
111 |
panneau.setHeading(i18nC.collectionPublicationTitre());
|
|
|
112 |
panneau.setIcon(Images.ICONES.table());
|
|
|
113 |
panneau.setLayout(new FitLayout());
|
|
|
114 |
panneau.setFrame(true);
|
|
|
115 |
|
|
|
116 |
return panneau;
|
|
|
117 |
}
|
|
|
118 |
|
|
|
119 |
private ToolBar creerBarreOutilsGrille() {
|
|
|
120 |
ToolBar barreOutils = new ToolBar();
|
|
|
121 |
|
|
|
122 |
Button ajouterBouton = creerBoutonAjouter();
|
|
|
123 |
barreOutils.add(ajouterBouton);
|
|
|
124 |
|
862 |
jpm |
125 |
barreOutils.add(new Text(" ou "));
|
|
|
126 |
|
|
|
127 |
publicationsSaisiesComboBox = creerComboBoxPublicationsSaisis();
|
|
|
128 |
barreOutils.add(publicationsSaisiesComboBox);
|
|
|
129 |
|
719 |
jp_milcent |
130 |
barreOutils.add(new SeparatorToolItem());
|
|
|
131 |
|
|
|
132 |
publicationsBoutonModifier = creerBoutonModifier();
|
|
|
133 |
barreOutils.add(publicationsBoutonModifier);
|
|
|
134 |
|
|
|
135 |
barreOutils.add(new SeparatorToolItem());
|
|
|
136 |
|
|
|
137 |
publicationsBoutonSupprimer = creerBoutonSupprimer();
|
|
|
138 |
barreOutils.add(publicationsBoutonSupprimer);
|
|
|
139 |
|
|
|
140 |
barreOutils.add(new SeparatorToolItem());
|
|
|
141 |
|
|
|
142 |
Button rafraichirBouton = creerBoutonRafraichir();
|
|
|
143 |
barreOutils.add(rafraichirBouton);
|
|
|
144 |
|
|
|
145 |
return barreOutils;
|
|
|
146 |
}
|
|
|
147 |
|
|
|
148 |
private Button creerBoutonAjouter() {
|
|
|
149 |
Button bouton = new Button(i18nC.ajouter());
|
|
|
150 |
bouton.setIcon(Images.ICONES.vcardAjouter());
|
|
|
151 |
bouton.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
|
|
152 |
public void componentSelected(ButtonEvent ce) {
|
781 |
jpm |
153 |
fenetreFormulaire = creerFenetreModaleAvecFormulairePersonne(Formulaire.MODE_AJOUTER);
|
|
|
154 |
fenetreFormulaire.show();
|
719 |
jp_milcent |
155 |
}
|
|
|
156 |
});
|
|
|
157 |
return bouton;
|
|
|
158 |
}
|
|
|
159 |
|
|
|
160 |
private Button creerBoutonModifier() {
|
|
|
161 |
Button bouton = new Button(i18nC.modifier());
|
|
|
162 |
bouton.setIcon(Images.ICONES.vcardModifier());
|
|
|
163 |
bouton.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
|
|
164 |
public void componentSelected(ButtonEvent ce) {
|
907 |
jpm |
165 |
CollectionAPublication publicationSaisieSelectionnee = grille.getSelectionModel().getSelectedItem();
|
719 |
jp_milcent |
166 |
|
|
|
167 |
if (publicationSaisieSelectionnee == null) {
|
1218 |
cyprien |
168 |
InfoLogger.display(i18nC.informationTitreGenerique(), i18nC.selectionnerPublication());
|
719 |
jp_milcent |
169 |
} else {
|
781 |
jpm |
170 |
fenetreFormulaire = creerFenetreModaleAvecFormulairePersonne(Formulaire.MODE_MODIFIER);
|
|
|
171 |
fenetreFormulaire.show();
|
719 |
jp_milcent |
172 |
}
|
|
|
173 |
}
|
|
|
174 |
});
|
|
|
175 |
return bouton;
|
|
|
176 |
}
|
775 |
jpm |
177 |
|
|
|
178 |
private FenetreForm creerFenetreModaleAvecFormulairePersonne(String mode) {
|
781 |
jpm |
179 |
String publicationId = null;
|
|
|
180 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
907 |
jpm |
181 |
CollectionAPublication publicationSaisiSelectionne = grille.getSelectionModel().getSelectedItem();
|
|
|
182 |
publicationId = publicationSaisiSelectionne.getIdPublication();
|
781 |
jpm |
183 |
}
|
|
|
184 |
|
775 |
jpm |
185 |
final FenetreForm fenetre = new FenetreForm("");
|
781 |
jpm |
186 |
final PublicationForm formulaire = creerFormulairePublication(fenetre, publicationId);
|
775 |
jpm |
187 |
fenetre.add(formulaire);
|
|
|
188 |
return fenetre;
|
|
|
189 |
}
|
|
|
190 |
|
781 |
jpm |
191 |
private PublicationForm creerFormulairePublication(final FenetreForm fenetre, final String publicationId) {
|
786 |
jpm |
192 |
PublicationForm formulairePublication = new PublicationForm(mediateur, publicationId, this);
|
775 |
jpm |
193 |
FormPanel panneauFormulaire = formulairePublication.getFormulaire();
|
|
|
194 |
fenetre.setHeading(panneauFormulaire.getHeading());
|
|
|
195 |
panneauFormulaire.setHeaderVisible(false);
|
|
|
196 |
panneauFormulaire.setTopComponent(null);
|
957 |
jpm |
197 |
|
|
|
198 |
// 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.
|
|
|
199 |
panneauFormulaire.getBottomComponent().hide();
|
775 |
jpm |
200 |
SelectionListener<ButtonEvent> ecouteur = creerEcouteurValidationFormulairePublication(fenetre, formulairePublication);
|
|
|
201 |
final ButtonBar barreValidation = new FormulaireBarreValidation(ecouteur);
|
957 |
jpm |
202 |
fenetre.setBottomComponent(barreValidation);
|
775 |
jpm |
203 |
|
|
|
204 |
return formulairePublication;
|
|
|
205 |
}
|
|
|
206 |
|
|
|
207 |
private SelectionListener<ButtonEvent> creerEcouteurValidationFormulairePublication(final FenetreForm fenetre, final PublicationForm formulaire) {
|
|
|
208 |
SelectionListener<ButtonEvent> ecouteur = new SelectionListener<ButtonEvent>() {
|
|
|
209 |
public void componentSelected(ButtonEvent ce) {
|
|
|
210 |
String code = ((Button) ce.getComponent()).getData("code");
|
|
|
211 |
if (code.equals(FormulaireBarreValidation.CODE_BOUTON_VALIDER)) {
|
786 |
jpm |
212 |
if (formulaire.soumettreFormulaire()) {
|
|
|
213 |
fenetre.hide();
|
|
|
214 |
}
|
775 |
jpm |
215 |
} else if (code.equals(FormulaireBarreValidation.CODE_BOUTON_APPLIQUER)) {
|
782 |
jpm |
216 |
formulaire.soumettreFormulaire();
|
775 |
jpm |
217 |
} else if (code.equals(FormulaireBarreValidation.CODE_BOUTON_ANNULER)) {
|
|
|
218 |
fenetre.hide();
|
|
|
219 |
} else if (code.equals(FormulaireBarreValidation.CODE_BOUTON_REINITIALISER)) {
|
781 |
jpm |
220 |
fenetreFormulaire.hide();
|
|
|
221 |
fenetreFormulaire = creerFenetreModaleAvecFormulairePersonne(formulaire.mode);
|
|
|
222 |
fenetreFormulaire.show();
|
775 |
jpm |
223 |
}
|
|
|
224 |
}
|
|
|
225 |
};
|
|
|
226 |
|
|
|
227 |
return ecouteur;
|
|
|
228 |
}
|
781 |
jpm |
229 |
|
719 |
jp_milcent |
230 |
private Button creerBoutonSupprimer() {
|
|
|
231 |
Button bouton = new Button(i18nC.supprimer());
|
|
|
232 |
bouton.setIcon(Images.ICONES.vcardSupprimer());
|
|
|
233 |
bouton.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
|
|
234 |
public void componentSelected(ButtonEvent ce) {
|
907 |
jpm |
235 |
CollectionAPublication publicationSaisieSelectionnee = grille.getSelectionModel().getSelectedItem();
|
719 |
jp_milcent |
236 |
if (publicationSaisieSelectionnee == null) {
|
1218 |
cyprien |
237 |
InfoLogger.display(i18nC.informationTitreGenerique(), i18nC.selectionnerPublication());
|
719 |
jp_milcent |
238 |
} else {
|
|
|
239 |
supprimerDansGrille(publicationSaisieSelectionnee);
|
|
|
240 |
}
|
|
|
241 |
}
|
|
|
242 |
});
|
|
|
243 |
return bouton;
|
|
|
244 |
}
|
|
|
245 |
|
|
|
246 |
private Button creerBoutonRafraichir() {
|
|
|
247 |
Button bouton = new Button(i18nC.rafraichir());
|
|
|
248 |
bouton.setIcon(Images.ICONES.rafraichir());
|
|
|
249 |
bouton.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
|
|
250 |
public void componentSelected(ButtonEvent ce) {
|
883 |
jpm |
251 |
actualiserGrille();
|
719 |
jp_milcent |
252 |
}
|
|
|
253 |
});
|
|
|
254 |
return bouton;
|
|
|
255 |
}
|
|
|
256 |
|
883 |
jpm |
257 |
private void actualiserGrille() {
|
|
|
258 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
|
|
259 |
mediateur.selectionnerCollectionAPublication(this, collection.getId());
|
|
|
260 |
} else {
|
|
|
261 |
grille.getStore().removeAll();
|
|
|
262 |
layout();
|
|
|
263 |
}
|
|
|
264 |
}
|
|
|
265 |
|
719 |
jp_milcent |
266 |
private ComboBox<Publication> creerComboBoxPublicationsSaisis() {
|
|
|
267 |
ListStore<Publication> publicationsSaisiesStore = new ListStore<Publication>();
|
|
|
268 |
|
|
|
269 |
ComboBox<Publication> comboBox = new ComboBox<Publication>();
|
|
|
270 |
comboBox.setWidth(400);
|
|
|
271 |
comboBox.setEmptyText(i18nC.chercherPublicationSaisi());
|
|
|
272 |
comboBox.setTriggerAction(TriggerAction.ALL);
|
|
|
273 |
comboBox.setEditable(true);
|
|
|
274 |
comboBox.setDisplayField("fmt_nom_complet");
|
|
|
275 |
comboBox.setStore(publicationsSaisiesStore);
|
|
|
276 |
comboBox.addKeyListener(new KeyListener() {
|
|
|
277 |
public void componentKeyUp(ComponentEvent ce) {
|
775 |
jpm |
278 |
if (publicationsSaisiesComboBox.getRawValue() != null && publicationsSaisiesComboBox.getRawValue().length() > 0) {
|
|
|
279 |
if (!ce.isNavKeyPress()) {
|
|
|
280 |
obtenirPublicationsSaisies(publicationsSaisiesComboBox.getRawValue());
|
|
|
281 |
}
|
719 |
jp_milcent |
282 |
}
|
|
|
283 |
}
|
|
|
284 |
});
|
775 |
jpm |
285 |
comboBox.addListener(Events.Select, new Listener<BaseEvent>() {
|
|
|
286 |
public void handleEvent(BaseEvent be) {
|
|
|
287 |
if (publicationsSaisiesComboBox.getValue() instanceof Publication) {
|
862 |
jpm |
288 |
Publication publicationSaisieSelectionne = publicationsSaisiesComboBox.getValue();
|
|
|
289 |
ajouterDansGrille(publicationSaisieSelectionne);
|
|
|
290 |
publicationsSaisiesComboBox.setValue(null);
|
775 |
jpm |
291 |
}
|
|
|
292 |
}
|
|
|
293 |
});
|
719 |
jp_milcent |
294 |
return comboBox;
|
|
|
295 |
}
|
907 |
jpm |
296 |
|
719 |
jp_milcent |
297 |
private void ajouterDansGrille(Publication publication) {
|
907 |
jpm |
298 |
ajouterDansGrille(publication, 0);
|
|
|
299 |
}
|
|
|
300 |
|
|
|
301 |
private void ajouterDansGrille(Publication publication, int index) {
|
719 |
jp_milcent |
302 |
if (publication != null) {
|
907 |
jpm |
303 |
CollectionAPublication publicationLiee = new CollectionAPublication();
|
|
|
304 |
publicationLiee.setPublication(publication);
|
|
|
305 |
publicationLiee.setIdPublication(publication.getId());
|
|
|
306 |
// Gestion de l'id de la collection
|
|
|
307 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
|
|
308 |
publicationLiee.setIdCollection(collection.getId());
|
719 |
jp_milcent |
309 |
}
|
907 |
jpm |
310 |
publicationLiee.set("_etat_", aDonnee.ETAT_AJOUTE);
|
910 |
jpm |
311 |
|
719 |
jp_milcent |
312 |
// Ajout à la grille
|
907 |
jpm |
313 |
grille.stopEditing();
|
|
|
314 |
grille.getStore().insert(publicationLiee, 0);
|
|
|
315 |
grille.startEditing(index, 0);
|
|
|
316 |
grille.getSelectionModel().select(index, false);
|
719 |
jp_milcent |
317 |
}
|
|
|
318 |
}
|
|
|
319 |
|
907 |
jpm |
320 |
private void supprimerDansGrille(CollectionAPublication publicationLiee) {
|
|
|
321 |
if (publicationLiee != null) {
|
719 |
jp_milcent |
322 |
// Ajout de la personne supprimée à la liste
|
907 |
jpm |
323 |
if ((publicationLiee.get("_etat_").equals("") || !publicationLiee.get("_etat_").equals(aDonnee.ETAT_AJOUTE))
|
|
|
324 |
&& publicationLiee.getId() != null
|
|
|
325 |
&& !publicationLiee.getId().equals("")) {
|
|
|
326 |
publicationsSupprimees.put("id"+idGenere++, publicationLiee);
|
719 |
jp_milcent |
327 |
}
|
|
|
328 |
|
|
|
329 |
// Suppression de l'enregistrement de la grille
|
907 |
jpm |
330 |
grille.getStore().remove(publicationLiee);
|
719 |
jp_milcent |
331 |
}
|
|
|
332 |
}
|
|
|
333 |
|
907 |
jpm |
334 |
private EditorGrid<CollectionAPublication> creerGrille() {
|
|
|
335 |
ListStore<CollectionAPublication> storeGrille = new ListStore<CollectionAPublication>();
|
|
|
336 |
storeGrille.addListener(Store.Add, new Listener<StoreEvent<CollectionAPublication>>() {
|
|
|
337 |
public void handleEvent(StoreEvent<CollectionAPublication> ce) {
|
719 |
jp_milcent |
338 |
actualiserEtatBoutonsBarreOutils();
|
|
|
339 |
}
|
|
|
340 |
});
|
907 |
jpm |
341 |
storeGrille.addListener(Store.Remove, new Listener<StoreEvent<CollectionAPublication>>() {
|
|
|
342 |
public void handleEvent(StoreEvent<CollectionAPublication> ce) {
|
719 |
jp_milcent |
343 |
actualiserEtatBoutonsBarreOutils();
|
|
|
344 |
}
|
|
|
345 |
});
|
|
|
346 |
|
799 |
jpm |
347 |
RowNumberer numeroPlugin = new RowNumberer();
|
|
|
348 |
numeroPlugin.setHeader("#");
|
719 |
jp_milcent |
349 |
|
799 |
jpm |
350 |
XTemplate infoTpl = XTemplate.create("<p>"+
|
|
|
351 |
"<span style='font-weight:bold;'>"+i18nC.publicationAuteurs()+" :</span> {fmt_auteur}<br />"+
|
|
|
352 |
"<span style='font-weight:bold;'>"+i18nC.publicationTitre()+" :</span> {titre}<br />"+
|
|
|
353 |
"<span style='font-weight:bold;'>"+i18nC.publicationRevueCollection()+" :</span> {collection}<br />"+
|
|
|
354 |
"<span style='font-weight:bold;'>"+i18nC.publicationEditeur()+" :</span> {_editeur_}"+
|
|
|
355 |
"</p>");
|
|
|
356 |
RowExpander expansionPlugin = new RowExpander();
|
|
|
357 |
expansionPlugin.setTemplate(infoTpl);
|
719 |
jp_milcent |
358 |
|
|
|
359 |
List<ColumnConfig> colonnes = new ArrayList<ColumnConfig>();
|
799 |
jpm |
360 |
colonnes.add(expansionPlugin);
|
|
|
361 |
colonnes.add(numeroPlugin);
|
|
|
362 |
colonnes.add(new ColumnConfig("fmt_auteur", i18nC.publicationAuteurs(), 150));
|
|
|
363 |
colonnes.add(new ColumnConfig("titre", i18nC.publicationTitre(), 150));
|
719 |
jp_milcent |
364 |
colonnes.add(new ColumnConfig("collection", i18nC.publicationRevueCollection(), 75));
|
910 |
jpm |
365 |
colonnes.add(creerColonneEditeur());
|
|
|
366 |
colonnes.add(creerColonneAnneePublication());
|
719 |
jp_milcent |
367 |
colonnes.add(new ColumnConfig("indication_nvt", i18nC.publicationNvt(), 75));
|
|
|
368 |
colonnes.add(new ColumnConfig("fascicule", i18nC.publicationFascicule(), 75));
|
|
|
369 |
colonnes.add(new ColumnConfig("truk_pages", i18nC.publicationPage(), 50));
|
|
|
370 |
|
907 |
jpm |
371 |
GridSelectionModel<CollectionAPublication> modeleDeSelection = new GridSelectionModel<CollectionAPublication>();
|
719 |
jp_milcent |
372 |
|
|
|
373 |
ColumnModel modeleDeColonnes = new ColumnModel(colonnes);
|
823 |
jpm |
374 |
modeleDeColonnes.getColumn(0).setWidget(Images.ICONES.information().createImage(), "Info");
|
719 |
jp_milcent |
375 |
|
907 |
jpm |
376 |
EditorGrid<CollectionAPublication> grillePublications = new EditorGrid<CollectionAPublication>(storeGrille, modeleDeColonnes);
|
1278 |
gduche |
377 |
//grillePublications.setHeight("100%");
|
719 |
jp_milcent |
378 |
grillePublications.setBorders(true);
|
|
|
379 |
grillePublications.setSelectionModel(modeleDeSelection);
|
799 |
jpm |
380 |
grillePublications.addPlugin(expansionPlugin);
|
|
|
381 |
grillePublications.addPlugin(numeroPlugin);
|
719 |
jp_milcent |
382 |
grillePublications.getView().setForceFit(true);
|
|
|
383 |
grillePublications.setAutoExpandColumn("titre");
|
|
|
384 |
grillePublications.setStripeRows(true);
|
|
|
385 |
grillePublications.setTrackMouseOver(true);
|
|
|
386 |
|
|
|
387 |
return grillePublications;
|
|
|
388 |
}
|
910 |
jpm |
389 |
|
|
|
390 |
private ColumnConfig creerColonneEditeur() {
|
|
|
391 |
GridCellRenderer<CollectionAPublication> editeurRendu = new GridCellRenderer<CollectionAPublication>() {
|
|
|
392 |
public String render(CollectionAPublication model, String property, ColumnData config, int rowIndex, int colIndex, ListStore<CollectionAPublication> store, Grid<CollectionAPublication> grid) {
|
|
|
393 |
String editeur = model.getPublication().getNomEditeur();
|
|
|
394 |
model.set("_editeur_", editeur);
|
|
|
395 |
return editeur;
|
|
|
396 |
}
|
|
|
397 |
};
|
|
|
398 |
ColumnConfig editeurColonne = new ColumnConfig("_editeur_", Mediateur.i18nC.publicationEditeur(), 135);
|
|
|
399 |
editeurColonne.setRenderer(editeurRendu);
|
|
|
400 |
return editeurColonne;
|
|
|
401 |
}
|
|
|
402 |
|
|
|
403 |
private ColumnConfig creerColonneAnneePublication() {
|
|
|
404 |
GridCellRenderer<CollectionAPublication> datePublicationRendu = new GridCellRenderer<CollectionAPublication>() {
|
|
|
405 |
public String render(CollectionAPublication model, String property, ColumnData config, int rowIndex, int colIndex, ListStore<CollectionAPublication> store, Grid<CollectionAPublication> grid) {
|
|
|
406 |
String annee = model.getPublication().getAnneeParution();
|
|
|
407 |
model.set("_annee_", annee);
|
|
|
408 |
return annee;
|
|
|
409 |
}
|
|
|
410 |
};
|
|
|
411 |
ColumnConfig datePublicationColonne = new ColumnConfig("_annee_", Mediateur.i18nC.publicationDateParution(), 75);
|
|
|
412 |
datePublicationColonne.setRenderer(datePublicationRendu);
|
|
|
413 |
return datePublicationColonne;
|
|
|
414 |
}
|
799 |
jpm |
415 |
|
719 |
jp_milcent |
416 |
public void actualiserEtatBoutonsBarreOutils() {
|
|
|
417 |
// Activation des boutons si la grille contient un élément
|
|
|
418 |
if (grille.getStore().getCount() > 0) {
|
|
|
419 |
publicationsBoutonSupprimer.enable();
|
|
|
420 |
publicationsBoutonModifier.enable();
|
|
|
421 |
}
|
|
|
422 |
// Désactivation des boutons si la grille ne contient plus d'élément
|
|
|
423 |
if (grille.getStore().getCount() == 0) {
|
|
|
424 |
publicationsBoutonSupprimer.disable();
|
|
|
425 |
publicationsBoutonModifier.disable();
|
|
|
426 |
}
|
|
|
427 |
}
|
|
|
428 |
|
|
|
429 |
public void rafraichir(Object nouvellesDonnees) {
|
|
|
430 |
if (nouvellesDonnees instanceof Information) {
|
|
|
431 |
Information info = (Information) nouvellesDonnees;
|
|
|
432 |
rafraichirInformation(info);
|
|
|
433 |
} else if (nouvellesDonnees instanceof PublicationListe) {
|
|
|
434 |
PublicationListe listePublications = (PublicationListe) nouvellesDonnees;
|
|
|
435 |
rafraichirPublicationListe(listePublications);
|
|
|
436 |
} else {
|
|
|
437 |
GWT.log(Mediateur.i18nM.erreurRafraichir(nouvellesDonnees.getClass(), this.getClass()), null);
|
|
|
438 |
}
|
|
|
439 |
}
|
831 |
jpm |
440 |
|
719 |
jp_milcent |
441 |
private void rafraichirPublicationListe(PublicationListe listePublications) {
|
|
|
442 |
publicationsSaisiesComboBox.getStore().removeAll();
|
907 |
jpm |
443 |
publicationsSaisiesComboBox.getStore().add(listePublications.toList());
|
719 |
jp_milcent |
444 |
publicationsSaisiesComboBox.expand();
|
|
|
445 |
}
|
|
|
446 |
|
|
|
447 |
public void rafraichirInformation(Information info) {
|
|
|
448 |
if (info.getMessages() != null && !info.getMessages().toString().equals("[]")) {
|
|
|
449 |
GWT.log("MESSAGES:\n"+info.getMessages().toString(), null);
|
|
|
450 |
}
|
|
|
451 |
String type = info.getType();
|
|
|
452 |
if (type.equals("liste_collection_a_publication")) {
|
|
|
453 |
if (info.getDonnee(0) != null) {
|
|
|
454 |
initialiser();
|
907 |
jpm |
455 |
collection.setPublicationsLiees((CollectionAPublicationListe) info.getDonnee(0));
|
719 |
jp_milcent |
456 |
peupler();
|
|
|
457 |
}
|
1098 |
jpm |
458 |
} else if (info.getType().equals("ajout_collection")) {
|
|
|
459 |
if (info.getDonnee(0) != null && info.getDonnee(0) instanceof String) {
|
|
|
460 |
String collectionId = (String) info.getDonnee(0);
|
|
|
461 |
|
|
|
462 |
// Suite à la récupération de l'id de la collection nouvellement ajoutée nous ajoutons les publications liées
|
|
|
463 |
// En mode AJOUT, il ne peut que y avoir des publications liées ajoutées
|
|
|
464 |
mediateur.ajouterCollectionAPublication(this, collectionId, publicationsAjoutees);
|
|
|
465 |
}
|
786 |
jpm |
466 |
} else if (type.equals("publication_modifiee")) {
|
|
|
467 |
if (info.getDonnee(0) != null) {
|
|
|
468 |
Publication publication = (Publication) info.getDonnee(0);
|
907 |
jpm |
469 |
CollectionAPublication publicationDansGrille = grille.getStore().findModel("id_publication", publication.getId());
|
799 |
jpm |
470 |
int index = grille.getStore().indexOf(publicationDansGrille);
|
|
|
471 |
grille.getStore().remove(publicationDansGrille);
|
907 |
jpm |
472 |
ajouterDansGrille(publication, index);
|
786 |
jpm |
473 |
}
|
799 |
jpm |
474 |
} else if (type.equals("publication_ajoutee")) {
|
|
|
475 |
if (info.getDonnee(0) != null) {
|
|
|
476 |
Publication publication = (Publication) info.getDonnee(0);
|
907 |
jpm |
477 |
ajouterDansGrille(publication);
|
799 |
jpm |
478 |
}
|
907 |
jpm |
479 |
} else if (type.equals("suppression_collection_a_publication")) {
|
1218 |
cyprien |
480 |
InfoLogger.display("Suppression des publications liées à la collection", info.toString());
|
907 |
jpm |
481 |
} else if (type.equals("ajout_collection_a_publication")) {
|
1218 |
cyprien |
482 |
InfoLogger.display("Ajout des publications liées à la collection", info.toString());
|
786 |
jpm |
483 |
} else {
|
|
|
484 |
GWT.log(Mediateur.i18nM.erreurRafraichir(info.getClass(), this.getClass()), null);
|
719 |
jp_milcent |
485 |
}
|
|
|
486 |
}
|
|
|
487 |
|
883 |
jpm |
488 |
public void peupler() {
|
907 |
jpm |
489 |
grille.getStore().removeAll();
|
|
|
490 |
grille.getStore().add(collection.getPublicationsLiees().toList());
|
719 |
jp_milcent |
491 |
layout();
|
1218 |
cyprien |
492 |
InfoLogger.display(i18nC.chargementPublication(), i18nC.ok());
|
719 |
jp_milcent |
493 |
}
|
|
|
494 |
|
907 |
jpm |
495 |
public void collecter() {
|
|
|
496 |
if (etreAccede()) {
|
910 |
jpm |
497 |
int nbrePublication = grille.getStore().getCount();
|
|
|
498 |
for (int i = 0; i < nbrePublication; i++) {
|
907 |
jpm |
499 |
CollectionAPublication publicationLiee = grille.getStore().getAt(i);
|
|
|
500 |
if (publicationLiee.get("_etat_") != null) {
|
|
|
501 |
if (publicationLiee.get("_etat_").equals(aDonnee.ETAT_MODIFIE)) {
|
|
|
502 |
// Comme il est impossible de modifier les relations nous supprimons l'ancien enregistrement et ajoutons un nouveau avec le nouveau id_role
|
|
|
503 |
publicationsSupprimees.put("id"+idGenere++, publicationLiee);
|
|
|
504 |
|
|
|
505 |
CollectionAPublication relationAAjouter = (CollectionAPublication) publicationLiee.cloner(new CollectionAPublication());
|
|
|
506 |
publicationsAjoutees.put("id"+idGenere++, relationAAjouter);
|
|
|
507 |
}
|
|
|
508 |
if (publicationLiee.get("_etat_").equals(aDonnee.ETAT_AJOUTE)) {
|
|
|
509 |
publicationsAjoutees.put("id"+idGenere++, publicationLiee);
|
|
|
510 |
}
|
|
|
511 |
// Initialisation de la grille
|
|
|
512 |
publicationLiee.set("_etat_", "");
|
|
|
513 |
}
|
|
|
514 |
}
|
|
|
515 |
grille.getStore().commitChanges();
|
|
|
516 |
}
|
|
|
517 |
}
|
|
|
518 |
|
|
|
519 |
public void soumettre() {
|
|
|
520 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
|
|
521 |
if (publicationsAjoutees.size() == 0 && publicationsSupprimees.size() == 0) {
|
1218 |
cyprien |
522 |
InfoLogger.display("Modification des publications liées", "Rien n'a été enregistré car le formulaire n'a pas été modifié.");
|
907 |
jpm |
523 |
} else {
|
|
|
524 |
// Ajout des relations CollectionAPublication
|
|
|
525 |
if (publicationsAjoutees.size() != 0) {
|
|
|
526 |
mediateur.ajouterCollectionAPublication(this, collection.getId(), publicationsAjoutees);
|
|
|
527 |
}
|
|
|
528 |
// Suppression des relations CollectionAPublication
|
|
|
529 |
if (publicationsSupprimees.size() != 0) {
|
|
|
530 |
mediateur.supprimerCollectionAPublication(this, publicationsSupprimees);
|
|
|
531 |
}
|
|
|
532 |
}
|
|
|
533 |
}
|
|
|
534 |
}
|
|
|
535 |
|
719 |
jp_milcent |
536 |
private void obtenirPublicationsSaisies(String nom) {
|
1124 |
jpm |
537 |
mediateur.selectionnerPublicationParNomComplet(this, null, "%"+nom+"%");
|
719 |
jp_milcent |
538 |
}
|
|
|
539 |
}
|