Subversion Repositories eFlore/Applications.coel

Rev

Rev 329 | Rev 345 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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