Subversion Repositories eFlore/Applications.coel

Rev

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