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