Subversion Repositories eFlore/Applications.coel

Rev

Rev 358 | Rev 370 | 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() {
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
 
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);
128 gduche 181
		}
107 aurelien 182
		else {
327 jp_milcent 183
			GWT.log("Non implémenté! Menu id : "+codeMenuClique, null);
60 jpm 184
		}
185
		panneauCentre.layout();
186
	}
187
 
358 jp_milcent 188
	public void activerChargement(String message) {
189
		afficherPopinChargement();
369 jp_milcent 190
		panneauSud.showBusy(i18nC.chargement()+" "+message);
358 jp_milcent 191
	}
192
 
193
	public void desactiverChargement() {
194
		masquerPopinChargement();
195
		panneauSud.clear();
196
	}
197
 
156 jp_milcent 198
	//+----------------------------------------------------------------------------------------------------------------+
199
	//												GESTION DES FENÊTRES
200
	//+----------------------------------------------------------------------------------------------------------------+
60 jpm 201
 
61 jpm 202
	public void ouvrirAide() {
203
		AideFenetre aideFenetre = new AideFenetre();
204
		aideFenetre.show();
66 jpm 205
		// FIXME : apparament le fade In/Fade Out pose problème sur les navigateurs...
206
		//aideFenetre.el().fadeIn(FxConfig.NONE);
61 jpm 207
	}
208
 
209
	public void ouvrirParametres() {
66 jpm 210
		ParametreFenetre parametresFenetre = new ParametreFenetre();
211
		parametresFenetre.show();
61 jpm 212
	}
213
 
214
	public void ouvrirIdentification() {
358 jp_milcent 215
		fenetreIdentification = new IdentificationFenetre();
216
		fenetreIdentification.show();
61 jpm 217
	}
218
 
219
	public void ouvrirApplis(String id) {
220
		if (id.equals(ComposantId.MENU_CEL)) {
221
			Window.open(((Configuration) Registry.get(RegistreId.CONFIG)).getCelUrl(), "Carnet en ligne", "");
222
		} else if (id.equals(ComposantId.MENU_BEL)) {
134 jpm 223
			Window.open(((Configuration) Registry.get(RegistreId.CONFIG)).getCelUrl(), "Biblio en ligne", "");
61 jpm 224
		}
225
	}
226
 
156 jp_milcent 227
	//+----------------------------------------------------------------------------------------------------------------+
228
	//												GESTION de l'UTILISATEUR et de l'IDENTIFICATION
229
	//+----------------------------------------------------------------------------------------------------------------+
245 jp_milcent 230
	/**
231
	 * Retourne l'identifiant de l'utilisateur courrant de l'application.
232
	 */
156 jp_milcent 233
	public String getUtilisateurId() {
277 jp_milcent 234
		String id = null;
235
		Utilisateur utilisateurCourant = (Utilisateur) Registry.get(RegistreId.UTILISATEUR_COURANT);
236
		if (!utilisateurCourant.getId().equals("")) {
237
			id = utilisateurCourant.getId();
238
		}
239
		return id;
156 jp_milcent 240
	}
241
 
65 jpm 242
	public void connecterUtilisateur(String login, String mdp) {
277 jp_milcent 243
		modele.connecterUtilisateur(this, login, mdp);
64 jpm 244
	}
245
 
65 jpm 246
	public void deconnecterUtilisateur() {
277 jp_milcent 247
		modele.deconnecterUtilisateur(this);
64 jpm 248
	}
65 jpm 249
 
64 jpm 250
	public void mettreAJourEtatIdentification(Utilisateur utilisateur) {
156 jp_milcent 251
		// Mise à jour du registre
277 jp_milcent 252
		Registry.register(RegistreId.UTILISATEUR_COURANT, utilisateur);
156 jp_milcent 253
		// Création de l'information de mise à jour de l'utilisateur
254
		Information info = new Information("maj_utilisateur");
358 jp_milcent 255
 
256
		// Rafraichissement de la fenêtre d'Identification
257
		if (fenetreIdentification != null) {
258
			fenetreIdentification.rafraichir(info);
259
		}
156 jp_milcent 260
 
261
		// Rafraichissement du panneau Nord
262
		panneauNord.rafraichir(info);
263
 
264
		// Rafraichissement du panneau Centre
265
		if (contenuPanneauCentre != null) {
266
			contenuPanneauCentre.rafraichir(info);
267
		}
61 jpm 268
	}
