Subversion Repositories eFlore/Applications.coel

Rev

Rev 379 | Rev 402 | 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;
369 jp_milcent 64
	public Constantes i18nC;
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
369 jp_milcent 78
		i18nC = 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() {
370 jp_milcent 117
		panneauNord = new EntetePanneauVue(this);
60 jpm 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() {
373 jp_milcent 140
		panneauCentre = new ContenuPanneauVue(this);
60 jpm 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
 
369 jp_milcent 151
		BorderLayoutData regionSud = new BorderLayoutData(LayoutRegion.SOUTH, 20);
358 jp_milcent 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
 
369 jp_milcent 160
	public void actualiserPanneauCentral() {
161
		panneauCentre.layout();
162
	}
163
 
156 jp_milcent 164
	//+----------------------------------------------------------------------------------------------------------------+
165
	//												GESTION du MENU
166
	//+----------------------------------------------------------------------------------------------------------------+
167
 
327 jp_milcent 168
	public void chargeMenuApplication() {
169
		((MenuPanneauVue) Registry.get(RegistreId.PANNEAU_OUEST)).chargerMenus();
60 jpm 170
	}
171
 
327 jp_milcent 172
	public void clicMenu(String codeMenuClique) {
358 jp_milcent 173
		activerChargement(codeMenuClique);
60 jpm 174
		panneauCentre.removeAll();
327 jp_milcent 175
		if (codeMenuClique.equals(MenuApplicationId.STRUCTURE)) {
277 jp_milcent 176
			modele.selectionnerStructure(panneauCentre, getProjetId(), null);
327 jp_milcent 177
		} else if (codeMenuClique.equals(MenuApplicationId.PUBLICATION)) {
277 jp_milcent 178
			modele.selectionnerPublications(panneauCentre);
327 jp_milcent 179
		} else if (codeMenuClique.equals(MenuApplicationId.PERSONNE)) {
277 jp_milcent 180
			modele.selectionnerPersonne(panneauCentre, null, getProjetId(), null);
379 jp_milcent 181
		} else {
327 jp_milcent 182
			GWT.log("Non implémenté! Menu id : "+codeMenuClique, null);
60 jpm 183
		}
184
		panneauCentre.layout();
185
	}
186
 
358 jp_milcent 187
	public void activerChargement(String message) {
188
		afficherPopinChargement();
369 jp_milcent 189
		panneauSud.showBusy(i18nC.chargement()+" "+message);
358 jp_milcent 190
	}
191
 
192
	public void desactiverChargement() {
193
		masquerPopinChargement();
194
		panneauSud.clear();
195
	}
196
 
156 jp_milcent 197
	//+----------------------------------------------------------------------------------------------------------------+
198
	//												GESTION DES FENÊTRES
199
	//+----------------------------------------------------------------------------------------------------------------+
60 jpm 200
 
61 jpm 201
	public void ouvrirAide() {
202
		AideFenetre aideFenetre = new AideFenetre();
203
		aideFenetre.show();
66 jpm 204
		// FIXME : apparament le fade In/Fade Out pose problème sur les navigateurs...
205
		//aideFenetre.el().fadeIn(FxConfig.NONE);
61 jpm 206
	}
207
 
208
	public void ouvrirParametres() {
66 jpm 209
		ParametreFenetre parametresFenetre = new ParametreFenetre();
210
		parametresFenetre.show();
61 jpm 211
	}
212
 
213
	public void ouvrirIdentification() {
358 jp_milcent 214
		fenetreIdentification = new IdentificationFenetre();
215
		fenetreIdentification.show();
61 jpm 216
	}
217
 
218
	public void ouvrirApplis(String id) {
219
		if (id.equals(ComposantId.MENU_CEL)) {
220
			Window.open(((Configuration) Registry.get(RegistreId.CONFIG)).getCelUrl(), "Carnet en ligne", "");
221
		} else if (id.equals(ComposantId.MENU_BEL)) {
134 jpm 222
			Window.open(((Configuration) Registry.get(RegistreId.CONFIG)).getCelUrl(), "Biblio en ligne", "");
61 jpm 223
		}
224
	}
225
 
156 jp_milcent 226
	//+----------------------------------------------------------------------------------------------------------------+
227
	//												GESTION de l'UTILISATEUR et de l'IDENTIFICATION
228
	//+----------------------------------------------------------------------------------------------------------------+
245 jp_milcent 229
	/**
230
	 * Retourne l'identifiant de l'utilisateur courrant de l'application.
231
	 */
156 jp_milcent 232
	public String getUtilisateurId() {
277 jp_milcent 233
		String id = null;
234
		Utilisateur utilisateurCourant = (Utilisateur) Registry.get(RegistreId.UTILISATEUR_COURANT);
235
		if (!utilisateurCourant.getId().equals("")) {
236
			id = utilisateurCourant.getId();
237
		}
238
		return id;
156 jp_milcent 239
	}
240
 
65 jpm 241
	public void connecterUtilisateur(String login, String mdp) {
277 jp_milcent 242
		modele.connecterUtilisateur(this, login, mdp);
64 jpm 243
	}
244
 
65 jpm 245
	public void deconnecterUtilisateur() {
277 jp_milcent 246
		modele.deconnecterUtilisateur(this);
64 jpm 247
	}
65 jpm 248
 
64 jpm 249
	public void mettreAJourEtatIdentification(Utilisateur utilisateur) {
156 jp_milcent 250
		// Mise à jour du registre
277 jp_milcent 251
		Registry.register(RegistreId.UTILISATEUR_COURANT, utilisateur);
156 jp_milcent 252
		// Création de l'information de mise à jour de l'utilisateur
253
		Information info = new Information("maj_utilisateur");
358 jp_milcent 254
 
255
		// Rafraichissement de la fenêtre d'Identification
256
		if (fenetreIdentification != null) {
257
			fenetreIdentification.rafraichir(info);
258
		}
156 jp_milcent 259
 
260
		// Rafraichissement du panneau Nord
261
		panneauNord.rafraichir(info);
262
 
263
		// Rafraichissement du panneau Centre
264
		if (contenuPanneauCentre != null) {
265
			contenuPanneauCentre.rafraichir(info);
266
		}
61 jpm 267
	}
66 jpm 268
 
156 jp_milcent 269
	//+----------------------------------------------------------------------------------------------------------------+
270
	//												GESTION DES PERSONNES
271
	//+----------------------------------------------------------------------------------------------------------------+
272
 
273
	public void clicListePersonne(Personne personne)	{
274
		((PersonneDetailPanneauVue) Registry.get(RegistreId.PANNEAU_PERSONNE_DETAIL)).rafraichir(personne);
275
 
69 jpm 276
	}
277
 
278 jp_milcent 278
	public void afficherListePersonnes(PersonneListe personnesACharger)	{
279
		if ( !(contenuPanneauCentre instanceof PersonneVue) ) {
280
			PersonneVue personneVue = new PersonneVue();
281
			contenuPanneauCentre = personneVue;
282
			panneauCentre.add(personneVue);
283
		}
284
		contenuPanneauCentre.rafraichir(personnesACharger);
285
		//contenuPanneauCentre.layout();
156 jp_milcent 286
	}
287
 
128 gduche 288
	public void clicAjouterPersonne()	{
332 gduche 289
 
290
		afficherPopinChargement();
291
 
277 jp_milcent 292
		panneauCentre.removeAll();
293
		FormPersonneVue formulairePersonneVue = new FormPersonneVue();
294
		contenuPanneauCentre = formulairePersonneVue;
295
		panneauCentre.add(formulairePersonneVue);
296
		panneauCentre.layout();
128 gduche 297
	}
298
 
285 gduche 299
	public void clicModifierPersonne(Personne personne)	{
300
		if (personne!=null)	{
301
			panneauCentre.removeAll();
302
			FormPersonneVue formulairePersonneVue = new FormPersonneVue();
303
			contenuPanneauCentre = formulairePersonneVue;
304
			panneauCentre.add(formulairePersonneVue);
349 gduche 305
 
306
			selectionnerPersonne(formulairePersonneVue, personne);
307
 
308
			panneauCentre.layout();
309
 
310
 
285 gduche 311
		}
312
	}
313
 
349 gduche 314
	public void selectionnerPersonne(Rafraichissable vue, Personne personne)	{
315
		modele.selectionnerPersonne(vue, personne.getId(), null, null);
316
	}
285 gduche 317
 
315 gduche 318
	public void clicSupprimerPersonne(final Rafraichissable vue,final List<Personne> personneSelection) {
245 jp_milcent 319
 
320
		String ids = "" ;
321
 
322
		if (personneSelection.size() == 0) {
323
			Info.display("Information", "Veuillez sélectionner une personne.");
324
		} else if(personneSelection.size() > 0) {
325
			String message = "Êtes vous sur de vouloir supprimer les personnes sélectionnées ?";
326
			if (personneSelection.size() == 1) {
327
				message = "Êtes vous sur de vouloir supprimer la personne sélectionnée ?";
328
			}
315 gduche 329
 
330
 
331
			final Listener listenerSuppression = new Listener<ComponentEvent>() {
332
 
327 jp_milcent 333
				public void handleEvent(ComponentEvent ce) {
334
					Dialog dialog = (Dialog) ce.component;
335
					Button btn = dialog.getButtonPressed();
336
 
337
					if (btn.getText().equals(dialog.yesText)) {
338
						String idStr = "" ;
347 gduche 339
						Iterator<Personne> itPersonne = personneSelection.iterator();
340
						while (itPersonne.hasNext()) {
341
							Personne personneCourante = itPersonne.next();
342
							idStr += personneCourante.getId();
389 gduche 343
							idStr +=",";
327 jp_milcent 344
						}
329 jp_milcent 345
						modele.supprimerPersonne(vue, idStr);
327 jp_milcent 346
					}
347
				}
348
			};
315 gduche 349
 
350
			MessageBox.confirm("Supprimer une personne", message, listenerSuppression);
245 jp_milcent 351
		} else {
352
			Info.display("Erreur", "Une erreur est survenue dans la méthode clicSupprimerPersonne() du Médiateur.");
353
		}
354
	}
277 jp_milcent 355
 
356
	public void selectionnerPersonneParNomComplet(Rafraichissable vue, String projetId, String nomComplet) {
357
		modele.selectionnerPersonne(vue, null, projetId, nomComplet);
358
	}
245 jp_milcent 359
 
389 gduche 360
	public void enregistrerPersonne(Rafraichissable vue, Personne personne){
361
			modele.enregistrerPersonne(vue, personne);
362
	}
363
 
156 jp_milcent 364
	//+----------------------------------------------------------------------------------------------------------------+
365
	//												GESTION DES VALEURS ET LISTES
366
	//+----------------------------------------------------------------------------------------------------------------+
367
 
91 jpm 368
	public void afficherListeValeurs(ValeurListe nouvelleDonnees) {
156 jp_milcent 369
		if (panneauCentre.getId().equals(ComposantId.PANNEAU_STRUCTURE_FORM)) {
91 jpm 370
			((FormStructureVue) panneauCentre.getItem(0)).rafraichir(nouvelleDonnees);
371
		} else {
372
			GWT.log("Aucun panneau trouvé pour afficher la liste de valeur", null);
373
		}
374
	}
375
 
156 jp_milcent 376
	//+----------------------------------------------------------------------------------------------------------------+
377
	//												GESTION DES PUBLICATIONS
378
	//+----------------------------------------------------------------------------------------------------------------+
379
 
107 aurelien 380
	public void afficherListePublication(PublicationListe nouvelleDonnees) {
381
		PublicationVue publicationVue = new PublicationVue() ;
228 aurelien 382
		panneauCentre.removeAll();
107 aurelien 383
		panneauCentre.add(publicationVue);
186 gduche 384
		contenuPanneauCentre = publicationVue;
107 aurelien 385
		publicationVue.rafraichir(nouvelleDonnees);
386
 
387
	}
388
 
389
	public void clicListePublication(Publication publication) {
379 jp_milcent 390
		panneauCentre.rafraichir(publication);
107 aurelien 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);
379 jp_milcent 404
		} else {
245 jp_milcent 405
			Publication pubAModifier = publicationListe.get(publicationListe.size() -1);
406
			panneauCentre.removeAll();
407
			FormPublicationVue formPublicationVue = new FormPublicationVue();
408
			panneauCentre.add(formPublicationVue);
409
			panneauCentre.setId(ComposantId.PANNEAU_FORM_PUBLICATION);
410
			panneauCentre.layout();
411
			formPublicationVue.rafraichir(pubAModifier);
412
		}
413
	}
