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