66 jpm 269
 
156 jp_milcent 270
	//+----------------------------------------------------------------------------------------------------------------+
271
	//												GESTION DES PERSONNES
272
	//+----------------------------------------------------------------------------------------------------------------+
273
 
274
	public void clicListePersonne(Personne personne)	{
275
		((PersonneDetailPanneauVue) Registry.get(RegistreId.PANNEAU_PERSONNE_DETAIL)).rafraichir(personne);
276
 
69 jpm 277
	}
278
 
278 jp_milcent 279
	public void afficherListePersonnes(PersonneListe personnesACharger)	{
280
		if ( !(contenuPanneauCentre instanceof PersonneVue) ) {
281
			PersonneVue personneVue = new PersonneVue();
282
			contenuPanneauCentre = personneVue;
283
			panneauCentre.add(personneVue);
284
		}
285
		contenuPanneauCentre.rafraichir(personnesACharger);
286
		//contenuPanneauCentre.layout();
156 jp_milcent 287
	}
288
 
128 gduche 289
	public void clicAjouterPersonne()	{
332 gduche 290
 
291
		afficherPopinChargement();
292
 
277 jp_milcent 293
		panneauCentre.removeAll();
294
		FormPersonneVue formulairePersonneVue = new FormPersonneVue();
295
		contenuPanneauCentre = formulairePersonneVue;
296
		panneauCentre.add(formulairePersonneVue);
297
		panneauCentre.layout();
128 gduche 298
	}
299
 
285 gduche 300
	public void clicModifierPersonne(Personne personne)	{
301
		if (personne!=null)	{
302
			panneauCentre.removeAll();
303
			FormPersonneVue formulairePersonneVue = new FormPersonneVue();
304
			contenuPanneauCentre = formulairePersonneVue;
305
			panneauCentre.add(formulairePersonneVue);
349 gduche 306
 
307
 
308
			selectionnerPersonne(formulairePersonneVue, personne);
309
 
310
			panneauCentre.layout();
311
 
312
 
285 gduche 313
		}
314
	}
315
 
349 gduche 316
	public void selectionnerPersonne(Rafraichissable vue, Personne personne)	{
317
		modele.selectionnerPersonne(vue, personne.getId(), null, null);
318
	}
285 gduche 319
 
315 gduche 320
	public void clicSupprimerPersonne(final Rafraichissable vue,final List<Personne> personneSelection) {
245 jp_milcent 321
 
322
		String ids = "" ;
323
 
324
		if (personneSelection.size() == 0) {
325
			Info.display("Information", "Veuillez sélectionner une personne.");
326
		} else if(personneSelection.size() > 0) {
327
			String message = "Êtes vous sur de vouloir supprimer les personnes sélectionnées ?";
328
			if (personneSelection.size() == 1) {
329
				message = "Êtes vous sur de vouloir supprimer la personne sélectionnée ?";
330
			}
315 gduche 331
 
332
 
333
			final Listener listenerSuppression = new Listener<ComponentEvent>() {
334
 
327 jp_milcent 335
				public void handleEvent(ComponentEvent ce) {
336
					Dialog dialog = (Dialog) ce.component;
337
					Button btn = dialog.getButtonPressed();
338
 
339
					if (btn.getText().equals(dialog.yesText)) {
340
						String idStr = "" ;
347 gduche 341
						Iterator<Personne> itPersonne = personneSelection.iterator();
342
						while (itPersonne.hasNext()) {
343
							Personne personneCourante = itPersonne.next();
344
							idStr += personneCourante.getId();
345
 
346
							if (itPersonne.hasNext())	{
347
								idStr +=", ";
348
							}
327 jp_milcent 349
						}
329 jp_milcent 350
						modele.supprimerPersonne(vue, idStr);
327 jp_milcent 351
					}
352
				}
353
			};
315 gduche 354
 
355
			MessageBox.confirm("Supprimer une personne", message, listenerSuppression);
356
 
357
 
245 jp_milcent 358
		} else {
359
			Info.display("Erreur", "Une erreur est survenue dans la méthode clicSupprimerPersonne() du Médiateur.");
360
		}
361
	}
