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