414
 
315 gduche 415
	public void clicSupprimerPublication(final List<Publication> publicationListe) {
245 jp_milcent 416
		if(publicationListe.size() <= 0) {
315 gduche 417
			MessageBox.alert("Attention", "Vous devez sélectionner une publication", null);
379 jp_milcent 418
		} else {
245 jp_milcent 419
			String message = "" ;
420
			if(publicationListe.size() == 1) {
421
				message = "Voulez-vous vraiment supprimer cette publication ?";
422
			}
423
			else {
424
				message = "Voulez-vous vraiment supprimer ces publication ?";
425
			}
315 gduche 426
 
427
 
428
			final Listener listenerSuppression = new Listener<ComponentEvent>() {
429
				public void handleEvent(ComponentEvent ce) {
430
 
431
					Dialog dialog = (Dialog) ce.component;
432
				    Button btn = dialog.getButtonPressed();
433
 
379 jp_milcent 434
				    if (btn.getText().equals(dialog.yesText)) {
315 gduche 435
				    	modele.supprimerPublication(contenuPanneauCentre, getUtilisateurId(),publicationListe);
436
				    }
437
				}
438
			};
439
 
440
			MessageBox.confirm("Supprimer une publication", message, listenerSuppression);
245 jp_milcent 441
		}
442
 
443
	}