277 jp_milcent 362
 
363
	public void selectionnerPersonneParNomComplet(Rafraichissable vue, String projetId, String nomComplet) {
364
		modele.selectionnerPersonne(vue, null, projetId, nomComplet);
365
	}
245 jp_milcent 366
 
156 jp_milcent 367
	//+----------------------------------------------------------------------------------------------------------------+
368
	//												GESTION DES VALEURS ET LISTES
369
	//+----------------------------------------------------------------------------------------------------------------+
370
 
91 jpm 371
	public void afficherListeValeurs(ValeurListe nouvelleDonnees) {
156 jp_milcent 372
		if (panneauCentre.getId().equals(ComposantId.PANNEAU_STRUCTURE_FORM)) {
91 jpm 373
			((FormStructureVue) panneauCentre.getItem(0)).rafraichir(nouvelleDonnees);
374
		} else {
375
			GWT.log("Aucun panneau trouvé pour afficher la liste de valeur", null);
376
		}
377
	}
378
 
156 jp_milcent 379
	//+----------------------------------------------------------------------------------------------------------------+
380
	//												GESTION DES PUBLICATIONS
381
	//+----------------------------------------------------------------------------------------------------------------+
382
 
107 aurelien 383
	public void afficherListePublication(PublicationListe nouvelleDonnees) {
384
		PublicationVue publicationVue = new PublicationVue() ;
228 aurelien 385
		panneauCentre.removeAll();
107 aurelien 386
		panneauCentre.add(publicationVue);
186 gduche 387
		contenuPanneauCentre = publicationVue;
107 aurelien 388
		publicationVue.rafraichir(nouvelleDonnees);
389
 
390
	}
391
 
392
	public void clicListePublication(Publication publication) {
393
 
394
		((PublicationDetailPanneauVue) Registry.get(RegistreId.PANNEAU_PUBLICATION_DETAIL)).rafraichir(publication);
395
	}
396
 
397
	public void clicAjouterPublication() {
223 aurelien 398
		panneauCentre.removeAll();
399
		FormPublicationVue formPublicationVue = new FormPublicationVue();
400
		panneauCentre.add(formPublicationVue);
401
		panneauCentre.setId(ComposantId.PANNEAU_FORM_PUBLICATION);
402
		panneauCentre.layout();
107 aurelien 403
	}
156 jp_milcent 404
 
245 jp_milcent 405
	public void clicModifierPublication(List<Publication> publicationListe) {
406
		if(publicationListe.size() <= 0) {
315 gduche 407
			MessageBox.alert("Attention", "Vous devez sélectionner une publication", null);
245 jp_milcent 408
		}
409
		else {
410
			Publication pubAModifier = publicationListe.get(publicationListe.size() -1);
411
			panneauCentre.removeAll();
412
			FormPublicationVue formPublicationVue = new FormPublicationVue();
413
			panneauCentre.add(formPublicationVue);
414
			panneauCentre.setId(ComposantId.PANNEAU_FORM_PUBLICATION);
415
			panneauCentre.layout();
416
			formPublicationVue.rafraichir(pubAModifier);
417
		}
418
 
419
	}
420
 
421
 
315 gduche 422
	public void clicSupprimerPublication(final List<Publication> publicationListe) {
245 jp_milcent 423
		if(publicationListe.size() <= 0) {
315 gduche 424
			MessageBox.alert("Attention", "Vous devez sélectionner une publication", null);
245 jp_milcent 425
		}
426
		else {
427
			String message = "" ;
428
			if(publicationListe.size() == 1) {
429
				message = "Voulez-vous vraiment supprimer cette publication ?";
430
			}
431
			else {
432
				message = "Voulez-vous vraiment supprimer ces publication ?";
433
			}
315 gduche 434
 
435
 
436
			final Listener listenerSuppression = new Listener<ComponentEvent>() {
437
				public void handleEvent(ComponentEvent ce) {
438
 
439
					Dialog dialog = (Dialog) ce.component;
440
				    Button btn = dialog.getButtonPressed();
441
 
442
				    if (btn.getText().equals(dialog.yesText))	{
443
				    	modele.supprimerPublication(contenuPanneauCentre, getUtilisateurId(),publicationListe);
444
				    }
445
				}
446
			};
447
 
448
			MessageBox.confirm("Supprimer une publication", message, listenerSuppression);
245 jp_milcent 449
		}
450
 
451
	}
