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