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;
|
466 |
gduche |
10 |
import org.tela_botanica.client.i18n.ErrorMessages;
|
119 |
jpm |
11 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
447 |
jp_milcent |
12 |
import org.tela_botanica.client.modeles.Collection;
|
453 |
jp_milcent |
13 |
import org.tela_botanica.client.modeles.CollectionListe;
|
61 |
jpm |
14 |
import org.tela_botanica.client.modeles.Configuration;
|
156 |
jp_milcent |
15 |
import org.tela_botanica.client.modeles.Information;
|
327 |
jp_milcent |
16 |
import org.tela_botanica.client.modeles.MenuApplicationId;
|
142 |
gduche |
17 |
import org.tela_botanica.client.modeles.Personne;
|
128 |
gduche |
18 |
import org.tela_botanica.client.modeles.PersonneListe;
|
245 |
jp_milcent |
19 |
import org.tela_botanica.client.modeles.Projet;
|
268 |
jp_milcent |
20 |
import org.tela_botanica.client.modeles.ProjetListe;
|
107 |
aurelien |
21 |
import org.tela_botanica.client.modeles.Publication;
|
|
|
22 |
import org.tela_botanica.client.modeles.PublicationListe;
|
60 |
jpm |
23 |
import org.tela_botanica.client.modeles.Structure;
|
209 |
jp_milcent |
24 |
import org.tela_botanica.client.modeles.StructureAPersonne;
|
231 |
jp_milcent |
25 |
import org.tela_botanica.client.modeles.StructureAPersonneListe;
|
188 |
jp_milcent |
26 |
import org.tela_botanica.client.modeles.StructureConservation;
|
69 |
jpm |
27 |
import org.tela_botanica.client.modeles.StructureListe;
|
195 |
jp_milcent |
28 |
import org.tela_botanica.client.modeles.StructureValorisation;
|
61 |
jpm |
29 |
import org.tela_botanica.client.modeles.Utilisateur;
|
91 |
jpm |
30 |
import org.tela_botanica.client.modeles.ValeurListe;
|
641 |
jp_milcent |
31 |
import org.tela_botanica.client.vues.CollectionForm;
|
447 |
jp_milcent |
32 |
import org.tela_botanica.client.vues.CollectionListeVue;
|
453 |
jp_milcent |
33 |
import org.tela_botanica.client.vues.CollectionVue;
|
444 |
jp_milcent |
34 |
import org.tela_botanica.client.vues.ContenuVue;
|
|
|
35 |
import org.tela_botanica.client.vues.EnteteVue;
|
641 |
jp_milcent |
36 |
import org.tela_botanica.client.vues.Formulaire;
|
438 |
gduche |
37 |
import org.tela_botanica.client.vues.PersonneForm;
|
444 |
jp_milcent |
38 |
import org.tela_botanica.client.vues.PublicationForm;
|
|
|
39 |
import org.tela_botanica.client.vues.StructureForm;
|
128 |
gduche |
40 |
import org.tela_botanica.client.vues.PersonneVue;
|
332 |
gduche |
41 |
import org.tela_botanica.client.vues.PopupChargement;
|
107 |
aurelien |
42 |
import org.tela_botanica.client.vues.PublicationVue;
|
443 |
jp_milcent |
43 |
import org.tela_botanica.client.vues.StatutVue;
|
60 |
jpm |
44 |
import org.tela_botanica.client.vues.StructureVue;
|
444 |
jp_milcent |
45 |
import org.tela_botanica.client.vues.MenuVue;
|
467 |
jp_milcent |
46 |
|
60 |
jpm |
47 |
import com.extjs.gxt.ui.client.Registry;
|
|
|
48 |
import com.extjs.gxt.ui.client.Style.LayoutRegion;
|
315 |
gduche |
49 |
import com.extjs.gxt.ui.client.event.Listener;
|
502 |
gduche |
50 |
import com.extjs.gxt.ui.client.event.MessageBoxEvent;
|
60 |
jpm |
51 |
import com.extjs.gxt.ui.client.util.Margins;
|
646 |
jp_milcent |
52 |
import com.extjs.gxt.ui.client.widget.Component;
|
315 |
gduche |
53 |
import com.extjs.gxt.ui.client.widget.Dialog;
|
156 |
jp_milcent |
54 |
import com.extjs.gxt.ui.client.widget.Info;
|
315 |
gduche |
55 |
import com.extjs.gxt.ui.client.widget.MessageBox;
|
60 |
jpm |
56 |
import com.extjs.gxt.ui.client.widget.Viewport;
|
315 |
gduche |
57 |
import com.extjs.gxt.ui.client.widget.button.Button;
|
60 |
jpm |
58 |
import com.extjs.gxt.ui.client.widget.layout.BorderLayout;
|
|
|
59 |
import com.extjs.gxt.ui.client.widget.layout.BorderLayoutData;
|
91 |
jpm |
60 |
import com.google.gwt.core.client.GWT;
|
599 |
gduche |
61 |
import com.google.gwt.i18n.client.Dictionary;
|
60 |
jpm |
62 |
import com.google.gwt.user.client.Window;
|
|
|
63 |
import com.google.gwt.user.client.ui.RootPanel;
|
|
|
64 |
|
277 |
jp_milcent |
65 |
public class Mediateur implements Rafraichissable {
|
60 |
jpm |
66 |
|
358 |
jp_milcent |
67 |
private Viewport viewport;
|
119 |
jpm |
68 |
private Modele modele = null;
|
582 |
jp_milcent |
69 |
public static final Constantes i18nC = getI18nConstante();
|
|
|
70 |
public static final ErrorMessages i18nM = getI18nMessage();
|
119 |
jpm |
71 |
|
444 |
jp_milcent |
72 |
private EnteteVue panneauNord = null;
|
|
|
73 |
private MenuVue panneauOuest = null;
|
|
|
74 |
private ContenuVue panneauCentre = null;
|
443 |
jp_milcent |
75 |
private StatutVue panneauSud = null;
|
60 |
jpm |
76 |
|
358 |
jp_milcent |
77 |
private IdentificationFenetre fenetreIdentification = null;
|
|
|
78 |
|
60 |
jpm |
79 |
public Mediateur() {
|
|
|
80 |
// Enregistrement du Médiateur dans le Registre
|
|
|
81 |
Registry.register(RegistreId.MEDIATEUR, this);
|
765 |
jpm |
82 |
|
|
|
83 |
//Initialisation du Registre
|
|
|
84 |
initialiserRegistre();
|
466 |
gduche |
85 |
|
60 |
jpm |
86 |
// Création du Modèle qui s'enregistre lui même dans le Registre
|
119 |
jpm |
87 |
modele = new Modele();
|
535 |
jp_milcent |
88 |
|
60 |
jpm |
89 |
// Création du Viewport qui contient la disposition globale de l'application
|
|
|
90 |
viewport = new Viewport();
|
|
|
91 |
viewport.setLayout(new BorderLayout());
|
552 |
jp_milcent |
92 |
|
60 |
jpm |
93 |
// Création des différents panneaux
|
|
|
94 |
creerPanneauNord();
|
|
|
95 |
creerPanneauOuest();
|
|
|
96 |
creerPanneauCentral();
|
358 |
jp_milcent |
97 |
creerPanneauSud();
|
535 |
jp_milcent |
98 |
|
|
|
99 |
// Connection de l'utilisateur
|
|
|
100 |
connecterUtilisateur(null, null);
|
|
|
101 |
|
60 |
jpm |
102 |
// Retour à GWT du Viewport une fois constuit
|
|
|
103 |
RootPanel.get().add(viewport);
|
|
|
104 |
}
|
|
|
105 |
|
156 |
jp_milcent |
106 |
//+----------------------------------------------------------------------------------------------------------------+
|
535 |
jp_milcent |
107 |
// GESTION de l'I18N et du REGISTRE
|
|
|
108 |
//+----------------------------------------------------------------------------------------------------------------+
|
582 |
jp_milcent |
109 |
protected static Constantes getI18nConstante() {
|
535 |
jp_milcent |
110 |
return GWT.create(Constantes.class);
|
|
|
111 |
}
|
|
|
112 |
|
582 |
jp_milcent |
113 |
protected static ErrorMessages getI18nMessage() {
|
535 |
jp_milcent |
114 |
return GWT.create(ErrorMessages.class);
|
|
|
115 |
}
|
|
|
116 |
|
|
|
117 |
protected void initialiserRegistre() {
|
|
|
118 |
Registry.register(RegistreId.APPLI_NOM, i18nC.appliNom());
|
|
|
119 |
Registry.register(RegistreId.APPLI_CODE, i18nC.appliCode());
|
|
|
120 |
Registry.register(RegistreId.APPLI_VERSION, i18nC.appliVersionNumero());
|
|
|
121 |
Registry.register(RegistreId.APPLI_REVISION, "$Revision: 501 $");
|
|
|
122 |
|
|
|
123 |
Registry.register(RegistreId.CONFIG, new Configuration());
|
537 |
jp_milcent |
124 |
Registry.register(RegistreId.POPUP_CHARGEMENT, new PopupChargement(this));
|
766 |
jpm |
125 |
Registry.register(RegistreId.UTILISATEUR_COURANT, new Utilisateur());
|
535 |
jp_milcent |
126 |
Registry.register(RegistreId.PROJET_COURANT, new Projet());
|
|
|
127 |
}
|
|
|
128 |
|
|
|
129 |
//+----------------------------------------------------------------------------------------------------------------+
|
156 |
jp_milcent |
130 |
// GESTION des PANNEAUX PRINCIPAUX
|
|
|
131 |
//+----------------------------------------------------------------------------------------------------------------+
|
119 |
jpm |
132 |
|
60 |
jpm |
133 |
private void creerPanneauNord() {
|
444 |
jp_milcent |
134 |
panneauNord = new EnteteVue(this);
|
60 |
jpm |
135 |
|
|
|
136 |
BorderLayoutData regionNord = new BorderLayoutData(LayoutRegion.NORTH, 100);
|
|
|
137 |
regionNord.setCollapsible(true);
|
|
|
138 |
regionNord.setFloatable(true);
|
|
|
139 |
regionNord.setSplit(false);
|
|
|
140 |
regionNord.setMargins(new Margins(5, 5, 0, 5));
|
|
|
141 |
|
|
|
142 |
viewport.add(panneauNord, regionNord);
|
|
|
143 |
}
|
|
|
144 |
|
|
|
145 |
private void creerPanneauOuest() {
|
444 |
jp_milcent |
146 |
panneauOuest = new MenuVue(this);
|
60 |
jpm |
147 |
|
|
|
148 |
BorderLayoutData regionOuest = new BorderLayoutData(LayoutRegion.WEST, 200);
|
|
|
149 |
regionOuest.setSplit(true);
|
|
|
150 |
regionOuest.setCollapsible(true);
|
|
|
151 |
regionOuest.setMargins(new Margins(5));
|
|
|
152 |
|
|
|
153 |
viewport.add(panneauOuest, regionOuest);
|
|
|
154 |
}
|
|
|
155 |
|
|
|
156 |
private void creerPanneauCentral() {
|
444 |
jp_milcent |
157 |
panneauCentre = new ContenuVue(this);
|
60 |
jpm |
158 |
|
|
|
159 |
BorderLayoutData regionCentre = new BorderLayoutData(LayoutRegion.CENTER);
|
|
|
160 |
regionCentre.setMargins(new Margins(5, 5, 5, 0));
|
|
|
161 |
|
|
|
162 |
viewport.add(panneauCentre, regionCentre);
|
|
|
163 |
}
|
358 |
jp_milcent |
164 |
|
|
|
165 |
private void creerPanneauSud() {
|
443 |
jp_milcent |
166 |
panneauSud = new StatutVue();
|
358 |
jp_milcent |
167 |
|
369 |
jp_milcent |
168 |
BorderLayoutData regionSud = new BorderLayoutData(LayoutRegion.SOUTH, 20);
|
358 |
jp_milcent |
169 |
regionSud.setCollapsible(true);
|
|
|
170 |
regionSud.setFloatable(true);
|
|
|
171 |
regionSud.setSplit(false);
|
|
|
172 |
regionSud.setMargins(new Margins(0));
|
|
|
173 |
|
|
|
174 |
viewport.add(panneauSud, regionSud);
|
|
|
175 |
}
|
60 |
jpm |
176 |
|
369 |
jp_milcent |
177 |
public void actualiserPanneauCentral() {
|
|
|
178 |
panneauCentre.layout();
|
|
|
179 |
}
|
|
|
180 |
|
156 |
jp_milcent |
181 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
182 |
// GESTION du MENU
|
|
|
183 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
184 |
|
327 |
jp_milcent |
185 |
public void clicMenu(String codeMenuClique) {
|
358 |
jp_milcent |
186 |
activerChargement(codeMenuClique);
|
327 |
jp_milcent |
187 |
if (codeMenuClique.equals(MenuApplicationId.STRUCTURE)) {
|
646 |
jp_milcent |
188 |
selectionnerStructure(panneauCentre, null);
|
553 |
jp_milcent |
189 |
} else if (codeMenuClique.equals(MenuApplicationId.COLLECTION)) {
|
|
|
190 |
selectionnerCollection(panneauCentre, null);
|
|
|
191 |
} else if (codeMenuClique.equals(MenuApplicationId.PERSONNE)) {
|
599 |
gduche |
192 |
selectionnerPersonne(panneauCentre, null, null);
|
327 |
jp_milcent |
193 |
} else if (codeMenuClique.equals(MenuApplicationId.PUBLICATION)) {
|
769 |
jpm |
194 |
selectionnerPublication(panneauCentre,null);
|
379 |
jp_milcent |
195 |
} else {
|
327 |
jp_milcent |
196 |
GWT.log("Non implémenté! Menu id : "+codeMenuClique, null);
|
60 |
jpm |
197 |
}
|
|
|
198 |
panneauCentre.layout();
|
|
|
199 |
}
|
|
|
200 |
|
358 |
jp_milcent |
201 |
public void activerChargement(String message) {
|
|
|
202 |
afficherPopinChargement();
|
369 |
jp_milcent |
203 |
panneauSud.showBusy(i18nC.chargement()+" "+message);
|
358 |
jp_milcent |
204 |
}
|
|
|
205 |
|
|
|
206 |
public void desactiverChargement() {
|
|
|
207 |
masquerPopinChargement();
|
|
|
208 |
panneauSud.clear();
|
|
|
209 |
}
|
646 |
jp_milcent |
210 |
|
156 |
jp_milcent |
211 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
212 |
// GESTION DES FENÊTRES
|
|
|
213 |
//+----------------------------------------------------------------------------------------------------------------+
|
60 |
jpm |
214 |
|
61 |
jpm |
215 |
public void ouvrirAide() {
|
|
|
216 |
AideFenetre aideFenetre = new AideFenetre();
|
|
|
217 |
aideFenetre.show();
|
66 |
jpm |
218 |
// FIXME : apparament le fade In/Fade Out pose problème sur les navigateurs...
|
|
|
219 |
//aideFenetre.el().fadeIn(FxConfig.NONE);
|
61 |
jpm |
220 |
}
|
|
|
221 |
|
|
|
222 |
public void ouvrirParametres() {
|
66 |
jpm |
223 |
ParametreFenetre parametresFenetre = new ParametreFenetre();
|
|
|
224 |
parametresFenetre.show();
|
61 |
jpm |
225 |
}
|
|
|
226 |
|
|
|
227 |
public void ouvrirIdentification() {
|
358 |
jp_milcent |
228 |
fenetreIdentification = new IdentificationFenetre();
|
|
|
229 |
fenetreIdentification.show();
|
61 |
jpm |
230 |
}
|
|
|
231 |
|
|
|
232 |
public void ouvrirApplis(String id) {
|
|
|
233 |
if (id.equals(ComposantId.MENU_CEL)) {
|
|
|
234 |
Window.open(((Configuration) Registry.get(RegistreId.CONFIG)).getCelUrl(), "Carnet en ligne", "");
|
|
|
235 |
} else if (id.equals(ComposantId.MENU_BEL)) {
|
134 |
jpm |
236 |
Window.open(((Configuration) Registry.get(RegistreId.CONFIG)).getCelUrl(), "Biblio en ligne", "");
|
61 |
jpm |
237 |
}
|
|
|
238 |
}
|
|
|
239 |
|
156 |
jp_milcent |
240 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
241 |
// GESTION de l'UTILISATEUR et de l'IDENTIFICATION
|
|
|
242 |
//+----------------------------------------------------------------------------------------------------------------+
|
245 |
jp_milcent |
243 |
/**
|
|
|
244 |
* Retourne l'identifiant de l'utilisateur courrant de l'application.
|
|
|
245 |
*/
|
156 |
jp_milcent |
246 |
public String getUtilisateurId() {
|
277 |
jp_milcent |
247 |
String id = null;
|
|
|
248 |
Utilisateur utilisateurCourant = (Utilisateur) Registry.get(RegistreId.UTILISATEUR_COURANT);
|
|
|
249 |
if (!utilisateurCourant.getId().equals("")) {
|
|
|
250 |
id = utilisateurCourant.getId();
|
|
|
251 |
}
|
|
|
252 |
return id;
|
156 |
jp_milcent |
253 |
}
|
|
|
254 |
|
65 |
jpm |
255 |
public void connecterUtilisateur(String login, String mdp) {
|
277 |
jp_milcent |
256 |
modele.connecterUtilisateur(this, login, mdp);
|
64 |
jpm |
257 |
}
|
|
|
258 |
|
65 |
jpm |
259 |
public void deconnecterUtilisateur() {
|
277 |
jp_milcent |
260 |
modele.deconnecterUtilisateur(this);
|
64 |
jpm |
261 |
}
|
65 |
jpm |
262 |
|
64 |
jpm |
263 |
public void mettreAJourEtatIdentification(Utilisateur utilisateur) {
|
156 |
jp_milcent |
264 |
// Mise à jour du registre
|
277 |
jp_milcent |
265 |
Registry.register(RegistreId.UTILISATEUR_COURANT, utilisateur);
|
156 |
jp_milcent |
266 |
// Création de l'information de mise à jour de l'utilisateur
|
|
|
267 |
Information info = new Information("maj_utilisateur");
|
358 |
jp_milcent |
268 |
|
|
|
269 |
// Rafraichissement de la fenêtre d'Identification
|
|
|
270 |
if (fenetreIdentification != null) {
|
|
|
271 |
fenetreIdentification.rafraichir(info);
|
|
|
272 |
}
|
156 |
jp_milcent |
273 |
|
|
|
274 |
// Rafraichissement du panneau Nord
|
|
|
275 |
panneauNord.rafraichir(info);
|
|
|
276 |
|
|
|
277 |
// Rafraichissement du panneau Centre
|
646 |
jp_milcent |
278 |
if (panneauCentre != null) {
|
|
|
279 |
panneauCentre.rafraichir(info);
|
156 |
jp_milcent |
280 |
}
|
61 |
jpm |
281 |
}
|
66 |
jpm |
282 |
|
156 |
jp_milcent |
283 |
//+----------------------------------------------------------------------------------------------------------------+
|
447 |
jp_milcent |
284 |
// GESTION DES VALEURS ET LISTES
|
|
|
285 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
286 |
|
568 |
jp_milcent |
287 |
public void obtenirListeValeurEtRafraichir(Rafraichissable vueARafraichir, String listeId) {
|
|
|
288 |
modele.obtenirListeValeurs(vueARafraichir, ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId(listeId));
|
453 |
jp_milcent |
289 |
}
|
447 |
jp_milcent |
290 |
|
453 |
jp_milcent |
291 |
public void obtenirValeurEtRafraichir(Rafraichissable vue, String listeId, String identifiantValeur) {
|
|
|
292 |
modele.obtenirValeur(vue, "abv", ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId(listeId), identifiantValeur);
|
|
|
293 |
}
|
|
|
294 |
|
|
|
295 |
public void obtenirListeRegionsEtRafraichir(Rafraichissable vue, String strListeId, String strPays) {
|
|
|
296 |
modele.obtenirListeRegion(vue, ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId(strListeId), strPays+".__");
|
|
|
297 |
}
|
|
|
298 |
|
447 |
jp_milcent |
299 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
300 |
// GESTION des PROJETS
|
|
|
301 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
302 |
|
|
|
303 |
/**
|
|
|
304 |
* Retourne l'identifiant du projet courrant de l'application.
|
|
|
305 |
*/
|
|
|
306 |
public String getProjetId() {
|
|
|
307 |
String id = null;
|
|
|
308 |
Projet projetCourant = (Projet) Registry.get(RegistreId.PROJET_COURANT);
|
|
|
309 |
if (projetCourant != null && !projetCourant.getId().equals("")) {
|
|
|
310 |
id = projetCourant.getId();
|
|
|
311 |
}
|
|
|
312 |
return id;
|
|
|
313 |
}
|
|
|
314 |
|
|
|
315 |
//Greg : ajout d'un écouteur pour le changement liste projet
|
552 |
jp_milcent |
316 |
public void selectionnerProjets(Rafraichissable vueARafraichir) {
|
|
|
317 |
modele.selectionnerProjets(vueARafraichir);
|
447 |
jp_milcent |
318 |
}
|
|
|
319 |
|
|
|
320 |
public void afficherListeProjets(ProjetListe projets) {
|
|
|
321 |
panneauOuest.rafraichir(projets);
|
|
|
322 |
}
|
|
|
323 |
|
|
|
324 |
public void selectionnerProjetCourant(Projet projetSelectionne) {
|
|
|
325 |
Registry.register(RegistreId.PROJET_COURANT, projetSelectionne);
|
646 |
jp_milcent |
326 |
if (panneauCentre.getContenu() instanceof PersonneVue) {
|
599 |
gduche |
327 |
//modele.selectionnerPersonne(contenuPanneauCentre, null, getProjetId(), null);
|
646 |
jp_milcent |
328 |
selectionnerPersonne(panneauCentre, null, getProjetId());
|
447 |
jp_milcent |
329 |
//FIXME Le rafraichissement du panneau ne se fait pas!
|
646 |
jp_milcent |
330 |
} else if (panneauCentre.getContenu() instanceof StructureVue) {
|
|
|
331 |
modele.selectionnerStructure(panneauCentre.getContenu(), getProjetId(), null);
|
|
|
332 |
} else if (panneauCentre.getContenu() instanceof CollectionVue) {
|
|
|
333 |
modele.selectionnerCollection(panneauCentre.getContenu(), getProjetId(), null);
|
447 |
jp_milcent |
334 |
}
|
|
|
335 |
}
|
|
|
336 |
|
|
|
337 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
338 |
// GESTION DES STRUCTURES
|
|
|
339 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
340 |
|
453 |
jp_milcent |
341 |
public void afficherListeStructures(StructureListe structuresACharger) {
|
646 |
jp_milcent |
342 |
if (!(panneauCentre.getContenu() instanceof StructureVue)) {
|
626 |
gduche |
343 |
panneauCentre.removeAll();
|
646 |
jp_milcent |
344 |
panneauCentre.add(new StructureVue(this));
|
626 |
gduche |
345 |
}
|
646 |
jp_milcent |
346 |
panneauCentre.getContenu().rafraichir(structuresACharger);
|
453 |
jp_milcent |
347 |
}
|
|
|
348 |
|
580 |
jp_milcent |
349 |
public void afficherFormStructure(String structureId) {
|
641 |
jp_milcent |
350 |
String mode = Formulaire.MODE_AJOUTER;
|
580 |
jp_milcent |
351 |
if (structureId != null) {
|
641 |
jp_milcent |
352 |
mode = Formulaire.MODE_MODIFIER;
|
580 |
jp_milcent |
353 |
}
|
|
|
354 |
|
|
|
355 |
panneauCentre.removeAll();
|
|
|
356 |
StructureForm structureForm = new StructureForm(this, mode);
|
|
|
357 |
panneauCentre.add(structureForm);
|
|
|
358 |
|
641 |
jp_milcent |
359 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
580 |
jp_milcent |
360 |
selectionnerStructure(structureForm, structureId);
|
|
|
361 |
selectionnerStructureAPersonne(structureForm, structureId, StructureAPersonne.ROLE_EQUIPE);
|
|
|
362 |
}
|
|
|
363 |
|
|
|
364 |
panneauCentre.layout();
|
|
|
365 |
}
|
|
|
366 |
|
447 |
jp_milcent |
367 |
public void clicListeStructure(Structure structure) {
|
646 |
jp_milcent |
368 |
panneauCentre.getContenu().rafraichir(structure);
|
609 |
jp_milcent |
369 |
if (structure != null && structure.getPersonnel() == null) {
|
646 |
jp_milcent |
370 |
selectionnerStructureAPersonne(panneauCentre.getContenu(), structure.getId(), StructureAPersonne.ROLE_EQUIPE);
|
447 |
jp_milcent |
371 |
} else {
|
|
|
372 |
GWT.log("OK personnel déjà chargé", null);
|
|
|
373 |
}
|
|
|
374 |
}
|
|
|
375 |
|
|
|
376 |
public void clicAjouterStructure() {
|
580 |
jp_milcent |
377 |
afficherFormStructure(null);
|
447 |
jp_milcent |
378 |
}
|
|
|
379 |
|
|
|
380 |
public void clicModifierStructure(List<Structure> structureSelection) {
|
|
|
381 |
if (structureSelection.size() == 0) {
|
|
|
382 |
Info.display("Information", "Veuillez sélectionner une structure.");
|
|
|
383 |
} else if (structureSelection.size() > 1) {
|
|
|
384 |
Info.display("Information", "Veuillez sélectionner une seule structure à la fois.");
|
|
|
385 |
} else if (structureSelection.size() == 1) {
|
609 |
jp_milcent |
386 |
afficherFormStructure(structureSelection.get(0).getId());
|
447 |
jp_milcent |
387 |
} else {
|
|
|
388 |
Info.display("Erreur", "Une erreur est survenue dans la méthode clicModifierStructure() du Médiateur.");
|
|
|
389 |
}
|
|
|
390 |
}
|
|
|
391 |
|
|
|
392 |
public void clicSupprimerStructure(final Rafraichissable vue, final List<Structure> structureSelection) {
|
|
|
393 |
if (structureSelection.size() == 0) {
|
|
|
394 |
Info.display("Information", "Veuillez sélectionner une structure.");
|
|
|
395 |
} else if(structureSelection.size() > 0) {
|
609 |
jp_milcent |
396 |
String titre = "Supprimer des structures";
|
447 |
jp_milcent |
397 |
String message = "Êtes vous sur de vouloir supprimer les structures sélectionnées ?";
|
|
|
398 |
if (structureSelection.size() == 1) {
|
609 |
jp_milcent |
399 |
titre = "Supprimer une structure";
|
447 |
jp_milcent |
400 |
message = "Êtes vous sur de vouloir supprimer la structure sélectionnée ?";
|
|
|
401 |
}
|
|
|
402 |
|
502 |
gduche |
403 |
final Listener<MessageBoxEvent> suppressionEcouteur = new Listener<MessageBoxEvent>() {
|
|
|
404 |
public void handleEvent(MessageBoxEvent ce) {
|
|
|
405 |
Dialog dialog = (Dialog) ce.getComponent();
|
|
|
406 |
Button btn = ce.getButtonClicked();
|
453 |
jp_milcent |
407 |
|
|
|
408 |
if (btn.getText().equals(dialog.yesText)) {
|
|
|
409 |
String idStr = "" ;
|
|
|
410 |
for(int i = 0 ; i < structureSelection.size() ; i++) {
|
609 |
jp_milcent |
411 |
idStr += structureSelection.get(i).getId()+",";
|
453 |
jp_milcent |
412 |
}
|
|
|
413 |
supprimerStructure(vue, idStr);
|
|
|
414 |
}
|
|
|
415 |
}
|
|
|
416 |
};
|
447 |
jp_milcent |
417 |
|
609 |
jp_milcent |
418 |
MessageBox.confirm(titre, message, suppressionEcouteur);
|
447 |
jp_milcent |
419 |
} else {
|
|
|
420 |
Info.display("Erreur", "Une erreur est survenue dans la méthode clicSupprimerStructure() du Médiateur.");
|
|
|
421 |
}
|
|
|
422 |
}
|
|
|
423 |
|
769 |
jpm |
424 |
public void selectionnerStructure(Rafraichissable vueARafraichir, String structureId) {
|
|
|
425 |
modele.selectionnerStructure(vueARafraichir, getProjetId(), structureId);
|
447 |
jp_milcent |
426 |
}
|
|
|
427 |
|
769 |
jpm |
428 |
public void ajouterStructure(Rafraichissable vueARafraichir, Structure structure, StructureConservation conservation, StructureValorisation valorisation) {
|
|
|
429 |
modele.ajouterStructure(vueARafraichir, structure, conservation, valorisation);
|
447 |
jp_milcent |
430 |
}
|
|
|
431 |
|
769 |
jpm |
432 |
public void modifierStructure(Rafraichissable vueARafraichir, String structureId, Structure structure, StructureConservation conservation, StructureValorisation valorisation) {
|
|
|
433 |
modele.modifierStructure(vueARafraichir, structureId, structure, conservation, valorisation);
|
447 |
jp_milcent |
434 |
}
|
453 |
jp_milcent |
435 |
|
|
|
436 |
public void supprimerStructure(Rafraichissable vueARafraichir, String IdentifiantsStructureSepareParVirgule) {
|
769 |
jpm |
437 |
modele.supprimerStructure(vueARafraichir, IdentifiantsStructureSepareParVirgule);
|
453 |
jp_milcent |
438 |
}
|
|
|
439 |
|
447 |
jp_milcent |
440 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
441 |
// GESTION de la relation STRUCTURE A PERSONNE
|
769 |
jpm |
442 |
public void selectionnerStructureAPersonne(Rafraichissable vueARafraichir, String structureId, String roleId) {
|
|
|
443 |
modele.selectionnerStructureAPersonne(vueARafraichir, structureId, roleId);
|
447 |
jp_milcent |
444 |
}
|
|
|
445 |
|
769 |
jpm |
446 |
public void ajouterStructureAPersonne(Rafraichissable vueARafraichir, String structureId, StructureAPersonneListe personnelAjoute) {
|
453 |
jp_milcent |
447 |
if (personnelAjoute != null && personnelAjoute.size() > 0) {
|
|
|
448 |
for (Iterator<String> it = personnelAjoute.keySet().iterator(); it.hasNext();) {
|
769 |
jpm |
449 |
modele.ajouterStructureAPersonne(vueARafraichir, structureId, (StructureAPersonne) personnelAjoute.get(it.next()));
|
453 |
jp_milcent |
450 |
}
|
|
|
451 |
}
|
|
|
452 |
}
|
|
|
453 |
|
769 |
jpm |
454 |
public void modifierStructureAPersonne(Rafraichissable vueARafraichir, StructureAPersonneListe personnelModifie) {
|
447 |
jp_milcent |
455 |
if (personnelModifie != null && personnelModifie.size() > 0) {
|
|
|
456 |
for (Iterator<String> it = personnelModifie.keySet().iterator(); it.hasNext();) {
|
769 |
jpm |
457 |
modele.modifierStructureAPersonne(vueARafraichir, (StructureAPersonne) personnelModifie.get(it.next()));
|
447 |
jp_milcent |
458 |
}
|
|
|
459 |
}
|
|
|
460 |
}
|
|
|
461 |
|
769 |
jpm |
462 |
public void supprimerStructureAPersonne(Rafraichissable vueARafraichir, StructureAPersonneListe personnelSupprime) {
|
447 |
jp_milcent |
463 |
if (personnelSupprime != null && personnelSupprime.size() > 0) {
|
769 |
jpm |
464 |
String idStructureAPersonneSepareParVirgule = "" ;
|
447 |
jp_milcent |
465 |
for (Iterator<String> it = personnelSupprime.keySet().iterator(); it.hasNext();) {
|
769 |
jpm |
466 |
idStructureAPersonneSepareParVirgule += personnelSupprime.get(it.next()).getId()+"," ;
|
447 |
jp_milcent |
467 |
}
|
769 |
jpm |
468 |
modele.supprimerStructureAPersonne(vueARafraichir, idStructureAPersonneSepareParVirgule);
|
447 |
jp_milcent |
469 |
}
|
|
|
470 |
}
|
|
|
471 |
|
|
|
472 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
473 |
// GESTION des COLLECTIONS
|
|
|
474 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
475 |
|
453 |
jp_milcent |
476 |
public void afficherListeCollections(CollectionListe collectionsACharger) {
|
646 |
jp_milcent |
477 |
if (!(panneauCentre.getContenu() instanceof CollectionVue)) {
|
626 |
gduche |
478 |
panneauCentre.removeAll();
|
646 |
jp_milcent |
479 |
panneauCentre.add(new CollectionVue(this));
|
|
|
480 |
}
|
626 |
gduche |
481 |
|
646 |
jp_milcent |
482 |
panneauCentre.getContenu().rafraichir(collectionsACharger);
|
453 |
jp_milcent |
483 |
}
|
|
|
484 |
|
641 |
jp_milcent |
485 |
public void afficherFormCollection(String collectionId) {
|
|
|
486 |
String mode = Formulaire.MODE_AJOUTER;
|
|
|
487 |
if (collectionId != null) {
|
|
|
488 |
mode = Formulaire.MODE_MODIFIER;
|
|
|
489 |
}
|
|
|
490 |
|
|
|
491 |
panneauCentre.removeAll();
|
|
|
492 |
CollectionForm collectionForm = new CollectionForm(this, mode);
|
|
|
493 |
panneauCentre.add(collectionForm);
|
|
|
494 |
|
|
|
495 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
|
|
496 |
selectionnerCollection(collectionForm, collectionId);
|
|
|
497 |
}
|
|
|
498 |
|
|
|
499 |
panneauCentre.layout();
|
|
|
500 |
}
|
|
|
501 |
|
453 |
jp_milcent |
502 |
public void clicListeCollection(Collection collectionCliquee) {
|
646 |
jp_milcent |
503 |
panneauCentre.getContenu().rafraichir(collectionCliquee);
|
453 |
jp_milcent |
504 |
}
|
|
|
505 |
|
447 |
jp_milcent |
506 |
public void clicAjouterCollection() {
|
|
|
507 |
// TODO Auto-generated method stub
|
|
|
508 |
|
|
|
509 |
}
|
|
|
510 |
|
|
|
511 |
public void clicModifierCollection(List<Collection> selection) {
|
641 |
jp_milcent |
512 |
if (selection.size() == 0) {
|
|
|
513 |
Info.display("Information", "Veuillez sélectionner une collection.");
|
|
|
514 |
} else if (selection.size() > 1) {
|
|
|
515 |
Info.display("Information", "Veuillez sélectionner une seule collection à la fois.");
|
|
|
516 |
} else if (selection.size() == 1) {
|
|
|
517 |
afficherFormCollection(selection.get(0).getId());
|
|
|
518 |
} else {
|
|
|
519 |
Info.display("Erreur", "Une erreur est survenue dans la méthode clicModifierCollection() du Médiateur.");
|
|
|
520 |
}
|
447 |
jp_milcent |
521 |
}
|
|
|
522 |
|
453 |
jp_milcent |
523 |
public void clicSupprimerCollection(CollectionListeVue collectionListeVue, List<Collection> collectionsASupprimer) {
|
447 |
jp_milcent |
524 |
// TODO Auto-generated method stub
|
|
|
525 |
|
|
|
526 |
}
|
|
|
527 |
|
467 |
jp_milcent |
528 |
public void selectionnerCollection(Rafraichissable vueARafraichir, String collectionId) {
|
|
|
529 |
modele.selectionnerCollection(vueARafraichir, getProjetId(), collectionId);
|
453 |
jp_milcent |
530 |
}
|
|
|
531 |
|
|
|
532 |
public void ajouterCollection(Rafraichissable vueARafraichir, Collection collection) {
|
|
|
533 |
modele.ajouterCollection(vueARafraichir, getUtilisateurId(), collection);
|
|
|
534 |
}
|
|
|
535 |
|
|
|
536 |
public void modifierCollection(Rafraichissable vueARafraichir, Collection collection) {
|
|
|
537 |
modele.modifierCollection(vueARafraichir, getUtilisateurId(), collection);
|
|
|
538 |
}
|
|
|
539 |
|
|
|
540 |
public void supprimerCollection(Rafraichissable vueARafraichir, String IdentifiantsCollectionSepareParVirgule) {
|
|
|
541 |
modele.supprimerCollection(vueARafraichir, getUtilisateurId(), IdentifiantsCollectionSepareParVirgule);
|
|
|
542 |
}
|
|
|
543 |
|
447 |
jp_milcent |
544 |
//+----------------------------------------------------------------------------------------------------------------+
|
156 |
jp_milcent |
545 |
// GESTION DES PERSONNES
|
|
|
546 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
547 |
|
|
|
548 |
public void clicListePersonne(Personne personne) {
|
646 |
jp_milcent |
549 |
panneauCentre.getContenu().rafraichir(personne);
|
69 |
jpm |
550 |
}
|
|
|
551 |
|
278 |
jp_milcent |
552 |
public void afficherListePersonnes(PersonneListe personnesACharger) {
|
646 |
jp_milcent |
553 |
if (!(panneauCentre.getContenu() instanceof PersonneVue)) {
|
626 |
gduche |
554 |
panneauCentre.removeAll();
|
646 |
jp_milcent |
555 |
panneauCentre.add(new PersonneVue(this));
|
673 |
aurelien |
556 |
panneauCentre.setId(ComposantId.PANNEAU_PERSONNE_LISTES);
|
626 |
gduche |
557 |
}
|
599 |
gduche |
558 |
|
646 |
jp_milcent |
559 |
panneauCentre.getContenu().rafraichir(personnesACharger);
|
156 |
jp_milcent |
560 |
}
|
|
|
561 |
|
128 |
gduche |
562 |
public void clicAjouterPersonne() {
|
332 |
gduche |
563 |
afficherPopinChargement();
|
|
|
564 |
|
277 |
jp_milcent |
565 |
panneauCentre.removeAll();
|
454 |
gduche |
566 |
PersonneForm formulairePersonneVue = new PersonneForm(PersonneForm.MODE_AJOUTER);
|
277 |
jp_milcent |
567 |
panneauCentre.add(formulairePersonneVue);
|
|
|
568 |
panneauCentre.layout();
|
128 |
gduche |
569 |
}
|
|
|
570 |
|
285 |
gduche |
571 |
public void clicModifierPersonne(Personne personne) {
|
|
|
572 |
if (personne!=null) {
|
|
|
573 |
panneauCentre.removeAll();
|
454 |
gduche |
574 |
PersonneForm formulairePersonneVue = new PersonneForm(PersonneForm.MODE_MODIFIER);
|
285 |
gduche |
575 |
panneauCentre.add(formulairePersonneVue);
|
349 |
gduche |
576 |
|
599 |
gduche |
577 |
selectionnerPersonne(formulairePersonneVue, personne, null);
|
349 |
gduche |
578 |
|
|
|
579 |
panneauCentre.layout();
|
285 |
gduche |
580 |
}
|
|
|
581 |
}
|
599 |
gduche |
582 |
|
|
|
583 |
public void selectionnerPersonne(Rafraichissable vue, Personne personne, String projetId) {
|
|
|
584 |
int nbElements = Integer.valueOf(((Dictionary) Dictionary.getDictionary("configuration")).get("nbElementsPage"));
|
|
|
585 |
selectionnerPersonne(vue, personne, projetId, 0, nbElements);
|
|
|
586 |
}
|
285 |
gduche |
587 |
|
599 |
gduche |
588 |
public void selectionnerPersonne(Rafraichissable vue, Personne personne, String projetId, int start, int nbElements) {
|
560 |
gduche |
589 |
String personneId = null;
|
|
|
590 |
if (personne!=null) {
|
|
|
591 |
personneId = personne.getId();
|
|
|
592 |
}
|
599 |
gduche |
593 |
modele.selectionnerPersonne(vue, personneId, projetId, null, start, nbElements);
|
349 |
gduche |
594 |
}
|
285 |
gduche |
595 |
|
315 |
gduche |
596 |
public void clicSupprimerPersonne(final Rafraichissable vue,final List<Personne> personneSelection) {
|
663 |
gduche |
597 |
|
|
|
598 |
//Empecher suppression utilisateur
|
|
|
599 |
for (int i=0; i < personneSelection.size(); i++) {
|
|
|
600 |
Personne courante = personneSelection.get(i);
|
|
|
601 |
if (courante.getId().equals(getUtilisateurId())) {
|
772 |
jpm |
602 |
Info.display("Information", "Vous ne pouvez pas supprimer votre compte");
|
663 |
gduche |
603 |
personneSelection.remove(courante);
|
|
|
604 |
}
|
|
|
605 |
}
|
|
|
606 |
|
245 |
jp_milcent |
607 |
if (personneSelection.size() == 0) {
|
|
|
608 |
Info.display("Information", "Veuillez sélectionner une personne.");
|
|
|
609 |
} else if(personneSelection.size() > 0) {
|
|
|
610 |
String message = "Êtes vous sur de vouloir supprimer les personnes sélectionnées ?";
|
|
|
611 |
if (personneSelection.size() == 1) {
|
|
|
612 |
message = "Êtes vous sur de vouloir supprimer la personne sélectionnée ?";
|
|
|
613 |
}
|
315 |
gduche |
614 |
|
502 |
gduche |
615 |
final Listener<MessageBoxEvent> listenerSuppression = new Listener<MessageBoxEvent>() {
|
|
|
616 |
public void handleEvent(MessageBoxEvent ce) {
|
|
|
617 |
Dialog dialog = (Dialog) ce.getComponent();
|
|
|
618 |
Button btn = ce.getButtonClicked();
|
327 |
jp_milcent |
619 |
|
|
|
620 |
if (btn.getText().equals(dialog.yesText)) {
|
772 |
jpm |
621 |
String idPersonneSepareParVirgule = "" ;
|
347 |
gduche |
622 |
Iterator<Personne> itPersonne = personneSelection.iterator();
|
|
|
623 |
while (itPersonne.hasNext()) {
|
|
|
624 |
Personne personneCourante = itPersonne.next();
|
772 |
jpm |
625 |
idPersonneSepareParVirgule += personneCourante.getId();
|
|
|
626 |
idPersonneSepareParVirgule +=",";
|
327 |
jp_milcent |
627 |
}
|
772 |
jpm |
628 |
modele.supprimerPersonne(vue, idPersonneSepareParVirgule);
|
327 |
jp_milcent |
629 |
}
|
|
|
630 |
}
|
|
|
631 |
};
|
453 |
jp_milcent |
632 |
|
315 |
gduche |
633 |
MessageBox.confirm("Supprimer une personne", message, listenerSuppression);
|
245 |
jp_milcent |
634 |
} else {
|
|
|
635 |
Info.display("Erreur", "Une erreur est survenue dans la méthode clicSupprimerPersonne() du Médiateur.");
|
|
|
636 |
}
|
|
|
637 |
}
|
277 |
jp_milcent |
638 |
|
599 |
gduche |
639 |
public void selectionnerPersonneParNomComplet(Rafraichissable vueARafraichir, String projetId, String nomComplet) {
|
|
|
640 |
modele.selectionnerPersonne(vueARafraichir, null, projetId, nomComplet, 0, -1);
|
277 |
jp_milcent |
641 |
}
|
245 |
jp_milcent |
642 |
|
389 |
gduche |
643 |
public void enregistrerPersonne(Rafraichissable vue, Personne personne){
|
429 |
gduche |
644 |
if (personne.getId()!=null && !personne.getId().trim().equals("")) {
|
|
|
645 |
modele.modifierPersonne(vue, personne);
|
|
|
646 |
} else {
|
|
|
647 |
modele.ajouterPersonne(vue, personne);
|
|
|
648 |
}
|
389 |
gduche |
649 |
}
|
|
|
650 |
|
156 |
jp_milcent |
651 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
652 |
// GESTION DES PUBLICATIONS
|
|
|
653 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
654 |
|
107 |
aurelien |
655 |
public void afficherListePublication(PublicationListe nouvelleDonnees) {
|
673 |
aurelien |
656 |
|
|
|
657 |
if (!(panneauCentre.getContenu() instanceof PublicationVue)) {
|
626 |
gduche |
658 |
panneauCentre.removeAll();
|
673 |
aurelien |
659 |
PublicationVue publicationVue = new PublicationVue(this) ;
|
|
|
660 |
panneauCentre.setId(ComposantId.PANNEAU_PUBLICATION_LISTE);
|
|
|
661 |
panneauCentre.add(publicationVue);
|
|
|
662 |
panneauCentre.layout(true);
|
626 |
gduche |
663 |
}
|
|
|
664 |
|
715 |
aurelien |
665 |
masquerPopinChargement();
|
|
|
666 |
|
646 |
jp_milcent |
667 |
panneauCentre.getContenu().rafraichir(nouvelleDonnees);
|
107 |
aurelien |
668 |
}
|
715 |
aurelien |
669 |
|
|
|
670 |
public void rechargerListePublication() {
|
741 |
aurelien |
671 |
if (!(panneauCentre.getContenu() instanceof PublicationVue)) {
|
|
|
672 |
panneauCentre.removeAll();
|
|
|
673 |
PublicationVue publicationVue = new PublicationVue(this) ;
|
|
|
674 |
panneauCentre.setId(ComposantId.PANNEAU_PUBLICATION_LISTE);
|
|
|
675 |
panneauCentre.add(publicationVue);
|
|
|
676 |
panneauCentre.layout(true);
|
|
|
677 |
}
|
|
|
678 |
masquerPopinChargement();
|
715 |
aurelien |
679 |
modele.selectionnerPublication(panneauCentre.getContenu(),null,null,null);
|
|
|
680 |
}
|
107 |
aurelien |
681 |
|
|
|
682 |
public void clicListePublication(Publication publication) {
|
675 |
aurelien |
683 |
if(publication != null) {
|
|
|
684 |
panneauCentre.getContenu().rafraichir(publication);
|
|
|
685 |
}
|
107 |
aurelien |
686 |
}
|
|
|
687 |
|
|
|
688 |
public void clicAjouterPublication() {
|
223 |
aurelien |
689 |
panneauCentre.removeAll();
|
444 |
jp_milcent |
690 |
PublicationForm publicationForm = new PublicationForm();
|
|
|
691 |
panneauCentre.add(publicationForm);
|
223 |
aurelien |
692 |
panneauCentre.layout();
|
107 |
aurelien |
693 |
}
|
156 |
jp_milcent |
694 |
|
245 |
jp_milcent |
695 |
public void clicModifierPublication(List<Publication> publicationListe) {
|
|
|
696 |
if(publicationListe.size() <= 0) {
|
315 |
gduche |
697 |
MessageBox.alert("Attention", "Vous devez sélectionner une publication", null);
|
379 |
jp_milcent |
698 |
} else {
|
245 |
jp_milcent |
699 |
Publication pubAModifier = publicationListe.get(publicationListe.size() -1);
|
|
|
700 |
panneauCentre.removeAll();
|
444 |
jp_milcent |
701 |
PublicationForm publicationForm = new PublicationForm();
|
|
|
702 |
panneauCentre.add(publicationForm);
|
245 |
jp_milcent |
703 |
panneauCentre.setId(ComposantId.PANNEAU_FORM_PUBLICATION);
|
|
|
704 |
panneauCentre.layout();
|
444 |
jp_milcent |
705 |
publicationForm.rafraichir(pubAModifier);
|
245 |
jp_milcent |
706 |
}
|
|
|
707 |
}
|
|
|
708 |
|
315 |
gduche |
709 |
public void clicSupprimerPublication(final List<Publication> publicationListe) {
|
453 |
jp_milcent |
710 |
if (publicationListe.size() <= 0) {
|
315 |
gduche |
711 |
MessageBox.alert("Attention", "Vous devez sélectionner une publication", null);
|
379 |
jp_milcent |
712 |
} else {
|
673 |
aurelien |
713 |
String message = "Voulez-vous vraiment supprimer ces publications ?";
|
245 |
jp_milcent |
714 |
if(publicationListe.size() == 1) {
|
|
|
715 |
message = "Voulez-vous vraiment supprimer cette publication ?";
|
|
|
716 |
}
|
315 |
gduche |
717 |
|
502 |
gduche |
718 |
final Listener<MessageBoxEvent> listenerSuppression = new Listener<MessageBoxEvent>() {
|
|
|
719 |
public void handleEvent(MessageBoxEvent ce) {
|
|
|
720 |
Dialog dialog = (Dialog) ce.getComponent();
|
|
|
721 |
Button btn = ce.getButtonClicked();
|
315 |
gduche |
722 |
|
379 |
jp_milcent |
723 |
if (btn.getText().equals(dialog.yesText)) {
|
764 |
jpm |
724 |
modele.supprimerPublication(panneauCentre.getContenu(), publicationListe);
|
315 |
gduche |
725 |
}
|
|
|
726 |
}
|
|
|
727 |
};
|
|
|
728 |
|
|
|
729 |
MessageBox.confirm("Supprimer une publication", message, listenerSuppression);
|
245 |
jp_milcent |
730 |
}
|
|
|
731 |
}
|
709 |
jp_milcent |
732 |
|
|
|
733 |
public void selectionnerPublication(Rafraichissable vueARafraichir, String publicationId) {
|
|
|
734 |
modele.selectionnerPublication(vueARafraichir, publicationId, getProjetId(), null);
|
|
|
735 |
}
|
|
|
736 |
|
|
|
737 |
public void selectionnerPublicationParNomComplet(Rafraichissable vueARafraichir, String projetId, String nomComplet) {
|
|
|
738 |
modele.selectionnerPublication(vueARafraichir, null, projetId, nomComplet);
|
|
|
739 |
}
|
|
|
740 |
|
444 |
jp_milcent |
741 |
public void ajouterPublication(PublicationForm publicationForm, Publication publi) {
|
764 |
jpm |
742 |
modele.ajouterPublication(panneauCentre.getContenu(), publi);
|
245 |
jp_milcent |
743 |
}
|
|
|
744 |
|
444 |
jp_milcent |
745 |
public void modifierPublication(PublicationForm publicationForm, Publication publi) {
|
764 |
jpm |
746 |
modele.modifierPublication(panneauCentre.getContenu(), publi);
|
245 |
jp_milcent |
747 |
}
|
|
|
748 |
|
453 |
jp_milcent |
749 |
public void clicObtenirListeEditeurs(Rafraichissable vueARafraichir) {
|
|
|
750 |
modele.selectionnerStructure(vueARafraichir, null, null);
|
245 |
jp_milcent |
751 |
}
|
|
|
752 |
|
453 |
jp_milcent |
753 |
public void clicObtenirListeAuteurs(Rafraichissable vueARafraichir) {
|
599 |
gduche |
754 |
//modele.selectionnerPersonne(vueARafraichir, null, null, null);
|
|
|
755 |
selectionnerPersonne(vueARafraichir, null, null);
|
245 |
jp_milcent |
756 |
}
|
|
|
757 |
|
156 |
jp_milcent |
758 |
//+----------------------------------------------------------------------------------------------------------------+
|
447 |
jp_milcent |
759 |
// RAFRAICHISSEMENT
|
156 |
jp_milcent |
760 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
761 |
|
277 |
jp_milcent |
762 |
public void rafraichir(Object nouvelleDonnees) {
|
|
|
763 |
if (nouvelleDonnees instanceof Utilisateur) {
|
|
|
764 |
mettreAJourEtatIdentification((Utilisateur) nouvelleDonnees);
|
278 |
jp_milcent |
765 |
} else {
|
|
|
766 |
GWT.log("Pas de correspondance dans la méthode rafraichir() de la classe "+this.getClass(), null);
|
277 |
jp_milcent |
767 |
}
|
|
|
768 |
}
|
281 |
gduche |
769 |
|
453 |
jp_milcent |
770 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
771 |
// GESTION du STATUT
|
|
|
772 |
//+----------------------------------------------------------------------------------------------------------------+
|
288 |
gduche |
773 |
|
332 |
gduche |
774 |
public void afficherPopinChargement() {
|
|
|
775 |
((PopupChargement) Registry.get(RegistreId.POPUP_CHARGEMENT)).center();
|
|
|
776 |
}
|
453 |
jp_milcent |
777 |
|
332 |
gduche |
778 |
public void masquerPopinChargement() {
|
|
|
779 |
((PopupChargement) Registry.get(RegistreId.POPUP_CHARGEMENT)).hide();
|
|
|
780 |
}
|
447 |
jp_milcent |
781 |
|
741 |
aurelien |
782 |
public void ajouterAuteurPublication(Rafraichissable vueArafraichir,
|
|
|
783 |
String idAuteurs, String role, String idPublication) {
|
762 |
jpm |
784 |
modele.ajouterAuteurPublication(vueArafraichir, idAuteurs, role, idPublication);
|
715 |
aurelien |
785 |
|
|
|
786 |
}
|
|
|
787 |
|
741 |
aurelien |
788 |
public void modifierAuteurPublication(Rafraichissable vueArafraichir,
|
|
|
789 |
String idAuteurs, String idPublication) {
|
762 |
jpm |
790 |
modele.modifierAuteurPublication(vueArafraichir, idAuteurs, idPublication);
|
741 |
aurelien |
791 |
}
|
750 |
aurelien |
792 |
|
|
|
793 |
public void selectionnerAuteurAPublication(Rafraichissable vueARafraichir,
|
|
|
794 |
String idPublication) {
|
759 |
aurelien |
795 |
modele.selectionPublicationAPersonne(vueARafraichir, null, idPublication, "2360");
|
750 |
aurelien |
796 |
}
|
741 |
aurelien |
797 |
|
277 |
jp_milcent |
798 |
}
|