452
 
277 jp_milcent 453
	public void ajouterPublication(FormPublicationVue formPublicationVue, Publication publi) {
454
		modele.ajouterPublication(contenuPanneauCentre, getUtilisateurId(),publi);
245 jp_milcent 455
	}
456
 
457
	public void modifierPublication(FormPublicationVue formPublicationVue, Publication publi) {
277 jp_milcent 458
		modele.modifierPublication(contenuPanneauCentre, getUtilisateurId(),publi);
245 jp_milcent 459
	}
460
 
277 jp_milcent 461
	public void clicObtenirListeEditeurs(Rafraichissable vue) {
462
		modele.selectionnerStructure(vue, null, null);
245 jp_milcent 463
 
464
	}
465
 
277 jp_milcent 466
	public void clicObtenirListeAuteurs(Rafraichissable vue) {
467
		modele.selectionnerPersonne(vue, null, null, null);
245 jp_milcent 468
	}
469
 
156 jp_milcent 470
	//+----------------------------------------------------------------------------------------------------------------+
471
	//												GESTION DES STRUCTURES
472
	//+----------------------------------------------------------------------------------------------------------------+
473
 
474
	public void clicListeInstitution(Structure institution) {
475
		((StructureDetailPanneauVue) Registry.get(RegistreId.PANNEAU_INSTITUTION_DETAIL)).rafraichir(institution);
476
	}
477
 
278 jp_milcent 478
	public void afficherListeStructures(StructureListe structuresACharger) {
156 jp_milcent 479
		// TODO : créer dès l'initialisation de l'application InsitutionVue et la cacher
480
		StructureVue institutionVue = new StructureVue();
481
		panneauCentre.add(institutionVue);
482
		panneauCentre.setId(ComposantId.PANNEAU_STRUCTURE_LISTE);
483
		contenuPanneauCentre = institutionVue;
278 jp_milcent 484
		institutionVue.rafraichir(structuresACharger);
156 jp_milcent 485
	}
486
 
487
	public void clicAjouterStructure() {
488
		panneauCentre.removeAll();
306 jp_milcent 489
		FormStructureVue formStructureVue = new FormStructureVue(FormStructureVue.MODE_AJOUTER);
156 jp_milcent 490
		panneauCentre.add(formStructureVue);
491
		panneauCentre.setId(ComposantId.PANNEAU_STRUCTURE_FORM);
492
		panneauCentre.layout();
493
	}
494
 
265 jp_milcent 495
	public void clicModifierStructure(List<Structure> structureSelection) {
496
		if (structureSelection.size() == 0) {
497
			Info.display("Information", "Veuillez sélectionner une structure.");
498
		} else if(structureSelection.size() > 1) {
499
			Info.display("Information", "Veuillez sélectionner une seule structure à la fois.");
500
		} else if(structureSelection.size() == 1) {
501
			panneauCentre.removeAll();
306 jp_milcent 502
			FormStructureVue formStructureVue = new FormStructureVue(FormStructureVue.MODE_MODIFIER);
265 jp_milcent 503
			panneauCentre.add(formStructureVue);
504
			panneauCentre.setId(ComposantId.PANNEAU_STRUCTURE_FORM);
505
 
506
			selectionnerStructure(formStructureVue, structureSelection.get(0).getId());
507
			selectionnerStructureAPersonne(formStructureVue, structureSelection.get(0).getId(), StructureAPersonne.ROLE_EQUIPE);
508
 
509
			panneauCentre.layout();
510
		} else {
511
			Info.display("Erreur", "Une erreur est survenue dans la méthode clicModifierStructure() du Médiateur.");
512
		}
513
 
119 jpm 514
	}
265 jp_milcent 515
 
