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;
|
66 |
jpm |
8 |
import org.tela_botanica.client.composants.ParametreFenetre;
|
119 |
jpm |
9 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
61 |
jpm |
10 |
import org.tela_botanica.client.modeles.Configuration;
|
156 |
jp_milcent |
11 |
import org.tela_botanica.client.modeles.Information;
|
60 |
jpm |
12 |
import org.tela_botanica.client.modeles.Menu;
|
142 |
gduche |
13 |
import org.tela_botanica.client.modeles.Personne;
|
128 |
gduche |
14 |
import org.tela_botanica.client.modeles.PersonneListe;
|
245 |
jp_milcent |
15 |
import org.tela_botanica.client.modeles.Projet;
|
268 |
jp_milcent |
16 |
import org.tela_botanica.client.modeles.ProjetListe;
|
107 |
aurelien |
17 |
import org.tela_botanica.client.modeles.Publication;
|
|
|
18 |
import org.tela_botanica.client.modeles.PublicationListe;
|
60 |
jpm |
19 |
import org.tela_botanica.client.modeles.Structure;
|
209 |
jp_milcent |
20 |
import org.tela_botanica.client.modeles.StructureAPersonne;
|
231 |
jp_milcent |
21 |
import org.tela_botanica.client.modeles.StructureAPersonneListe;
|
188 |
jp_milcent |
22 |
import org.tela_botanica.client.modeles.StructureConservation;
|
69 |
jpm |
23 |
import org.tela_botanica.client.modeles.StructureListe;
|
195 |
jp_milcent |
24 |
import org.tela_botanica.client.modeles.StructureValorisation;
|
61 |
jpm |
25 |
import org.tela_botanica.client.modeles.Utilisateur;
|
91 |
jpm |
26 |
import org.tela_botanica.client.modeles.ValeurListe;
|
60 |
jpm |
27 |
import org.tela_botanica.client.vues.ContenuPanneauVue;
|
|
|
28 |
import org.tela_botanica.client.vues.EntetePanneauVue;
|
196 |
gduche |
29 |
import org.tela_botanica.client.vues.FormPersonneVue;
|
223 |
aurelien |
30 |
import org.tela_botanica.client.vues.FormPublicationVue;
|
69 |
jpm |
31 |
import org.tela_botanica.client.vues.FormStructureVue;
|
142 |
gduche |
32 |
import org.tela_botanica.client.vues.PersonneDetailPanneauVue;
|
128 |
gduche |
33 |
import org.tela_botanica.client.vues.PersonneVue;
|
107 |
aurelien |
34 |
import org.tela_botanica.client.vues.PublicationDetailPanneauVue;
|
|
|
35 |
import org.tela_botanica.client.vues.PublicationVue;
|
60 |
jpm |
36 |
import org.tela_botanica.client.vues.StructureDetailPanneauVue;
|
|
|
37 |
import org.tela_botanica.client.vues.StructureVue;
|
|
|
38 |
import org.tela_botanica.client.vues.MenuPanneauVue;
|
|
|
39 |
|
|
|
40 |
import com.extjs.gxt.ui.client.Registry;
|
|
|
41 |
import com.extjs.gxt.ui.client.Style.LayoutRegion;
|
|
|
42 |
import com.extjs.gxt.ui.client.util.Margins;
|
156 |
jp_milcent |
43 |
import com.extjs.gxt.ui.client.widget.Info;
|
60 |
jpm |
44 |
import com.extjs.gxt.ui.client.widget.Viewport;
|
|
|
45 |
import com.extjs.gxt.ui.client.widget.layout.BorderLayout;
|
|
|
46 |
import com.extjs.gxt.ui.client.widget.layout.BorderLayoutData;
|
91 |
jpm |
47 |
import com.google.gwt.core.client.GWT;
|
60 |
jpm |
48 |
import com.google.gwt.user.client.Window;
|
|
|
49 |
import com.google.gwt.user.client.ui.RootPanel;
|
|
|
50 |
|
277 |
jp_milcent |
51 |
public class Mediateur implements Rafraichissable {
|
60 |
jpm |
52 |
|
119 |
jpm |
53 |
private Modele modele = null;
|
|
|
54 |
|
60 |
jpm |
55 |
private Viewport viewport;
|
|
|
56 |
private EntetePanneauVue panneauNord = null;
|
|
|
57 |
private MenuPanneauVue panneauOuest = null;
|
|
|
58 |
private ContenuPanneauVue panneauCentre = null;
|
156 |
jp_milcent |
59 |
private Rafraichissable contenuPanneauCentre = null;
|
60 |
jpm |
60 |
|
|
|
61 |
public Mediateur() {
|
|
|
62 |
// Enregistrement du Médiateur dans le Registre
|
|
|
63 |
Registry.register(RegistreId.MEDIATEUR, this);
|
|
|
64 |
// Création du Modèle qui s'enregistre lui même dans le Registre
|
119 |
jpm |
65 |
modele = new Modele();
|
277 |
jp_milcent |
66 |
// Création de l'utilisateur courrant
|
|
|
67 |
Registry.register(RegistreId.UTILISATEUR_COURANT, new Utilisateur(null, false));
|
65 |
jpm |
68 |
this.connecterUtilisateur(null, null);
|
277 |
jp_milcent |
69 |
// Création du projet courrant
|
|
|
70 |
Registry.register(RegistreId.PROJET_COURANT, new Projet());
|
65 |
jpm |
71 |
|
60 |
jpm |
72 |
// Création du Viewport qui contient la disposition globale de l'application
|
|
|
73 |
viewport = new Viewport();
|
|
|
74 |
viewport.setLayout(new BorderLayout());
|
|
|
75 |
|
|
|
76 |
// Création des différents panneaux
|
|
|
77 |
creerPanneauNord();
|
|
|
78 |
creerPanneauOuest();
|
|
|
79 |
creerPanneauCentral();
|
|
|
80 |
|
|
|
81 |
// Registry utile car présent partout!
|
|
|
82 |
Registry.register(RegistreId.VIEWPORT, viewport);
|
|
|
83 |
Registry.register(RegistreId.PANNEAU_OUEST, panneauOuest);
|
|
|
84 |
Registry.register(RegistreId.PANNEAU_CENTRE, panneauCentre);
|
|
|
85 |
|
|
|
86 |
// Chargement du menu
|
|
|
87 |
chargeMenu(panneauOuest.listerMenu());
|
|
|
88 |
|
|
|
89 |
// Retour à GWT du Viewport une fois constuit
|
|
|
90 |
RootPanel.get().add(viewport);
|
|
|
91 |
}
|
|
|
92 |
|
156 |
jp_milcent |
93 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
94 |
// GESTION des PANNEAUX PRINCIPAUX
|
|
|
95 |
//+----------------------------------------------------------------------------------------------------------------+
|
119 |
jpm |
96 |
|
60 |
jpm |
97 |
private void creerPanneauNord() {
|
|
|
98 |
panneauNord = new EntetePanneauVue();
|
|
|
99 |
|
|
|
100 |
BorderLayoutData regionNord = new BorderLayoutData(LayoutRegion.NORTH, 100);
|
|
|
101 |
regionNord.setCollapsible(true);
|
|
|
102 |
regionNord.setFloatable(true);
|
|
|
103 |
regionNord.setSplit(false);
|
|
|
104 |
regionNord.setMargins(new Margins(5, 5, 0, 5));
|
|
|
105 |
|
|
|
106 |
viewport.add(panneauNord, regionNord);
|
|
|
107 |
}
|
|
|
108 |
|
|
|
109 |
private void creerPanneauOuest() {
|
|
|
110 |
panneauOuest = new MenuPanneauVue();
|
|
|
111 |
|
|
|
112 |
BorderLayoutData regionOuest = new BorderLayoutData(LayoutRegion.WEST, 200);
|
|
|
113 |
regionOuest.setSplit(true);
|
|
|
114 |
regionOuest.setCollapsible(true);
|
|
|
115 |
regionOuest.setMargins(new Margins(5));
|
|
|
116 |
|
|
|
117 |
viewport.add(panneauOuest, regionOuest);
|
|
|
118 |
}
|
|
|
119 |
|
|
|
120 |
private void creerPanneauCentral() {
|
|
|
121 |
panneauCentre = new ContenuPanneauVue();
|
|
|
122 |
|
|
|
123 |
BorderLayoutData regionCentre = new BorderLayoutData(LayoutRegion.CENTER);
|
|
|
124 |
regionCentre.setMargins(new Margins(5, 5, 5, 0));
|
|
|
125 |
|
|
|
126 |
viewport.add(panneauCentre, regionCentre);
|
|
|
127 |
}
|
|
|
128 |
|
156 |
jp_milcent |
129 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
130 |
// GESTION du MENU
|
|
|
131 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
132 |
|
60 |
jpm |
133 |
public void chargeMenu(Menu menus) {
|
|
|
134 |
((MenuPanneauVue) Registry.get(RegistreId.PANNEAU_OUEST)).rafraichir(menus);
|
|
|
135 |
}
|
|
|
136 |
|
172 |
jp_milcent |
137 |
public void clicMenu(String menuNom) {
|
60 |
jpm |
138 |
panneauCentre.removeAll();
|
172 |
jp_milcent |
139 |
if (menuNom.equals("Institutions")) {
|
277 |
jp_milcent |
140 |
modele.selectionnerStructure(panneauCentre, getProjetId(), null);
|
172 |
jp_milcent |
141 |
} else if (menuNom.equals("Publications")) {
|
277 |
jp_milcent |
142 |
modele.selectionnerPublications(panneauCentre);
|
172 |
jp_milcent |
143 |
} else if (menuNom.equals("Personnes")) {
|
277 |
jp_milcent |
144 |
modele.selectionnerPersonne(panneauCentre, null, getProjetId(), null);
|
128 |
gduche |
145 |
}
|
107 |
aurelien |
146 |
else {
|
172 |
jp_milcent |
147 |
GWT.log("Non implémenté! Menu id : "+menuNom, null);
|
60 |
jpm |
148 |
}
|
|
|
149 |
panneauCentre.layout();
|
|
|
150 |
}
|
|
|
151 |
|
156 |
jp_milcent |
152 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
153 |
// GESTION DES FENÊTRES
|
|
|
154 |
//+----------------------------------------------------------------------------------------------------------------+
|
60 |
jpm |
155 |
|
61 |
jpm |
156 |
public void ouvrirAide() {
|
|
|
157 |
AideFenetre aideFenetre = new AideFenetre();
|
|
|
158 |
aideFenetre.show();
|
66 |
jpm |
159 |
// FIXME : apparament le fade In/Fade Out pose problème sur les navigateurs...
|
|
|
160 |
//aideFenetre.el().fadeIn(FxConfig.NONE);
|
61 |
jpm |
161 |
}
|
|
|
162 |
|
|
|
163 |
public void ouvrirParametres() {
|
66 |
jpm |
164 |
ParametreFenetre parametresFenetre = new ParametreFenetre();
|
|
|
165 |
parametresFenetre.show();
|
61 |
jpm |
166 |
}
|
|
|
167 |
|
|
|
168 |
public void ouvrirIdentification() {
|
|
|
169 |
IdentificationFenetre identifFenetre = new IdentificationFenetre();
|
|
|
170 |
identifFenetre.show();
|
|
|
171 |
}
|
|
|
172 |
|
|
|
173 |
public void ouvrirApplis(String id) {
|
|
|
174 |
if (id.equals(ComposantId.MENU_CEL)) {
|
|
|
175 |
Window.open(((Configuration) Registry.get(RegistreId.CONFIG)).getCelUrl(), "Carnet en ligne", "");
|
|
|
176 |
} else if (id.equals(ComposantId.MENU_BEL)) {
|
134 |
jpm |
177 |
Window.open(((Configuration) Registry.get(RegistreId.CONFIG)).getCelUrl(), "Biblio en ligne", "");
|
61 |
jpm |
178 |
}
|
|
|
179 |
}
|
|
|
180 |
|
156 |
jp_milcent |
181 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
182 |
// GESTION de l'UTILISATEUR et de l'IDENTIFICATION
|
|
|
183 |
//+----------------------------------------------------------------------------------------------------------------+
|
245 |
jp_milcent |
184 |
/**
|
|
|
185 |
* Retourne l'identifiant de l'utilisateur courrant de l'application.
|
|
|
186 |
*/
|
156 |
jp_milcent |
187 |
public String getUtilisateurId() {
|
277 |
jp_milcent |
188 |
String id = null;
|
|
|
189 |
Utilisateur utilisateurCourant = (Utilisateur) Registry.get(RegistreId.UTILISATEUR_COURANT);
|
|
|
190 |
if (!utilisateurCourant.getId().equals("")) {
|
|
|
191 |
id = utilisateurCourant.getId();
|
|
|
192 |
}
|
|
|
193 |
return id;
|
156 |
jp_milcent |
194 |
}
|
|
|
195 |
|
|
|
196 |
public void clicIdentification() {
|
|
|
197 |
// Gestion du login
|
|
|
198 |
IdentificationFenetre dialog = new IdentificationFenetre();
|
|
|
199 |
dialog.setClosable(false);
|
|
|
200 |
dialog.show();
|
|
|
201 |
}
|
|
|
202 |
|
65 |
jpm |
203 |
public void connecterUtilisateur(String login, String mdp) {
|
277 |
jp_milcent |
204 |
modele.connecterUtilisateur(this, login, mdp);
|
64 |
jpm |
205 |
}
|
|
|
206 |
|
65 |
jpm |
207 |
public void deconnecterUtilisateur() {
|
277 |
jp_milcent |
208 |
modele.deconnecterUtilisateur(this);
|
64 |
jpm |
209 |
}
|
65 |
jpm |
210 |
|
64 |
jpm |
211 |
public void mettreAJourEtatIdentification(Utilisateur utilisateur) {
|
156 |
jp_milcent |
212 |
// Mise à jour du registre
|
277 |
jp_milcent |
213 |
Registry.register(RegistreId.UTILISATEUR_COURANT, utilisateur);
|
156 |
jp_milcent |
214 |
|
|
|
215 |
// Création de l'information de mise à jour de l'utilisateur
|
|
|
216 |
Information info = new Information("maj_utilisateur");
|
|
|
217 |
|
|
|
218 |
// Rafraichissement du panneau Nord
|
|
|
219 |
panneauNord.rafraichir(info);
|
|
|
220 |
|
|
|
221 |
// Rafraichissement du panneau Centre
|
|
|
222 |
if (contenuPanneauCentre != null) {
|
|
|
223 |
contenuPanneauCentre.rafraichir(info);
|
|
|
224 |
}
|
61 |
jpm |
225 |
}
|
66 |
jpm |
226 |
|
156 |
jp_milcent |
227 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
228 |
// GESTION DES PERSONNES
|
|
|
229 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
230 |
|
|
|
231 |
public void clicListePersonne(Personne personne) {
|
|
|
232 |
((PersonneDetailPanneauVue) Registry.get(RegistreId.PANNEAU_PERSONNE_DETAIL)).rafraichir(personne);
|
|
|
233 |
|
69 |
jpm |
234 |
}
|
|
|
235 |
|
278 |
jp_milcent |
236 |
public void afficherListePersonnes(PersonneListe personnesACharger) {
|
|
|
237 |
if ( !(contenuPanneauCentre instanceof PersonneVue) ) {
|
|
|
238 |
PersonneVue personneVue = new PersonneVue();
|
|
|
239 |
contenuPanneauCentre = personneVue;
|
|
|
240 |
panneauCentre.add(personneVue);
|
|
|
241 |
}
|
|
|
242 |
contenuPanneauCentre.rafraichir(personnesACharger);
|
|
|
243 |
//contenuPanneauCentre.layout();
|
156 |
jp_milcent |
244 |
}
|
|
|
245 |
|
128 |
gduche |
246 |
public void clicAjouterPersonne() {
|
277 |
jp_milcent |
247 |
panneauCentre.removeAll();
|
|
|
248 |
FormPersonneVue formulairePersonneVue = new FormPersonneVue();
|
|
|
249 |
contenuPanneauCentre = formulairePersonneVue;
|
|
|
250 |
panneauCentre.add(formulairePersonneVue);
|
|
|
251 |
panneauCentre.layout();
|
128 |
gduche |
252 |
}
|
|
|
253 |
|
245 |
jp_milcent |
254 |
public void clicSupprimerPersonne(Rafraichissable vue,List<Personne> personneSelection) {
|
|
|
255 |
|
|
|
256 |
String ids = "" ;
|
|
|
257 |
|
|
|
258 |
if (personneSelection.size() == 0) {
|
|
|
259 |
Info.display("Information", "Veuillez sélectionner une personne.");
|
|
|
260 |
} else if(personneSelection.size() > 0) {
|
|
|
261 |
String message = "Êtes vous sur de vouloir supprimer les personnes sélectionnées ?";
|
|
|
262 |
if (personneSelection.size() == 1) {
|
|
|
263 |
message = "Êtes vous sur de vouloir supprimer la personne sélectionnée ?";
|
|
|
264 |
}
|
|
|
265 |
if(Window.confirm(message)) {
|
|
|
266 |
String idStr = "" ;
|
|
|
267 |
for(int i = 0 ; i < personneSelection.size() ; i++) {
|
|
|
268 |
idStr += personneSelection.get(i).getId()+"," ;
|
|
|
269 |
}
|
|
|
270 |
modele.supprimerPersonne(vue, getUtilisateurId(), idStr);
|
|
|
271 |
}
|
|
|
272 |
} else {
|
|
|
273 |
Info.display("Erreur", "Une erreur est survenue dans la méthode clicSupprimerPersonne() du Médiateur.");
|
|
|
274 |
}
|
|
|
275 |
}
|
277 |
jp_milcent |
276 |
|
|
|
277 |
public void selectionnerPersonneParNomComplet(Rafraichissable vue, String projetId, String nomComplet) {
|
|
|
278 |
modele.selectionnerPersonne(vue, null, projetId, nomComplet);
|
|
|
279 |
}
|
245 |
jp_milcent |
280 |
|
156 |
jp_milcent |
281 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
282 |
// GESTION DES VALEURS ET LISTES
|
|
|
283 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
284 |
|
91 |
jpm |
285 |
public void afficherListeValeurs(ValeurListe nouvelleDonnees) {
|
156 |
jp_milcent |
286 |
if (panneauCentre.getId().equals(ComposantId.PANNEAU_STRUCTURE_FORM)) {
|
91 |
jpm |
287 |
((FormStructureVue) panneauCentre.getItem(0)).rafraichir(nouvelleDonnees);
|
|
|
288 |
} else {
|
|
|
289 |
GWT.log("Aucun panneau trouvé pour afficher la liste de valeur", null);
|
|
|
290 |
}
|
|
|
291 |
}
|
|
|
292 |
|
156 |
jp_milcent |
293 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
294 |
// GESTION DES PUBLICATIONS
|
|
|
295 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
296 |
|
107 |
aurelien |
297 |
public void afficherListePublication(PublicationListe nouvelleDonnees) {
|
|
|
298 |
PublicationVue publicationVue = new PublicationVue() ;
|
228 |
aurelien |
299 |
panneauCentre.removeAll();
|
107 |
aurelien |
300 |
panneauCentre.add(publicationVue);
|
186 |
gduche |
301 |
contenuPanneauCentre = publicationVue;
|
107 |
aurelien |
302 |
publicationVue.rafraichir(nouvelleDonnees);
|
|
|
303 |
|
|
|
304 |
}
|
|
|
305 |
|
|
|
306 |
public void clicListePublication(Publication publication) {
|
|
|
307 |
|
|
|
308 |
((PublicationDetailPanneauVue) Registry.get(RegistreId.PANNEAU_PUBLICATION_DETAIL)).rafraichir(publication);
|
|
|
309 |
}
|
|
|
310 |
|
|
|
311 |
public void clicAjouterPublication() {
|
223 |
aurelien |
312 |
panneauCentre.removeAll();
|
|
|
313 |
FormPublicationVue formPublicationVue = new FormPublicationVue();
|
|
|
314 |
panneauCentre.add(formPublicationVue);
|
|
|
315 |
panneauCentre.setId(ComposantId.PANNEAU_FORM_PUBLICATION);
|
|
|
316 |
panneauCentre.layout();
|
107 |
aurelien |
317 |
}
|
156 |
jp_milcent |
318 |
|
245 |
jp_milcent |
319 |
public void clicModifierPublication(List<Publication> publicationListe) {
|
|
|
320 |
if(publicationListe.size() <= 0) {
|
|
|
321 |
Window.alert("Il faut selectionner une publication");
|
|
|
322 |
}
|
|
|
323 |
else {
|
|
|
324 |
Publication pubAModifier = publicationListe.get(publicationListe.size() -1);
|
|
|
325 |
panneauCentre.removeAll();
|
|
|
326 |
FormPublicationVue formPublicationVue = new FormPublicationVue();
|
|
|
327 |
panneauCentre.add(formPublicationVue);
|
|
|
328 |
panneauCentre.setId(ComposantId.PANNEAU_FORM_PUBLICATION);
|
|
|
329 |
panneauCentre.layout();
|
|
|
330 |
formPublicationVue.rafraichir(pubAModifier);
|
|
|
331 |
}
|
|
|
332 |
|
|
|
333 |
}
|
|
|
334 |
|
|
|
335 |
|
|
|
336 |
public void clicSupprimerPublication(List<Publication> publicationListe) {
|
|
|
337 |
if(publicationListe.size() <= 0) {
|
|
|
338 |
Window.alert("Il faut selectionner une publication");
|
|
|
339 |
}
|
|
|
340 |
else {
|
|
|
341 |
String message = "" ;
|
|
|
342 |
if(publicationListe.size() == 1) {
|
|
|
343 |
message = "Voulez-vous vraiment supprimer cette publication ?";
|
|
|
344 |
}
|
|
|
345 |
else {
|
|
|
346 |
message = "Voulez-vous vraiment supprimer ces publication ?";
|
|
|
347 |
}
|
|
|
348 |
if(Window.confirm(message)) {
|
277 |
jp_milcent |
349 |
modele.supprimerPublication(contenuPanneauCentre, getUtilisateurId(),publicationListe);
|
245 |
jp_milcent |
350 |
}
|
|
|
351 |
}
|
|
|
352 |
|
|
|
353 |
}
|
|
|
354 |
|
277 |
jp_milcent |
355 |
public void ajouterPublication(FormPublicationVue formPublicationVue, Publication publi) {
|
|
|
356 |
modele.ajouterPublication(contenuPanneauCentre, getUtilisateurId(),publi);
|
245 |
jp_milcent |
357 |
}
|
|
|
358 |
|
|
|
359 |
public void modifierPublication(FormPublicationVue formPublicationVue, Publication publi) {
|
277 |
jp_milcent |
360 |
modele.modifierPublication(contenuPanneauCentre, getUtilisateurId(),publi);
|
245 |
jp_milcent |
361 |
}
|
|
|
362 |
|
277 |
jp_milcent |
363 |
public void clicObtenirListeEditeurs(Rafraichissable vue) {
|
|
|
364 |
modele.selectionnerStructure(vue, null, null);
|
245 |
jp_milcent |
365 |
|
|
|
366 |
}
|
|
|
367 |
|
277 |
jp_milcent |
368 |
public void clicObtenirListeAuteurs(Rafraichissable vue) {
|
|
|
369 |
modele.selectionnerPersonne(vue, null, null, null);
|
245 |
jp_milcent |
370 |
}
|
|
|
371 |
|
156 |
jp_milcent |
372 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
373 |
// GESTION DES STRUCTURES
|
|
|
374 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
375 |
|
|
|
376 |
public void clicListeInstitution(Structure institution) {
|
|
|
377 |
((StructureDetailPanneauVue) Registry.get(RegistreId.PANNEAU_INSTITUTION_DETAIL)).rafraichir(institution);
|
|
|
378 |
}
|
|
|
379 |
|
278 |
jp_milcent |
380 |
public void afficherListeStructures(StructureListe structuresACharger) {
|
156 |
jp_milcent |
381 |
// TODO : créer dès l'initialisation de l'application InsitutionVue et la cacher
|
|
|
382 |
StructureVue institutionVue = new StructureVue();
|
|
|
383 |
panneauCentre.add(institutionVue);
|
|
|
384 |
panneauCentre.setId(ComposantId.PANNEAU_STRUCTURE_LISTE);
|
|
|
385 |
contenuPanneauCentre = institutionVue;
|
278 |
jp_milcent |
386 |
institutionVue.rafraichir(structuresACharger);
|
156 |
jp_milcent |
387 |
}
|
|
|
388 |
|
|
|
389 |
public void clicAjouterStructure() {
|
|
|
390 |
panneauCentre.removeAll();
|
|
|
391 |
FormStructureVue formStructureVue = new FormStructureVue();
|
|
|
392 |
panneauCentre.add(formStructureVue);
|
|
|
393 |
panneauCentre.setId(ComposantId.PANNEAU_STRUCTURE_FORM);
|
|
|
394 |
panneauCentre.layout();
|
|
|
395 |
}
|
|
|
396 |
|
265 |
jp_milcent |
397 |
public void clicModifierStructure(List<Structure> structureSelection) {
|
|
|
398 |
if (structureSelection.size() == 0) {
|
|
|
399 |
Info.display("Information", "Veuillez sélectionner une structure.");
|
|
|
400 |
} else if(structureSelection.size() > 1) {
|
|
|
401 |
Info.display("Information", "Veuillez sélectionner une seule structure à la fois.");
|
|
|
402 |
} else if(structureSelection.size() == 1) {
|
|
|
403 |
panneauCentre.removeAll();
|
|
|
404 |
FormStructureVue formStructureVue = new FormStructureVue();
|
|
|
405 |
panneauCentre.add(formStructureVue);
|
|
|
406 |
panneauCentre.setId(ComposantId.PANNEAU_STRUCTURE_FORM);
|
|
|
407 |
|
|
|
408 |
selectionnerStructure(formStructureVue, structureSelection.get(0).getId());
|
|
|
409 |
selectionnerStructureAPersonne(formStructureVue, structureSelection.get(0).getId(), StructureAPersonne.ROLE_EQUIPE);
|
|
|
410 |
|
|
|
411 |
panneauCentre.layout();
|
|
|
412 |
} else {
|
|
|
413 |
Info.display("Erreur", "Une erreur est survenue dans la méthode clicModifierStructure() du Médiateur.");
|
|
|
414 |
}
|
|
|
415 |
|
119 |
jpm |
416 |
}
|
265 |
jp_milcent |
417 |
|
134 |
jpm |
418 |
public void clicSupprimerStructure(Rafraichissable vue, List<Structure> structureSelection) {
|
156 |
jp_milcent |
419 |
if (structureSelection.size() == 0) {
|
|
|
420 |
Info.display("Information", "Veuillez sélectionner une structure.");
|
|
|
421 |
} else if(structureSelection.size() > 0) {
|
|
|
422 |
String message = "Êtes vous sur de vouloir supprimer les structures sélectionnées ?";
|
|
|
423 |
if (structureSelection.size() == 1) {
|
|
|
424 |
message = "Êtes vous sur de vouloir supprimer la structure sélectionnée ?";
|
|
|
425 |
}
|
277 |
jp_milcent |
426 |
if (Window.confirm(message)) {
|
134 |
jpm |
427 |
String idStr = "" ;
|
|
|
428 |
for(int i = 0 ; i < structureSelection.size() ; i++) {
|
|
|
429 |
idStr += structureSelection.get(i).getId()+"," ;
|
|
|
430 |
}
|
156 |
jp_milcent |
431 |
modele.supprimerStructure(vue, getUtilisateurId(), idStr);
|
134 |
jpm |
432 |
}
|
|
|
433 |
} else {
|
156 |
jp_milcent |
434 |
Info.display("Erreur", "Une erreur est survenue dans la méthode clicSupprimerStructure() du Médiateur.");
|
134 |
jpm |
435 |
}
|
|
|
436 |
}
|
142 |
gduche |
437 |
|
265 |
jp_milcent |
438 |
public void selectionnerStructure(Rafraichissable vue, String structureId) {
|
|
|
439 |
GWT.log("Structure : "+structureId, null);
|
277 |
jp_milcent |
440 |
modele.selectionnerStructure(vue, null, structureId);
|
156 |
jp_milcent |
441 |
}
|
|
|
442 |
|
265 |
jp_milcent |
443 |
/**
|
|
|
444 |
* TODO : afficher un message du type "Structure ajoutée".
|
|
|
445 |
* Lance la creation d'une structure
|
|
|
446 |
* @param les données de la structure saisie
|
|
|
447 |
*/
|
277 |
jp_milcent |
448 |
public void ajouterStructure(Rafraichissable vue, Structure structure, StructureConservation conservation, StructureValorisation valorisation) {
|
|
|
449 |
modele.ajouterStructure(vue, getUtilisateurId(), structure, conservation, valorisation);
|
265 |
jp_milcent |
450 |
}
|
|
|
451 |
|
195 |
jp_milcent |
452 |
public void modifierStructure(Rafraichissable vue, Structure structure, StructureConservation conservation, StructureValorisation valorisation) {
|
|
|
453 |
modele.modifierStructure(vue, getUtilisateurId(), structure, conservation, valorisation);
|
156 |
jp_milcent |
454 |
}
|
231 |
jp_milcent |
455 |
|
265 |
jp_milcent |
456 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
457 |
// GESTION de la relation STRUCTURE A PERSONNE
|
231 |
jp_milcent |
458 |
public void selectionnerStructureAPersonne(Rafraichissable vue, String structureId, String roleId) {
|
265 |
jp_milcent |
459 |
GWT.log("Structure : "+structureId, null);
|
|
|
460 |
modele.selectionnerStructureAPersonne(vue, getUtilisateurId(), null, structureId, roleId);
|
231 |
jp_milcent |
461 |
}
|
156 |
jp_milcent |
462 |
|
231 |
jp_milcent |
463 |
public void modifierStructureAPersonne(Rafraichissable vue, StructureAPersonneListe personnelModifie) {
|
|
|
464 |
if (personnelModifie != null && personnelModifie.size() > 0) {
|
|
|
465 |
GWT.log("Mediateur :modif", null);
|
|
|
466 |
for (Iterator<String> it = personnelModifie.keySet().iterator(); it.hasNext();) {
|
|
|
467 |
modele.modifierStructureAPersonne(vue, getUtilisateurId(), (StructureAPersonne) personnelModifie.get(it.next()));
|
|
|
468 |
}
|
|
|
469 |
}
|
|
|
470 |
}
|
|
|
471 |
|
|
|
472 |
public void ajouterStructureAPersonne(Rafraichissable vue, String structureId, StructureAPersonneListe personnelAjoute) {
|
|
|
473 |
if (personnelAjoute != null && personnelAjoute.size() > 0) {
|
|
|
474 |
for (Iterator<String> it = personnelAjoute.keySet().iterator(); it.hasNext();) {
|
|
|
475 |
modele.ajouterStructureAPersonne(vue, getUtilisateurId(), structureId, (StructureAPersonne) personnelAjoute.get(it.next()));
|
|
|
476 |
}
|
|
|
477 |
}
|
|
|
478 |
}
|
|
|
479 |
|
|
|
480 |
public void supprimerStructureAPersonne(Rafraichissable vue, StructureAPersonneListe personnelSupprime) {
|
|
|
481 |
if (personnelSupprime != null && personnelSupprime.size() > 0) {
|
|
|
482 |
String idStrAPer = "" ;
|
|
|
483 |
for (Iterator<String> it = personnelSupprime.keySet().iterator(); it.hasNext();) {
|
|
|
484 |
idStrAPer += personnelSupprime.get(it.next()).getId()+"," ;
|
|
|
485 |
}
|
|
|
486 |
modele.supprimerStructureAPersonne(vue, getUtilisateurId(), idStrAPer);
|
|
|
487 |
}
|
|
|
488 |
}
|
|
|
489 |
|
156 |
jp_milcent |
490 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
491 |
// GESTION des PROJETS
|
|
|
492 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
493 |
|
245 |
jp_milcent |
494 |
/**
|
|
|
495 |
* Retourne l'identifiant du projet courrant de l'application.
|
|
|
496 |
*/
|
|
|
497 |
public String getProjetId() {
|
277 |
jp_milcent |
498 |
String id = null;
|
|
|
499 |
Projet projetCourant = (Projet) Registry.get(RegistreId.PROJET_COURANT);
|
279 |
jp_milcent |
500 |
if (projetCourant != null && !projetCourant.getId().equals("")) {
|
277 |
jp_milcent |
501 |
id = projetCourant.getId();
|
|
|
502 |
}
|
|
|
503 |
return id;
|
245 |
jp_milcent |
504 |
}
|
|
|
505 |
|
142 |
gduche |
506 |
//Greg : ajout d'un écouteur pour le changement liste projet
|
277 |
jp_milcent |
507 |
public void selectionnerProjets(Rafraichissable vue) {
|
|
|
508 |
modele.selectionnerProjets(vue);
|
142 |
gduche |
509 |
}
|
|
|
510 |
|
268 |
jp_milcent |
511 |
public void afficherListeProjets(ProjetListe projets) {
|
277 |
jp_milcent |
512 |
panneauOuest.rafraichir(projets);
|
142 |
gduche |
513 |
}
|
159 |
gduche |
514 |
|
277 |
jp_milcent |
515 |
public void selectionnerProjetCourant(Projet projetSelectionne) {
|
|
|
516 |
Registry.register(RegistreId.PROJET_COURANT, projetSelectionne);
|
186 |
gduche |
517 |
if (contenuPanneauCentre instanceof PersonneVue) {
|
277 |
jp_milcent |
518 |
modele.selectionnerPersonne(contenuPanneauCentre, null, getProjetId(), null);
|
186 |
gduche |
519 |
//FIXME Le rafraichissement du panneau ne se fait pas!
|
277 |
jp_milcent |
520 |
} else if (contenuPanneauCentre instanceof StructureVue) {
|
|
|
521 |
modele.obtenirListeStructures(contenuPanneauCentre, getProjetId());
|
186 |
gduche |
522 |
}
|
159 |
gduche |
523 |
}
|
237 |
aurelien |
524 |
|
277 |
jp_milcent |
525 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
526 |
// RAFRAICHISSEMENT
|
|
|
527 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
528 |
|
|
|
529 |
public void rafraichir(Object nouvelleDonnees) {
|
|
|
530 |
if (nouvelleDonnees instanceof Utilisateur) {
|
|
|
531 |
mettreAJourEtatIdentification((Utilisateur) nouvelleDonnees);
|
278 |
jp_milcent |
532 |
} else {
|
|
|
533 |
GWT.log("Pas de correspondance dans la méthode rafraichir() de la classe "+this.getClass(), null);
|
277 |
jp_milcent |
534 |
}
|
|
|
535 |
}
|
|
|
536 |
}
|