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