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