60 |
jpm |
1 |
package org.tela_botanica.client;
|
|
|
2 |
|
231 |
jp_milcent |
3 |
import java.util.Iterator;
|
134 |
jpm |
4 |
import java.util.List;
|
|
|
5 |
|
61 |
jpm |
6 |
import org.tela_botanica.client.composants.AideFenetre;
|
60 |
jpm |
7 |
import org.tela_botanica.client.composants.IdentificationFenetre;
|
898 |
gduche |
8 |
import org.tela_botanica.client.composants.LicenceFenetre;
|
1023 |
jpm |
9 |
import org.tela_botanica.client.composants.AproposFenetre;
|
907 |
jpm |
10 |
import org.tela_botanica.client.configuration.APropos;
|
|
|
11 |
import org.tela_botanica.client.configuration.Configuration;
|
358 |
jp_milcent |
12 |
import org.tela_botanica.client.i18n.Constantes;
|
466 |
gduche |
13 |
import org.tela_botanica.client.i18n.ErrorMessages;
|
119 |
jpm |
14 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
156 |
jp_milcent |
15 |
import org.tela_botanica.client.modeles.Information;
|
327 |
jp_milcent |
16 |
import org.tela_botanica.client.modeles.MenuApplicationId;
|
61 |
jpm |
17 |
import org.tela_botanica.client.modeles.Utilisateur;
|
1014 |
gduche |
18 |
import org.tela_botanica.client.modeles.Valeur;
|
91 |
jpm |
19 |
import org.tela_botanica.client.modeles.ValeurListe;
|
935 |
jpm |
20 |
import org.tela_botanica.client.modeles.collection.Collection;
|
989 |
jpm |
21 |
import org.tela_botanica.client.modeles.collection.CollectionACommentaire;
|
|
|
22 |
import org.tela_botanica.client.modeles.collection.CollectionACommentaireAsyncDao;
|
|
|
23 |
import org.tela_botanica.client.modeles.collection.CollectionACommentaireListe;
|
935 |
jpm |
24 |
import org.tela_botanica.client.modeles.collection.CollectionAPersonne;
|
|
|
25 |
import org.tela_botanica.client.modeles.collection.CollectionAPersonneListe;
|
|
|
26 |
import org.tela_botanica.client.modeles.collection.CollectionAPublication;
|
|
|
27 |
import org.tela_botanica.client.modeles.collection.CollectionAPublicationListe;
|
|
|
28 |
import org.tela_botanica.client.modeles.collection.CollectionListe;
|
985 |
jpm |
29 |
import org.tela_botanica.client.modeles.commentaire.Commentaire;
|
|
|
30 |
import org.tela_botanica.client.modeles.commentaire.CommentaireListe;
|
935 |
jpm |
31 |
import org.tela_botanica.client.modeles.personne.Personne;
|
|
|
32 |
import org.tela_botanica.client.modeles.personne.PersonneListe;
|
|
|
33 |
import org.tela_botanica.client.modeles.projet.Projet;
|
|
|
34 |
import org.tela_botanica.client.modeles.projet.ProjetListe;
|
|
|
35 |
import org.tela_botanica.client.modeles.publication.Publication;
|
|
|
36 |
import org.tela_botanica.client.modeles.publication.PublicationAPersonne;
|
|
|
37 |
import org.tela_botanica.client.modeles.publication.PublicationAPersonneListe;
|
|
|
38 |
import org.tela_botanica.client.modeles.publication.PublicationListe;
|
|
|
39 |
import org.tela_botanica.client.modeles.structure.Structure;
|
|
|
40 |
import org.tela_botanica.client.modeles.structure.StructureAPersonne;
|
|
|
41 |
import org.tela_botanica.client.modeles.structure.StructureAPersonneListe;
|
|
|
42 |
import org.tela_botanica.client.modeles.structure.StructureConservation;
|
|
|
43 |
import org.tela_botanica.client.modeles.structure.StructureListe;
|
|
|
44 |
import org.tela_botanica.client.modeles.structure.StructureValorisation;
|
918 |
jpm |
45 |
import org.tela_botanica.client.util.Debug;
|
936 |
jpm |
46 |
import org.tela_botanica.client.vues.ContenuVue;
|
444 |
jp_milcent |
47 |
import org.tela_botanica.client.vues.EnteteVue;
|
641 |
jp_milcent |
48 |
import org.tela_botanica.client.vues.Formulaire;
|
982 |
jpm |
49 |
import org.tela_botanica.client.vues.NavigationVue;
|
332 |
gduche |
50 |
import org.tela_botanica.client.vues.PopupChargement;
|
443 |
jp_milcent |
51 |
import org.tela_botanica.client.vues.StatutVue;
|
444 |
jp_milcent |
52 |
import org.tela_botanica.client.vues.MenuVue;
|
912 |
jpm |
53 |
import org.tela_botanica.client.vues.accueil.AccueilVue;
|
934 |
jpm |
54 |
import org.tela_botanica.client.vues.collection.CollectionForm;
|
|
|
55 |
import org.tela_botanica.client.vues.collection.CollectionListeVue;
|
|
|
56 |
import org.tela_botanica.client.vues.collection.CollectionVue;
|
989 |
jpm |
57 |
import org.tela_botanica.client.vues.commentaire.CommentaireForm;
|
985 |
jpm |
58 |
import org.tela_botanica.client.vues.commentaire.CommentaireVue;
|
935 |
jpm |
59 |
import org.tela_botanica.client.vues.personne.PersonneForm;
|
|
|
60 |
import org.tela_botanica.client.vues.personne.PersonneVue;
|
|
|
61 |
import org.tela_botanica.client.vues.projet.ProjetForm;
|
|
|
62 |
import org.tela_botanica.client.vues.projet.ProjetVue;
|
|
|
63 |
import org.tela_botanica.client.vues.publication.PublicationForm;
|
|
|
64 |
import org.tela_botanica.client.vues.publication.PublicationVue;
|
|
|
65 |
import org.tela_botanica.client.vues.structure.StructureForm;
|
|
|
66 |
import org.tela_botanica.client.vues.structure.StructureVue;
|
467 |
jp_milcent |
67 |
|
60 |
jpm |
68 |
import com.extjs.gxt.ui.client.Registry;
|
|
|
69 |
import com.extjs.gxt.ui.client.Style.LayoutRegion;
|
315 |
gduche |
70 |
import com.extjs.gxt.ui.client.event.Listener;
|
502 |
gduche |
71 |
import com.extjs.gxt.ui.client.event.MessageBoxEvent;
|
60 |
jpm |
72 |
import com.extjs.gxt.ui.client.util.Margins;
|
646 |
jp_milcent |
73 |
import com.extjs.gxt.ui.client.widget.Component;
|
315 |
gduche |
74 |
import com.extjs.gxt.ui.client.widget.Dialog;
|
156 |
jp_milcent |
75 |
import com.extjs.gxt.ui.client.widget.Info;
|
315 |
gduche |
76 |
import com.extjs.gxt.ui.client.widget.MessageBox;
|
60 |
jpm |
77 |
import com.extjs.gxt.ui.client.widget.Viewport;
|
315 |
gduche |
78 |
import com.extjs.gxt.ui.client.widget.button.Button;
|
60 |
jpm |
79 |
import com.extjs.gxt.ui.client.widget.layout.BorderLayout;
|
|
|
80 |
import com.extjs.gxt.ui.client.widget.layout.BorderLayoutData;
|
91 |
jpm |
81 |
import com.google.gwt.core.client.GWT;
|
599 |
gduche |
82 |
import com.google.gwt.i18n.client.Dictionary;
|
60 |
jpm |
83 |
import com.google.gwt.user.client.Window;
|
|
|
84 |
import com.google.gwt.user.client.ui.RootPanel;
|
|
|
85 |
|
277 |
jp_milcent |
86 |
public class Mediateur implements Rafraichissable {
|
60 |
jpm |
87 |
|
358 |
jp_milcent |
88 |
private Viewport viewport;
|
119 |
jpm |
89 |
private Modele modele = null;
|
582 |
jp_milcent |
90 |
public static final Constantes i18nC = getI18nConstante();
|
|
|
91 |
public static final ErrorMessages i18nM = getI18nMessage();
|
119 |
jpm |
92 |
|
444 |
jp_milcent |
93 |
private EnteteVue panneauNord = null;
|
982 |
jpm |
94 |
private NavigationVue panneauOuest = null;
|
444 |
jp_milcent |
95 |
private ContenuVue panneauCentre = null;
|
443 |
jp_milcent |
96 |
private StatutVue panneauSud = null;
|
60 |
jpm |
97 |
|
358 |
jp_milcent |
98 |
private IdentificationFenetre fenetreIdentification = null;
|
1041 |
gduche |
99 |
private int nbElements = Integer.valueOf(((Dictionary) Dictionary.getDictionary("configuration")).get("nbElementsPage"));
|
60 |
jpm |
100 |
public Mediateur() {
|
|
|
101 |
// Enregistrement du Médiateur dans le Registre
|
|
|
102 |
Registry.register(RegistreId.MEDIATEUR, this);
|
765 |
jpm |
103 |
|
|
|
104 |
//Initialisation du Registre
|
|
|
105 |
initialiserRegistre();
|
466 |
gduche |
106 |
|
60 |
jpm |
107 |
// Création du Modèle qui s'enregistre lui même dans le Registre
|
119 |
jpm |
108 |
modele = new Modele();
|
535 |
jp_milcent |
109 |
|
60 |
jpm |
110 |
// Création du Viewport qui contient la disposition globale de l'application
|
|
|
111 |
viewport = new Viewport();
|
|
|
112 |
viewport.setLayout(new BorderLayout());
|
552 |
jp_milcent |
113 |
|
60 |
jpm |
114 |
// Création des différents panneaux
|
|
|
115 |
creerPanneauNord();
|
|
|
116 |
creerPanneauOuest();
|
|
|
117 |
creerPanneauCentral();
|
358 |
jp_milcent |
118 |
creerPanneauSud();
|
535 |
jp_milcent |
119 |
|
|
|
120 |
// Connection de l'utilisateur
|
|
|
121 |
connecterUtilisateur(null, null);
|
|
|
122 |
|
60 |
jpm |
123 |
// Retour à GWT du Viewport une fois constuit
|
|
|
124 |
RootPanel.get().add(viewport);
|
|
|
125 |
}
|
|
|
126 |
|
156 |
jp_milcent |
127 |
//+----------------------------------------------------------------------------------------------------------------+
|
535 |
jp_milcent |
128 |
// GESTION de l'I18N et du REGISTRE
|
|
|
129 |
//+----------------------------------------------------------------------------------------------------------------+
|
582 |
jp_milcent |
130 |
protected static Constantes getI18nConstante() {
|
535 |
jp_milcent |
131 |
return GWT.create(Constantes.class);
|
|
|
132 |
}
|
|
|
133 |
|
582 |
jp_milcent |
134 |
protected static ErrorMessages getI18nMessage() {
|
535 |
jp_milcent |
135 |
return GWT.create(ErrorMessages.class);
|
|
|
136 |
}
|
|
|
137 |
|
|
|
138 |
protected void initialiserRegistre() {
|
1107 |
jpm |
139 |
APropos apropos = new APropos();
|
907 |
jpm |
140 |
|
1107 |
jpm |
141 |
Registry.register(RegistreId.APPLI_NOM, apropos.getAppliNom());
|
|
|
142 |
Registry.register(RegistreId.APPLI_CODE, apropos.getAppliCode());
|
|
|
143 |
Registry.register(RegistreId.APPLI_VERSION, apropos.getAppliVersionNumero());
|
|
|
144 |
|
1023 |
jpm |
145 |
Registry.register(RegistreId.APPLI_DEVELOPPEURS, apropos.getDeveloppeurs());
|
|
|
146 |
Registry.register(RegistreId.APPLI_TRADUCTEURS, apropos.getTraducteurs());
|
|
|
147 |
Registry.register(RegistreId.APPLI_LICENCE, apropos.getLicence());
|
907 |
jpm |
148 |
Registry.register(RegistreId.APPLI_REVISION, apropos.getRevisionGlobale());
|
|
|
149 |
Registry.register(RegistreId.APPLI_COMPILATION_JAVA_VERSION, apropos.getVersionJavaCompilation());
|
|
|
150 |
Registry.register(RegistreId.APPLI_COMPILATION_DATE_HEURE, apropos.getDateHeureCompilation());
|
535 |
jp_milcent |
151 |
|
|
|
152 |
Registry.register(RegistreId.CONFIG, new Configuration());
|
537 |
jp_milcent |
153 |
Registry.register(RegistreId.POPUP_CHARGEMENT, new PopupChargement(this));
|
766 |
jpm |
154 |
Registry.register(RegistreId.UTILISATEUR_COURANT, new Utilisateur());
|
535 |
jp_milcent |
155 |
Registry.register(RegistreId.PROJET_COURANT, new Projet());
|
|
|
156 |
}
|
|
|
157 |
|
|
|
158 |
//+----------------------------------------------------------------------------------------------------------------+
|
156 |
jp_milcent |
159 |
// GESTION des PANNEAUX PRINCIPAUX
|
|
|
160 |
//+----------------------------------------------------------------------------------------------------------------+
|
119 |
jpm |
161 |
|
60 |
jpm |
162 |
private void creerPanneauNord() {
|
444 |
jp_milcent |
163 |
panneauNord = new EnteteVue(this);
|
60 |
jpm |
164 |
|
|
|
165 |
BorderLayoutData regionNord = new BorderLayoutData(LayoutRegion.NORTH, 100);
|
|
|
166 |
regionNord.setCollapsible(true);
|
|
|
167 |
regionNord.setFloatable(true);
|
|
|
168 |
regionNord.setSplit(false);
|
|
|
169 |
regionNord.setMargins(new Margins(5, 5, 0, 5));
|
|
|
170 |
|
|
|
171 |
viewport.add(panneauNord, regionNord);
|
|
|
172 |
}
|
|
|
173 |
|
|
|
174 |
private void creerPanneauOuest() {
|
982 |
jpm |
175 |
panneauOuest = new NavigationVue(this);
|
60 |
jpm |
176 |
|
|
|
177 |
BorderLayoutData regionOuest = new BorderLayoutData(LayoutRegion.WEST, 200);
|
|
|
178 |
regionOuest.setSplit(true);
|
|
|
179 |
regionOuest.setCollapsible(true);
|
|
|
180 |
regionOuest.setMargins(new Margins(5));
|
|
|
181 |
|
|
|
182 |
viewport.add(panneauOuest, regionOuest);
|
|
|
183 |
}
|
|
|
184 |
|
|
|
185 |
private void creerPanneauCentral() {
|
444 |
jp_milcent |
186 |
panneauCentre = new ContenuVue(this);
|
60 |
jpm |
187 |
|
|
|
188 |
BorderLayoutData regionCentre = new BorderLayoutData(LayoutRegion.CENTER);
|
|
|
189 |
regionCentre.setMargins(new Margins(5, 5, 5, 0));
|
|
|
190 |
|
|
|
191 |
viewport.add(panneauCentre, regionCentre);
|
|
|
192 |
}
|
358 |
jp_milcent |
193 |
|
|
|
194 |
private void creerPanneauSud() {
|
443 |
jp_milcent |
195 |
panneauSud = new StatutVue();
|
358 |
jp_milcent |
196 |
|
369 |
jp_milcent |
197 |
BorderLayoutData regionSud = new BorderLayoutData(LayoutRegion.SOUTH, 20);
|
358 |
jp_milcent |
198 |
regionSud.setCollapsible(true);
|
|
|
199 |
regionSud.setFloatable(true);
|
|
|
200 |
regionSud.setSplit(false);
|
|
|
201 |
regionSud.setMargins(new Margins(0));
|
|
|
202 |
|
|
|
203 |
viewport.add(panneauSud, regionSud);
|
|
|
204 |
}
|
60 |
jpm |
205 |
|
369 |
jp_milcent |
206 |
public void actualiserPanneauCentral() {
|
|
|
207 |
panneauCentre.layout();
|
|
|
208 |
}
|
|
|
209 |
|
156 |
jp_milcent |
210 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
211 |
// GESTION du MENU
|
|
|
212 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
213 |
|
327 |
jp_milcent |
214 |
public void clicMenu(String codeMenuClique) {
|
358 |
jp_milcent |
215 |
activerChargement(codeMenuClique);
|
982 |
jpm |
216 |
panneauOuest.getMenu().selectionMenu(codeMenuClique);
|
910 |
jpm |
217 |
if (codeMenuClique.equals(MenuApplicationId.ACCUEIL)) {
|
|
|
218 |
afficherAccueil();
|
|
|
219 |
} else if (codeMenuClique.equals(MenuApplicationId.PROJET)) {
|
928 |
jpm |
220 |
selectionnerProjet(panneauCentre, null);
|
910 |
jpm |
221 |
} else if (codeMenuClique.equals(MenuApplicationId.STRUCTURE)) {
|
646 |
jp_milcent |
222 |
selectionnerStructure(panneauCentre, null);
|
553 |
jp_milcent |
223 |
} else if (codeMenuClique.equals(MenuApplicationId.COLLECTION)) {
|
1041 |
gduche |
224 |
selectionnerCollection(panneauCentre, null, null);
|
553 |
jp_milcent |
225 |
} else if (codeMenuClique.equals(MenuApplicationId.PERSONNE)) {
|
1063 |
gduche |
226 |
selectionnerPersonne(panneauCentre, null, getProjetId());
|
327 |
jp_milcent |
227 |
} else if (codeMenuClique.equals(MenuApplicationId.PUBLICATION)) {
|
918 |
jpm |
228 |
selectionnerPublication(panneauCentre, null);
|
985 |
jpm |
229 |
} else if (codeMenuClique.equals(MenuApplicationId.COMMENTAIRE)) {
|
|
|
230 |
selectionnerCommentaire(panneauCentre, null);
|
379 |
jp_milcent |
231 |
} else {
|
841 |
gduche |
232 |
GWT.log(i18nM.nonImplemente(codeMenuClique), null);
|
60 |
jpm |
233 |
}
|
|
|
234 |
panneauCentre.layout();
|
|
|
235 |
}
|
836 |
aurelien |
236 |
|
358 |
jp_milcent |
237 |
public void activerChargement(String message) {
|
1063 |
gduche |
238 |
|
918 |
jpm |
239 |
Debug.log(message);
|
358 |
jp_milcent |
240 |
afficherPopinChargement();
|
369 |
jp_milcent |
241 |
panneauSud.showBusy(i18nC.chargement()+" "+message);
|
358 |
jp_milcent |
242 |
}
|
|
|
243 |
|
|
|
244 |
public void desactiverChargement() {
|
|
|
245 |
masquerPopinChargement();
|
|
|
246 |
panneauSud.clear();
|
|
|
247 |
}
|
646 |
jp_milcent |
248 |
|
156 |
jp_milcent |
249 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
250 |
// GESTION DES FENÊTRES
|
|
|
251 |
//+----------------------------------------------------------------------------------------------------------------+
|
60 |
jpm |
252 |
|
61 |
jpm |
253 |
public void ouvrirAide() {
|
|
|
254 |
AideFenetre aideFenetre = new AideFenetre();
|
|
|
255 |
aideFenetre.show();
|
66 |
jpm |
256 |
// FIXME : apparament le fade In/Fade Out pose problème sur les navigateurs...
|
|
|
257 |
//aideFenetre.el().fadeIn(FxConfig.NONE);
|
61 |
jpm |
258 |
}
|
|
|
259 |
|
|
|
260 |
public void ouvrirParametres() {
|
1023 |
jpm |
261 |
AproposFenetre parametresFenetre = new AproposFenetre();
|
66 |
jpm |
262 |
parametresFenetre.show();
|
61 |
jpm |
263 |
}
|
|
|
264 |
|
|
|
265 |
public void ouvrirIdentification() {
|
1017 |
jpm |
266 |
fenetreIdentification = new IdentificationFenetre(this);
|
358 |
jp_milcent |
267 |
fenetreIdentification.show();
|
61 |
jpm |
268 |
}
|
|
|
269 |
|
989 |
jpm |
270 |
public void ouvrirUrlExterne(String id) {
|
61 |
jpm |
271 |
if (id.equals(ComposantId.MENU_CEL)) {
|
989 |
jpm |
272 |
Window.open(((Configuration) Registry.get(RegistreId.CONFIG)).getUrl("cel"), "Carnet en ligne", "");
|
61 |
jpm |
273 |
} else if (id.equals(ComposantId.MENU_BEL)) {
|
989 |
jpm |
274 |
Window.open(((Configuration) Registry.get(RegistreId.CONFIG)).getUrl("cel"), "Biblio en ligne", "");
|
|
|
275 |
} else if (id.equals(ComposantId.MENU_BOGUE)) {
|
|
|
276 |
Window.open(((Configuration) Registry.get(RegistreId.CONFIG)).getUrl("bogue"), "Bogue", "");
|
|
|
277 |
} else if (id.equals(ComposantId.MENU_COMMENTAIRE)) {
|
|
|
278 |
Window.open(((Configuration) Registry.get(RegistreId.CONFIG)).getUrl("commentaire"), "Commentaire", "");
|
61 |
jpm |
279 |
}
|
|
|
280 |
}
|
|
|
281 |
|
898 |
gduche |
282 |
public void afficherFenetreLicence(IdentificationFenetre vue) {
|
|
|
283 |
LicenceFenetre lf = new LicenceFenetre(vue);
|
|
|
284 |
}
|
|
|
285 |
|
|
|
286 |
public void accepterLicence(Rafraichissable vue) {
|
|
|
287 |
modele.accepterLicence(vue);
|
|
|
288 |
}
|
156 |
jp_milcent |
289 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
290 |
// GESTION de l'UTILISATEUR et de l'IDENTIFICATION
|
|
|
291 |
//+----------------------------------------------------------------------------------------------------------------+
|
245 |
jp_milcent |
292 |
/**
|
|
|
293 |
* Retourne l'identifiant de l'utilisateur courrant de l'application.
|
|
|
294 |
*/
|
156 |
jp_milcent |
295 |
public String getUtilisateurId() {
|
277 |
jp_milcent |
296 |
String id = null;
|
|
|
297 |
Utilisateur utilisateurCourant = (Utilisateur) Registry.get(RegistreId.UTILISATEUR_COURANT);
|
|
|
298 |
if (!utilisateurCourant.getId().equals("")) {
|
|
|
299 |
id = utilisateurCourant.getId();
|
|
|
300 |
}
|
|
|
301 |
return id;
|
156 |
jp_milcent |
302 |
}
|
|
|
303 |
|
912 |
jpm |
304 |
public Utilisateur getUtilisateur() {
|
|
|
305 |
Utilisateur utilisateurCourant = (Utilisateur) Registry.get(RegistreId.UTILISATEUR_COURANT);
|
|
|
306 |
return utilisateurCourant;
|
|
|
307 |
}
|
|
|
308 |
|
65 |
jpm |
309 |
public void connecterUtilisateur(String login, String mdp) {
|
277 |
jp_milcent |
310 |
modele.connecterUtilisateur(this, login, mdp);
|
64 |
jpm |
311 |
}
|
|
|
312 |
|
65 |
jpm |
313 |
public void deconnecterUtilisateur() {
|
277 |
jp_milcent |
314 |
modele.deconnecterUtilisateur(this);
|
64 |
jpm |
315 |
}
|
65 |
jpm |
316 |
|
932 |
jpm |
317 |
public void repandreEtatIdentification(Utilisateur utilisateur) {
|
156 |
jp_milcent |
318 |
// Mise à jour du registre
|
277 |
jp_milcent |
319 |
Registry.register(RegistreId.UTILISATEUR_COURANT, utilisateur);
|
932 |
jpm |
320 |
// Propagation de l'information de mise à jour de l'utilisateur
|
|
|
321 |
repandreInfoMiseAJourUtilisateur();
|
|
|
322 |
}
|
|
|
323 |
|
|
|
324 |
public void repandreInfoMiseAJourUtilisateur() {
|
912 |
jpm |
325 |
// Création de l'information de mise à jour de l'utilisateur
|
|
|
326 |
Information info = new Information("maj_utilisateur");
|
|
|
327 |
|
|
|
328 |
// Rafraichissement de la fenêtre d'Identification
|
941 |
jpm |
329 |
if (fenetreIdentification != null && fenetreIdentification.isVisible()) {
|
912 |
jpm |
330 |
fenetreIdentification.rafraichir(info);
|
|
|
331 |
}
|
898 |
gduche |
332 |
|
912 |
jpm |
333 |
// Rafraichissement du panneau Nord
|
|
|
334 |
panneauNord.rafraichir(info);
|
|
|
335 |
|
|
|
336 |
// Rafraichissement du panneau Centre
|
|
|
337 |
if (panneauCentre != null) {
|
|
|
338 |
panneauCentre.rafraichir(info);
|
932 |
jpm |
339 |
}
|
912 |
jpm |
340 |
}
|
898 |
gduche |
341 |
|
912 |
jpm |
342 |
public void modifierUtilisateur() {
|
|
|
343 |
Utilisateur utilisateurCourant = (Utilisateur) Registry.get(RegistreId.UTILISATEUR_COURANT);
|
|
|
344 |
panneauNord.rafraichir(utilisateurCourant);
|
|
|
345 |
modele.modifierUtilisateur(this, utilisateurCourant);
|
61 |
jpm |
346 |
}
|
898 |
gduche |
347 |
|
|
|
348 |
public void mettreAJourPersonneAnnuaire(Utilisateur utilisateur) {
|
|
|
349 |
panneauNord.rafraichir(utilisateur);
|
|
|
350 |
modele.mettreAJourPersonneAnnuaire(this, utilisateur);
|
|
|
351 |
}
|
66 |
jpm |
352 |
|
156 |
jp_milcent |
353 |
//+----------------------------------------------------------------------------------------------------------------+
|
447 |
jp_milcent |
354 |
// GESTION DES VALEURS ET LISTES
|
|
|
355 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
356 |
|
568 |
jp_milcent |
357 |
public void obtenirListeValeurEtRafraichir(Rafraichissable vueARafraichir, String listeId) {
|
|
|
358 |
modele.obtenirListeValeurs(vueARafraichir, ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId(listeId));
|
453 |
jp_milcent |
359 |
}
|
447 |
jp_milcent |
360 |
|
453 |
jp_milcent |
361 |
public void obtenirValeurEtRafraichir(Rafraichissable vue, String listeId, String identifiantValeur) {
|
|
|
362 |
modele.obtenirValeur(vue, "abv", ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId(listeId), identifiantValeur);
|
|
|
363 |
}
|
|
|
364 |
|
|
|
365 |
public void obtenirListeRegionsEtRafraichir(Rafraichissable vue, String strListeId, String strPays) {
|
|
|
366 |
modele.obtenirListeRegion(vue, ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId(strListeId), strPays+".__");
|
|
|
367 |
}
|
|
|
368 |
|
447 |
jp_milcent |
369 |
//+----------------------------------------------------------------------------------------------------------------+
|
910 |
jpm |
370 |
// GESTION des APPLETS de l'ACCUEIL
|
|
|
371 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
372 |
|
|
|
373 |
public void afficherAccueil() {
|
|
|
374 |
if (!(panneauCentre.getContenu() instanceof AccueilVue)) {
|
|
|
375 |
panneauCentre.removeAll();
|
|
|
376 |
panneauCentre.add(new AccueilVue(this));
|
|
|
377 |
}
|
|
|
378 |
}
|
|
|
379 |
|
|
|
380 |
//+----------------------------------------------------------------------------------------------------------------+
|
447 |
jp_milcent |
381 |
// GESTION des PROJETS
|
|
|
382 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
383 |
|
928 |
jpm |
384 |
public void afficherFormProjet(String projetId) {
|
|
|
385 |
panneauCentre.removeAll();
|
|
|
386 |
ProjetForm projetForm = new ProjetForm(this, projetId);
|
|
|
387 |
panneauCentre.add(projetForm);
|
|
|
388 |
|
|
|
389 |
panneauCentre.layout();
|
|
|
390 |
}
|
|
|
391 |
|
|
|
392 |
public void afficherListeProjets(ProjetListe projetsACharger) {
|
|
|
393 |
if (!(panneauCentre.getContenu() instanceof ProjetVue)) {
|
|
|
394 |
panneauCentre.removeAll();
|
|
|
395 |
panneauCentre.add(new ProjetVue(this));
|
|
|
396 |
panneauCentre.setId(ComposantId.PANNEAU_PROJET_LISTE);
|
|
|
397 |
panneauCentre.layout();
|
|
|
398 |
}
|
|
|
399 |
|
|
|
400 |
panneauCentre.getContenu().rafraichir(projetsACharger);
|
1088 |
gduche |
401 |
mettreFiltreAJour(projetsACharger);
|
928 |
jpm |
402 |
}
|
|
|
403 |
|
1088 |
gduche |
404 |
public void mettreFiltreAJour(ProjetListe projetsACharger) {
|
|
|
405 |
panneauOuest.getFiltre().rafraichir(projetsACharger);
|
|
|
406 |
}
|
|
|
407 |
|
|
|
408 |
public void mettreFiltreAJour(List<Projet> projetsACharger) {
|
|
|
409 |
panneauOuest.getFiltre().rafraichir(projetsACharger);
|
|
|
410 |
}
|
|
|
411 |
|
928 |
jpm |
412 |
public void clicListeProjet(Projet projet) {
|
|
|
413 |
panneauCentre.getContenu().rafraichir(projet);
|
|
|
414 |
}
|
|
|
415 |
|
|
|
416 |
public void clicSupprimerProjet(final List<Projet> projetListe) {
|
|
|
417 |
if (projetListe.size() <= 0) {
|
|
|
418 |
MessageBox.alert("Attention", "Vous devez sélectionner un projet", null);
|
|
|
419 |
} else {
|
|
|
420 |
String message = "Voulez-vous vraiment supprimer ces projets ?";
|
|
|
421 |
if (projetListe.size() == 1) {
|
|
|
422 |
message = "Voulez-vous vraiment supprimer ce projet ?";
|
|
|
423 |
}
|
|
|
424 |
|
|
|
425 |
final Listener<MessageBoxEvent> listenerSuppression = new Listener<MessageBoxEvent>() {
|
|
|
426 |
public void handleEvent(MessageBoxEvent ce) {
|
|
|
427 |
Dialog dialog = (Dialog) ce.getComponent();
|
|
|
428 |
Button btn = ce.getButtonClicked();
|
|
|
429 |
|
|
|
430 |
if (btn.getText().equals(dialog.yesText)) {
|
|
|
431 |
modele.supprimerProjet(panneauCentre.getContenu(), projetListe);
|
|
|
432 |
}
|
|
|
433 |
}
|
|
|
434 |
};
|
|
|
435 |
|
|
|
436 |
MessageBox.confirm("Supprimer un projet", message, listenerSuppression);
|
|
|
437 |
}
|
|
|
438 |
|
|
|
439 |
}
|
|
|
440 |
|
|
|
441 |
public void clicModifierProjet(List<Projet> projetsSelectionnes) {
|
|
|
442 |
if (projetsSelectionnes.size() == 0) {
|
|
|
443 |
Info.display("Information", "Veuillez sélectionner un projet.");
|
|
|
444 |
} else if (projetsSelectionnes.size() > 1) {
|
|
|
445 |
Info.display("Information", "Veuillez sélectionner un seul projet à la fois.");
|
|
|
446 |
} else if (projetsSelectionnes.size() == 1) {
|
|
|
447 |
afficherFormProjet(projetsSelectionnes.get(0).getId());
|
|
|
448 |
} else {
|
|
|
449 |
Info.display("Erreur", "Une erreur est survenue dans la méthode clicModifierProjet() du Médiateur.");
|
|
|
450 |
}
|
|
|
451 |
}
|
|
|
452 |
|
|
|
453 |
public void clicAjouterProjet() {
|
|
|
454 |
afficherFormProjet(null);
|
|
|
455 |
}
|
|
|
456 |
|
|
|
457 |
public void selectionnerProjet(Rafraichissable vueARafraichir, String projetId) {
|
1045 |
gduche |
458 |
selectionnerProjet(vueARafraichir, projetId, null, 0, nbElements);
|
928 |
jpm |
459 |
}
|
1045 |
gduche |
460 |
|
|
|
461 |
public void selectionnerProjet(Rafraichissable vueARafraichir, String projetId, String nom, int start, int nbElements) {
|
|
|
462 |
modele.selectionnerProjet(vueARafraichir, projetId, nom, start, this.nbElements);
|
|
|
463 |
}
|
928 |
jpm |
464 |
|
|
|
465 |
public void ajouterProjet(Rafraichissable vueARafraichir, Projet projetCollecte) {
|
|
|
466 |
modele.ajouterProjet(vueARafraichir, projetCollecte);
|
|
|
467 |
}
|
|
|
468 |
|
|
|
469 |
public void modifierProjet(Rafraichissable vueARafraichir, Projet projetCollecte) {
|
|
|
470 |
modele.modifierProjet(vueARafraichir, projetCollecte);
|
|
|
471 |
}
|
|
|
472 |
|
|
|
473 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
474 |
// SELECTION : projet
|
447 |
jp_milcent |
475 |
/**
|
|
|
476 |
* Retourne l'identifiant du projet courrant de l'application.
|
|
|
477 |
*/
|
|
|
478 |
public String getProjetId() {
|
|
|
479 |
String id = null;
|
|
|
480 |
Projet projetCourant = (Projet) Registry.get(RegistreId.PROJET_COURANT);
|
|
|
481 |
if (projetCourant != null && !projetCourant.getId().equals("")) {
|
|
|
482 |
id = projetCourant.getId();
|
|
|
483 |
}
|
|
|
484 |
return id;
|
|
|
485 |
}
|
928 |
jpm |
486 |
|
447 |
jp_milcent |
487 |
public void selectionnerProjetCourant(Projet projetSelectionne) {
|
|
|
488 |
Registry.register(RegistreId.PROJET_COURANT, projetSelectionne);
|
928 |
jpm |
489 |
if (panneauCentre.getContenu() instanceof ProjetVue) {
|
|
|
490 |
selectionnerProjet(panneauCentre.getContenu(), null);
|
646 |
jp_milcent |
491 |
} else if (panneauCentre.getContenu() instanceof StructureVue) {
|
928 |
jpm |
492 |
selectionnerStructure(panneauCentre.getContenu(), null);
|
646 |
jp_milcent |
493 |
} else if (panneauCentre.getContenu() instanceof CollectionVue) {
|
1041 |
gduche |
494 |
selectionnerCollection(panneauCentre.getContenu(), null, null);
|
928 |
jpm |
495 |
} else if (panneauCentre.getContenu() instanceof PersonneVue) {
|
|
|
496 |
selectionnerPersonne(panneauCentre.getContenu(), null, getProjetId());
|
|
|
497 |
} else if (panneauCentre.getContenu() instanceof PublicationVue) {
|
|
|
498 |
selectionnerPublication(panneauCentre.getContenu(), null);
|
987 |
jpm |
499 |
} else if (panneauCentre.getContenu() instanceof CommentaireVue) {
|
|
|
500 |
selectionnerCommentaire(panneauCentre.getContenu(), null);
|
447 |
jp_milcent |
501 |
}
|
|
|
502 |
}
|
|
|
503 |
|
928 |
jpm |
504 |
|
447 |
jp_milcent |
505 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
506 |
// GESTION DES STRUCTURES
|
|
|
507 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
508 |
|
453 |
jp_milcent |
509 |
public void afficherListeStructures(StructureListe structuresACharger) {
|
646 |
jp_milcent |
510 |
if (!(panneauCentre.getContenu() instanceof StructureVue)) {
|
626 |
gduche |
511 |
panneauCentre.removeAll();
|
646 |
jp_milcent |
512 |
panneauCentre.add(new StructureVue(this));
|
626 |
gduche |
513 |
}
|
646 |
jp_milcent |
514 |
panneauCentre.getContenu().rafraichir(structuresACharger);
|
453 |
jp_milcent |
515 |
}
|
|
|
516 |
|
580 |
jp_milcent |
517 |
public void afficherFormStructure(String structureId) {
|
641 |
jp_milcent |
518 |
String mode = Formulaire.MODE_AJOUTER;
|
580 |
jp_milcent |
519 |
if (structureId != null) {
|
641 |
jp_milcent |
520 |
mode = Formulaire.MODE_MODIFIER;
|
580 |
jp_milcent |
521 |
}
|
|
|
522 |
|
|
|
523 |
panneauCentre.removeAll();
|
|
|
524 |
StructureForm structureForm = new StructureForm(this, mode);
|
|
|
525 |
panneauCentre.add(structureForm);
|
|
|
526 |
|
641 |
jp_milcent |
527 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
580 |
jp_milcent |
528 |
selectionnerStructure(structureForm, structureId);
|
|
|
529 |
selectionnerStructureAPersonne(structureForm, structureId, StructureAPersonne.ROLE_EQUIPE);
|
|
|
530 |
}
|
|
|
531 |
|
|
|
532 |
panneauCentre.layout();
|
|
|
533 |
}
|
|
|
534 |
|
447 |
jp_milcent |
535 |
public void clicListeStructure(Structure structure) {
|
646 |
jp_milcent |
536 |
panneauCentre.getContenu().rafraichir(structure);
|
609 |
jp_milcent |
537 |
if (structure != null && structure.getPersonnel() == null) {
|
646 |
jp_milcent |
538 |
selectionnerStructureAPersonne(panneauCentre.getContenu(), structure.getId(), StructureAPersonne.ROLE_EQUIPE);
|
919 |
jpm |
539 |
}
|
447 |
jp_milcent |
540 |
}
|
|
|
541 |
|
|
|
542 |
public void clicAjouterStructure() {
|
580 |
jp_milcent |
543 |
afficherFormStructure(null);
|
447 |
jp_milcent |
544 |
}
|
|
|
545 |
|
|
|
546 |
public void clicModifierStructure(List<Structure> structureSelection) {
|
|
|
547 |
if (structureSelection.size() == 0) {
|
|
|
548 |
Info.display("Information", "Veuillez sélectionner une structure.");
|
|
|
549 |
} else if (structureSelection.size() > 1) {
|
|
|
550 |
Info.display("Information", "Veuillez sélectionner une seule structure à la fois.");
|
|
|
551 |
} else if (structureSelection.size() == 1) {
|
609 |
jp_milcent |
552 |
afficherFormStructure(structureSelection.get(0).getId());
|
447 |
jp_milcent |
553 |
} else {
|
|
|
554 |
Info.display("Erreur", "Une erreur est survenue dans la méthode clicModifierStructure() du Médiateur.");
|
|
|
555 |
}
|
|
|
556 |
}
|
|
|
557 |
|
|
|
558 |
public void clicSupprimerStructure(final Rafraichissable vue, final List<Structure> structureSelection) {
|
|
|
559 |
if (structureSelection.size() == 0) {
|
|
|
560 |
Info.display("Information", "Veuillez sélectionner une structure.");
|
|
|
561 |
} else if(structureSelection.size() > 0) {
|
609 |
jp_milcent |
562 |
String titre = "Supprimer des structures";
|
447 |
jp_milcent |
563 |
String message = "Êtes vous sur de vouloir supprimer les structures sélectionnées ?";
|
|
|
564 |
if (structureSelection.size() == 1) {
|
609 |
jp_milcent |
565 |
titre = "Supprimer une structure";
|
447 |
jp_milcent |
566 |
message = "Êtes vous sur de vouloir supprimer la structure sélectionnée ?";
|
|
|
567 |
}
|
|
|
568 |
|
502 |
gduche |
569 |
final Listener<MessageBoxEvent> suppressionEcouteur = new Listener<MessageBoxEvent>() {
|
|
|
570 |
public void handleEvent(MessageBoxEvent ce) {
|
|
|
571 |
Dialog dialog = (Dialog) ce.getComponent();
|
|
|
572 |
Button btn = ce.getButtonClicked();
|
453 |
jp_milcent |
573 |
|
|
|
574 |
if (btn.getText().equals(dialog.yesText)) {
|
|
|
575 |
String idStr = "" ;
|
|
|
576 |
for(int i = 0 ; i < structureSelection.size() ; i++) {
|
609 |
jp_milcent |
577 |
idStr += structureSelection.get(i).getId()+",";
|
453 |
jp_milcent |
578 |
}
|
923 |
jpm |
579 |
supprimerStructure(vue, idStr);
|
453 |
jp_milcent |
580 |
}
|
|
|
581 |
}
|
|
|
582 |
};
|
447 |
jp_milcent |
583 |
|
609 |
jp_milcent |
584 |
MessageBox.confirm(titre, message, suppressionEcouteur);
|
447 |
jp_milcent |
585 |
} else {
|
|
|
586 |
Info.display("Erreur", "Une erreur est survenue dans la méthode clicSupprimerStructure() du Médiateur.");
|
|
|
587 |
}
|
|
|
588 |
}
|
|
|
589 |
|
769 |
jpm |
590 |
public void selectionnerStructure(Rafraichissable vueARafraichir, String structureId) {
|
1040 |
gduche |
591 |
modele.selectionnerStructure(vueARafraichir, getProjetId(), structureId, null, 0, nbElements);
|
447 |
jp_milcent |
592 |
}
|
|
|
593 |
|
1040 |
gduche |
594 |
public void selectionnerStructure(Rafraichissable vueARafraichir, String structureId, String projetId, String nom, int start, int nbElements) {
|
|
|
595 |
modele.selectionnerStructure(vueARafraichir, getProjetId(), structureId, nom, start, nbElements);
|
|
|
596 |
}
|
|
|
597 |
|
775 |
jpm |
598 |
public void selectionnerStructureParProjet(Rafraichissable vueARafraichir, String projetId) {
|
1040 |
gduche |
599 |
modele.selectionnerStructure(vueARafraichir, projetId, null, null, 0, -1);
|
775 |
jpm |
600 |
}
|
|
|
601 |
|
769 |
jpm |
602 |
public void ajouterStructure(Rafraichissable vueARafraichir, Structure structure, StructureConservation conservation, StructureValorisation valorisation) {
|
|
|
603 |
modele.ajouterStructure(vueARafraichir, structure, conservation, valorisation);
|
447 |
jp_milcent |
604 |
}
|
|
|
605 |
|
769 |
jpm |
606 |
public void modifierStructure(Rafraichissable vueARafraichir, String structureId, Structure structure, StructureConservation conservation, StructureValorisation valorisation) {
|
|
|
607 |
modele.modifierStructure(vueARafraichir, structureId, structure, conservation, valorisation);
|
447 |
jp_milcent |
608 |
}
|
453 |
jp_milcent |
609 |
|
|
|
610 |
public void supprimerStructure(Rafraichissable vueARafraichir, String IdentifiantsStructureSepareParVirgule) {
|
769 |
jpm |
611 |
modele.supprimerStructure(vueARafraichir, IdentifiantsStructureSepareParVirgule);
|
453 |
jp_milcent |
612 |
}
|
|
|
613 |
|
447 |
jp_milcent |
614 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
615 |
// GESTION de la relation STRUCTURE A PERSONNE
|
769 |
jpm |
616 |
public void selectionnerStructureAPersonne(Rafraichissable vueARafraichir, String structureId, String roleId) {
|
|
|
617 |
modele.selectionnerStructureAPersonne(vueARafraichir, structureId, roleId);
|
447 |
jp_milcent |
618 |
}
|
|
|
619 |
|
769 |
jpm |
620 |
public void ajouterStructureAPersonne(Rafraichissable vueARafraichir, String structureId, StructureAPersonneListe personnelAjoute) {
|
453 |
jp_milcent |
621 |
if (personnelAjoute != null && personnelAjoute.size() > 0) {
|
|
|
622 |
for (Iterator<String> it = personnelAjoute.keySet().iterator(); it.hasNext();) {
|
769 |
jpm |
623 |
modele.ajouterStructureAPersonne(vueARafraichir, structureId, (StructureAPersonne) personnelAjoute.get(it.next()));
|
453 |
jp_milcent |
624 |
}
|
|
|
625 |
}
|
|
|
626 |
}
|
|
|
627 |
|
769 |
jpm |
628 |
public void modifierStructureAPersonne(Rafraichissable vueARafraichir, StructureAPersonneListe personnelModifie) {
|
447 |
jp_milcent |
629 |
if (personnelModifie != null && personnelModifie.size() > 0) {
|
|
|
630 |
for (Iterator<String> it = personnelModifie.keySet().iterator(); it.hasNext();) {
|
769 |
jpm |
631 |
modele.modifierStructureAPersonne(vueARafraichir, (StructureAPersonne) personnelModifie.get(it.next()));
|
447 |
jp_milcent |
632 |
}
|
|
|
633 |
}
|
|
|
634 |
}
|
|
|
635 |
|
769 |
jpm |
636 |
public void supprimerStructureAPersonne(Rafraichissable vueARafraichir, StructureAPersonneListe personnelSupprime) {
|
447 |
jp_milcent |
637 |
if (personnelSupprime != null && personnelSupprime.size() > 0) {
|
769 |
jpm |
638 |
String idStructureAPersonneSepareParVirgule = "" ;
|
923 |
jpm |
639 |
Iterator<String> it = personnelSupprime.keySet().iterator();
|
|
|
640 |
while (it.hasNext()) {
|
901 |
jpm |
641 |
idStructureAPersonneSepareParVirgule += personnelSupprime.get(it.next()).getId();
|
923 |
jpm |
642 |
idStructureAPersonneSepareParVirgule += (it.hasNext()) ? "," : "";
|
447 |
jp_milcent |
643 |
}
|
923 |
jpm |
644 |
supprimerStructureAPersonne(vueARafraichir, idStructureAPersonneSepareParVirgule);
|
447 |
jp_milcent |
645 |
}
|
|
|
646 |
}
|
923 |
jpm |
647 |
|
|
|
648 |
public void supprimerStructureAPersonne(Rafraichissable vueARafraichir, String idStructureAPersonneSeparesParVirgule) {
|
|
|
649 |
modele.supprimerStructureAPersonne(vueARafraichir, idStructureAPersonneSeparesParVirgule);
|
|
|
650 |
}
|
|
|
651 |
|
|
|
652 |
public void supprimerStructureAPersonne(final Rafraichissable vueARafraichir, final List<Structure> structuresListe) {
|
|
|
653 |
if (structuresListe.size() != 0) {
|
|
|
654 |
String idStructureSepareParVirgule = "" ;
|
|
|
655 |
Iterator<Structure> it = structuresListe.iterator();
|
|
|
656 |
while (it.hasNext()) {
|
|
|
657 |
Structure structure = it.next();
|
|
|
658 |
idStructureSepareParVirgule += structure.getId();
|
|
|
659 |
idStructureSepareParVirgule += it.hasNext() ? "," : "";
|
|
|
660 |
}
|
|
|
661 |
supprimerStructureAPersonne(vueARafraichir, idStructureSepareParVirgule);
|
|
|
662 |
}
|
|
|
663 |
}
|
|
|
664 |
|
447 |
jp_milcent |
665 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
666 |
// GESTION des COLLECTIONS
|
|
|
667 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
668 |
|
453 |
jp_milcent |
669 |
public void afficherListeCollections(CollectionListe collectionsACharger) {
|
646 |
jp_milcent |
670 |
if (!(panneauCentre.getContenu() instanceof CollectionVue)) {
|
626 |
gduche |
671 |
panneauCentre.removeAll();
|
646 |
jp_milcent |
672 |
panneauCentre.add(new CollectionVue(this));
|
|
|
673 |
}
|
626 |
gduche |
674 |
|
646 |
jp_milcent |
675 |
panneauCentre.getContenu().rafraichir(collectionsACharger);
|
453 |
jp_milcent |
676 |
}
|
|
|
677 |
|
641 |
jp_milcent |
678 |
public void afficherFormCollection(String collectionId) {
|
|
|
679 |
panneauCentre.removeAll();
|
883 |
jpm |
680 |
CollectionForm collectionForm = new CollectionForm(this, collectionId);
|
641 |
jp_milcent |
681 |
panneauCentre.add(collectionForm);
|
|
|
682 |
|
|
|
683 |
panneauCentre.layout();
|
|
|
684 |
}
|
|
|
685 |
|
453 |
jp_milcent |
686 |
public void clicListeCollection(Collection collectionCliquee) {
|
646 |
jp_milcent |
687 |
panneauCentre.getContenu().rafraichir(collectionCliquee);
|
883 |
jpm |
688 |
if (collectionCliquee != null) {
|
|
|
689 |
selectionnerCollectionAPersonne(panneauCentre.getContenu(), collectionCliquee.getId(), null);
|
|
|
690 |
selectionnerCollectionAPublication(panneauCentre.getContenu(), collectionCliquee.getId());
|
997 |
jpm |
691 |
selectionnerCollectionACommentaire(panneauCentre.getContenu(), collectionCliquee.getId());
|
883 |
jpm |
692 |
}
|
453 |
jp_milcent |
693 |
}
|
|
|
694 |
|
447 |
jp_milcent |
695 |
public void clicAjouterCollection() {
|
775 |
jpm |
696 |
afficherFormCollection(null);
|
447 |
jp_milcent |
697 |
}
|
|
|
698 |
|
|
|
699 |
public void clicModifierCollection(List<Collection> selection) {
|
641 |
jp_milcent |
700 |
if (selection.size() == 0) {
|
|
|
701 |
Info.display("Information", "Veuillez sélectionner une collection.");
|
|
|
702 |
} else if (selection.size() > 1) {
|
|
|
703 |
Info.display("Information", "Veuillez sélectionner une seule collection à la fois.");
|
|
|
704 |
} else if (selection.size() == 1) {
|
|
|
705 |
afficherFormCollection(selection.get(0).getId());
|
|
|
706 |
} else {
|
|
|
707 |
Info.display("Erreur", "Une erreur est survenue dans la méthode clicModifierCollection() du Médiateur.");
|
|
|
708 |
}
|
447 |
jp_milcent |
709 |
}
|
|
|
710 |
|
968 |
jpm |
711 |
public void clicSupprimerCollection(CollectionListeVue collectionListeVue, final List<Collection> collectionsASupprimer) {
|
|
|
712 |
if (collectionsASupprimer.size() <= 0) {
|
|
|
713 |
MessageBox.alert("Attention", "Vous devez sélectionner au moins une collection", null);
|
|
|
714 |
} else {
|
|
|
715 |
String message = "Voulez-vous vraiment supprimer ces collections ?";
|
|
|
716 |
if (collectionsASupprimer.size() == 1) {
|
|
|
717 |
message = "Voulez-vous vraiment supprimer cette collection ?";
|
|
|
718 |
}
|
|
|
719 |
|
|
|
720 |
final Listener<MessageBoxEvent> listenerSuppression = new Listener<MessageBoxEvent>() {
|
|
|
721 |
public void handleEvent(MessageBoxEvent ce) {
|
|
|
722 |
Dialog dialog = (Dialog) ce.getComponent();
|
|
|
723 |
Button btn = ce.getButtonClicked();
|
|
|
724 |
|
|
|
725 |
if (btn.getText().equals(dialog.yesText)) {
|
|
|
726 |
supprimerCollection(panneauCentre.getContenu(), collectionsASupprimer);
|
|
|
727 |
}
|
|
|
728 |
}
|
|
|
729 |
};
|
|
|
730 |
|
|
|
731 |
MessageBox.confirm("Supprimer une collection", message, listenerSuppression);
|
|
|
732 |
}
|
447 |
jp_milcent |
733 |
}
|
|
|
734 |
|
1041 |
gduche |
735 |
public void selectionnerCollection(Rafraichissable vueARafraichir, String collectionId, String nom) {
|
|
|
736 |
|
|
|
737 |
System.out.println(nbElements);
|
|
|
738 |
selectionnerCollection(vueARafraichir, collectionId, nom, 0, nbElements);
|
453 |
jp_milcent |
739 |
}
|
|
|
740 |
|
1041 |
gduche |
741 |
public void selectionnerCollection(Rafraichissable vueARafraichir, String collectionId, String nom, int start, int nbElements) {
|
|
|
742 |
modele.selectionnerCollection(vueARafraichir, getProjetId(), collectionId, nom, start, this.nbElements);
|
|
|
743 |
}
|
|
|
744 |
|
775 |
jpm |
745 |
public void selectionnerCollectionParProjet(Rafraichissable vueARafraichir, String projetId) {
|
1041 |
gduche |
746 |
modele.selectionnerCollection(vueARafraichir, projetId, null, null, 0, nbElements);
|
775 |
jpm |
747 |
}
|
|
|
748 |
|
453 |
jp_milcent |
749 |
public void ajouterCollection(Rafraichissable vueARafraichir, Collection collection) {
|
968 |
jpm |
750 |
modele.ajouterCollection(vueARafraichir, collection);
|
453 |
jp_milcent |
751 |
}
|
|
|
752 |
|
|
|
753 |
public void modifierCollection(Rafraichissable vueARafraichir, Collection collection) {
|
872 |
jpm |
754 |
modele.modifierCollection(vueARafraichir, collection);
|
453 |
jp_milcent |
755 |
}
|
|
|
756 |
|
968 |
jpm |
757 |
public void supprimerCollection(Rafraichissable vueARafraichir, List<Collection> collectionsListe) {
|
|
|
758 |
if (collectionsListe != null && collectionsListe.size() > 0) {
|
|
|
759 |
String idCollectionSeparesParVirgule = "" ;
|
|
|
760 |
Iterator<Collection> it = collectionsListe.iterator();
|
|
|
761 |
while (it.hasNext()) {
|
|
|
762 |
idCollectionSeparesParVirgule += it.next().getId();
|
|
|
763 |
if (it.hasNext()) {
|
|
|
764 |
idCollectionSeparesParVirgule += ",";
|
|
|
765 |
}
|
|
|
766 |
}
|
|
|
767 |
modele.supprimerCollection(vueARafraichir, idCollectionSeparesParVirgule);
|
|
|
768 |
modele.supprimerCollectionAPersonne(vueARafraichir, idCollectionSeparesParVirgule);
|
|
|
769 |
modele.supprimerCollectionAPublication(vueARafraichir, idCollectionSeparesParVirgule);
|
|
|
770 |
//modele.supprimerCollectionACommentaire(vueARafraichir, idCollectionSeparesParVirgule);
|
|
|
771 |
}
|
|
|
772 |
|
453 |
jp_milcent |
773 |
}
|
|
|
774 |
|
447 |
jp_milcent |
775 |
//+----------------------------------------------------------------------------------------------------------------+
|
875 |
jpm |
776 |
// GESTION de la relation COLLECTION A PERSONNE
|
|
|
777 |
|
|
|
778 |
public void selectionnerCollectionAPersonne(Rafraichissable vueARafraichir, String collectionId, String roleId) {
|
|
|
779 |
modele.selectionnerCollectionAPersonne(vueARafraichir, collectionId, roleId);
|
|
|
780 |
}
|
|
|
781 |
|
|
|
782 |
public void ajouterCollectionAPersonne(Rafraichissable vueARafraichir, String collectionId, CollectionAPersonneListe personnesAjoutees) {
|
|
|
783 |
if (personnesAjoutees != null && personnesAjoutees.size() > 0) {
|
|
|
784 |
for (Iterator<String> it = personnesAjoutees.keySet().iterator(); it.hasNext();) {
|
|
|
785 |
modele.ajouterCollectionAPersonne(vueARafraichir, collectionId, (CollectionAPersonne) personnesAjoutees.get(it.next()));
|
|
|
786 |
}
|
|
|
787 |
}
|
|
|
788 |
}
|
|
|
789 |
|
|
|
790 |
public void modifierCollectionAPersonne(Rafraichissable vueARafraichir, CollectionAPersonneListe personnesModifiees) {
|
|
|
791 |
if (personnesModifiees != null && personnesModifiees.size() > 0) {
|
|
|
792 |
for (Iterator<String> it = personnesModifiees.keySet().iterator(); it.hasNext();) {
|
|
|
793 |
modele.modifierCollectionAPersonne(vueARafraichir, (CollectionAPersonne) personnesModifiees.get(it.next()));
|
|
|
794 |
}
|
|
|
795 |
}
|
|
|
796 |
}
|
|
|
797 |
|
|
|
798 |
public void supprimerCollectionAPersonne(Rafraichissable vueARafraichir, CollectionAPersonneListe personnesSupprimees) {
|
|
|
799 |
if (personnesSupprimees != null && personnesSupprimees.size() > 0) {
|
|
|
800 |
String idCollectionAPersonneSeparesParVirgule = "" ;
|
|
|
801 |
for (Iterator<String> it = personnesSupprimees.keySet().iterator(); it.hasNext();) {
|
901 |
jpm |
802 |
idCollectionAPersonneSeparesParVirgule += personnesSupprimees.get(it.next()).getId();
|
|
|
803 |
if (it.hasNext()) {
|
|
|
804 |
idCollectionAPersonneSeparesParVirgule += ",";
|
|
|
805 |
}
|
875 |
jpm |
806 |
}
|
|
|
807 |
modele.supprimerCollectionAPersonne(vueARafraichir, idCollectionAPersonneSeparesParVirgule);
|
|
|
808 |
}
|
|
|
809 |
}
|
|
|
810 |
|
|
|
811 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
812 |
// GESTION de la relation COLLECTION A PUBLICATION
|
|
|
813 |
|
883 |
jpm |
814 |
public void selectionnerCollectionAPublication(Rafraichissable vueARafraichir, String collectionId) {
|
|
|
815 |
modele.selectionnerCollectionAPublication(vueARafraichir, collectionId);
|
|
|
816 |
}
|
|
|
817 |
|
|
|
818 |
public void ajouterCollectionAPublication(Rafraichissable vueARafraichir, String collectionId, CollectionAPublicationListe publicationsAjoutees) {
|
|
|
819 |
if (publicationsAjoutees != null && publicationsAjoutees.size() > 0) {
|
|
|
820 |
for (Iterator<String> it = publicationsAjoutees.keySet().iterator(); it.hasNext();) {
|
|
|
821 |
modele.ajouterCollectionAPublication(vueARafraichir, collectionId, (CollectionAPublication) publicationsAjoutees.get(it.next()));
|
|
|
822 |
}
|
|
|
823 |
}
|
|
|
824 |
}
|
|
|
825 |
|
|
|
826 |
public void modifierCollectionAPublication(Rafraichissable vueARafraichir, CollectionAPublicationListe publicationsModifiees) {
|
|
|
827 |
if (publicationsModifiees != null && publicationsModifiees.size() > 0) {
|
|
|
828 |
for (Iterator<String> it = publicationsModifiees.keySet().iterator(); it.hasNext();) {
|
|
|
829 |
modele.modifierCollectionAPublication(vueARafraichir, (CollectionAPublication) publicationsModifiees.get(it.next()));
|
|
|
830 |
}
|
|
|
831 |
}
|
|
|
832 |
}
|
|
|
833 |
|
907 |
jpm |
834 |
public void supprimerCollectionAPublication(Rafraichissable vueARafraichir, CollectionAPublicationListe publicationsSupprimees) {
|
883 |
jpm |
835 |
if (publicationsSupprimees != null && publicationsSupprimees.size() > 0) {
|
|
|
836 |
String idCollectionAPublicationSeparesParVirgule = "" ;
|
|
|
837 |
for (Iterator<String> it = publicationsSupprimees.keySet().iterator(); it.hasNext();) {
|
901 |
jpm |
838 |
idCollectionAPublicationSeparesParVirgule += publicationsSupprimees.get(it.next()).getId();
|
|
|
839 |
if (it.hasNext()) {
|
|
|
840 |
idCollectionAPublicationSeparesParVirgule += ",";
|
|
|
841 |
}
|
883 |
jpm |
842 |
}
|
|
|
843 |
modele.supprimerCollectionAPublication(vueARafraichir, idCollectionAPublicationSeparesParVirgule);
|
|
|
844 |
}
|
|
|
845 |
}
|
941 |
jpm |
846 |
|
875 |
jpm |
847 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
848 |
// GESTION de la relation COLLECTION A COMMENTAIRE
|
|
|
849 |
|
997 |
jpm |
850 |
public void selectionnerCollectionACommentaire(Rafraichissable vueARafraichir, String collectionId) {
|
|
|
851 |
modele.selectionnerCollectionACommentaire(vueARafraichir, collectionId);
|
989 |
jpm |
852 |
}
|
|
|
853 |
|
997 |
jpm |
854 |
public void ajouterCollectionACommentaire(Rafraichissable vueARafraichir, String collectionId, CollectionACommentaireListe commentairesAjoutees) {
|
989 |
jpm |
855 |
if (commentairesAjoutees != null && commentairesAjoutees.size() > 0) {
|
|
|
856 |
for (Iterator<String> it = commentairesAjoutees.keySet().iterator(); it.hasNext();) {
|
997 |
jpm |
857 |
modele.ajouterCollectionACommentaire(vueARafraichir, collectionId, (CollectionACommentaire) commentairesAjoutees.get(it.next()));
|
989 |
jpm |
858 |
}
|
|
|
859 |
}
|
|
|
860 |
}
|
|
|
861 |
|
|
|
862 |
public void modifierCollectionACommentaire(Rafraichissable vueARafraichir, CollectionACommentaireListe commentairesModifiees) {
|
|
|
863 |
if (commentairesModifiees != null && commentairesModifiees.size() > 0) {
|
|
|
864 |
for (Iterator<String> it = commentairesModifiees.keySet().iterator(); it.hasNext();) {
|
|
|
865 |
modele.modifierCollectionACommentaire(vueARafraichir, (CollectionACommentaire) commentairesModifiees.get(it.next()));
|
|
|
866 |
}
|
|
|
867 |
}
|
|
|
868 |
}
|
|
|
869 |
|
|
|
870 |
public void supprimerCollectionACommentaire(Rafraichissable vueARafraichir, CollectionACommentaireListe commentairesSupprimees) {
|
|
|
871 |
if (commentairesSupprimees != null && commentairesSupprimees.size() > 0) {
|
|
|
872 |
String idCollectionACommentaireSeparesParVirgule = "" ;
|
|
|
873 |
for (Iterator<String> it = commentairesSupprimees.keySet().iterator(); it.hasNext();) {
|
|
|
874 |
idCollectionACommentaireSeparesParVirgule += commentairesSupprimees.get(it.next()).getId();
|
|
|
875 |
if (it.hasNext()) {
|
|
|
876 |
idCollectionACommentaireSeparesParVirgule += ",";
|
|
|
877 |
}
|
|
|
878 |
}
|
|
|
879 |
modele.supprimerCollectionACommentaire(vueARafraichir, idCollectionACommentaireSeparesParVirgule, CollectionACommentaireAsyncDao.SUPPRESSION_PAR_COLLECTION);
|
|
|
880 |
}
|
|
|
881 |
}
|
875 |
jpm |
882 |
//+----------------------------------------------------------------------------------------------------------------+
|
156 |
jp_milcent |
883 |
// GESTION DES PERSONNES
|
|
|
884 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
885 |
|
278 |
jp_milcent |
886 |
public void afficherListePersonnes(PersonneListe personnesACharger) {
|
646 |
jp_milcent |
887 |
if (!(panneauCentre.getContenu() instanceof PersonneVue)) {
|
626 |
gduche |
888 |
panneauCentre.removeAll();
|
646 |
jp_milcent |
889 |
panneauCentre.add(new PersonneVue(this));
|
673 |
aurelien |
890 |
panneauCentre.setId(ComposantId.PANNEAU_PERSONNE_LISTES);
|
626 |
gduche |
891 |
}
|
599 |
gduche |
892 |
|
646 |
jp_milcent |
893 |
panneauCentre.getContenu().rafraichir(personnesACharger);
|
156 |
jp_milcent |
894 |
}
|
918 |
jpm |
895 |
|
|
|
896 |
public void afficherFormPersonne(String personneId) {
|
|
|
897 |
panneauCentre.removeAll();
|
|
|
898 |
PersonneForm personneForm = new PersonneForm(this, personneId);
|
|
|
899 |
panneauCentre.add(personneForm);
|
|
|
900 |
|
|
|
901 |
panneauCentre.layout();
|
|
|
902 |
}
|
156 |
jp_milcent |
903 |
|
918 |
jpm |
904 |
public void clicListePersonne(Personne personne) {
|
|
|
905 |
panneauCentre.getContenu().rafraichir(personne);
|
|
|
906 |
}
|
|
|
907 |
|
128 |
gduche |
908 |
public void clicAjouterPersonne() {
|
918 |
jpm |
909 |
afficherFormPersonne(null);
|
128 |
gduche |
910 |
}
|
|
|
911 |
|
918 |
jpm |
912 |
public void clicModifierPersonne(List<Personne> selection) {
|
|
|
913 |
if (selection.size() == 0) {
|
|
|
914 |
Info.display("Information", "Veuillez sélectionner une personne.");
|
|
|
915 |
} else if (selection.size() > 1) {
|
|
|
916 |
Info.display("Information", "Veuillez sélectionner une seule personne à la fois.");
|
|
|
917 |
} else if (selection.size() == 1) {
|
|
|
918 |
afficherFormPersonne(selection.get(0).getId());
|
|
|
919 |
} else {
|
|
|
920 |
Info.display("Erreur", "Une erreur est survenue dans la méthode clicModifierPersonne() du Médiateur.");
|
|
|
921 |
}
|
841 |
gduche |
922 |
}
|
|
|
923 |
|
285 |
gduche |
924 |
|
919 |
jpm |
925 |
public void clicSupprimerPersonne(final Rafraichissable vue, final List<Personne> personneSelection) {
|
663 |
gduche |
926 |
//Empecher suppression utilisateur
|
|
|
927 |
for (int i=0; i < personneSelection.size(); i++) {
|
|
|
928 |
Personne courante = personneSelection.get(i);
|
|
|
929 |
if (courante.getId().equals(getUtilisateurId())) {
|
772 |
jpm |
930 |
Info.display("Information", "Vous ne pouvez pas supprimer votre compte");
|
663 |
gduche |
931 |
personneSelection.remove(courante);
|
|
|
932 |
}
|
|
|
933 |
}
|
|
|
934 |
|
245 |
jp_milcent |
935 |
if (personneSelection.size() == 0) {
|
|
|
936 |
Info.display("Information", "Veuillez sélectionner une personne.");
|
|
|
937 |
} else if(personneSelection.size() > 0) {
|
|
|
938 |
String message = "Êtes vous sur de vouloir supprimer les personnes sélectionnées ?";
|
|
|
939 |
if (personneSelection.size() == 1) {
|
|
|
940 |
message = "Êtes vous sur de vouloir supprimer la personne sélectionnée ?";
|
|
|
941 |
}
|
315 |
gduche |
942 |
|
502 |
gduche |
943 |
final Listener<MessageBoxEvent> listenerSuppression = new Listener<MessageBoxEvent>() {
|
|
|
944 |
public void handleEvent(MessageBoxEvent ce) {
|
|
|
945 |
Dialog dialog = (Dialog) ce.getComponent();
|
|
|
946 |
Button btn = ce.getButtonClicked();
|
327 |
jp_milcent |
947 |
|
|
|
948 |
if (btn.getText().equals(dialog.yesText)) {
|
772 |
jpm |
949 |
String idPersonneSepareParVirgule = "" ;
|
347 |
gduche |
950 |
Iterator<Personne> itPersonne = personneSelection.iterator();
|
|
|
951 |
while (itPersonne.hasNext()) {
|
|
|
952 |
Personne personneCourante = itPersonne.next();
|
772 |
jpm |
953 |
idPersonneSepareParVirgule += personneCourante.getId();
|
|
|
954 |
idPersonneSepareParVirgule +=",";
|
327 |
jp_milcent |
955 |
}
|
772 |
jpm |
956 |
modele.supprimerPersonne(vue, idPersonneSepareParVirgule);
|
327 |
jp_milcent |
957 |
}
|
|
|
958 |
}
|
|
|
959 |
};
|
453 |
jp_milcent |
960 |
|
315 |
gduche |
961 |
MessageBox.confirm("Supprimer une personne", message, listenerSuppression);
|
245 |
jp_milcent |
962 |
} else {
|
|
|
963 |
Info.display("Erreur", "Une erreur est survenue dans la méthode clicSupprimerPersonne() du Médiateur.");
|
|
|
964 |
}
|
|
|
965 |
}
|
277 |
jp_milcent |
966 |
|
918 |
jpm |
967 |
public void selectionnerPersonne(Rafraichissable vueARafraichir, Personne personne, String projetId) {
|
|
|
968 |
selectionnerPersonne(vueARafraichir, personne, projetId, 0, nbElements);
|
775 |
jpm |
969 |
}
|
|
|
970 |
|
918 |
jpm |
971 |
public void selectionnerPersonne(Rafraichissable vueARafraichir, Personne personne, String projetId, int start, int nbElements) {
|
775 |
jpm |
972 |
String personneId = null;
|
1040 |
gduche |
973 |
String personneNom = null;
|
775 |
jpm |
974 |
if (personne != null) {
|
|
|
975 |
personneId = personne.getId();
|
1040 |
gduche |
976 |
personneNom = personne.getNom();
|
775 |
jpm |
977 |
}
|
1040 |
gduche |
978 |
modele.selectionnerPersonne(vueARafraichir, personneId, projetId, personneNom, start, nbElements);
|
775 |
jpm |
979 |
}
|
|
|
980 |
|
599 |
gduche |
981 |
public void selectionnerPersonneParNomComplet(Rafraichissable vueARafraichir, String projetId, String nomComplet) {
|
|
|
982 |
modele.selectionnerPersonne(vueARafraichir, null, projetId, nomComplet, 0, -1);
|
277 |
jp_milcent |
983 |
}
|
245 |
jp_milcent |
984 |
|
775 |
jpm |
985 |
public void selectionnerPersonneParProjet(Rafraichissable vueARafraichir, String projetId) {
|
|
|
986 |
modele.selectionnerPersonne(vueARafraichir, null, projetId, null, 0, -1);
|
|
|
987 |
}
|
|
|
988 |
|
389 |
gduche |
989 |
public void enregistrerPersonne(Rafraichissable vue, Personne personne){
|
774 |
jpm |
990 |
if (personne.getId() != null && !personne.getId().trim().equals("")) {
|
429 |
gduche |
991 |
modele.modifierPersonne(vue, personne);
|
|
|
992 |
} else {
|
|
|
993 |
modele.ajouterPersonne(vue, personne);
|
|
|
994 |
}
|
389 |
gduche |
995 |
}
|
|
|
996 |
|
156 |
jp_milcent |
997 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
998 |
// GESTION DES PUBLICATIONS
|
|
|
999 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
1000 |
|
107 |
aurelien |
1001 |
public void afficherListePublication(PublicationListe nouvelleDonnees) {
|
673 |
aurelien |
1002 |
if (!(panneauCentre.getContenu() instanceof PublicationVue)) {
|
626 |
gduche |
1003 |
panneauCentre.removeAll();
|
918 |
jpm |
1004 |
panneauCentre.add(new PublicationVue(this));
|
626 |
gduche |
1005 |
}
|
|
|
1006 |
|
646 |
jp_milcent |
1007 |
panneauCentre.getContenu().rafraichir(nouvelleDonnees);
|
107 |
aurelien |
1008 |
}
|
715 |
aurelien |
1009 |
|
775 |
jpm |
1010 |
public void afficherFormPublication(String publicationId) {
|
|
|
1011 |
panneauCentre.removeAll();
|
781 |
jpm |
1012 |
PublicationForm publicationForm = new PublicationForm(this, publicationId);
|
775 |
jpm |
1013 |
panneauCentre.add(publicationForm);
|
|
|
1014 |
|
|
|
1015 |
panneauCentre.layout();
|
715 |
aurelien |
1016 |
}
|
775 |
jpm |
1017 |
|
107 |
aurelien |
1018 |
public void clicListePublication(Publication publication) {
|
775 |
jpm |
1019 |
if (publication != null) {
|
675 |
aurelien |
1020 |
panneauCentre.getContenu().rafraichir(publication);
|
|
|
1021 |
}
|
107 |
aurelien |
1022 |
}
|
|
|
1023 |
|
|
|
1024 |
public void clicAjouterPublication() {
|
775 |
jpm |
1025 |
afficherFormPublication(null);
|
107 |
aurelien |
1026 |
}
|
156 |
jp_milcent |
1027 |
|
775 |
jpm |
1028 |
public void clicModifierPublication(List<Publication> selection) {
|
|
|
1029 |
if (selection.size() == 0) {
|
|
|
1030 |
Info.display("Information", "Veuillez sélectionner une publication.");
|
|
|
1031 |
} else if (selection.size() > 1) {
|
|
|
1032 |
Info.display("Information", "Veuillez sélectionner une seule publication à la fois.");
|
|
|
1033 |
} else if (selection.size() == 1) {
|
|
|
1034 |
afficherFormPublication(selection.get(0).getId());
|
379 |
jp_milcent |
1035 |
} else {
|
775 |
jpm |
1036 |
Info.display("Erreur", "Une erreur est survenue dans la méthode clicModifierPublication() du Médiateur.");
|
245 |
jp_milcent |
1037 |
}
|
|
|
1038 |
}
|
|
|
1039 |
|
315 |
gduche |
1040 |
public void clicSupprimerPublication(final List<Publication> publicationListe) {
|
453 |
jp_milcent |
1041 |
if (publicationListe.size() <= 0) {
|
315 |
gduche |
1042 |
MessageBox.alert("Attention", "Vous devez sélectionner une publication", null);
|
379 |
jp_milcent |
1043 |
} else {
|
673 |
aurelien |
1044 |
String message = "Voulez-vous vraiment supprimer ces publications ?";
|
775 |
jpm |
1045 |
if (publicationListe.size() == 1) {
|
245 |
jp_milcent |
1046 |
message = "Voulez-vous vraiment supprimer cette publication ?";
|
|
|
1047 |
}
|
315 |
gduche |
1048 |
|
502 |
gduche |
1049 |
final Listener<MessageBoxEvent> listenerSuppression = new Listener<MessageBoxEvent>() {
|
|
|
1050 |
public void handleEvent(MessageBoxEvent ce) {
|
|
|
1051 |
Dialog dialog = (Dialog) ce.getComponent();
|
|
|
1052 |
Button btn = ce.getButtonClicked();
|
315 |
gduche |
1053 |
|
379 |
jp_milcent |
1054 |
if (btn.getText().equals(dialog.yesText)) {
|
919 |
jpm |
1055 |
supprimerPublication(panneauCentre.getContenu(), publicationListe);
|
315 |
gduche |
1056 |
}
|
|
|
1057 |
}
|
|
|
1058 |
};
|
|
|
1059 |
|
|
|
1060 |
MessageBox.confirm("Supprimer une publication", message, listenerSuppression);
|
245 |
jp_milcent |
1061 |
}
|
|
|
1062 |
}
|
709 |
jp_milcent |
1063 |
|
|
|
1064 |
public void selectionnerPublication(Rafraichissable vueARafraichir, String publicationId) {
|
1046 |
gduche |
1065 |
selectionnerPublication(vueARafraichir, getProjetId(), publicationId, null, 0, nbElements);
|
709 |
jp_milcent |
1066 |
}
|
|
|
1067 |
|
|
|
1068 |
public void selectionnerPublicationParNomComplet(Rafraichissable vueARafraichir, String projetId, String nomComplet) {
|
1046 |
gduche |
1069 |
selectionnerPublication(vueARafraichir, projetId, null, nomComplet, 0, nbElements);
|
709 |
jp_milcent |
1070 |
}
|
|
|
1071 |
|
1046 |
gduche |
1072 |
public void selectionnerPublication(Rafraichissable vueARafraichir, String projetId, String publicationId, String nomComplet, int pageCourante, int nbElements) {
|
|
|
1073 |
modele.selectionnerPublication(vueARafraichir, publicationId, projetId, nomComplet, nbElements, pageCourante);
|
|
|
1074 |
}
|
|
|
1075 |
|
786 |
jpm |
1076 |
public void ajouterPublication(Rafraichissable vueARafraichir, Publication publication) {
|
|
|
1077 |
modele.ajouterPublication(vueARafraichir, publication);
|
245 |
jp_milcent |
1078 |
}
|
|
|
1079 |
|
786 |
jpm |
1080 |
public void modifierPublication(Rafraichissable vueARafraichir, Publication publication) {
|
|
|
1081 |
modele.modifierPublication(vueARafraichir, publication);
|
245 |
jp_milcent |
1082 |
}
|
919 |
jpm |
1083 |
|
|
|
1084 |
public void supprimerPublication(Rafraichissable vueARafraichir, List<Publication> publicationsListe) {
|
|
|
1085 |
if (publicationsListe != null && publicationsListe.size() > 0) {
|
|
|
1086 |
String idPublicationSeparesParVirgule = "" ;
|
|
|
1087 |
Iterator<Publication> it = publicationsListe.iterator();
|
|
|
1088 |
while (it.hasNext()) {
|
|
|
1089 |
idPublicationSeparesParVirgule += it.next().getId();
|
|
|
1090 |
if (it.hasNext()) {
|
|
|
1091 |
idPublicationSeparesParVirgule += ",";
|
|
|
1092 |
}
|
|
|
1093 |
}
|
|
|
1094 |
modele.supprimerPublication(vueARafraichir, idPublicationSeparesParVirgule);
|
|
|
1095 |
modele.supprimerPublicationAPersonne(vueARafraichir, idPublicationSeparesParVirgule);
|
|
|
1096 |
}
|
|
|
1097 |
}
|
245 |
jp_milcent |
1098 |
|
453 |
jp_milcent |
1099 |
public void clicObtenirListeEditeurs(Rafraichissable vueARafraichir) {
|
775 |
jpm |
1100 |
selectionnerStructureParProjet(vueARafraichir, null);
|
245 |
jp_milcent |
1101 |
}
|
|
|
1102 |
|
453 |
jp_milcent |
1103 |
public void clicObtenirListeAuteurs(Rafraichissable vueARafraichir) {
|
775 |
jpm |
1104 |
selectionnerPersonneParProjet(vueARafraichir, null);
|
245 |
jp_milcent |
1105 |
}
|
|
|
1106 |
|
156 |
jp_milcent |
1107 |
//+----------------------------------------------------------------------------------------------------------------+
|
822 |
jpm |
1108 |
// GESTION de la relation PUBLICATION A PERSONNE
|
|
|
1109 |
|
|
|
1110 |
public void selectionnerPublicationAPersonne(Rafraichissable vueARafraichir, String publicationId, String personnesId, String roleId) {
|
|
|
1111 |
modele.selectionPublicationAPersonne(vueARafraichir, publicationId, personnesId, roleId);
|
|
|
1112 |
}
|
|
|
1113 |
|
1014 |
gduche |
1114 |
public void selectionnerPublicationAPersonne(Rafraichissable vueARafraichir, String publicationId, String personnesId, List roleId) {
|
|
|
1115 |
String roleIds = "";
|
|
|
1116 |
Iterator<Valeur> itRole = roleId.iterator();
|
|
|
1117 |
while (itRole.hasNext()) {
|
|
|
1118 |
roleIds+= itRole.next().getId();
|
|
|
1119 |
if (itRole.hasNext()) {
|
|
|
1120 |
roleIds+=",";
|
|
|
1121 |
}
|
|
|
1122 |
}
|
|
|
1123 |
modele.selectionPublicationAPersonne(vueARafraichir, publicationId, personnesId, roleIds);
|
|
|
1124 |
}
|
|
|
1125 |
|
901 |
jpm |
1126 |
public void ajouterPublicationAPersonne(Rafraichissable vueARafraichir, String publicationId, PublicationAPersonneListe personnesAjoutees, String roleId) {
|
|
|
1127 |
if (personnesAjoutees != null && personnesAjoutees.size() > 0) {
|
|
|
1128 |
String idPublicationAPersonneSepareParVirgule = "" ;
|
|
|
1129 |
for (Iterator<String> it = personnesAjoutees.keySet().iterator(); it.hasNext();) {
|
|
|
1130 |
idPublicationAPersonneSepareParVirgule += personnesAjoutees.get(it.next()).getIdPersonne();
|
|
|
1131 |
if (it.hasNext()) {
|
|
|
1132 |
idPublicationAPersonneSepareParVirgule += ",";
|
|
|
1133 |
}
|
|
|
1134 |
}
|
|
|
1135 |
modele.ajouterPublicationAPersonne(vueARafraichir, publicationId, idPublicationAPersonneSepareParVirgule, roleId);
|
|
|
1136 |
}
|
822 |
jpm |
1137 |
}
|
901 |
jpm |
1138 |
|
|
|
1139 |
public void supprimerPublicationAPersonne(Rafraichissable vueARafraichir, PublicationAPersonneListe personnesSupprimees) {
|
|
|
1140 |
if (personnesSupprimees != null && personnesSupprimees.size() > 0) {
|
|
|
1141 |
String idPublicationAPersonneSepareParVirgule = "" ;
|
|
|
1142 |
for (Iterator<String> it = personnesSupprimees.keySet().iterator(); it.hasNext();) {
|
|
|
1143 |
idPublicationAPersonneSepareParVirgule += personnesSupprimees.get(it.next()).getId();
|
|
|
1144 |
if (it.hasNext()) {
|
|
|
1145 |
idPublicationAPersonneSepareParVirgule += ",";
|
|
|
1146 |
}
|
|
|
1147 |
}
|
968 |
jpm |
1148 |
modele.supprimerPublicationAPersonne(vueARafraichir, idPublicationAPersonneSepareParVirgule);
|
901 |
jpm |
1149 |
}
|
822 |
jpm |
1150 |
}
|
|
|
1151 |
|
996 |
gduche |
1152 |
//Lier plusieurs publication à une personne
|
|
|
1153 |
public void ajouterPublicationAPersonne(Rafraichissable vueARafraichir, PublicationAPersonneListe listePublications, String personneId, String roleId) {
|
|
|
1154 |
if (listePublications!=null && listePublications.size()>0) {
|
|
|
1155 |
String idsPubli = "";
|
1014 |
gduche |
1156 |
String rolesIds = "";
|
996 |
gduche |
1157 |
for (Iterator<String> it = listePublications.keySet().iterator(); it.hasNext();) {
|
1014 |
gduche |
1158 |
PublicationAPersonne publi = listePublications.get(it.next());
|
|
|
1159 |
idsPubli += publi.getId();
|
|
|
1160 |
rolesIds += publi.getRole();
|
996 |
gduche |
1161 |
if (it.hasNext()) {
|
|
|
1162 |
idsPubli += ",";
|
1014 |
gduche |
1163 |
rolesIds += ",";
|
996 |
gduche |
1164 |
}
|
|
|
1165 |
}
|
1014 |
gduche |
1166 |
modele.ajouterPublicationAPersonne(vueARafraichir, idsPubli, personneId, rolesIds);
|
996 |
gduche |
1167 |
}
|
|
|
1168 |
}
|
|
|
1169 |
|
822 |
jpm |
1170 |
//+----------------------------------------------------------------------------------------------------------------+
|
985 |
jpm |
1171 |
// GESTION DES COMMENTAIRES
|
|
|
1172 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
1173 |
|
|
|
1174 |
public void afficherListeCommentaire(CommentaireListe nouvelleDonnees) {
|
|
|
1175 |
if (!(panneauCentre.getContenu() instanceof CommentaireVue)) {
|
|
|
1176 |
panneauCentre.removeAll();
|
|
|
1177 |
panneauCentre.add(new CommentaireVue(this));
|
|
|
1178 |
}
|
|
|
1179 |
|
|
|
1180 |
panneauCentre.getContenu().rafraichir(nouvelleDonnees);
|
|
|
1181 |
}
|
|
|
1182 |
|
|
|
1183 |
public void afficherFormCommentaire(String commentaireId) {
|
|
|
1184 |
panneauCentre.removeAll();
|
989 |
jpm |
1185 |
CommentaireForm commentaireForm = new CommentaireForm(this, commentaireId);
|
985 |
jpm |
1186 |
panneauCentre.add(commentaireForm);
|
|
|
1187 |
|
|
|
1188 |
panneauCentre.layout();
|
|
|
1189 |
}
|
|
|
1190 |
|
|
|
1191 |
public void clicListeCommentaire(Commentaire commentaire) {
|
|
|
1192 |
if (commentaire != null) {
|
|
|
1193 |
panneauCentre.getContenu().rafraichir(commentaire);
|
|
|
1194 |
}
|
|
|
1195 |
}
|
|
|
1196 |
|
|
|
1197 |
public void clicAjouterCommentaire() {
|
|
|
1198 |
afficherFormCommentaire(null);
|
|
|
1199 |
}
|
|
|
1200 |
|
|
|
1201 |
public void clicModifierCommentaire(List<Commentaire> selection) {
|
|
|
1202 |
if (selection.size() == 0) {
|
|
|
1203 |
Info.display("Information", "Veuillez sélectionner un commentaire.");
|
|
|
1204 |
} else if (selection.size() > 1) {
|
|
|
1205 |
Info.display("Information", "Veuillez sélectionner un seul commentaire à la fois.");
|
|
|
1206 |
} else if (selection.size() == 1) {
|
|
|
1207 |
afficherFormCommentaire(selection.get(0).getId());
|
|
|
1208 |
} else {
|
|
|
1209 |
Info.display("Erreur", "Une erreur est survenue dans la méthode clicModifierCommentaire() du Médiateur.");
|
|
|
1210 |
}
|
|
|
1211 |
}
|
|
|
1212 |
|
|
|
1213 |
public void clicSupprimerCommentaire(final List<Commentaire> commentaireListe) {
|
|
|
1214 |
if (commentaireListe.size() <= 0) {
|
|
|
1215 |
MessageBox.alert("Attention", "Vous devez sélectionner un commentaire", null);
|
|
|
1216 |
} else {
|
|
|
1217 |
String message = "Voulez-vous vraiment supprimer ces commentaires ?";
|
|
|
1218 |
if (commentaireListe.size() == 1) {
|
|
|
1219 |
message = "Voulez-vous vraiment supprimer ce commentaire ?";
|
|
|
1220 |
}
|
|
|
1221 |
|
|
|
1222 |
final Listener<MessageBoxEvent> listenerSuppression = new Listener<MessageBoxEvent>() {
|
|
|
1223 |
public void handleEvent(MessageBoxEvent ce) {
|
|
|
1224 |
Dialog dialog = (Dialog) ce.getComponent();
|
|
|
1225 |
Button btn = ce.getButtonClicked();
|
|
|
1226 |
|
|
|
1227 |
if (btn.getText().equals(dialog.yesText)) {
|
|
|
1228 |
supprimerCommentaire(panneauCentre.getContenu(), commentaireListe);
|
|
|
1229 |
}
|
|
|
1230 |
}
|
|
|
1231 |
};
|
|
|
1232 |
|
|
|
1233 |
MessageBox.confirm("Supprimer un commentaire", message, listenerSuppression);
|
|
|
1234 |
}
|
|
|
1235 |
}
|
|
|
1236 |
|
|
|
1237 |
public void selectionnerCommentaire(Rafraichissable vueARafraichir, String commentaireId) {
|
1048 |
gduche |
1238 |
selectionnerCommentaire(vueARafraichir, commentaireId, null, 0, nbElements);
|
985 |
jpm |
1239 |
}
|
1048 |
gduche |
1240 |
public void selectionnerCommentaire(Rafraichissable vueARafraichir, String commentaireId, String titre, int pageCourante, int nbElements) {
|
|
|
1241 |
modele.selectionnerCommentaire(vueARafraichir, commentaireId, getProjetId(), titre, pageCourante, nbElements);
|
|
|
1242 |
}
|
985 |
jpm |
1243 |
|
997 |
jpm |
1244 |
public void selectionnerCommentaireParTitre(Rafraichissable vueARafraichir, String titre) {
|
1048 |
gduche |
1245 |
selectionnerCommentaire(vueARafraichir, null, titre, 0, nbElements);
|
997 |
jpm |
1246 |
}
|
|
|
1247 |
|
985 |
jpm |
1248 |
public void ajouterCommentaire(Rafraichissable vueARafraichir, Commentaire commentaire) {
|
|
|
1249 |
modele.ajouterCommentaire(vueARafraichir, commentaire);
|
|
|
1250 |
}
|
|
|
1251 |
|
|
|
1252 |
public void modifierCommentaire(Rafraichissable vueARafraichir, Commentaire commentaire) {
|
|
|
1253 |
modele.modifierCommentaire(vueARafraichir, commentaire);
|
|
|
1254 |
}
|
|
|
1255 |
|
|
|
1256 |
public void supprimerCommentaire(Rafraichissable vueARafraichir, List<Commentaire> commentairesListe) {
|
|
|
1257 |
if (commentairesListe != null && commentairesListe.size() > 0) {
|
|
|
1258 |
String idCommentaireSeparesParVirgule = "" ;
|
|
|
1259 |
Iterator<Commentaire> it = commentairesListe.iterator();
|
|
|
1260 |
while (it.hasNext()) {
|
|
|
1261 |
idCommentaireSeparesParVirgule += it.next().getId();
|
|
|
1262 |
if (it.hasNext()) {
|
|
|
1263 |
idCommentaireSeparesParVirgule += ",";
|
|
|
1264 |
}
|
|
|
1265 |
}
|
|
|
1266 |
modele.supprimerCommentaire(vueARafraichir, idCommentaireSeparesParVirgule);
|
989 |
jpm |
1267 |
modele.supprimerCollectionACommentaire(vueARafraichir, idCommentaireSeparesParVirgule, CollectionACommentaireAsyncDao.SUPPRESSION_PAR_COMMENTAIRE);
|
985 |
jpm |
1268 |
}
|
|
|
1269 |
}
|
|
|
1270 |
|
|
|
1271 |
//+----------------------------------------------------------------------------------------------------------------+
|
447 |
jp_milcent |
1272 |
// RAFRAICHISSEMENT
|
156 |
jp_milcent |
1273 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
1274 |
|
898 |
gduche |
1275 |
public void rafraichir(Object nouvellesDonnees) {
|
|
|
1276 |
if (nouvellesDonnees instanceof Utilisateur) {
|
932 |
jpm |
1277 |
repandreEtatIdentification((Utilisateur) nouvellesDonnees);
|
|
|
1278 |
} else if (nouvellesDonnees instanceof Information) {
|
|
|
1279 |
Information info = (Information) nouvellesDonnees;
|
|
|
1280 |
if (info.getType().equals("modification_personne")) {
|
|
|
1281 |
repandreInfoMiseAJourUtilisateur();
|
|
|
1282 |
}
|
|
|
1283 |
} else {
|
898 |
gduche |
1284 |
GWT.log(i18nM.erreurRafraichir(nouvellesDonnees.getClass(), this.getClass()), null);
|
277 |
jp_milcent |
1285 |
}
|
|
|
1286 |
}
|
281 |
gduche |
1287 |
|
453 |
jp_milcent |
1288 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
1289 |
// GESTION du STATUT
|
|
|
1290 |
//+----------------------------------------------------------------------------------------------------------------+
|
288 |
gduche |
1291 |
|
332 |
gduche |
1292 |
public void afficherPopinChargement() {
|
|
|
1293 |
((PopupChargement) Registry.get(RegistreId.POPUP_CHARGEMENT)).center();
|
|
|
1294 |
}
|
453 |
jp_milcent |
1295 |
|
332 |
gduche |
1296 |
public void masquerPopinChargement() {
|
|
|
1297 |
((PopupChargement) Registry.get(RegistreId.POPUP_CHARGEMENT)).hide();
|
|
|
1298 |
}
|
1063 |
gduche |
1299 |
|
|
|
1300 |
public String obtenirClasseContenu() {
|
|
|
1301 |
String classeContenu = null;
|
|
|
1302 |
if (panneauCentre.getContenu() != null) {
|
|
|
1303 |
classeContenu = panneauCentre.getContenu().getClass().toString();
|
|
|
1304 |
}
|
|
|
1305 |
return classeContenu;
|
|
|
1306 |
}
|
447 |
jp_milcent |
1307 |
|
277 |
jp_milcent |
1308 |
}
|