315 gduche 516
	public void clicSupprimerStructure(final Rafraichissable vue, final List<Structure> structureSelection) {
156 jp_milcent 517
		if (structureSelection.size() == 0) {
518
			Info.display("Information", "Veuillez sélectionner une structure.");
519
		} else if(structureSelection.size() > 0) {
520
			String message = "Êtes vous sur de vouloir supprimer les structures sélectionnées ?";
521
			if (structureSelection.size() == 1) {
522
				message = "Êtes vous sur de vouloir supprimer la structure sélectionnée ?";
523
			}
315 gduche 524
 
525
 
526
			final Listener listenerSuppression = new Listener<ComponentEvent>() {
527
 
528
			       public void handleEvent(ComponentEvent ce) {
529
 
530
			    	   Dialog dialog = (Dialog) ce.component;
531
			    	   Button btn = dialog.getButtonPressed();
532
 
533
			    	   if (btn.getText().equals(dialog.yesText))	{
534
			    		   	String idStr = "" ;
535
							for(int i = 0 ; i < structureSelection.size() ; i++) {
536
								idStr += structureSelection.get(i).getId()+"," ;
537
							}
538
							modele.supprimerStructure(vue, getUtilisateurId(), idStr);
539
					       }
540
				      }
541
				     };
542
 
543
			MessageBox.confirm("Supprimer une structure", message, listenerSuppression);
544
 
134 jpm 545
		} else {
156 jp_milcent 546
			Info.display("Erreur", "Une erreur est survenue dans la méthode clicSupprimerStructure() du Médiateur.");
134 jpm 547
		}
548
	}
142 gduche 549
 
265 jp_milcent 550
	public void selectionnerStructure(Rafraichissable vue, String structureId) {
551
		GWT.log("Structure : "+structureId, null);
277 jp_milcent 552
		modele.selectionnerStructure(vue, null, structureId);
156 jp_milcent 553
	}
554
 
265 jp_milcent 555
	/**
556
	 * TODO : afficher un message du type "Structure ajoutée".
557
	 * Lance la creation d'une structure
558
	 * @param les données de la structure saisie
559
	 */
277 jp_milcent 560
	public void ajouterStructure(Rafraichissable vue, Structure structure, StructureConservation conservation, StructureValorisation valorisation) {
561
		modele.ajouterStructure(vue, getUtilisateurId(), structure, conservation, valorisation);
265 jp_milcent 562
	}
563
 
306 jp_milcent 564
	public void modifierStructure(Rafraichissable vue, String structureId, Structure structure, StructureConservation conservation, StructureValorisation valorisation) {
565
		modele.modifierStructure(vue, getUtilisateurId(), structureId, structure, conservation, valorisation);
156 jp_milcent 566
	}
231 jp_milcent 567
 
265 jp_milcent 568
	//+----------------------------------------------------------------------------------------------------------------+
569
	// GESTION de la relation STRUCTURE A PERSONNE
231 jp_milcent 570
	public void selectionnerStructureAPersonne(Rafraichissable vue, String structureId, String roleId) {
265 jp_milcent 571
		GWT.log("Structure : "+structureId, null);
572
		modele.selectionnerStructureAPersonne(vue, getUtilisateurId(), null, structureId, roleId);
231 jp_milcent 573
	}
156 jp_milcent 574
 
231 jp_milcent 575
	public void modifierStructureAPersonne(Rafraichissable vue, StructureAPersonneListe personnelModifie) {
576
		if (personnelModifie != null && personnelModifie.size() > 0) {
577
			GWT.log("Mediateur :modif", null);
578
			for (Iterator<String> it = personnelModifie.keySet().iterator(); it.hasNext();) {
579
				modele.modifierStructureAPersonne(vue, getUtilisateurId(), (StructureAPersonne) personnelModifie.get(it.next()));
580
			}
581
		}
582
	}
583
 
584
	public void ajouterStructureAPersonne(Rafraichissable vue, String structureId, StructureAPersonneListe personnelAjoute) {
585
		if (personnelAjoute != null && personnelAjoute.size() > 0) {
586
			for (Iterator<String> it = personnelAjoute.keySet().iterator(); it.hasNext();) {
587
				modele.ajouterStructureAPersonne(vue, getUtilisateurId(), structureId, (StructureAPersonne) personnelAjoute.get(it.next()));
588
			}
589
		}
590
	}
591
 
592
	public void supprimerStructureAPersonne(Rafraichissable vue, StructureAPersonneListe personnelSupprime) {
593
		if (personnelSupprime != null && personnelSupprime.size() > 0) {
594
			String idStrAPer = "" ;
595
			for (Iterator<String> it = personnelSupprime.keySet().iterator(); it.hasNext();) {
596
					idStrAPer += personnelSupprime.get(it.next()).getId()+"," ;
597
			}
598
			modele.supprimerStructureAPersonne(vue, getUtilisateurId(), idStrAPer);
599
		}
600
	}