444
 
277 jp_milcent 445
	public void ajouterPublication(FormPublicationVue formPublicationVue, Publication publi) {
446
		modele.ajouterPublication(contenuPanneauCentre, getUtilisateurId(),publi);
245 jp_milcent 447
	}
448
 
449
	public void modifierPublication(FormPublicationVue formPublicationVue, Publication publi) {
277 jp_milcent 450
		modele.modifierPublication(contenuPanneauCentre, getUtilisateurId(),publi);
245 jp_milcent 451
	}
452
 
277 jp_milcent 453
	public void clicObtenirListeEditeurs(Rafraichissable vue) {
454
		modele.selectionnerStructure(vue, null, null);
245 jp_milcent 455
	}
456
 
277 jp_milcent 457
	public void clicObtenirListeAuteurs(Rafraichissable vue) {
458
		modele.selectionnerPersonne(vue, null, null, null);
245 jp_milcent 459
	}
460
 
156 jp_milcent 461
	//+----------------------------------------------------------------------------------------------------------------+
462
	//												GESTION DES STRUCTURES
463
	//+----------------------------------------------------------------------------------------------------------------+
464
 
379 jp_milcent 465
	public void clicListeStructure(Structure structure) {
466
		contenuPanneauCentre.rafraichir(structure);
467
		if (structure.getPersonnel() == null) {
468
			selectionnerStructureAPersonne(contenuPanneauCentre, structure.getId(), StructureAPersonne.ROLE_EQUIPE);
469
		} else {
470
			GWT.log("OK personnel déjà chargé", null);
471
		}
156 jp_milcent 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
373 jp_milcent 476
		StructureVue institutionVue = new StructureVue(this);
156 jp_milcent 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.");
379 jp_milcent 494
		} else if (structureSelection.size() > 1) {
265 jp_milcent 495
			Info.display("Information", "Veuillez sélectionner une seule structure à la fois.");
379 jp_milcent 496
		} else if (structureSelection.size() == 1) {
265 jp_milcent 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
	 * */
369 jp_milcent 651
	public void obtenirListeValeurEtRafraichir(Rafraichissable vue, String listeId)	{
652
		modele.obtenirListeValeurs(vue, ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId(listeId));
281 gduche 653
	}
288 gduche 654
 
369 jp_milcent 655
	public void obtenirValeurEtRafraichir(Rafraichissable vue, String listeId, String identifiantValeur)	{
656
		modele.obtenirValeur(vue, "abv", ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId(listeId), identifiantValeur);
301 gduche 657
	}
658
 
288 gduche 659
	public void obtenirListeRegionsEtRafraichir(Rafraichissable vue, String strListeId, String strPays)	{
660
		modele.obtenirListeRegion(vue, ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId(strListeId), strPays+".__");
661
	}
332 gduche 662
 
663
	/**
664
	 * 	Affiche la popin de chargement
665
	 */
666
	public void afficherPopinChargement()	{
667
		((PopupChargement) Registry.get(RegistreId.POPUP_CHARGEMENT)).center();
668
	}
669
 
670
 
671
	public void masquerPopinChargement()	{
672
		((PopupChargement) Registry.get(RegistreId.POPUP_CHARGEMENT)).hide();
673
	}
277 jp_milcent 674
}