Subversion Repositories eFlore/Applications.coel

Rev

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