60 |
jpm |
1 |
package org.tela_botanica.client;
|
|
|
2 |
|
1562 |
jpm |
3 |
import java.util.ArrayList;
|
1468 |
jpm |
4 |
import java.util.HashMap;
|
231 |
jp_milcent |
5 |
import java.util.Iterator;
|
134 |
jpm |
6 |
import java.util.List;
|
1562 |
jpm |
7 |
import java.util.logging.Level;
|
|
|
8 |
import java.util.logging.Logger;
|
134 |
jpm |
9 |
|
61 |
jpm |
10 |
import org.tela_botanica.client.composants.AideFenetre;
|
60 |
jpm |
11 |
import org.tela_botanica.client.composants.IdentificationFenetre;
|
1210 |
cyprien |
12 |
import org.tela_botanica.client.composants.InfoLogger;
|
898 |
gduche |
13 |
import org.tela_botanica.client.composants.LicenceFenetre;
|
1023 |
jpm |
14 |
import org.tela_botanica.client.composants.AproposFenetre;
|
907 |
jpm |
15 |
import org.tela_botanica.client.configuration.APropos;
|
|
|
16 |
import org.tela_botanica.client.configuration.Configuration;
|
358 |
jp_milcent |
17 |
import org.tela_botanica.client.i18n.Constantes;
|
466 |
gduche |
18 |
import org.tela_botanica.client.i18n.ErrorMessages;
|
119 |
jpm |
19 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
156 |
jp_milcent |
20 |
import org.tela_botanica.client.modeles.Information;
|
327 |
jp_milcent |
21 |
import org.tela_botanica.client.modeles.MenuApplicationId;
|
61 |
jpm |
22 |
import org.tela_botanica.client.modeles.Utilisateur;
|
1014 |
gduche |
23 |
import org.tela_botanica.client.modeles.Valeur;
|
935 |
jpm |
24 |
import org.tela_botanica.client.modeles.collection.Collection;
|
989 |
jpm |
25 |
import org.tela_botanica.client.modeles.collection.CollectionACommentaire;
|
|
|
26 |
import org.tela_botanica.client.modeles.collection.CollectionACommentaireAsyncDao;
|
|
|
27 |
import org.tela_botanica.client.modeles.collection.CollectionACommentaireListe;
|
935 |
jpm |
28 |
import org.tela_botanica.client.modeles.collection.CollectionAPersonne;
|
|
|
29 |
import org.tela_botanica.client.modeles.collection.CollectionAPersonneListe;
|
|
|
30 |
import org.tela_botanica.client.modeles.collection.CollectionAPublication;
|
|
|
31 |
import org.tela_botanica.client.modeles.collection.CollectionAPublicationListe;
|
|
|
32 |
import org.tela_botanica.client.modeles.collection.CollectionListe;
|
985 |
jpm |
33 |
import org.tela_botanica.client.modeles.commentaire.Commentaire;
|
|
|
34 |
import org.tela_botanica.client.modeles.commentaire.CommentaireListe;
|
935 |
jpm |
35 |
import org.tela_botanica.client.modeles.personne.Personne;
|
|
|
36 |
import org.tela_botanica.client.modeles.personne.PersonneListe;
|
|
|
37 |
import org.tela_botanica.client.modeles.publication.Publication;
|
|
|
38 |
import org.tela_botanica.client.modeles.publication.PublicationAPersonne;
|
|
|
39 |
import org.tela_botanica.client.modeles.publication.PublicationAPersonneListe;
|
|
|
40 |
import org.tela_botanica.client.modeles.publication.PublicationListe;
|
|
|
41 |
import org.tela_botanica.client.modeles.structure.Structure;
|
|
|
42 |
import org.tela_botanica.client.modeles.structure.StructureAPersonne;
|
|
|
43 |
import org.tela_botanica.client.modeles.structure.StructureAPersonneListe;
|
|
|
44 |
import org.tela_botanica.client.modeles.structure.StructureConservation;
|
|
|
45 |
import org.tela_botanica.client.modeles.structure.StructureListe;
|
|
|
46 |
import org.tela_botanica.client.modeles.structure.StructureValorisation;
|
1324 |
gduche |
47 |
import org.tela_botanica.client.synchronisation.Sequenceur;
|
1428 |
cyprien |
48 |
import org.tela_botanica.client.util.Debug;
|
1562 |
jpm |
49 |
import org.tela_botanica.client.util.Log;
|
|
|
50 |
import org.tela_botanica.client.util.UtilArray;
|
936 |
jpm |
51 |
import org.tela_botanica.client.vues.ContenuVue;
|
444 |
jp_milcent |
52 |
import org.tela_botanica.client.vues.EnteteVue;
|
1613 |
aurelien |
53 |
import org.tela_botanica.client.vues.FenetreForm;
|
641 |
jp_milcent |
54 |
import org.tela_botanica.client.vues.Formulaire;
|
1210 |
cyprien |
55 |
import org.tela_botanica.client.vues.FenetreJournal;
|
1780 |
aurelien |
56 |
import org.tela_botanica.client.vues.MenuHorizontalVue;
|
332 |
gduche |
57 |
import org.tela_botanica.client.vues.PopupChargement;
|
443 |
jp_milcent |
58 |
import org.tela_botanica.client.vues.StatutVue;
|
912 |
jpm |
59 |
import org.tela_botanica.client.vues.accueil.AccueilVue;
|
934 |
jpm |
60 |
import org.tela_botanica.client.vues.collection.CollectionForm;
|
|
|
61 |
import org.tela_botanica.client.vues.collection.CollectionListeVue;
|
|
|
62 |
import org.tela_botanica.client.vues.collection.CollectionVue;
|
989 |
jpm |
63 |
import org.tela_botanica.client.vues.commentaire.CommentaireForm;
|
985 |
jpm |
64 |
import org.tela_botanica.client.vues.commentaire.CommentaireVue;
|
935 |
jpm |
65 |
import org.tela_botanica.client.vues.personne.PersonneForm;
|
|
|
66 |
import org.tela_botanica.client.vues.personne.PersonneVue;
|
|
|
67 |
import org.tela_botanica.client.vues.publication.PublicationForm;
|
|
|
68 |
import org.tela_botanica.client.vues.publication.PublicationVue;
|
|
|
69 |
import org.tela_botanica.client.vues.structure.StructureForm;
|
|
|
70 |
import org.tela_botanica.client.vues.structure.StructureVue;
|
467 |
jp_milcent |
71 |
|
60 |
jpm |
72 |
import com.extjs.gxt.ui.client.Registry;
|
|
|
73 |
import com.extjs.gxt.ui.client.Style.LayoutRegion;
|
1780 |
aurelien |
74 |
import com.extjs.gxt.ui.client.Style.Orientation;
|
315 |
gduche |
75 |
import com.extjs.gxt.ui.client.event.Listener;
|
502 |
gduche |
76 |
import com.extjs.gxt.ui.client.event.MessageBoxEvent;
|
60 |
jpm |
77 |
import com.extjs.gxt.ui.client.util.Margins;
|
1780 |
aurelien |
78 |
import com.extjs.gxt.ui.client.widget.ContentPanel;
|
315 |
gduche |
79 |
import com.extjs.gxt.ui.client.widget.Dialog;
|
|
|
80 |
import com.extjs.gxt.ui.client.widget.MessageBox;
|
60 |
jpm |
81 |
import com.extjs.gxt.ui.client.widget.Viewport;
|
315 |
gduche |
82 |
import com.extjs.gxt.ui.client.widget.button.Button;
|
60 |
jpm |
83 |
import com.extjs.gxt.ui.client.widget.layout.BorderLayout;
|
|
|
84 |
import com.extjs.gxt.ui.client.widget.layout.BorderLayoutData;
|
1780 |
aurelien |
85 |
import com.extjs.gxt.ui.client.widget.layout.LayoutData;
|
|
|
86 |
import com.extjs.gxt.ui.client.widget.layout.RowData;
|
|
|
87 |
import com.extjs.gxt.ui.client.widget.layout.RowLayout;
|
91 |
jpm |
88 |
import com.google.gwt.core.client.GWT;
|
1509 |
jpm |
89 |
import com.google.gwt.event.logical.shared.ValueChangeEvent;
|
|
|
90 |
import com.google.gwt.event.logical.shared.ValueChangeHandler;
|
1562 |
jpm |
91 |
import com.google.gwt.http.client.URL;
|
599 |
gduche |
92 |
import com.google.gwt.i18n.client.Dictionary;
|
1509 |
jpm |
93 |
import com.google.gwt.user.client.History;
|
60 |
jpm |
94 |
import com.google.gwt.user.client.Window;
|
|
|
95 |
import com.google.gwt.user.client.ui.RootPanel;
|
|
|
96 |
|
1509 |
jpm |
97 |
public class Mediateur implements Rafraichissable, ValueChangeHandler<String> {
|
60 |
jpm |
98 |
|
358 |
jp_milcent |
99 |
private Viewport viewport;
|
119 |
jpm |
100 |
private Modele modele = null;
|
582 |
jp_milcent |
101 |
public static final Constantes i18nC = getI18nConstante();
|
|
|
102 |
public static final ErrorMessages i18nM = getI18nMessage();
|
1637 |
aurelien |
103 |
public static final boolean DEBUG = false;
|
|
|
104 |
public static final boolean DEBUG_CHARGEMENT = false;
|
119 |
jpm |
105 |
|
1562 |
jpm |
106 |
private String requeteUrl = null;
|
|
|
107 |
|
444 |
jp_milcent |
108 |
private EnteteVue panneauNord = null;
|
|
|
109 |
private ContenuVue panneauCentre = null;
|
443 |
jp_milcent |
110 |
private StatutVue panneauSud = null;
|
1210 |
cyprien |
111 |
private FenetreJournal fenetreJournal = null;
|
1780 |
aurelien |
112 |
private MenuHorizontalVue panneauNavigation = null;
|
60 |
jpm |
113 |
|
1468 |
jpm |
114 |
private HashMap<Object, Integer> fileDAttenteChargement = null;
|
|
|
115 |
|
358 |
jp_milcent |
116 |
private IdentificationFenetre fenetreIdentification = null;
|
1041 |
gduche |
117 |
private int nbElements = Integer.valueOf(((Dictionary) Dictionary.getDictionary("configuration")).get("nbElementsPage"));
|
1156 |
jpm |
118 |
|
1468 |
jpm |
119 |
private Sequenceur sequenceur = null;
|
1633 |
aurelien |
120 |
private boolean premierChargement = true;
|
1468 |
jpm |
121 |
|
60 |
jpm |
122 |
public Mediateur() {
|
|
|
123 |
// Enregistrement du Médiateur dans le Registre
|
|
|
124 |
Registry.register(RegistreId.MEDIATEUR, this);
|
765 |
jpm |
125 |
|
|
|
126 |
//Initialisation du Registre
|
|
|
127 |
initialiserRegistre();
|
466 |
gduche |
128 |
|
60 |
jpm |
129 |
// Création du Modèle qui s'enregistre lui même dans le Registre
|
119 |
jpm |
130 |
modele = new Modele();
|
1468 |
jpm |
131 |
|
|
|
132 |
// Séquenceur (local au médiateur)
|
|
|
133 |
sequenceur = new Sequenceur();
|
535 |
jp_milcent |
134 |
|
60 |
jpm |
135 |
// Création du Viewport qui contient la disposition globale de l'application
|
|
|
136 |
viewport = new Viewport();
|
|
|
137 |
viewport.setLayout(new BorderLayout());
|
1780 |
aurelien |
138 |
|
|
|
139 |
panneauNavigation = new MenuHorizontalVue(this);
|
552 |
jp_milcent |
140 |
|
60 |
jpm |
141 |
// Création des différents panneaux
|
|
|
142 |
creerPanneauNord();
|
|
|
143 |
creerPanneauCentral();
|
358 |
jp_milcent |
144 |
creerPanneauSud();
|
1210 |
cyprien |
145 |
fenetreJournal = new FenetreJournal(this);
|
535 |
jp_milcent |
146 |
|
|
|
147 |
// Connection de l'utilisateur
|
|
|
148 |
connecterUtilisateur(null, null);
|
|
|
149 |
|
1468 |
jpm |
150 |
// Creer la table qui gère le panneau de chargement/déchargement
|
|
|
151 |
fileDAttenteChargement = new HashMap<Object, Integer>();
|
|
|
152 |
|
1509 |
jpm |
153 |
// Gestion de l'historique du navigateur
|
|
|
154 |
History.addValueChangeHandler(this);// Ajout du médiateur comme écouteur des changements de l'historique
|
|
|
155 |
if ("".equals(History.getToken())) {
|
|
|
156 |
History.newItem(MenuApplicationId.ACCUEIL);
|
|
|
157 |
} else {
|
|
|
158 |
History.fireCurrentHistoryState();
|
|
|
159 |
}
|
|
|
160 |
|
60 |
jpm |
161 |
// Retour à GWT du Viewport une fois constuit
|
|
|
162 |
RootPanel.get().add(viewport);
|
|
|
163 |
}
|
|
|
164 |
|
156 |
jp_milcent |
165 |
//+----------------------------------------------------------------------------------------------------------------+
|
535 |
jp_milcent |
166 |
// GESTION de l'I18N et du REGISTRE
|
|
|
167 |
//+----------------------------------------------------------------------------------------------------------------+
|
582 |
jp_milcent |
168 |
protected static Constantes getI18nConstante() {
|
535 |
jp_milcent |
169 |
return GWT.create(Constantes.class);
|
|
|
170 |
}
|
|
|
171 |
|
582 |
jp_milcent |
172 |
protected static ErrorMessages getI18nMessage() {
|
535 |
jp_milcent |
173 |
return GWT.create(ErrorMessages.class);
|
|
|
174 |
}
|
|
|
175 |
|
|
|
176 |
protected void initialiserRegistre() {
|
1107 |
jpm |
177 |
APropos apropos = new APropos();
|
907 |
jpm |
178 |
|
1107 |
jpm |
179 |
Registry.register(RegistreId.APPLI_NOM, apropos.getAppliNom());
|
|
|
180 |
Registry.register(RegistreId.APPLI_CODE, apropos.getAppliCode());
|
1108 |
jpm |
181 |
Registry.register(RegistreId.APPLI_VERSION, apropos.getAppliVersionCode());
|
|
|
182 |
Registry.register(RegistreId.APPLI_VERSION_NOM, apropos.getAppliVersionNom());
|
1107 |
jpm |
183 |
|
1023 |
jpm |
184 |
Registry.register(RegistreId.APPLI_DEVELOPPEURS, apropos.getDeveloppeurs());
|
|
|
185 |
Registry.register(RegistreId.APPLI_TRADUCTEURS, apropos.getTraducteurs());
|
1417 |
jpm |
186 |
Registry.register(RegistreId.APPLI_TESTEURS, apropos.getTesteurs());
|
1023 |
jpm |
187 |
Registry.register(RegistreId.APPLI_LICENCE, apropos.getLicence());
|
1417 |
jpm |
188 |
|
907 |
jpm |
189 |
Registry.register(RegistreId.APPLI_REVISION, apropos.getRevisionGlobale());
|
1549 |
jpm |
190 |
Registry.register(RegistreId.SERVICES_REVISION, apropos.getRevisionGlobaleServices());
|
907 |
jpm |
191 |
Registry.register(RegistreId.APPLI_COMPILATION_JAVA_VERSION, apropos.getVersionJavaCompilation());
|
|
|
192 |
Registry.register(RegistreId.APPLI_COMPILATION_DATE_HEURE, apropos.getDateHeureCompilation());
|
535 |
jp_milcent |
193 |
|
|
|
194 |
Registry.register(RegistreId.CONFIG, new Configuration());
|
537 |
jp_milcent |
195 |
Registry.register(RegistreId.POPUP_CHARGEMENT, new PopupChargement(this));
|
766 |
jpm |
196 |
Registry.register(RegistreId.UTILISATEUR_COURANT, new Utilisateur());
|
535 |
jp_milcent |
197 |
}
|
|
|
198 |
|
|
|
199 |
//+----------------------------------------------------------------------------------------------------------------+
|
156 |
jp_milcent |
200 |
// GESTION des PANNEAUX PRINCIPAUX
|
|
|
201 |
//+----------------------------------------------------------------------------------------------------------------+
|
119 |
jpm |
202 |
|
60 |
jpm |
203 |
private void creerPanneauNord() {
|
444 |
jp_milcent |
204 |
panneauNord = new EnteteVue(this);
|
60 |
jpm |
205 |
|
|
|
206 |
BorderLayoutData regionNord = new BorderLayoutData(LayoutRegion.NORTH, 100);
|
|
|
207 |
regionNord.setCollapsible(true);
|
|
|
208 |
regionNord.setFloatable(true);
|
|
|
209 |
regionNord.setSplit(false);
|
|
|
210 |
regionNord.setMargins(new Margins(5, 5, 0, 5));
|
|
|
211 |
|
|
|
212 |
viewport.add(panneauNord, regionNord);
|
|
|
213 |
}
|
|
|
214 |
|
|
|
215 |
private void creerPanneauCentral() {
|
1780 |
aurelien |
216 |
|
|
|
217 |
ContentPanel panneauIntermediaire = new ContentPanel();
|
|
|
218 |
panneauIntermediaire.setLayout(new RowLayout(Orientation.VERTICAL));
|
|
|
219 |
panneauIntermediaire.setHeaderVisible(false);
|
|
|
220 |
|
444 |
jp_milcent |
221 |
panneauCentre = new ContenuVue(this);
|
1780 |
aurelien |
222 |
panneauCentre.setBorders(false);
|
60 |
jpm |
223 |
|
|
|
224 |
BorderLayoutData regionCentre = new BorderLayoutData(LayoutRegion.CENTER);
|
|
|
225 |
regionCentre.setMargins(new Margins(5, 5, 5, 0));
|
1780 |
aurelien |
226 |
|
|
|
227 |
panneauNavigation.setHeight(28);
|
|
|
228 |
panneauNavigation.setBodyBorder(false);
|
|
|
229 |
panneauNavigation.setBorders(false);
|
|
|
230 |
|
|
|
231 |
panneauIntermediaire.add(panneauNavigation, new RowData(1, -1, new Margins(0)));
|
|
|
232 |
panneauIntermediaire.add(panneauCentre, new RowData(1, 1, new Margins(0)));
|
60 |
jpm |
233 |
|
1780 |
aurelien |
234 |
viewport.add(panneauIntermediaire, regionCentre);
|
60 |
jpm |
235 |
}
|
358 |
jp_milcent |
236 |
|
|
|
237 |
private void creerPanneauSud() {
|
443 |
jp_milcent |
238 |
panneauSud = new StatutVue();
|
358 |
jp_milcent |
239 |
|
369 |
jp_milcent |
240 |
BorderLayoutData regionSud = new BorderLayoutData(LayoutRegion.SOUTH, 20);
|
358 |
jp_milcent |
241 |
regionSud.setCollapsible(true);
|
|
|
242 |
regionSud.setFloatable(true);
|
|
|
243 |
regionSud.setSplit(false);
|
|
|
244 |
regionSud.setMargins(new Margins(0));
|
|
|
245 |
|
|
|
246 |
viewport.add(panneauSud, regionSud);
|
|
|
247 |
}
|
60 |
jpm |
248 |
|
369 |
jp_milcent |
249 |
public void actualiserPanneauCentral() {
|
|
|
250 |
panneauCentre.layout();
|
|
|
251 |
}
|
|
|
252 |
|
1210 |
cyprien |
253 |
public Rafraichissable obtenirFenetreJournal() {
|
|
|
254 |
return this.fenetreJournal;
|
|
|
255 |
}
|
|
|
256 |
|
|
|
257 |
public void ouvrirFenetreJournal() {
|
|
|
258 |
fenetreJournal.show();
|
|
|
259 |
}
|
|
|
260 |
|
|
|
261 |
public StatutVue obtenirPanneauSud() {
|
|
|
262 |
return this.panneauSud;
|
|
|
263 |
}
|
|
|
264 |
|
156 |
jp_milcent |
265 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
266 |
// GESTION du MENU
|
|
|
267 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
268 |
|
327 |
jp_milcent |
269 |
public void clicMenu(String codeMenuClique) {
|
1509 |
jpm |
270 |
boolean codeOk = true;
|
1210 |
cyprien |
271 |
if (codeMenuClique.equals(MenuApplicationId.ACCUEIL)) {
|
910 |
jpm |
272 |
afficherAccueil();
|
|
|
273 |
} else if (codeMenuClique.equals(MenuApplicationId.STRUCTURE)) {
|
1691 |
raphael |
274 |
selectionnerStructure(panneauCentre, null, null, false);
|
553 |
jp_milcent |
275 |
} else if (codeMenuClique.equals(MenuApplicationId.COLLECTION)) {
|
1367 |
cyprien |
276 |
selectionnerCollection(panneauCentre, null, null, null);
|
553 |
jp_milcent |
277 |
} else if (codeMenuClique.equals(MenuApplicationId.PERSONNE)) {
|
1763 |
aurelien |
278 |
selectionnerPersonne(panneauCentre, null, null);
|
327 |
jp_milcent |
279 |
} else if (codeMenuClique.equals(MenuApplicationId.PUBLICATION)) {
|
1324 |
gduche |
280 |
selectionnerPublication(panneauCentre, null, null);
|
985 |
jpm |
281 |
} else if (codeMenuClique.equals(MenuApplicationId.COMMENTAIRE)) {
|
1367 |
cyprien |
282 |
selectionnerCommentaire(panneauCentre, null, null);
|
379 |
jp_milcent |
283 |
} else {
|
1562 |
jpm |
284 |
Log.debug(i18nM.nonImplemente(codeMenuClique));
|
1509 |
jpm |
285 |
codeOk = false;
|
60 |
jpm |
286 |
}
|
1509 |
jpm |
287 |
|
|
|
288 |
// Le code menu est valide
|
|
|
289 |
if (codeOk == true) {
|
|
|
290 |
// Sélection du menu
|
1780 |
aurelien |
291 |
panneauNavigation.selectionMenu(codeMenuClique);
|
1509 |
jpm |
292 |
// Gestion de l'historique
|
1562 |
jpm |
293 |
if (requeteUrl == null) {
|
|
|
294 |
History.newItem(codeMenuClique);
|
|
|
295 |
} else {
|
|
|
296 |
History.newItem(codeMenuClique+"?"+requeteUrl);
|
|
|
297 |
}
|
1509 |
jpm |
298 |
// Rafraichissement du panneau central
|
|
|
299 |
panneauCentre.layout();
|
1780 |
aurelien |
300 |
viewport.layout();
|
1509 |
jpm |
301 |
}
|
60 |
jpm |
302 |
}
|
1324 |
gduche |
303 |
|
1468 |
jpm |
304 |
public void activerChargement(Object caller, String message) {
|
|
|
305 |
if (fileDAttenteChargement.get(caller) == null) fileDAttenteChargement.put(caller, 1);
|
|
|
306 |
else fileDAttenteChargement.put(caller, fileDAttenteChargement.get(caller)+1);
|
|
|
307 |
activerChargement(message);
|
|
|
308 |
}
|
|
|
309 |
|
|
|
310 |
private void activerChargement(String message) {
|
|
|
311 |
if (DEBUG_CHARGEMENT) System.out.println("[CHARGEMENT] ActiverChargement");
|
|
|
312 |
if (DEBUG_CHARGEMENT) debugFileAttente();
|
1155 |
jpm |
313 |
afficherPopinChargement();
|
|
|
314 |
panneauCentre.disable();
|
369 |
jp_milcent |
315 |
panneauSud.showBusy(i18nC.chargement()+" "+message);
|
358 |
jp_milcent |
316 |
}
|
|
|
317 |
|
1468 |
jpm |
318 |
public void desactiverChargement(Object caller) {
|
|
|
319 |
if (fileDAttenteChargement.get(caller) == null) {
|
|
|
320 |
if (DEBUG_CHARGEMENT) System.out.println("[CHARGEMENT] Problème : l'objet "+caller+" essaie de désactiver le chargement alors qu'il ne l'a pas initié.");
|
|
|
321 |
}
|
|
|
322 |
else fileDAttenteChargement.put(caller, fileDAttenteChargement.get(caller)-1);
|
|
|
323 |
|
|
|
324 |
if (!chargementsEnCours()) desactiverChargement();
|
1513 |
jpm |
325 |
else if (DEBUG_CHARGEMENT) {
|
|
|
326 |
System.out.println("[CHARGEMENT] Patienter, il y a encore un chargement en cours.");
|
|
|
327 |
debugFileAttente();
|
|
|
328 |
}
|
1468 |
jpm |
329 |
}
|
|
|
330 |
|
|
|
331 |
private void desactiverChargement() {
|
|
|
332 |
if (DEBUG_CHARGEMENT) System.out.println("[CHARGEMENT] Désactiver Chargement");
|
|
|
333 |
if (DEBUG_CHARGEMENT) debugFileAttente();
|
358 |
jp_milcent |
334 |
masquerPopinChargement();
|
1155 |
jpm |
335 |
panneauCentre.enable();
|
358 |
jp_milcent |
336 |
panneauSud.clear();
|
|
|
337 |
}
|
1468 |
jpm |
338 |
|
|
|
339 |
private boolean chargementsEnCours() {
|
|
|
340 |
boolean chargementEnCours = false;
|
|
|
341 |
Iterator<Object> it = fileDAttenteChargement.keySet().iterator();
|
|
|
342 |
while (it.hasNext() && !chargementEnCours) {
|
|
|
343 |
chargementEnCours = (fileDAttenteChargement.get(it.next()) > 0);
|
|
|
344 |
}
|
|
|
345 |
return chargementEnCours;
|
|
|
346 |
}
|
|
|
347 |
|
|
|
348 |
private void debugFileAttente() {
|
|
|
349 |
System.out.println("[CHARGEMENT]--< StackTrace >------------------------------------------------------");
|
|
|
350 |
if (fileDAttenteChargement.size() == 0) System.out.println("(Empty)");
|
|
|
351 |
Iterator<Object> it = fileDAttenteChargement.keySet().iterator();
|
|
|
352 |
while (it.hasNext()) {
|
|
|
353 |
Object o = it.next();
|
1513 |
jpm |
354 |
System.out.println(" ["+o+"] = "+fileDAttenteChargement.get(o));
|
1468 |
jpm |
355 |
}
|
|
|
356 |
}
|
646 |
jp_milcent |
357 |
|
156 |
jp_milcent |
358 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
359 |
// GESTION DES FENÊTRES
|
|
|
360 |
//+----------------------------------------------------------------------------------------------------------------+
|
60 |
jpm |
361 |
|
61 |
jpm |
362 |
public void ouvrirAide() {
|
|
|
363 |
AideFenetre aideFenetre = new AideFenetre();
|
|
|
364 |
aideFenetre.show();
|
66 |
jpm |
365 |
// FIXME : apparament le fade In/Fade Out pose problème sur les navigateurs...
|
|
|
366 |
//aideFenetre.el().fadeIn(FxConfig.NONE);
|
61 |
jpm |
367 |
}
|
|
|
368 |
|
|
|
369 |
public void ouvrirParametres() {
|
1023 |
jpm |
370 |
AproposFenetre parametresFenetre = new AproposFenetre();
|
66 |
jpm |
371 |
parametresFenetre.show();
|
61 |
jpm |
372 |
}
|
|
|
373 |
|
|
|
374 |
public void ouvrirIdentification() {
|
1017 |
jpm |
375 |
fenetreIdentification = new IdentificationFenetre(this);
|
358 |
jp_milcent |
376 |
fenetreIdentification.show();
|
61 |
jpm |
377 |
}
|
|
|
378 |
|
989 |
jpm |
379 |
public void ouvrirUrlExterne(String id) {
|
61 |
jpm |
380 |
if (id.equals(ComposantId.MENU_CEL)) {
|
989 |
jpm |
381 |
Window.open(((Configuration) Registry.get(RegistreId.CONFIG)).getUrl("cel"), "Carnet en ligne", "");
|
1773 |
mathias |
382 |
} else if (id.equals(ComposantId.MENU_CONTACT)) {
|
|
|
383 |
String urlWidgetRemarques = ((Configuration) Registry.get(RegistreId.CONFIG)).getUrl("remarques")
|
|
|
384 |
+ "?email=coel_remarques@tela-botanica.org&pageSource=" + URL.encodeQueryString(Window.Location.getHref());
|
|
|
385 |
Window.open(urlWidgetRemarques, "Remarques", "");
|
61 |
jpm |
386 |
}
|
|
|
387 |
}
|
|
|
388 |
|
898 |
gduche |
389 |
public void afficherFenetreLicence(IdentificationFenetre vue) {
|
1509 |
jpm |
390 |
new LicenceFenetre(vue);
|
898 |
gduche |
391 |
}
|
|
|
392 |
|
|
|
393 |
public void accepterLicence(Rafraichissable vue) {
|
|
|
394 |
modele.accepterLicence(vue);
|
|
|
395 |
}
|
156 |
jp_milcent |
396 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
397 |
// GESTION de l'UTILISATEUR et de l'IDENTIFICATION
|
|
|
398 |
//+----------------------------------------------------------------------------------------------------------------+
|
245 |
jp_milcent |
399 |
/**
|
|
|
400 |
* Retourne l'identifiant de l'utilisateur courrant de l'application.
|
|
|
401 |
*/
|
156 |
jp_milcent |
402 |
public String getUtilisateurId() {
|
277 |
jp_milcent |
403 |
String id = null;
|
|
|
404 |
Utilisateur utilisateurCourant = (Utilisateur) Registry.get(RegistreId.UTILISATEUR_COURANT);
|
|
|
405 |
if (!utilisateurCourant.getId().equals("")) {
|
|
|
406 |
id = utilisateurCourant.getId();
|
|
|
407 |
}
|
|
|
408 |
return id;
|
156 |
jp_milcent |
409 |
}
|
|
|
410 |
|
912 |
jpm |
411 |
public Utilisateur getUtilisateur() {
|
|
|
412 |
Utilisateur utilisateurCourant = (Utilisateur) Registry.get(RegistreId.UTILISATEUR_COURANT);
|
|
|
413 |
return utilisateurCourant;
|
|
|
414 |
}
|
|
|
415 |
|
65 |
jpm |
416 |
public void connecterUtilisateur(String login, String mdp) {
|
277 |
jp_milcent |
417 |
modele.connecterUtilisateur(this, login, mdp);
|
64 |
jpm |
418 |
}
|
|
|
419 |
|
65 |
jpm |
420 |
public void deconnecterUtilisateur() {
|
277 |
jp_milcent |
421 |
modele.deconnecterUtilisateur(this);
|
64 |
jpm |
422 |
}
|
65 |
jpm |
423 |
|
932 |
jpm |
424 |
public void repandreEtatIdentification(Utilisateur utilisateur) {
|
156 |
jp_milcent |
425 |
// Mise à jour du registre
|
277 |
jp_milcent |
426 |
Registry.register(RegistreId.UTILISATEUR_COURANT, utilisateur);
|
932 |
jpm |
427 |
// Propagation de l'information de mise à jour de l'utilisateur
|
|
|
428 |
repandreInfoMiseAJourUtilisateur();
|
|
|
429 |
}
|
|
|
430 |
|
|
|
431 |
public void repandreInfoMiseAJourUtilisateur() {
|
912 |
jpm |
432 |
// Création de l'information de mise à jour de l'utilisateur
|
|
|
433 |
Information info = new Information("maj_utilisateur");
|
|
|
434 |
|
|
|
435 |
// Rafraichissement de la fenêtre d'Identification
|
941 |
jpm |
436 |
if (fenetreIdentification != null && fenetreIdentification.isVisible()) {
|
912 |
jpm |
437 |
fenetreIdentification.rafraichir(info);
|
|
|
438 |
}
|
898 |
gduche |
439 |
|
912 |
jpm |
440 |
// Rafraichissement du panneau Nord
|
|
|
441 |
panneauNord.rafraichir(info);
|
1292 |
cyprien |
442 |
|
912 |
jpm |
443 |
// Rafraichissement du panneau Centre
|
|
|
444 |
if (panneauCentre != null) {
|
|
|
445 |
panneauCentre.rafraichir(info);
|
932 |
jpm |
446 |
}
|
912 |
jpm |
447 |
}
|
1292 |
cyprien |
448 |
|
912 |
jpm |
449 |
public void modifierUtilisateur() {
|
|
|
450 |
Utilisateur utilisateurCourant = (Utilisateur) Registry.get(RegistreId.UTILISATEUR_COURANT);
|
|
|
451 |
panneauNord.rafraichir(utilisateurCourant);
|
|
|
452 |
modele.modifierUtilisateur(this, utilisateurCourant);
|
61 |
jpm |
453 |
}
|
1292 |
cyprien |
454 |
|
156 |
jp_milcent |
455 |
//+----------------------------------------------------------------------------------------------------------------+
|
447 |
jp_milcent |
456 |
// GESTION DES VALEURS ET LISTES
|
|
|
457 |
//+----------------------------------------------------------------------------------------------------------------+
|
1367 |
cyprien |
458 |
|
|
|
459 |
/** Cette méthode est un "wrapper" **/
|
1324 |
gduche |
460 |
public void obtenirListeValeurEtRafraichir(Rafraichissable vueARafraichir, String listeId, Sequenceur sequenceur) {
|
|
|
461 |
obtenirListeValeurEtRafraichir(vueARafraichir, ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId(listeId), sequenceur);
|
1292 |
cyprien |
462 |
}
|
1367 |
cyprien |
463 |
|
1324 |
gduche |
464 |
public void obtenirListeValeurEtRafraichir(Rafraichissable vueARafraichir, int listeId, Sequenceur sequenceur) {
|
1367 |
cyprien |
465 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner ValeurListe");
|
1324 |
gduche |
466 |
Integer numeroSequence = null;
|
|
|
467 |
if (sequenceur != null) {
|
|
|
468 |
numeroSequence = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
469 |
vueARafraichir = sequenceur;
|
|
|
470 |
}
|
|
|
471 |
modele.obtenirListeValeurs(vueARafraichir, listeId, numeroSequence);
|
453 |
jp_milcent |
472 |
}
|
1367 |
cyprien |
473 |
|
1324 |
gduche |
474 |
public void obtenirListeValeurEtRafraichir(Rafraichissable vueARafraichir, String nomListe, boolean pagination, String recherche, int start, int nbElements, Sequenceur sequenceur) {
|
1367 |
cyprien |
475 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner ValeurListe");
|
1324 |
gduche |
476 |
Integer numeroSequence = null;
|
|
|
477 |
if (sequenceur != null) {
|
|
|
478 |
numeroSequence = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
479 |
vueARafraichir = sequenceur;
|
|
|
480 |
}
|
|
|
481 |
modele.obtenirListeValeurs(vueARafraichir, ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId(nomListe), pagination, recherche, start, nbElements, numeroSequence);
|
|
|
482 |
}
|
1367 |
cyprien |
483 |
|
|
|
484 |
public void obtenirValeurEtRafraichir(Rafraichissable vueARafraichir, String listeId, String identifiantValeur, Sequenceur sequenceur) {
|
|
|
485 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner ValeurListe");
|
1324 |
gduche |
486 |
Integer numeroSequence = null;
|
|
|
487 |
if (sequenceur != null) {
|
1367 |
cyprien |
488 |
numeroSequence = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
489 |
vueARafraichir = sequenceur;
|
1324 |
gduche |
490 |
}
|
1373 |
cyprien |
491 |
modele.obtenirValeur(vueARafraichir, "identifiant", ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId(listeId), identifiantValeur, numeroSequence);
|
453 |
jp_milcent |
492 |
}
|
1367 |
cyprien |
493 |
|
447 |
jp_milcent |
494 |
//+----------------------------------------------------------------------------------------------------------------+
|
910 |
jpm |
495 |
// GESTION des APPLETS de l'ACCUEIL
|
|
|
496 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
497 |
|
|
|
498 |
public void afficherAccueil() {
|
1210 |
cyprien |
499 |
if (!(panneauCentre.getContenu() instanceof AccueilVue)) {
|
910 |
jpm |
500 |
panneauCentre.removeAll();
|
|
|
501 |
panneauCentre.add(new AccueilVue(this));
|
|
|
502 |
}
|
1210 |
cyprien |
503 |
else {
|
|
|
504 |
desactiverChargement();
|
|
|
505 |
}
|
910 |
jpm |
506 |
}
|
|
|
507 |
|
|
|
508 |
//+----------------------------------------------------------------------------------------------------------------+
|
447 |
jp_milcent |
509 |
// GESTION DES STRUCTURES
|
|
|
510 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
511 |
|
453 |
jp_milcent |
512 |
public void afficherListeStructures(StructureListe structuresACharger) {
|
646 |
jp_milcent |
513 |
if (!(panneauCentre.getContenu() instanceof StructureVue)) {
|
626 |
gduche |
514 |
panneauCentre.removeAll();
|
646 |
jp_milcent |
515 |
panneauCentre.add(new StructureVue(this));
|
626 |
gduche |
516 |
}
|
646 |
jp_milcent |
517 |
panneauCentre.getContenu().rafraichir(structuresACharger);
|
453 |
jp_milcent |
518 |
}
|
|
|
519 |
|
580 |
jp_milcent |
520 |
public void afficherFormStructure(String structureId) {
|
641 |
jp_milcent |
521 |
String mode = Formulaire.MODE_AJOUTER;
|
580 |
jp_milcent |
522 |
if (structureId != null) {
|
641 |
jp_milcent |
523 |
mode = Formulaire.MODE_MODIFIER;
|
580 |
jp_milcent |
524 |
}
|
|
|
525 |
|
1613 |
aurelien |
526 |
final FenetreForm fenetre = new FenetreForm("");
|
1324 |
gduche |
527 |
Sequenceur sequenceur = new Sequenceur();
|
1613 |
aurelien |
528 |
StructureForm structureForm = new StructureForm(this, mode, sequenceur) {
|
|
|
529 |
@Override
|
|
|
530 |
public void surFermetureFormulaire() {
|
|
|
531 |
fenetre.hide();
|
|
|
532 |
}
|
|
|
533 |
};
|
|
|
534 |
structureForm.vueExterneARafraichirApresValidation = panneauCentre.getContenu();
|
|
|
535 |
fenetre.add(structureForm);
|
|
|
536 |
fenetre.show();
|
580 |
jp_milcent |
537 |
|
641 |
jp_milcent |
538 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
1691 |
raphael |
539 |
selectionnerStructure(structureForm, structureId, sequenceur, false);
|
1324 |
gduche |
540 |
selectionnerStructureAPersonne(structureForm, structureId, StructureAPersonne.ROLE_EQUIPE, sequenceur);
|
580 |
jp_milcent |
541 |
}
|
|
|
542 |
|
|
|
543 |
panneauCentre.layout();
|
|
|
544 |
}
|
|
|
545 |
|
447 |
jp_milcent |
546 |
public void clicListeStructure(Structure structure) {
|
646 |
jp_milcent |
547 |
panneauCentre.getContenu().rafraichir(structure);
|
609 |
jp_milcent |
548 |
if (structure != null && structure.getPersonnel() == null) {
|
1324 |
gduche |
549 |
selectionnerStructureAPersonne(panneauCentre.getContenu(), structure.getId(), StructureAPersonne.ROLE_EQUIPE, null);
|
919 |
jpm |
550 |
}
|
447 |
jp_milcent |
551 |
}
|
|
|
552 |
|
|
|
553 |
public void clicAjouterStructure() {
|
580 |
jp_milcent |
554 |
afficherFormStructure(null);
|
447 |
jp_milcent |
555 |
}
|
|
|
556 |
|
|
|
557 |
public void clicModifierStructure(List<Structure> structureSelection) {
|
|
|
558 |
if (structureSelection.size() == 0) {
|
1210 |
cyprien |
559 |
InfoLogger.display("Information", "Veuillez sélectionner une structure.");
|
447 |
jp_milcent |
560 |
} else if (structureSelection.size() > 1) {
|
1210 |
cyprien |
561 |
InfoLogger.display("Information", "Veuillez sélectionner une seule structure à la fois.");
|
447 |
jp_milcent |
562 |
} else if (structureSelection.size() == 1) {
|
609 |
jp_milcent |
563 |
afficherFormStructure(structureSelection.get(0).getId());
|
447 |
jp_milcent |
564 |
} else {
|
1210 |
cyprien |
565 |
InfoLogger.display("Erreur", "Une erreur est survenue dans la méthode clicModifierStructure() du Médiateur.");
|
447 |
jp_milcent |
566 |
}
|
|
|
567 |
}
|
|
|
568 |
|
|
|
569 |
public void clicSupprimerStructure(final Rafraichissable vue, final List<Structure> structureSelection) {
|
|
|
570 |
if (structureSelection.size() == 0) {
|
1210 |
cyprien |
571 |
InfoLogger.display("Information", "Veuillez sélectionner une structure.");
|
447 |
jp_milcent |
572 |
} else if(structureSelection.size() > 0) {
|
609 |
jp_milcent |
573 |
String titre = "Supprimer des structures";
|
447 |
jp_milcent |
574 |
String message = "Êtes vous sur de vouloir supprimer les structures sélectionnées ?";
|
|
|
575 |
if (structureSelection.size() == 1) {
|
609 |
jp_milcent |
576 |
titre = "Supprimer une structure";
|
447 |
jp_milcent |
577 |
message = "Êtes vous sur de vouloir supprimer la structure sélectionnée ?";
|
|
|
578 |
}
|
|
|
579 |
|
502 |
gduche |
580 |
final Listener<MessageBoxEvent> suppressionEcouteur = new Listener<MessageBoxEvent>() {
|
|
|
581 |
public void handleEvent(MessageBoxEvent ce) {
|
|
|
582 |
Dialog dialog = (Dialog) ce.getComponent();
|
|
|
583 |
Button btn = ce.getButtonClicked();
|
453 |
jp_milcent |
584 |
|
1680 |
raphael |
585 |
if (btn.getHtml().equals(dialog.yesText)) {
|
453 |
jp_milcent |
586 |
String idStr = "" ;
|
|
|
587 |
for(int i = 0 ; i < structureSelection.size() ; i++) {
|
609 |
jp_milcent |
588 |
idStr += structureSelection.get(i).getId()+",";
|
453 |
jp_milcent |
589 |
}
|
923 |
jpm |
590 |
supprimerStructure(vue, idStr);
|
453 |
jp_milcent |
591 |
}
|
|
|
592 |
}
|
|
|
593 |
};
|
447 |
jp_milcent |
594 |
|
609 |
jp_milcent |
595 |
MessageBox.confirm(titre, message, suppressionEcouteur);
|
447 |
jp_milcent |
596 |
} else {
|
1210 |
cyprien |
597 |
InfoLogger.display("Erreur", "Une erreur est survenue dans la méthode clicSupprimerStructure() du Médiateur.");
|
447 |
jp_milcent |
598 |
}
|
|
|
599 |
}
|
1329 |
cyprien |
600 |
|
|
|
601 |
/** selectionnerStructure(Rafraichissable vueARafraichir, String recherche, int start, int nbElements)
|
|
|
602 |
* Action :
|
|
|
603 |
* --------
|
|
|
604 |
* - Récupère un nombre défini de structures en s'aidant du nom partiel ou complet de la structure.
|
|
|
605 |
*
|
|
|
606 |
* Description des paramètres :
|
|
|
607 |
* ----------------------------
|
|
|
608 |
* - 'vueARafraichir' référence l'objet à mettre à jour après réception des données.
|
|
|
609 |
* - 'recherche' est une chaîne de caractères représentant tout ou partie du nom d'une structure.
|
|
|
610 |
* Si la chaîne est vide, alors toutes les structures sont recherchées.
|
|
|
611 |
* - 'start' et 'nbElements' sont les paramètres indispensables à la pagination. 'start'
|
|
|
612 |
* est le paramètre qui décrit le numéro du tuple de départ et 'nbElements' le nombre
|
|
|
613 |
* d'éléments à collecter.
|
|
|
614 |
*
|
|
|
615 |
* Préconditions :
|
|
|
616 |
* ---------------
|
|
|
617 |
* - 'vueARafraichir' doit être non NULL et référencer un objet implémentant l'interface
|
|
|
618 |
* 'Rafraichissable'
|
|
|
619 |
* - 'recherche' doit être non NULL.
|
|
|
620 |
* - 'start' doit être supérieur ou égal à zéro. 'nbElements' doit être supérieur à zéro.
|
|
|
621 |
*
|
1526 |
jpm |
622 |
*/
|
1691 |
raphael |
623 |
public void selectionnerStructure(Rafraichissable vueARafraichir, String recherche, int start, int nbElements, Sequenceur sequenceur, boolean searchCity) {
|
1526 |
jpm |
624 |
if (Mediateur.DEBUG) {
|
|
|
625 |
System.out.println("MEDIATEUR - selectionner Structure");
|
|
|
626 |
}
|
1367 |
cyprien |
627 |
Integer seqId = null;
|
1526 |
jpm |
628 |
if (sequenceur != null) {
|
1367 |
cyprien |
629 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
630 |
vueARafraichir = sequenceur;
|
|
|
631 |
}
|
1691 |
raphael |
632 |
modele.selectionnerStructure(vueARafraichir, recherche, start, nbElements, seqId, searchCity);
|
1329 |
cyprien |
633 |
}
|
447 |
jp_milcent |
634 |
|
1691 |
raphael |
635 |
public void selectionnerStructure(Rafraichissable vueARafraichir, String structureId, Sequenceur sequenceur, boolean searchCity) {
|
1526 |
jpm |
636 |
if (Mediateur.DEBUG) {
|
|
|
637 |
System.out.println("MEDIATEUR - selectionner Structure");
|
|
|
638 |
}
|
1324 |
gduche |
639 |
Integer seqId = null;
|
1526 |
jpm |
640 |
if (sequenceur != null) {
|
1324 |
gduche |
641 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
642 |
vueARafraichir = sequenceur;
|
|
|
643 |
}
|
1633 |
aurelien |
644 |
|
1763 |
aurelien |
645 |
modele.selectionnerStructure(vueARafraichir, structureId, null, 0, nbElements, seqId, searchCity);
|
447 |
jp_milcent |
646 |
}
|
|
|
647 |
|
1763 |
aurelien |
648 |
public void selectionnerStructure(Rafraichissable vueARafraichir, String structureId, String nom, int start, int nbElements, Sequenceur sequenceur, boolean searchCity) {
|
1526 |
jpm |
649 |
if (Mediateur.DEBUG) {
|
|
|
650 |
System.out.println("MEDIATEUR - selectionner Structure");
|
|
|
651 |
}
|
1367 |
cyprien |
652 |
Integer seqId = null;
|
1526 |
jpm |
653 |
if (sequenceur != null) {
|
1367 |
cyprien |
654 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
655 |
vueARafraichir = sequenceur;
|
|
|
656 |
}
|
1763 |
aurelien |
657 |
modele.selectionnerStructure(vueARafraichir, structureId, nom, start, nbElements, seqId, searchCity);
|
1040 |
gduche |
658 |
}
|
|
|
659 |
|
1763 |
aurelien |
660 |
public void selectionnerStructureAvecPaginationProgressive(Rafraichissable vueARafraichir, String structureId, String nom, String formatRetour, int start, int nbElements, Sequenceur sequenceur, boolean searchCity) {
|
1526 |
jpm |
661 |
if (Mediateur.DEBUG) {
|
|
|
662 |
System.out.println("MEDIATEUR - selectionner Structure");
|
|
|
663 |
}
|
|
|
664 |
Integer seqId = null;
|
|
|
665 |
if (sequenceur != null) {
|
|
|
666 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
667 |
vueARafraichir = sequenceur;
|
|
|
668 |
}
|
1763 |
aurelien |
669 |
modele.selectionnerStructureAvecPaginationProgressive(vueARafraichir, structureId, nom, formatRetour, start, nbElements, seqId, searchCity);
|
1526 |
jpm |
670 |
}
|
|
|
671 |
|
1367 |
cyprien |
672 |
/** AJOUTER **/
|
769 |
jpm |
673 |
public void ajouterStructure(Rafraichissable vueARafraichir, Structure structure, StructureConservation conservation, StructureValorisation valorisation) {
|
|
|
674 |
modele.ajouterStructure(vueARafraichir, structure, conservation, valorisation);
|
447 |
jp_milcent |
675 |
}
|
|
|
676 |
|
1367 |
cyprien |
677 |
/** MODIFIER **/
|
769 |
jpm |
678 |
public void modifierStructure(Rafraichissable vueARafraichir, String structureId, Structure structure, StructureConservation conservation, StructureValorisation valorisation) {
|
|
|
679 |
modele.modifierStructure(vueARafraichir, structureId, structure, conservation, valorisation);
|
447 |
jp_milcent |
680 |
}
|
453 |
jp_milcent |
681 |
|
1367 |
cyprien |
682 |
/** SUPPRIMER **/
|
453 |
jp_milcent |
683 |
public void supprimerStructure(Rafraichissable vueARafraichir, String IdentifiantsStructureSepareParVirgule) {
|
769 |
jpm |
684 |
modele.supprimerStructure(vueARafraichir, IdentifiantsStructureSepareParVirgule);
|
453 |
jp_milcent |
685 |
}
|
|
|
686 |
|
447 |
jp_milcent |
687 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
688 |
// GESTION de la relation STRUCTURE A PERSONNE
|
1468 |
jpm |
689 |
|
|
|
690 |
public void selectionnerStructureAPersonne(Rafraichissable vueARafraichir, String structureId, String roleId, String nom, int start, int nbElements, Sequenceur sequenceur) {
|
|
|
691 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner StructureAPersonne");
|
|
|
692 |
Integer seqId = null;
|
|
|
693 |
if (sequenceur!=null) {
|
|
|
694 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
695 |
vueARafraichir = sequenceur;
|
|
|
696 |
}
|
|
|
697 |
modele.selectionnerStructureAPersonne(vueARafraichir, structureId, roleId, nom, start, nbElements, seqId);
|
|
|
698 |
}
|
|
|
699 |
|
1324 |
gduche |
700 |
public void selectionnerStructureAPersonne(Rafraichissable vueARafraichir, String structureId, String roleId, Sequenceur sequenceur) {
|
1367 |
cyprien |
701 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner StructureAPersonne");
|
1324 |
gduche |
702 |
Integer seqId = null;
|
1367 |
cyprien |
703 |
if (sequenceur!=null) {
|
1324 |
gduche |
704 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
705 |
vueARafraichir = sequenceur;
|
|
|
706 |
}
|
|
|
707 |
modele.selectionnerStructureAPersonne(vueARafraichir, structureId, roleId, seqId);
|
447 |
jp_milcent |
708 |
}
|
|
|
709 |
|
1367 |
cyprien |
710 |
/** AJOUTER **/
|
769 |
jpm |
711 |
public void ajouterStructureAPersonne(Rafraichissable vueARafraichir, String structureId, StructureAPersonneListe personnelAjoute) {
|
453 |
jp_milcent |
712 |
if (personnelAjoute != null && personnelAjoute.size() > 0) {
|
|
|
713 |
for (Iterator<String> it = personnelAjoute.keySet().iterator(); it.hasNext();) {
|
769 |
jpm |
714 |
modele.ajouterStructureAPersonne(vueARafraichir, structureId, (StructureAPersonne) personnelAjoute.get(it.next()));
|
453 |
jp_milcent |
715 |
}
|
|
|
716 |
}
|
|
|
717 |
}
|
|
|
718 |
|
1367 |
cyprien |
719 |
/** MODIFIER **/
|
769 |
jpm |
720 |
public void modifierStructureAPersonne(Rafraichissable vueARafraichir, StructureAPersonneListe personnelModifie) {
|
447 |
jp_milcent |
721 |
if (personnelModifie != null && personnelModifie.size() > 0) {
|
|
|
722 |
for (Iterator<String> it = personnelModifie.keySet().iterator(); it.hasNext();) {
|
769 |
jpm |
723 |
modele.modifierStructureAPersonne(vueARafraichir, (StructureAPersonne) personnelModifie.get(it.next()));
|
447 |
jp_milcent |
724 |
}
|
|
|
725 |
}
|
|
|
726 |
}
|
|
|
727 |
|
1367 |
cyprien |
728 |
/** SUPPRIMER **/
|
769 |
jpm |
729 |
public void supprimerStructureAPersonne(Rafraichissable vueARafraichir, StructureAPersonneListe personnelSupprime) {
|
447 |
jp_milcent |
730 |
if (personnelSupprime != null && personnelSupprime.size() > 0) {
|
769 |
jpm |
731 |
String idStructureAPersonneSepareParVirgule = "" ;
|
923 |
jpm |
732 |
Iterator<String> it = personnelSupprime.keySet().iterator();
|
|
|
733 |
while (it.hasNext()) {
|
901 |
jpm |
734 |
idStructureAPersonneSepareParVirgule += personnelSupprime.get(it.next()).getId();
|
923 |
jpm |
735 |
idStructureAPersonneSepareParVirgule += (it.hasNext()) ? "," : "";
|
447 |
jp_milcent |
736 |
}
|
923 |
jpm |
737 |
supprimerStructureAPersonne(vueARafraichir, idStructureAPersonneSepareParVirgule);
|
447 |
jp_milcent |
738 |
}
|
|
|
739 |
}
|
923 |
jpm |
740 |
|
|
|
741 |
public void supprimerStructureAPersonne(Rafraichissable vueARafraichir, String idStructureAPersonneSeparesParVirgule) {
|
|
|
742 |
modele.supprimerStructureAPersonne(vueARafraichir, idStructureAPersonneSeparesParVirgule);
|
|
|
743 |
}
|
|
|
744 |
|
|
|
745 |
public void supprimerStructureAPersonne(final Rafraichissable vueARafraichir, final List<Structure> structuresListe) {
|
|
|
746 |
if (structuresListe.size() != 0) {
|
|
|
747 |
String idStructureSepareParVirgule = "" ;
|
|
|
748 |
Iterator<Structure> it = structuresListe.iterator();
|
|
|
749 |
while (it.hasNext()) {
|
|
|
750 |
Structure structure = it.next();
|
|
|
751 |
idStructureSepareParVirgule += structure.getId();
|
|
|
752 |
idStructureSepareParVirgule += it.hasNext() ? "," : "";
|
|
|
753 |
}
|
|
|
754 |
supprimerStructureAPersonne(vueARafraichir, idStructureSepareParVirgule);
|
|
|
755 |
}
|
|
|
756 |
}
|
|
|
757 |
|
447 |
jp_milcent |
758 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
759 |
// GESTION des COLLECTIONS
|
|
|
760 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
761 |
|
453 |
jp_milcent |
762 |
public void afficherListeCollections(CollectionListe collectionsACharger) {
|
646 |
jp_milcent |
763 |
if (!(panneauCentre.getContenu() instanceof CollectionVue)) {
|
626 |
gduche |
764 |
panneauCentre.removeAll();
|
646 |
jp_milcent |
765 |
panneauCentre.add(new CollectionVue(this));
|
|
|
766 |
}
|
626 |
gduche |
767 |
|
646 |
jp_milcent |
768 |
panneauCentre.getContenu().rafraichir(collectionsACharger);
|
453 |
jp_milcent |
769 |
}
|
|
|
770 |
|
641 |
jp_milcent |
771 |
public void afficherFormCollection(String collectionId) {
|
1613 |
aurelien |
772 |
final FenetreForm fenetre = new FenetreForm("");
|
|
|
773 |
CollectionForm collectionForm = new CollectionForm(this, collectionId) {
|
|
|
774 |
@Override
|
|
|
775 |
public void surFermetureFormulaire() {
|
|
|
776 |
fenetre.hide();
|
|
|
777 |
}
|
|
|
778 |
};
|
|
|
779 |
collectionForm.vueExterneARafraichirApresValidation = panneauCentre.getContenu();
|
|
|
780 |
fenetre.add(collectionForm);
|
|
|
781 |
fenetre.show();
|
641 |
jp_milcent |
782 |
}
|
|
|
783 |
|
453 |
jp_milcent |
784 |
public void clicListeCollection(Collection collectionCliquee) {
|
646 |
jp_milcent |
785 |
panneauCentre.getContenu().rafraichir(collectionCliquee);
|
883 |
jpm |
786 |
if (collectionCliquee != null) {
|
1468 |
jpm |
787 |
selectionnerCollectionAPersonne(panneauCentre.getContenu(), collectionCliquee.getId(), null, sequenceur);
|
|
|
788 |
selectionnerCollectionAPublication(panneauCentre.getContenu(), collectionCliquee.getId(), sequenceur);
|
|
|
789 |
selectionnerCollectionACommentaire(panneauCentre.getContenu(), collectionCliquee.getId(), sequenceur);
|
883 |
jpm |
790 |
}
|
453 |
jp_milcent |
791 |
}
|
|
|
792 |
|
447 |
jp_milcent |
793 |
public void clicAjouterCollection() {
|
775 |
jpm |
794 |
afficherFormCollection(null);
|
447 |
jp_milcent |
795 |
}
|
|
|
796 |
|
|
|
797 |
public void clicModifierCollection(List<Collection> selection) {
|
641 |
jp_milcent |
798 |
if (selection.size() == 0) {
|
1210 |
cyprien |
799 |
InfoLogger.display("Information", "Veuillez sélectionner une collection.");
|
641 |
jp_milcent |
800 |
} else if (selection.size() > 1) {
|
1210 |
cyprien |
801 |
InfoLogger.display("Information", "Veuillez sélectionner une seule collection à la fois.");
|
641 |
jp_milcent |
802 |
} else if (selection.size() == 1) {
|
|
|
803 |
afficherFormCollection(selection.get(0).getId());
|
|
|
804 |
} else {
|
1210 |
cyprien |
805 |
InfoLogger.display("Erreur", "Une erreur est survenue dans la méthode clicModifierCollection() du Médiateur.");
|
641 |
jp_milcent |
806 |
}
|
447 |
jp_milcent |
807 |
}
|
|
|
808 |
|
968 |
jpm |
809 |
public void clicSupprimerCollection(CollectionListeVue collectionListeVue, final List<Collection> collectionsASupprimer) {
|
|
|
810 |
if (collectionsASupprimer.size() <= 0) {
|
|
|
811 |
MessageBox.alert("Attention", "Vous devez sélectionner au moins une collection", null);
|
|
|
812 |
} else {
|
|
|
813 |
String message = "Voulez-vous vraiment supprimer ces collections ?";
|
|
|
814 |
if (collectionsASupprimer.size() == 1) {
|
|
|
815 |
message = "Voulez-vous vraiment supprimer cette collection ?";
|
|
|
816 |
}
|
|
|
817 |
|
|
|
818 |
final Listener<MessageBoxEvent> listenerSuppression = new Listener<MessageBoxEvent>() {
|
|
|
819 |
public void handleEvent(MessageBoxEvent ce) {
|
|
|
820 |
Dialog dialog = (Dialog) ce.getComponent();
|
|
|
821 |
Button btn = ce.getButtonClicked();
|
|
|
822 |
|
1680 |
raphael |
823 |
if (btn.getHtml().equals(dialog.yesText)) {
|
968 |
jpm |
824 |
supprimerCollection(panneauCentre.getContenu(), collectionsASupprimer);
|
|
|
825 |
}
|
|
|
826 |
}
|
|
|
827 |
};
|
|
|
828 |
|
|
|
829 |
MessageBox.confirm("Supprimer une collection", message, listenerSuppression);
|
|
|
830 |
}
|
447 |
jp_milcent |
831 |
}
|
|
|
832 |
|
1367 |
cyprien |
833 |
/** Cette méthode est un "wrapper" **/
|
|
|
834 |
public void selectionnerCollection(Rafraichissable vueARafraichir, String collectionId, String nom, Sequenceur sequenceur) {
|
|
|
835 |
selectionnerCollection(vueARafraichir, collectionId, nom, 0, nbElements, sequenceur);
|
453 |
jp_milcent |
836 |
}
|
|
|
837 |
|
1367 |
cyprien |
838 |
public void selectionnerCollection(Rafraichissable vueARafraichir, String collectionId, String nom, int start, int nbElements, Sequenceur sequenceur) {
|
|
|
839 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner Collection");
|
|
|
840 |
Integer seqId = null;
|
|
|
841 |
if (sequenceur!=null) {
|
|
|
842 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
843 |
vueARafraichir = sequenceur;
|
|
|
844 |
}
|
1763 |
aurelien |
845 |
modele.selectionnerCollection(vueARafraichir, collectionId, nom, start, nbElements, seqId);
|
1041 |
gduche |
846 |
}
|
|
|
847 |
|
1329 |
cyprien |
848 |
/****************************************************************************************************
|
|
|
849 |
/** selectionnerCollection(Rafraichissable vueARafraichir, String recherche, int start, int nbElements)
|
|
|
850 |
/****************************************************************************************************
|
|
|
851 |
* Action :
|
|
|
852 |
* --------
|
|
|
853 |
* - Récupère un nombre défini de collections en s'aidant du nom partiel ou complet de la collection.
|
|
|
854 |
*
|
|
|
855 |
* Description des paramètres :
|
|
|
856 |
* ----------------------------
|
|
|
857 |
* - 'vueARafraichir' référence l'objet à mettre à jour après réception des données.
|
|
|
858 |
* - 'recherche' est une chaîne de caractères représentant tout ou partie du nom d'une collection.
|
|
|
859 |
* Si la chaîne est vide, alors toutes les collections sont recherchées.
|
|
|
860 |
* - 'start' et 'nbElements' sont les paramètres indispensables à la pagination. 'start'
|
|
|
861 |
* est le paramètre qui décrit le numéro du tuple de départ et 'nbElements' le nombre
|
|
|
862 |
* d'éléments à collecter.
|
|
|
863 |
*
|
|
|
864 |
* Préconditions :
|
|
|
865 |
* ---------------
|
|
|
866 |
* - 'vueARafraichir' doit être non NULL et référencer un objet implémentant l'interface
|
|
|
867 |
* 'Rafraichissable'
|
|
|
868 |
* - 'recherche' doit être non NULL.
|
|
|
869 |
* - 'start' doit être supérieur ou égal à zéro. 'nbElements' doit être supérieur à zéro.
|
|
|
870 |
*
|
|
|
871 |
*****************************************************************************************************/
|
1367 |
cyprien |
872 |
public void selectionnerCollection(Rafraichissable vueARafraichir, String recherche, int start, int nbElements, Sequenceur sequenceur) {
|
|
|
873 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner Collection");
|
|
|
874 |
Integer seqId = null;
|
|
|
875 |
if (sequenceur!=null) {
|
|
|
876 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
877 |
vueARafraichir = sequenceur;
|
|
|
878 |
}
|
|
|
879 |
modele.selectionnerCollection(vueARafraichir, recherche, start, nbElements, seqId);
|
1428 |
cyprien |
880 |
}
|
1329 |
cyprien |
881 |
|
1367 |
cyprien |
882 |
/** AJOUTER **/
|
453 |
jp_milcent |
883 |
public void ajouterCollection(Rafraichissable vueARafraichir, Collection collection) {
|
968 |
jpm |
884 |
modele.ajouterCollection(vueARafraichir, collection);
|
453 |
jp_milcent |
885 |
}
|
|
|
886 |
|
1367 |
cyprien |
887 |
/** MODIFIER **/
|
453 |
jp_milcent |
888 |
public void modifierCollection(Rafraichissable vueARafraichir, Collection collection) {
|
872 |
jpm |
889 |
modele.modifierCollection(vueARafraichir, collection);
|
453 |
jp_milcent |
890 |
}
|
|
|
891 |
|
1367 |
cyprien |
892 |
/** SUPPRIMER **/
|
968 |
jpm |
893 |
public void supprimerCollection(Rafraichissable vueARafraichir, List<Collection> collectionsListe) {
|
|
|
894 |
if (collectionsListe != null && collectionsListe.size() > 0) {
|
|
|
895 |
String idCollectionSeparesParVirgule = "" ;
|
|
|
896 |
Iterator<Collection> it = collectionsListe.iterator();
|
|
|
897 |
while (it.hasNext()) {
|
|
|
898 |
idCollectionSeparesParVirgule += it.next().getId();
|
|
|
899 |
if (it.hasNext()) {
|
|
|
900 |
idCollectionSeparesParVirgule += ",";
|
|
|
901 |
}
|
|
|
902 |
}
|
|
|
903 |
modele.supprimerCollection(vueARafraichir, idCollectionSeparesParVirgule);
|
|
|
904 |
modele.supprimerCollectionAPersonne(vueARafraichir, idCollectionSeparesParVirgule);
|
|
|
905 |
modele.supprimerCollectionAPublication(vueARafraichir, idCollectionSeparesParVirgule);
|
|
|
906 |
//modele.supprimerCollectionACommentaire(vueARafraichir, idCollectionSeparesParVirgule);
|
|
|
907 |
}
|
|
|
908 |
|
453 |
jp_milcent |
909 |
}
|
|
|
910 |
|
447 |
jp_milcent |
911 |
//+----------------------------------------------------------------------------------------------------------------+
|
875 |
jpm |
912 |
// GESTION de la relation COLLECTION A PERSONNE
|
|
|
913 |
|
1468 |
jpm |
914 |
public void selectionnerCollectionAPersonne(Rafraichissable vueARafraichir, String collectionId, String roleId, String recherche, int start, int nbElements, Sequenceur sequenceur) {
|
|
|
915 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner CollectionAPersonne");
|
|
|
916 |
Integer seqId = null;
|
|
|
917 |
if (sequenceur!=null) {
|
|
|
918 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
919 |
vueARafraichir = sequenceur;
|
|
|
920 |
}
|
|
|
921 |
modele.selectionnerCollectionAPersonne(vueARafraichir, collectionId, roleId, recherche, start, nbElements, seqId);
|
|
|
922 |
}
|
|
|
923 |
|
1367 |
cyprien |
924 |
public void selectionnerCollectionAPersonne(Rafraichissable vueARafraichir, String collectionId, String roleId, Sequenceur sequenceur) {
|
|
|
925 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner CollectionAPersonne");
|
|
|
926 |
Integer seqId = null;
|
|
|
927 |
if (sequenceur!=null) {
|
|
|
928 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
929 |
vueARafraichir = sequenceur;
|
|
|
930 |
}
|
|
|
931 |
modele.selectionnerCollectionAPersonne(vueARafraichir, collectionId, roleId, seqId);
|
875 |
jpm |
932 |
}
|
|
|
933 |
|
1367 |
cyprien |
934 |
/** AJOUTER **/
|
875 |
jpm |
935 |
public void ajouterCollectionAPersonne(Rafraichissable vueARafraichir, String collectionId, CollectionAPersonneListe personnesAjoutees) {
|
|
|
936 |
if (personnesAjoutees != null && personnesAjoutees.size() > 0) {
|
|
|
937 |
for (Iterator<String> it = personnesAjoutees.keySet().iterator(); it.hasNext();) {
|
|
|
938 |
modele.ajouterCollectionAPersonne(vueARafraichir, collectionId, (CollectionAPersonne) personnesAjoutees.get(it.next()));
|
|
|
939 |
}
|
|
|
940 |
}
|
|
|
941 |
}
|
|
|
942 |
|
1367 |
cyprien |
943 |
/** MODIFIER **/
|
875 |
jpm |
944 |
public void modifierCollectionAPersonne(Rafraichissable vueARafraichir, CollectionAPersonneListe personnesModifiees) {
|
|
|
945 |
if (personnesModifiees != null && personnesModifiees.size() > 0) {
|
|
|
946 |
for (Iterator<String> it = personnesModifiees.keySet().iterator(); it.hasNext();) {
|
|
|
947 |
modele.modifierCollectionAPersonne(vueARafraichir, (CollectionAPersonne) personnesModifiees.get(it.next()));
|
|
|
948 |
}
|
|
|
949 |
}
|
|
|
950 |
}
|
|
|
951 |
|
1367 |
cyprien |
952 |
/** SUPPRIMER **/
|
875 |
jpm |
953 |
public void supprimerCollectionAPersonne(Rafraichissable vueARafraichir, CollectionAPersonneListe personnesSupprimees) {
|
|
|
954 |
if (personnesSupprimees != null && personnesSupprimees.size() > 0) {
|
|
|
955 |
String idCollectionAPersonneSeparesParVirgule = "" ;
|
|
|
956 |
for (Iterator<String> it = personnesSupprimees.keySet().iterator(); it.hasNext();) {
|
901 |
jpm |
957 |
idCollectionAPersonneSeparesParVirgule += personnesSupprimees.get(it.next()).getId();
|
|
|
958 |
if (it.hasNext()) {
|
|
|
959 |
idCollectionAPersonneSeparesParVirgule += ",";
|
|
|
960 |
}
|
875 |
jpm |
961 |
}
|
|
|
962 |
modele.supprimerCollectionAPersonne(vueARafraichir, idCollectionAPersonneSeparesParVirgule);
|
|
|
963 |
}
|
|
|
964 |
}
|
|
|
965 |
|
|
|
966 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
967 |
// GESTION de la relation COLLECTION A PUBLICATION
|
|
|
968 |
|
1513 |
jpm |
969 |
public void selectionnerCollectionAPublication(Rafraichissable vueARafraichir, String collectionId, String recherche, int start, int nbElements, Sequenceur sequenceur) {
|
|
|
970 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner CollectionAPublication");
|
|
|
971 |
Integer seqId = null;
|
|
|
972 |
if (sequenceur!=null) {
|
|
|
973 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
974 |
vueARafraichir = sequenceur;
|
|
|
975 |
}
|
|
|
976 |
modele.selectionnerCollectionAPublication(vueARafraichir, collectionId, recherche, start, nbElements, seqId);
|
|
|
977 |
}
|
|
|
978 |
|
1367 |
cyprien |
979 |
public void selectionnerCollectionAPublication(Rafraichissable vueARafraichir, String collectionId, Sequenceur sequenceur) {
|
|
|
980 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner CollectionAPublication");
|
|
|
981 |
Integer seqId = null;
|
|
|
982 |
if (sequenceur!=null) {
|
|
|
983 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
984 |
vueARafraichir = sequenceur;
|
|
|
985 |
}
|
|
|
986 |
modele.selectionnerCollectionAPublication(vueARafraichir, collectionId, seqId);
|
883 |
jpm |
987 |
}
|
|
|
988 |
|
|
|
989 |
public void ajouterCollectionAPublication(Rafraichissable vueARafraichir, String collectionId, CollectionAPublicationListe publicationsAjoutees) {
|
|
|
990 |
if (publicationsAjoutees != null && publicationsAjoutees.size() > 0) {
|
|
|
991 |
for (Iterator<String> it = publicationsAjoutees.keySet().iterator(); it.hasNext();) {
|
|
|
992 |
modele.ajouterCollectionAPublication(vueARafraichir, collectionId, (CollectionAPublication) publicationsAjoutees.get(it.next()));
|
|
|
993 |
}
|
|
|
994 |
}
|
|
|
995 |
}
|
|
|
996 |
|
|
|
997 |
public void modifierCollectionAPublication(Rafraichissable vueARafraichir, CollectionAPublicationListe publicationsModifiees) {
|
|
|
998 |
if (publicationsModifiees != null && publicationsModifiees.size() > 0) {
|
|
|
999 |
for (Iterator<String> it = publicationsModifiees.keySet().iterator(); it.hasNext();) {
|
|
|
1000 |
modele.modifierCollectionAPublication(vueARafraichir, (CollectionAPublication) publicationsModifiees.get(it.next()));
|
|
|
1001 |
}
|
|
|
1002 |
}
|
|
|
1003 |
}
|
|
|
1004 |
|
907 |
jpm |
1005 |
public void supprimerCollectionAPublication(Rafraichissable vueARafraichir, CollectionAPublicationListe publicationsSupprimees) {
|
883 |
jpm |
1006 |
if (publicationsSupprimees != null && publicationsSupprimees.size() > 0) {
|
|
|
1007 |
String idCollectionAPublicationSeparesParVirgule = "" ;
|
|
|
1008 |
for (Iterator<String> it = publicationsSupprimees.keySet().iterator(); it.hasNext();) {
|
901 |
jpm |
1009 |
idCollectionAPublicationSeparesParVirgule += publicationsSupprimees.get(it.next()).getId();
|
|
|
1010 |
if (it.hasNext()) {
|
|
|
1011 |
idCollectionAPublicationSeparesParVirgule += ",";
|
|
|
1012 |
}
|
883 |
jpm |
1013 |
}
|
|
|
1014 |
modele.supprimerCollectionAPublication(vueARafraichir, idCollectionAPublicationSeparesParVirgule);
|
|
|
1015 |
}
|
|
|
1016 |
}
|
941 |
jpm |
1017 |
|
875 |
jpm |
1018 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
1019 |
// GESTION de la relation COLLECTION A COMMENTAIRE
|
|
|
1020 |
|
1367 |
cyprien |
1021 |
public void selectionnerCollectionACommentaire(Rafraichissable vueARafraichir, String collectionId, Sequenceur sequenceur) {
|
|
|
1022 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner CollectionACommentaire");
|
|
|
1023 |
Integer seqId = null;
|
|
|
1024 |
if (sequenceur!=null) {
|
|
|
1025 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
1026 |
vueARafraichir = sequenceur;
|
|
|
1027 |
}
|
|
|
1028 |
modele.selectionnerCollectionACommentaire(vueARafraichir, collectionId, seqId);
|
989 |
jpm |
1029 |
}
|
|
|
1030 |
|
1513 |
jpm |
1031 |
public void selectionnerCollectionACommentaire(Rafraichissable vueARafraichir, String collectionId, String recherche, int pageCourante, int nbElements, Sequenceur sequenceur) {
|
|
|
1032 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner CollectionACommentaire");
|
|
|
1033 |
Integer seqId = null;
|
|
|
1034 |
if (sequenceur != null) {
|
|
|
1035 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
1036 |
vueARafraichir = sequenceur;
|
|
|
1037 |
}
|
|
|
1038 |
modele.selectionnerCollectionACommentaire(vueARafraichir, collectionId, recherche, pageCourante, nbElements, seqId);
|
|
|
1039 |
}
|
|
|
1040 |
|
1367 |
cyprien |
1041 |
/** AJOUTER **/
|
997 |
jpm |
1042 |
public void ajouterCollectionACommentaire(Rafraichissable vueARafraichir, String collectionId, CollectionACommentaireListe commentairesAjoutees) {
|
989 |
jpm |
1043 |
if (commentairesAjoutees != null && commentairesAjoutees.size() > 0) {
|
|
|
1044 |
for (Iterator<String> it = commentairesAjoutees.keySet().iterator(); it.hasNext();) {
|
997 |
jpm |
1045 |
modele.ajouterCollectionACommentaire(vueARafraichir, collectionId, (CollectionACommentaire) commentairesAjoutees.get(it.next()));
|
989 |
jpm |
1046 |
}
|
|
|
1047 |
}
|
|
|
1048 |
}
|
|
|
1049 |
|
1367 |
cyprien |
1050 |
/** MODIFIER **/
|
989 |
jpm |
1051 |
public void modifierCollectionACommentaire(Rafraichissable vueARafraichir, CollectionACommentaireListe commentairesModifiees) {
|
|
|
1052 |
if (commentairesModifiees != null && commentairesModifiees.size() > 0) {
|
|
|
1053 |
for (Iterator<String> it = commentairesModifiees.keySet().iterator(); it.hasNext();) {
|
|
|
1054 |
modele.modifierCollectionACommentaire(vueARafraichir, (CollectionACommentaire) commentairesModifiees.get(it.next()));
|
|
|
1055 |
}
|
|
|
1056 |
}
|
|
|
1057 |
}
|
|
|
1058 |
|
1367 |
cyprien |
1059 |
/** SUPPRIMER **/
|
989 |
jpm |
1060 |
public void supprimerCollectionACommentaire(Rafraichissable vueARafraichir, CollectionACommentaireListe commentairesSupprimees) {
|
|
|
1061 |
if (commentairesSupprimees != null && commentairesSupprimees.size() > 0) {
|
|
|
1062 |
String idCollectionACommentaireSeparesParVirgule = "" ;
|
|
|
1063 |
for (Iterator<String> it = commentairesSupprimees.keySet().iterator(); it.hasNext();) {
|
|
|
1064 |
idCollectionACommentaireSeparesParVirgule += commentairesSupprimees.get(it.next()).getId();
|
|
|
1065 |
if (it.hasNext()) {
|
|
|
1066 |
idCollectionACommentaireSeparesParVirgule += ",";
|
|
|
1067 |
}
|
|
|
1068 |
}
|
|
|
1069 |
modele.supprimerCollectionACommentaire(vueARafraichir, idCollectionACommentaireSeparesParVirgule, CollectionACommentaireAsyncDao.SUPPRESSION_PAR_COLLECTION);
|
|
|
1070 |
}
|
|
|
1071 |
}
|
875 |
jpm |
1072 |
//+----------------------------------------------------------------------------------------------------------------+
|
156 |
jp_milcent |
1073 |
// GESTION DES PERSONNES
|
|
|
1074 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
1075 |
|
278 |
jp_milcent |
1076 |
public void afficherListePersonnes(PersonneListe personnesACharger) {
|
646 |
jp_milcent |
1077 |
if (!(panneauCentre.getContenu() instanceof PersonneVue)) {
|
626 |
gduche |
1078 |
panneauCentre.removeAll();
|
646 |
jp_milcent |
1079 |
panneauCentre.add(new PersonneVue(this));
|
673 |
aurelien |
1080 |
panneauCentre.setId(ComposantId.PANNEAU_PERSONNE_LISTES);
|
626 |
gduche |
1081 |
}
|
599 |
gduche |
1082 |
|
646 |
jp_milcent |
1083 |
panneauCentre.getContenu().rafraichir(personnesACharger);
|
156 |
jp_milcent |
1084 |
}
|
918 |
jpm |
1085 |
|
1613 |
aurelien |
1086 |
public void afficherFormPersonne(String personneId) {
|
|
|
1087 |
final FenetreForm fenetre = new FenetreForm("");
|
|
|
1088 |
PersonneForm personneForm = new PersonneForm(this, personneId) {
|
|
|
1089 |
@Override
|
|
|
1090 |
public void surFermetureFormulaire() {
|
|
|
1091 |
fenetre.hide();
|
|
|
1092 |
}
|
|
|
1093 |
};
|
|
|
1094 |
personneForm.vueExterneARafraichirApresValidation = panneauCentre.getContenu();
|
|
|
1095 |
fenetre.add(personneForm);
|
|
|
1096 |
fenetre.show();
|
918 |
jpm |
1097 |
}
|
156 |
jp_milcent |
1098 |
|
918 |
jpm |
1099 |
public void clicListePersonne(Personne personne) {
|
|
|
1100 |
panneauCentre.getContenu().rafraichir(personne);
|
|
|
1101 |
}
|
|
|
1102 |
|
128 |
gduche |
1103 |
public void clicAjouterPersonne() {
|
918 |
jpm |
1104 |
afficherFormPersonne(null);
|
128 |
gduche |
1105 |
}
|
|
|
1106 |
|
918 |
jpm |
1107 |
public void clicModifierPersonne(List<Personne> selection) {
|
|
|
1108 |
if (selection.size() == 0) {
|
1210 |
cyprien |
1109 |
InfoLogger.display("Information", "Veuillez sélectionner une personne.");
|
918 |
jpm |
1110 |
} else if (selection.size() > 1) {
|
1210 |
cyprien |
1111 |
InfoLogger.display("Information", "Veuillez sélectionner une seule personne à la fois.");
|
918 |
jpm |
1112 |
} else if (selection.size() == 1) {
|
|
|
1113 |
afficherFormPersonne(selection.get(0).getId());
|
|
|
1114 |
} else {
|
1210 |
cyprien |
1115 |
InfoLogger.display("Erreur", "Une erreur est survenue dans la méthode clicModifierPersonne() du Médiateur.");
|
918 |
jpm |
1116 |
}
|
841 |
gduche |
1117 |
}
|
|
|
1118 |
|
285 |
gduche |
1119 |
|
919 |
jpm |
1120 |
public void clicSupprimerPersonne(final Rafraichissable vue, final List<Personne> personneSelection) {
|
663 |
gduche |
1121 |
//Empecher suppression utilisateur
|
|
|
1122 |
for (int i=0; i < personneSelection.size(); i++) {
|
|
|
1123 |
Personne courante = personneSelection.get(i);
|
|
|
1124 |
if (courante.getId().equals(getUtilisateurId())) {
|
1210 |
cyprien |
1125 |
InfoLogger.display("Information", "Vous ne pouvez pas supprimer votre compte");
|
663 |
gduche |
1126 |
personneSelection.remove(courante);
|
|
|
1127 |
}
|
|
|
1128 |
}
|
|
|
1129 |
|
245 |
jp_milcent |
1130 |
if (personneSelection.size() == 0) {
|
1210 |
cyprien |
1131 |
InfoLogger.display("Information", "Veuillez sélectionner une personne.");
|
245 |
jp_milcent |
1132 |
} else if(personneSelection.size() > 0) {
|
|
|
1133 |
String message = "Êtes vous sur de vouloir supprimer les personnes sélectionnées ?";
|
|
|
1134 |
if (personneSelection.size() == 1) {
|
|
|
1135 |
message = "Êtes vous sur de vouloir supprimer la personne sélectionnée ?";
|
|
|
1136 |
}
|
315 |
gduche |
1137 |
|
502 |
gduche |
1138 |
final Listener<MessageBoxEvent> listenerSuppression = new Listener<MessageBoxEvent>() {
|
|
|
1139 |
public void handleEvent(MessageBoxEvent ce) {
|
|
|
1140 |
Dialog dialog = (Dialog) ce.getComponent();
|
|
|
1141 |
Button btn = ce.getButtonClicked();
|
327 |
jp_milcent |
1142 |
|
1680 |
raphael |
1143 |
if (btn.getHtml().equals(dialog.yesText)) {
|
772 |
jpm |
1144 |
String idPersonneSepareParVirgule = "" ;
|
347 |
gduche |
1145 |
Iterator<Personne> itPersonne = personneSelection.iterator();
|
|
|
1146 |
while (itPersonne.hasNext()) {
|
|
|
1147 |
Personne personneCourante = itPersonne.next();
|
772 |
jpm |
1148 |
idPersonneSepareParVirgule += personneCourante.getId();
|
|
|
1149 |
idPersonneSepareParVirgule +=",";
|
327 |
jp_milcent |
1150 |
}
|
772 |
jpm |
1151 |
modele.supprimerPersonne(vue, idPersonneSepareParVirgule);
|
327 |
jp_milcent |
1152 |
}
|
|
|
1153 |
}
|
|
|
1154 |
};
|
453 |
jp_milcent |
1155 |
|
315 |
gduche |
1156 |
MessageBox.confirm("Supprimer une personne", message, listenerSuppression);
|
245 |
jp_milcent |
1157 |
} else {
|
1210 |
cyprien |
1158 |
InfoLogger.display("Erreur", "Une erreur est survenue dans la méthode clicSupprimerPersonne() du Médiateur.");
|
245 |
jp_milcent |
1159 |
}
|
|
|
1160 |
}
|
277 |
jp_milcent |
1161 |
|
1329 |
cyprien |
1162 |
/****************************************************************************************************
|
|
|
1163 |
/** selectionnerPersonne(Rafraichissable vueARafraichir, String recherche, int start, int nbElements)
|
|
|
1164 |
/****************************************************************************************************
|
|
|
1165 |
* Action :
|
|
|
1166 |
* --------
|
|
|
1167 |
* - Récupère un nombre défini de personnes en s'aidant du nom partiel ou complet de la personne.
|
|
|
1168 |
*
|
|
|
1169 |
* Description des paramètres :
|
|
|
1170 |
* ----------------------------
|
|
|
1171 |
* - 'vueARafraichir' référence l'objet à mettre à jour après réception des données.
|
|
|
1172 |
* - 'recherche' est une chaîne de caractères représentant tout ou partie du nom d'une personne.
|
|
|
1173 |
* Si la chaîne est vide, alors toutes les personnes sont recherchées.
|
|
|
1174 |
* - 'start' et 'nbElements' sont les paramètres indispensables à la pagination. 'start'
|
|
|
1175 |
* est le paramètre qui décrit le numéro du tuple de départ et 'nbElements' le nombre
|
|
|
1176 |
* d'éléments à collecter.
|
|
|
1177 |
*
|
|
|
1178 |
* Préconditions :
|
|
|
1179 |
* ---------------
|
|
|
1180 |
* - 'vueARafraichir' doit être non NULL et référencer un objet implémentant l'interface
|
|
|
1181 |
* 'Rafraichissable'
|
|
|
1182 |
* - 'recherche' doit être non NULL.
|
|
|
1183 |
* - 'start' doit être supérieur ou égal à zéro. 'nbElements' doit être supérieur à zéro.
|
|
|
1184 |
*
|
|
|
1185 |
*****************************************************************************************************/
|
1367 |
cyprien |
1186 |
public void selectionnerPersonne(Rafraichissable vueARafraichir, String recherche, int start, int nbElements, Sequenceur sequenceur) {
|
|
|
1187 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner Personne");
|
|
|
1188 |
Integer seqId = null;
|
|
|
1189 |
if (sequenceur!=null) {
|
|
|
1190 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
1191 |
vueARafraichir = sequenceur;
|
|
|
1192 |
}
|
|
|
1193 |
modele.selectionnerPersonne(vueARafraichir, recherche, start, nbElements, seqId);
|
1329 |
cyprien |
1194 |
}
|
775 |
jpm |
1195 |
|
1763 |
aurelien |
1196 |
public void selectionnerPersonne(Rafraichissable vueARafraichir, Personne personne, int start, int nbElements, Sequenceur sequenceur) {
|
1367 |
cyprien |
1197 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner Personne");
|
1324 |
gduche |
1198 |
Integer seqId = null;
|
|
|
1199 |
if (sequenceur!=null) {
|
|
|
1200 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
1201 |
vueARafraichir = sequenceur;
|
|
|
1202 |
}
|
|
|
1203 |
String personneId = null;
|
|
|
1204 |
String personneNom = null;
|
|
|
1205 |
if (personne != null) {
|
|
|
1206 |
personneId = personne.getId();
|
|
|
1207 |
personneNom = personne.getNom();
|
|
|
1208 |
}
|
1763 |
aurelien |
1209 |
modele.selectionnerPersonne(vueARafraichir, personneId, personneNom, start, nbElements, seqId);
|
1324 |
gduche |
1210 |
}
|
|
|
1211 |
|
1428 |
cyprien |
1212 |
public void selectionnerPersonne(Rafraichissable vueARafraichir, String idPersonne, Sequenceur sequenceur) {
|
|
|
1213 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner Personne");
|
|
|
1214 |
Integer seqId = null;
|
|
|
1215 |
if (sequenceur!=null) {
|
|
|
1216 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
1217 |
vueARafraichir = sequenceur;
|
|
|
1218 |
}
|
1763 |
aurelien |
1219 |
modele.selectionnerPersonne(vueARafraichir, idPersonne, null, 0, nbElements, seqId);
|
1428 |
cyprien |
1220 |
}
|
|
|
1221 |
|
1763 |
aurelien |
1222 |
public void selectionnerPersonneParNomComplet(Rafraichissable vueARafraichir, String nomComplet, Sequenceur sequenceur) {
|
1367 |
cyprien |
1223 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner Personne");
|
|
|
1224 |
Integer seqId = null;
|
|
|
1225 |
if (sequenceur!=null) {
|
|
|
1226 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
1227 |
vueARafraichir = sequenceur;
|
775 |
jpm |
1228 |
}
|
1763 |
aurelien |
1229 |
modele.selectionnerPersonne(vueARafraichir, null, nomComplet, 0, -1, seqId);
|
775 |
jpm |
1230 |
}
|
|
|
1231 |
|
1367 |
cyprien |
1232 |
/** ENREGISTRER **/
|
389 |
gduche |
1233 |
public void enregistrerPersonne(Rafraichissable vue, Personne personne){
|
774 |
jpm |
1234 |
if (personne.getId() != null && !personne.getId().trim().equals("")) {
|
429 |
gduche |
1235 |
modele.modifierPersonne(vue, personne);
|
|
|
1236 |
} else {
|
1324 |
gduche |
1237 |
modele.ajouterPersonne(vue, personne);
|
429 |
gduche |
1238 |
}
|
389 |
gduche |
1239 |
}
|
|
|
1240 |
|
156 |
jp_milcent |
1241 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
1242 |
// GESTION DES PUBLICATIONS
|
|
|
1243 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
1244 |
|
107 |
aurelien |
1245 |
public void afficherListePublication(PublicationListe nouvelleDonnees) {
|
673 |
aurelien |
1246 |
if (!(panneauCentre.getContenu() instanceof PublicationVue)) {
|
626 |
gduche |
1247 |
panneauCentre.removeAll();
|
918 |
jpm |
1248 |
panneauCentre.add(new PublicationVue(this));
|
626 |
gduche |
1249 |
}
|
|
|
1250 |
|
646 |
jp_milcent |
1251 |
panneauCentre.getContenu().rafraichir(nouvelleDonnees);
|
107 |
aurelien |
1252 |
}
|
715 |
aurelien |
1253 |
|
775 |
jpm |
1254 |
public void afficherFormPublication(String publicationId) {
|
1613 |
aurelien |
1255 |
final FenetreForm fenetre = new FenetreForm("");
|
|
|
1256 |
PublicationForm publicationForm = new PublicationForm(this, publicationId) {
|
|
|
1257 |
@Override
|
|
|
1258 |
public void surFermetureFormulaire() {
|
|
|
1259 |
fenetre.hide();
|
|
|
1260 |
}
|
|
|
1261 |
};
|
|
|
1262 |
publicationForm.vueExterneARafraichirApresValidation = panneauCentre.getContenu();
|
|
|
1263 |
fenetre.add(publicationForm);
|
|
|
1264 |
fenetre.show();
|
715 |
aurelien |
1265 |
}
|
775 |
jpm |
1266 |
|
107 |
aurelien |
1267 |
public void clicListePublication(Publication publication) {
|
775 |
jpm |
1268 |
if (publication != null) {
|
675 |
aurelien |
1269 |
panneauCentre.getContenu().rafraichir(publication);
|
|
|
1270 |
}
|
107 |
aurelien |
1271 |
}
|
|
|
1272 |
|
|
|
1273 |
public void clicAjouterPublication() {
|
775 |
jpm |
1274 |
afficherFormPublication(null);
|
107 |
aurelien |
1275 |
}
|
156 |
jp_milcent |
1276 |
|
775 |
jpm |
1277 |
public void clicModifierPublication(List<Publication> selection) {
|
|
|
1278 |
if (selection.size() == 0) {
|
1210 |
cyprien |
1279 |
InfoLogger.display("Information", "Veuillez sélectionner une publication.");
|
775 |
jpm |
1280 |
} else if (selection.size() > 1) {
|
1210 |
cyprien |
1281 |
InfoLogger.display("Information", "Veuillez sélectionner une seule publication à la fois.");
|
775 |
jpm |
1282 |
} else if (selection.size() == 1) {
|
|
|
1283 |
afficherFormPublication(selection.get(0).getId());
|
379 |
jp_milcent |
1284 |
} else {
|
1210 |
cyprien |
1285 |
InfoLogger.display("Erreur", "Une erreur est survenue dans la méthode clicModifierPublication() du Médiateur.");
|
245 |
jp_milcent |
1286 |
}
|
|
|
1287 |
}
|
|
|
1288 |
|
315 |
gduche |
1289 |
public void clicSupprimerPublication(final List<Publication> publicationListe) {
|
453 |
jp_milcent |
1290 |
if (publicationListe.size() <= 0) {
|
315 |
gduche |
1291 |
MessageBox.alert("Attention", "Vous devez sélectionner une publication", null);
|
379 |
jp_milcent |
1292 |
} else {
|
1607 |
aurelien |
1293 |
String messageComplement = "(ceci supprimera également les liens avec leurs auteurs et leurs collections)";
|
1606 |
aurelien |
1294 |
String message = "Voulez-vous vraiment supprimer ces publications "+messageComplement+" ?";
|
775 |
jpm |
1295 |
if (publicationListe.size() == 1) {
|
1606 |
aurelien |
1296 |
message = "Voulez-vous vraiment supprimer cette publication "+messageComplement+" ?";
|
245 |
jp_milcent |
1297 |
}
|
315 |
gduche |
1298 |
|
502 |
gduche |
1299 |
final Listener<MessageBoxEvent> listenerSuppression = new Listener<MessageBoxEvent>() {
|
|
|
1300 |
public void handleEvent(MessageBoxEvent ce) {
|
|
|
1301 |
Dialog dialog = (Dialog) ce.getComponent();
|
|
|
1302 |
Button btn = ce.getButtonClicked();
|
315 |
gduche |
1303 |
|
1680 |
raphael |
1304 |
if (btn.getHtml().equals(dialog.yesText)) {
|
919 |
jpm |
1305 |
supprimerPublication(panneauCentre.getContenu(), publicationListe);
|
315 |
gduche |
1306 |
}
|
|
|
1307 |
}
|
|
|
1308 |
};
|
|
|
1309 |
|
|
|
1310 |
MessageBox.confirm("Supprimer une publication", message, listenerSuppression);
|
245 |
jp_milcent |
1311 |
}
|
|
|
1312 |
}
|
709 |
jp_milcent |
1313 |
|
1367 |
cyprien |
1314 |
/** Cette méthode est un "wrapper" */
|
1324 |
gduche |
1315 |
public void selectionnerPublication(Rafraichissable vueARafraichir, String publicationId, Sequenceur sequenceur) {
|
1763 |
aurelien |
1316 |
selectionnerPublication(vueARafraichir, publicationId, null, 0, nbElements, sequenceur);
|
709 |
jp_milcent |
1317 |
}
|
|
|
1318 |
|
1367 |
cyprien |
1319 |
/** Cette méthode est un "wrapper" */
|
1763 |
aurelien |
1320 |
public void selectionnerPublicationParNomComplet(Rafraichissable vueARafraichir, String nomComplet) {
|
|
|
1321 |
selectionnerPublication(vueARafraichir, null, nomComplet, 0, nbElements, null);
|
709 |
jp_milcent |
1322 |
}
|
|
|
1323 |
|
1763 |
aurelien |
1324 |
public void selectionnerPublication(Rafraichissable vueARafraichir, String publicationId, String nomComplet, int pageCourante, int nbElements, Sequenceur sequenceur) {
|
1367 |
cyprien |
1325 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner Publication");
|
|
|
1326 |
Integer seqId = null;
|
|
|
1327 |
if (sequenceur!=null) {
|
|
|
1328 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
1329 |
vueARafraichir = sequenceur;
|
|
|
1330 |
}
|
1763 |
aurelien |
1331 |
modele.selectionnerPublication(vueARafraichir, publicationId, nomComplet, pageCourante, nbElements, seqId);
|
1046 |
gduche |
1332 |
}
|
1367 |
cyprien |
1333 |
|
1513 |
jpm |
1334 |
public void selectionnerPublication(Rafraichissable vueARafraichir, String recherche, int start, int nbElements, Sequenceur sequenceur) {
|
|
|
1335 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner Publication");
|
|
|
1336 |
Integer seqId = null;
|
|
|
1337 |
if (sequenceur!=null) {
|
|
|
1338 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
1339 |
vueARafraichir = sequenceur;
|
|
|
1340 |
}
|
|
|
1341 |
modele.selectionnerPublication(vueARafraichir, recherche, start, nbElements, seqId);
|
|
|
1342 |
}
|
|
|
1343 |
|
1367 |
cyprien |
1344 |
/** AJOUTER **/
|
1324 |
gduche |
1345 |
public void ajouterPublication(Rafraichissable vueARafraichir, Publication publication, Integer seqId) {
|
|
|
1346 |
modele.ajouterPublication(vueARafraichir, publication, seqId);
|
245 |
jp_milcent |
1347 |
}
|
|
|
1348 |
|
1367 |
cyprien |
1349 |
/** MODIFIER **/
|
1324 |
gduche |
1350 |
public void modifierPublication(Rafraichissable vueARafraichir, Publication publication, Integer seqId) {
|
|
|
1351 |
modele.modifierPublication(vueARafraichir, publication, seqId);
|
245 |
jp_milcent |
1352 |
}
|
919 |
jpm |
1353 |
|
1367 |
cyprien |
1354 |
/** SUPPRIMER **/
|
1324 |
gduche |
1355 |
public void supprimerPublication(Rafraichissable vueARafraichir, List<Publication> publicationsListe) {
|
919 |
jpm |
1356 |
if (publicationsListe != null && publicationsListe.size() > 0) {
|
|
|
1357 |
String idPublicationSeparesParVirgule = "" ;
|
|
|
1358 |
Iterator<Publication> it = publicationsListe.iterator();
|
|
|
1359 |
while (it.hasNext()) {
|
|
|
1360 |
idPublicationSeparesParVirgule += it.next().getId();
|
|
|
1361 |
if (it.hasNext()) {
|
|
|
1362 |
idPublicationSeparesParVirgule += ",";
|
|
|
1363 |
}
|
|
|
1364 |
}
|
|
|
1365 |
modele.supprimerPublication(vueARafraichir, idPublicationSeparesParVirgule);
|
|
|
1366 |
}
|
|
|
1367 |
}
|
245 |
jp_milcent |
1368 |
|
156 |
jp_milcent |
1369 |
//+----------------------------------------------------------------------------------------------------------------+
|
822 |
jpm |
1370 |
// GESTION de la relation PUBLICATION A PERSONNE
|
|
|
1371 |
|
1324 |
gduche |
1372 |
public void selectionnerPublicationAPersonne(Rafraichissable vueARafraichir, String publicationId, String personnesId, String roleId, Sequenceur sequenceur) {
|
1367 |
cyprien |
1373 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner PublicationAPersonne");
|
1324 |
gduche |
1374 |
Integer seqId = null;
|
|
|
1375 |
if (sequenceur != null) {
|
|
|
1376 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
1377 |
vueARafraichir = sequenceur;
|
|
|
1378 |
}
|
|
|
1379 |
modele.selectionPublicationAPersonne(vueARafraichir, publicationId, personnesId, roleId, seqId);
|
822 |
jpm |
1380 |
}
|
|
|
1381 |
|
1367 |
cyprien |
1382 |
public void selectionnerPublicationAPersonne(Rafraichissable vueARafraichir, String publicationId, String personnesId, List<Valeur> roleId, Sequenceur sequenceur) {
|
|
|
1383 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner PublicationAPersonne");
|
|
|
1384 |
Integer seqId = null;
|
|
|
1385 |
if (sequenceur != null) {
|
|
|
1386 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
1387 |
vueARafraichir = sequenceur;
|
|
|
1388 |
}
|
|
|
1389 |
|
1014 |
gduche |
1390 |
String roleIds = "";
|
|
|
1391 |
Iterator<Valeur> itRole = roleId.iterator();
|
|
|
1392 |
while (itRole.hasNext()) {
|
|
|
1393 |
roleIds+= itRole.next().getId();
|
|
|
1394 |
if (itRole.hasNext()) {
|
|
|
1395 |
roleIds+=",";
|
|
|
1396 |
}
|
|
|
1397 |
}
|
1367 |
cyprien |
1398 |
modele.selectionPublicationAPersonne(vueARafraichir, publicationId, personnesId, roleIds, seqId);
|
1014 |
gduche |
1399 |
}
|
1513 |
jpm |
1400 |
|
|
|
1401 |
public void selectionnerPublicationsAPersonne(Rafraichissable vueARafraichir, String personneId, List<Valeur> roleId, String recherche, int pageCourante, int nbElements, Sequenceur sequenceur) {
|
|
|
1402 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner PublicationAPersonne");
|
|
|
1403 |
Integer seqId = null;
|
|
|
1404 |
if (sequenceur != null) {
|
|
|
1405 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
1406 |
vueARafraichir = sequenceur;
|
|
|
1407 |
}
|
|
|
1408 |
|
|
|
1409 |
String roleIds = "";
|
|
|
1410 |
Iterator<Valeur> itRole = roleId.iterator();
|
|
|
1411 |
while (itRole.hasNext()) {
|
|
|
1412 |
roleIds+= itRole.next().getId();
|
|
|
1413 |
if (itRole.hasNext()) {
|
|
|
1414 |
roleIds+=",";
|
|
|
1415 |
}
|
|
|
1416 |
}
|
|
|
1417 |
modele.selectionPublicationsAPersonne(vueARafraichir, personneId, roleIds, recherche, pageCourante, nbElements, seqId);
|
|
|
1418 |
}
|
|
|
1419 |
|
|
|
1420 |
public void selectionnerPersonnesAPublication(Rafraichissable vueARafraichir, String publicationId, String recherche, int pageCourante, int nbElements, Sequenceur sequenceur) {
|
|
|
1421 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner PublicationAPersonne");
|
|
|
1422 |
Integer seqId = null;
|
|
|
1423 |
if (sequenceur != null) {
|
|
|
1424 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
1425 |
vueARafraichir = sequenceur;
|
|
|
1426 |
}
|
|
|
1427 |
modele.selectionPersonnesAPublication(vueARafraichir, publicationId, recherche, pageCourante, nbElements, seqId);
|
|
|
1428 |
}
|
1428 |
cyprien |
1429 |
|
1367 |
cyprien |
1430 |
/** AJOUTER **/
|
1428 |
cyprien |
1431 |
// Lier une publication à plusieurs personnes
|
1324 |
gduche |
1432 |
public void ajouterPublicationAPersonne(Rafraichissable vueARafraichir, String publicationId, PublicationAPersonneListe personnesAjoutees, String roleId, Integer seqId) {
|
901 |
jpm |
1433 |
if (personnesAjoutees != null && personnesAjoutees.size() > 0) {
|
|
|
1434 |
String idPublicationAPersonneSepareParVirgule = "" ;
|
1428 |
cyprien |
1435 |
String ordreAuteursSepareParVirgule = "";
|
901 |
jpm |
1436 |
for (Iterator<String> it = personnesAjoutees.keySet().iterator(); it.hasNext();) {
|
1428 |
cyprien |
1437 |
PublicationAPersonne publi = personnesAjoutees.get(it.next());
|
|
|
1438 |
idPublicationAPersonneSepareParVirgule += publi.getIdPersonne();
|
|
|
1439 |
ordreAuteursSepareParVirgule += publi.getOrdreAuteurs();
|
901 |
jpm |
1440 |
if (it.hasNext()) {
|
|
|
1441 |
idPublicationAPersonneSepareParVirgule += ",";
|
1428 |
cyprien |
1442 |
ordreAuteursSepareParVirgule += ",";
|
901 |
jpm |
1443 |
}
|
|
|
1444 |
}
|
1428 |
cyprien |
1445 |
modele.ajouterPublicationAPersonne(vueARafraichir, publicationId, idPublicationAPersonneSepareParVirgule, ordreAuteursSepareParVirgule, roleId, seqId);
|
1324 |
gduche |
1446 |
}
|
822 |
jpm |
1447 |
}
|
901 |
jpm |
1448 |
|
1428 |
cyprien |
1449 |
// Lier plusieurs publication à une personne
|
|
|
1450 |
public void ajouterPublicationAPersonne(Rafraichissable vueARafraichir, PublicationAPersonneListe listePublications, String personneId, String roleId, Integer seqId) {
|
1468 |
jpm |
1451 |
if (listePublications != null && listePublications.size() > 0) {
|
1428 |
cyprien |
1452 |
String idsPubli = "";
|
|
|
1453 |
String rolesIds = "";
|
|
|
1454 |
String ordreAuteurs = "";
|
|
|
1455 |
for (Iterator<String> it = listePublications.keySet().iterator(); it.hasNext();) {
|
|
|
1456 |
PublicationAPersonne publiAPersonne = listePublications.get(it.next());
|
1468 |
jpm |
1457 |
idsPubli += publiAPersonne.getIdPublication();
|
1428 |
cyprien |
1458 |
rolesIds += publiAPersonne.getRole();
|
|
|
1459 |
ordreAuteurs += publiAPersonne.getOrdreAuteurs();
|
|
|
1460 |
if (it.hasNext()) {
|
|
|
1461 |
idsPubli += ",";
|
|
|
1462 |
rolesIds += ",";
|
|
|
1463 |
ordreAuteurs += ",";
|
|
|
1464 |
}
|
|
|
1465 |
}
|
|
|
1466 |
modele.ajouterPublicationAPersonne(vueARafraichir, idsPubli, personneId, ordreAuteurs, rolesIds, seqId);
|
|
|
1467 |
}
|
|
|
1468 |
}
|
|
|
1469 |
|
|
|
1470 |
/** MODIFIER **/
|
|
|
1471 |
public void modifierPublicationAPersonne(Rafraichissable vueARafraichir, String publicationId, PublicationAPersonneListe personnesModifiees, String roleId, Integer seqId) {
|
|
|
1472 |
if (personnesModifiees != null && personnesModifiees.size() > 0) {
|
|
|
1473 |
String idPublicationAPersonneSepareParVirgule = "" ;
|
|
|
1474 |
String ordreAuteursSepareParVirgule = "";
|
|
|
1475 |
for (Iterator<String> it = personnesModifiees.keySet().iterator(); it.hasNext();) {
|
|
|
1476 |
PublicationAPersonne publi = personnesModifiees.get(it.next());
|
|
|
1477 |
idPublicationAPersonneSepareParVirgule += publi.getIdPersonne();
|
|
|
1478 |
ordreAuteursSepareParVirgule += publi.getOrdreAuteurs();
|
|
|
1479 |
if (it.hasNext()) {
|
|
|
1480 |
idPublicationAPersonneSepareParVirgule += ",";
|
|
|
1481 |
ordreAuteursSepareParVirgule += ",";
|
|
|
1482 |
}
|
|
|
1483 |
}
|
|
|
1484 |
modele.modifierPublicationAPersonne(vueARafraichir, publicationId, idPublicationAPersonneSepareParVirgule, ordreAuteursSepareParVirgule, roleId, seqId);
|
|
|
1485 |
}
|
|
|
1486 |
}
|
1367 |
cyprien |
1487 |
|
|
|
1488 |
/** SUPPRIMER **/
|
1324 |
gduche |
1489 |
public void supprimerPublicationAPersonne(Rafraichissable vueARafraichir, PublicationAPersonneListe personnesSupprimees) {
|
901 |
jpm |
1490 |
if (personnesSupprimees != null && personnesSupprimees.size() > 0) {
|
|
|
1491 |
String idPublicationAPersonneSepareParVirgule = "" ;
|
|
|
1492 |
for (Iterator<String> it = personnesSupprimees.keySet().iterator(); it.hasNext();) {
|
|
|
1493 |
idPublicationAPersonneSepareParVirgule += personnesSupprimees.get(it.next()).getId();
|
|
|
1494 |
if (it.hasNext()) {
|
|
|
1495 |
idPublicationAPersonneSepareParVirgule += ",";
|
|
|
1496 |
}
|
|
|
1497 |
}
|
1428 |
cyprien |
1498 |
|
968 |
jpm |
1499 |
modele.supprimerPublicationAPersonne(vueARafraichir, idPublicationAPersonneSepareParVirgule);
|
1324 |
gduche |
1500 |
}
|
822 |
jpm |
1501 |
}
|
|
|
1502 |
|
|
|
1503 |
//+----------------------------------------------------------------------------------------------------------------+
|
985 |
jpm |
1504 |
// GESTION DES COMMENTAIRES
|
|
|
1505 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
1506 |
|
|
|
1507 |
public void afficherListeCommentaire(CommentaireListe nouvelleDonnees) {
|
|
|
1508 |
if (!(panneauCentre.getContenu() instanceof CommentaireVue)) {
|
|
|
1509 |
panneauCentre.removeAll();
|
|
|
1510 |
panneauCentre.add(new CommentaireVue(this));
|
|
|
1511 |
}
|
|
|
1512 |
|
|
|
1513 |
panneauCentre.getContenu().rafraichir(nouvelleDonnees);
|
|
|
1514 |
}
|
|
|
1515 |
|
|
|
1516 |
public void afficherFormCommentaire(String commentaireId) {
|
1613 |
aurelien |
1517 |
final FenetreForm fenetre = new FenetreForm("");
|
|
|
1518 |
CommentaireForm commentaireForm = new CommentaireForm(this, commentaireId) {
|
|
|
1519 |
@Override
|
|
|
1520 |
public void surFermetureFormulaire() {
|
|
|
1521 |
fenetre.hide();
|
|
|
1522 |
}
|
|
|
1523 |
};
|
|
|
1524 |
commentaireForm.vueExterneARafraichirApresValidation = panneauCentre.getContenu();
|
|
|
1525 |
fenetre.add(commentaireForm);
|
|
|
1526 |
fenetre.show();
|
985 |
jpm |
1527 |
}
|
|
|
1528 |
|
|
|
1529 |
public void clicListeCommentaire(Commentaire commentaire) {
|
|
|
1530 |
if (commentaire != null) {
|
|
|
1531 |
panneauCentre.getContenu().rafraichir(commentaire);
|
|
|
1532 |
}
|
|
|
1533 |
}
|
|
|
1534 |
|
|
|
1535 |
public void clicAjouterCommentaire() {
|
|
|
1536 |
afficherFormCommentaire(null);
|
|
|
1537 |
}
|
|
|
1538 |
|
|
|
1539 |
public void clicModifierCommentaire(List<Commentaire> selection) {
|
|
|
1540 |
if (selection.size() == 0) {
|
1210 |
cyprien |
1541 |
InfoLogger.display("Information", "Veuillez sélectionner un commentaire.");
|
985 |
jpm |
1542 |
} else if (selection.size() > 1) {
|
1210 |
cyprien |
1543 |
InfoLogger.display("Information", "Veuillez sélectionner un seul commentaire à la fois.");
|
985 |
jpm |
1544 |
} else if (selection.size() == 1) {
|
|
|
1545 |
afficherFormCommentaire(selection.get(0).getId());
|
|
|
1546 |
} else {
|
1210 |
cyprien |
1547 |
InfoLogger.display("Erreur", "Une erreur est survenue dans la méthode clicModifierCommentaire() du Médiateur.");
|
985 |
jpm |
1548 |
}
|
|
|
1549 |
}
|
|
|
1550 |
|
|
|
1551 |
public void clicSupprimerCommentaire(final List<Commentaire> commentaireListe) {
|
|
|
1552 |
if (commentaireListe.size() <= 0) {
|
|
|
1553 |
MessageBox.alert("Attention", "Vous devez sélectionner un commentaire", null);
|
|
|
1554 |
} else {
|
|
|
1555 |
String message = "Voulez-vous vraiment supprimer ces commentaires ?";
|
|
|
1556 |
if (commentaireListe.size() == 1) {
|
|
|
1557 |
message = "Voulez-vous vraiment supprimer ce commentaire ?";
|
|
|
1558 |
}
|
|
|
1559 |
|
|
|
1560 |
final Listener<MessageBoxEvent> listenerSuppression = new Listener<MessageBoxEvent>() {
|
|
|
1561 |
public void handleEvent(MessageBoxEvent ce) {
|
|
|
1562 |
Dialog dialog = (Dialog) ce.getComponent();
|
|
|
1563 |
Button btn = ce.getButtonClicked();
|
|
|
1564 |
|
1680 |
raphael |
1565 |
if (btn.getHtml().equals(dialog.yesText)) {
|
985 |
jpm |
1566 |
supprimerCommentaire(panneauCentre.getContenu(), commentaireListe);
|
|
|
1567 |
}
|
|
|
1568 |
}
|
|
|
1569 |
};
|
|
|
1570 |
|
|
|
1571 |
MessageBox.confirm("Supprimer un commentaire", message, listenerSuppression);
|
|
|
1572 |
}
|
|
|
1573 |
}
|
|
|
1574 |
|
1367 |
cyprien |
1575 |
/** Cette méthode est un wrapper **/
|
|
|
1576 |
public void selectionnerCommentaire(Rafraichissable vueARafraichir, String commentaireId, Sequenceur sequenceur) {
|
|
|
1577 |
selectionnerCommentaire(vueARafraichir, commentaireId, null, 0, nbElements, sequenceur);
|
985 |
jpm |
1578 |
}
|
1367 |
cyprien |
1579 |
|
|
|
1580 |
public void selectionnerCommentaire(Rafraichissable vueARafraichir, String commentaireId, String titre, int pageCourante, int nbElements, Sequenceur sequenceur) {
|
|
|
1581 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner Commentaire");
|
|
|
1582 |
Integer seqId = null;
|
|
|
1583 |
if (sequenceur != null) {
|
|
|
1584 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
1585 |
vueARafraichir = sequenceur;
|
|
|
1586 |
}
|
1763 |
aurelien |
1587 |
modele.selectionnerCommentaire(vueARafraichir, commentaireId, titre, pageCourante, nbElements, seqId);
|
1048 |
gduche |
1588 |
}
|
985 |
jpm |
1589 |
|
1513 |
jpm |
1590 |
public void selectionnerCommentaire(Rafraichissable vueARafraichir, String recherche, int pageCourante, int nbElements, Sequenceur sequenceur) {
|
|
|
1591 |
if (Mediateur.DEBUG) System.out.println("MEDIATEUR - selectionner Commentaire");
|
|
|
1592 |
Integer seqId = null;
|
|
|
1593 |
if (sequenceur != null) {
|
|
|
1594 |
seqId = sequenceur.lancerRequeteSynchrone(vueARafraichir);
|
|
|
1595 |
vueARafraichir = sequenceur;
|
|
|
1596 |
}
|
|
|
1597 |
modele.selectionnerCommentaire(vueARafraichir, recherche, pageCourante, nbElements, seqId);
|
|
|
1598 |
}
|
|
|
1599 |
|
1367 |
cyprien |
1600 |
/** Cette méthode est un wrapper **/
|
|
|
1601 |
public void selectionnerCommentaireParTitre(Rafraichissable vueARafraichir, String titre, Sequenceur sequenceur) {
|
|
|
1602 |
selectionnerCommentaire(vueARafraichir, null, titre, 0, nbElements, sequenceur);
|
997 |
jpm |
1603 |
}
|
|
|
1604 |
|
1367 |
cyprien |
1605 |
/** AJOUTER **/
|
985 |
jpm |
1606 |
public void ajouterCommentaire(Rafraichissable vueARafraichir, Commentaire commentaire) {
|
|
|
1607 |
modele.ajouterCommentaire(vueARafraichir, commentaire);
|
|
|
1608 |
}
|
|
|
1609 |
|
1367 |
cyprien |
1610 |
/** MODIFIER **/
|
985 |
jpm |
1611 |
public void modifierCommentaire(Rafraichissable vueARafraichir, Commentaire commentaire) {
|
|
|
1612 |
modele.modifierCommentaire(vueARafraichir, commentaire);
|
|
|
1613 |
}
|
|
|
1614 |
|
1367 |
cyprien |
1615 |
/** SUPPRIMER **/
|
985 |
jpm |
1616 |
public void supprimerCommentaire(Rafraichissable vueARafraichir, List<Commentaire> commentairesListe) {
|
|
|
1617 |
if (commentairesListe != null && commentairesListe.size() > 0) {
|
|
|
1618 |
String idCommentaireSeparesParVirgule = "" ;
|
|
|
1619 |
Iterator<Commentaire> it = commentairesListe.iterator();
|
|
|
1620 |
while (it.hasNext()) {
|
|
|
1621 |
idCommentaireSeparesParVirgule += it.next().getId();
|
|
|
1622 |
if (it.hasNext()) {
|
|
|
1623 |
idCommentaireSeparesParVirgule += ",";
|
|
|
1624 |
}
|
|
|
1625 |
}
|
|
|
1626 |
modele.supprimerCommentaire(vueARafraichir, idCommentaireSeparesParVirgule);
|
989 |
jpm |
1627 |
modele.supprimerCollectionACommentaire(vueARafraichir, idCommentaireSeparesParVirgule, CollectionACommentaireAsyncDao.SUPPRESSION_PAR_COMMENTAIRE);
|
985 |
jpm |
1628 |
}
|
|
|
1629 |
}
|
|
|
1630 |
|
|
|
1631 |
//+----------------------------------------------------------------------------------------------------------------+
|
447 |
jp_milcent |
1632 |
// RAFRAICHISSEMENT
|
156 |
jp_milcent |
1633 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
1634 |
|
898 |
gduche |
1635 |
public void rafraichir(Object nouvellesDonnees) {
|
|
|
1636 |
if (nouvellesDonnees instanceof Utilisateur) {
|
932 |
jpm |
1637 |
repandreEtatIdentification((Utilisateur) nouvellesDonnees);
|
|
|
1638 |
} else if (nouvellesDonnees instanceof Information) {
|
|
|
1639 |
Information info = (Information) nouvellesDonnees;
|
|
|
1640 |
if (info.getType().equals("modification_personne")) {
|
|
|
1641 |
repandreInfoMiseAJourUtilisateur();
|
|
|
1642 |
}
|
|
|
1643 |
} else {
|
898 |
gduche |
1644 |
GWT.log(i18nM.erreurRafraichir(nouvellesDonnees.getClass(), this.getClass()), null);
|
277 |
jp_milcent |
1645 |
}
|
|
|
1646 |
}
|
281 |
gduche |
1647 |
|
453 |
jp_milcent |
1648 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
1649 |
// GESTION du STATUT
|
|
|
1650 |
//+----------------------------------------------------------------------------------------------------------------+
|
288 |
gduche |
1651 |
|
332 |
gduche |
1652 |
public void afficherPopinChargement() {
|
|
|
1653 |
((PopupChargement) Registry.get(RegistreId.POPUP_CHARGEMENT)).center();
|
|
|
1654 |
}
|
453 |
jp_milcent |
1655 |
|
332 |
gduche |
1656 |
public void masquerPopinChargement() {
|
|
|
1657 |
((PopupChargement) Registry.get(RegistreId.POPUP_CHARGEMENT)).hide();
|
|
|
1658 |
}
|
1063 |
gduche |
1659 |
|
|
|
1660 |
public String obtenirClasseContenu() {
|
|
|
1661 |
String classeContenu = null;
|
|
|
1662 |
if (panneauCentre.getContenu() != null) {
|
|
|
1663 |
classeContenu = panneauCentre.getContenu().getClass().toString();
|
|
|
1664 |
}
|
|
|
1665 |
return classeContenu;
|
1509 |
jpm |
1666 |
}
|
|
|
1667 |
|
|
|
1668 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
1669 |
// GESTION de l'HISTORIQUE du navigateur
|
|
|
1670 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
1671 |
@Override
|
|
|
1672 |
public void onValueChange(ValueChangeEvent<String> event) {
|
|
|
1673 |
String token = event.getValue();
|
1633 |
aurelien |
1674 |
if(premierChargement) {
|
|
|
1675 |
if (token != null) {
|
|
|
1676 |
if (token.lastIndexOf("?") == -1) {
|
|
|
1677 |
this.requeteUrl = null;
|
|
|
1678 |
this.clicMenu(token);
|
|
|
1679 |
} else {
|
|
|
1680 |
int indexDebutRequete = (token.lastIndexOf("?") + 1);
|
|
|
1681 |
int indexFinPlace = token.lastIndexOf("?");
|
|
|
1682 |
String place = token.substring(0, indexFinPlace);
|
|
|
1683 |
requeteUrl = token.substring(indexDebutRequete);
|
|
|
1684 |
Log.trace("URL Place : "+place);
|
|
|
1685 |
Log.trace("URL Requete : "+requeteUrl);
|
|
|
1686 |
analyseRequeteURL();
|
|
|
1687 |
this.clicMenu(place);
|
|
|
1688 |
}
|
|
|
1689 |
}
|
|
|
1690 |
}
|
|
|
1691 |
premierChargement = false;
|
1562 |
jpm |
1692 |
}
|
|
|
1693 |
|
|
|
1694 |
private void analyseRequeteURL() {
|
|
|
1695 |
String[] params = requeteUrl.split("&");
|
|
|
1696 |
for (int i = 0; i < params.length; i++) {
|
|
|
1697 |
if (params[i].startsWith("logLevel=")) {
|
|
|
1698 |
String logLevel = params[i].replaceFirst("^logLevel=", "");
|
|
|
1699 |
Log.setNiveau(logLevel);
|
|
|
1700 |
}
|
|
|
1701 |
}
|
|
|
1702 |
}
|
447 |
jp_milcent |
1703 |
|
1654 |
raphael |
1704 |
}
|