601
 
156 jp_milcent 602
	//+----------------------------------------------------------------------------------------------------------------+
603
	//												GESTION des PROJETS
604
	//+----------------------------------------------------------------------------------------------------------------+
605
 
245 jp_milcent 606
	/**
607
	 * Retourne l'identifiant du projet courrant de l'application.
608
	 */
609
	public String getProjetId() {
277 jp_milcent 610
		String id = null;
611
		Projet projetCourant = (Projet) Registry.get(RegistreId.PROJET_COURANT);
279 jp_milcent 612
		if (projetCourant != null && !projetCourant.getId().equals("")) {
277 jp_milcent 613
			id = projetCourant.getId();
614
		}
615
		return id;
245 jp_milcent 616
	}
617
 
142 gduche 618
	//Greg : ajout d'un écouteur pour le changement liste projet
277 jp_milcent 619
	public void selectionnerProjets(Rafraichissable vue)	{
620
		modele.selectionnerProjets(vue);
142 gduche 621
	}
622
 
268 jp_milcent 623
	public void afficherListeProjets(ProjetListe projets)	{
277 jp_milcent 624
		panneauOuest.rafraichir(projets);
142 gduche 625
	}
159 gduche 626
 
277 jp_milcent 627
	public void selectionnerProjetCourant(Projet projetSelectionne) {
628
		Registry.register(RegistreId.PROJET_COURANT, projetSelectionne);
186 gduche 629
		if (contenuPanneauCentre instanceof PersonneVue)	{
277 jp_milcent 630
			modele.selectionnerPersonne(contenuPanneauCentre, null, getProjetId(), null);
186 gduche 631
			//FIXME Le rafraichissement du panneau ne se fait pas!
277 jp_milcent 632
		} else if (contenuPanneauCentre instanceof StructureVue)	{
633
			modele.obtenirListeStructures(contenuPanneauCentre, getProjetId());
186 gduche 634
		}
159 gduche 635
	}
237 aurelien 636
 
277 jp_milcent 637
	//+----------------------------------------------------------------------------------------------------------------+
638
	//	RAFRAICHISSEMENT
639
	//+----------------------------------------------------------------------------------------------------------------+
640
 
641
	public void rafraichir(Object nouvelleDonnees) {
642
		if (nouvelleDonnees instanceof Utilisateur) {
643
			mettreAJourEtatIdentification((Utilisateur) nouvelleDonnees);
278 jp_milcent 644
		} else {
645
			GWT.log("Pas de correspondance dans la méthode rafraichir() de la classe "+this.getClass(), null);
277 jp_milcent 646
		}
647
	}
281 gduche 648
 
649
	/**
650
	 * Récupère la liste et rafraichit la vue donnée
651
	 *
652
	 * @param la vue à rafraichir
653
	 * @param l'id de la liste à récupérer
654
	 * */
369 jp_milcent 655
	public void obtenirListeValeurEtRafraichir(Rafraichissable vue, String listeId)	{
656
		modele.obtenirListeValeurs(vue, ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId(listeId));
281 gduche 657
	}
288 gduche 658
 
369 jp_milcent 659
	public void obtenirValeurEtRafraichir(Rafraichissable vue, String listeId, String identifiantValeur)	{
660
		modele.obtenirValeur(vue, "abv", ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId(listeId), identifiantValeur);
301 gduche 661
	}
662
 
288 gduche 663
	public void obtenirListeRegionsEtRafraichir(Rafraichissable vue, String strListeId, String strPays)	{
664
		modele.obtenirListeRegion(vue, ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId(strListeId), strPays+".__");
665
	}
332 gduche 666
 
667
	/**
668
	 * 	Affiche la popin de chargement
669
	 */
670
	public void afficherPopinChargement()	{
671
		((PopupChargement) Registry.get(RegistreId.POPUP_CHARGEMENT)).center();
672
	}
673
 
674
 
675
	public void masquerPopinChargement()	{
676
		((PopupChargement) Registry.get(RegistreId.POPUP_CHARGEMENT)).hide();
677
	}
277 jp_milcent 678
}