936 |
jpm |
1 |
package org.tela_botanica.client.vues;
|
60 |
jpm |
2 |
|
277 |
jp_milcent |
3 |
import org.tela_botanica.client.Mediateur;
|
1239 |
cyprien |
4 |
import org.tela_botanica.client.composants.InfoLogger;
|
277 |
jp_milcent |
5 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
|
|
6 |
import org.tela_botanica.client.modeles.Information;
|
935 |
jpm |
7 |
import org.tela_botanica.client.modeles.collection.CollectionListe;
|
985 |
jpm |
8 |
import org.tela_botanica.client.modeles.commentaire.CommentaireListe;
|
935 |
jpm |
9 |
import org.tela_botanica.client.modeles.personne.PersonneListe;
|
|
|
10 |
import org.tela_botanica.client.modeles.publication.PublicationListe;
|
|
|
11 |
import org.tela_botanica.client.modeles.structure.StructureListe;
|
156 |
jp_milcent |
12 |
|
60 |
jpm |
13 |
import com.extjs.gxt.ui.client.widget.LayoutContainer;
|
|
|
14 |
import com.extjs.gxt.ui.client.widget.layout.FitLayout;
|
277 |
jp_milcent |
15 |
import com.google.gwt.core.client.GWT;
|
1764 |
aurelien |
16 |
import com.google.gwt.user.client.Window;
|
60 |
jpm |
17 |
|
444 |
jp_milcent |
18 |
public class ContenuVue extends LayoutContainer implements Rafraichissable {
|
60 |
jpm |
19 |
|
373 |
jp_milcent |
20 |
private Mediateur mediateur = null;
|
|
|
21 |
|
444 |
jp_milcent |
22 |
public ContenuVue(Mediateur mediateurCourant) {
|
373 |
jp_milcent |
23 |
mediateur = mediateurCourant;
|
60 |
jpm |
24 |
setLayout(new FitLayout());
|
364 |
jp_milcent |
25 |
setBorders(true);
|
60 |
jpm |
26 |
}
|
277 |
jp_milcent |
27 |
|
653 |
jp_milcent |
28 |
public Rafraichissable getContenu() {
|
|
|
29 |
Rafraichissable contenuPanneauCentre = null;
|
|
|
30 |
if (getItems() != null && getItems().size() == 1) {
|
|
|
31 |
contenuPanneauCentre = (Rafraichissable) getItem(0);
|
|
|
32 |
}
|
|
|
33 |
return contenuPanneauCentre;
|
|
|
34 |
}
|
|
|
35 |
|
277 |
jp_milcent |
36 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
37 |
// RAFRAICHISSEMENT
|
|
|
38 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
39 |
|
416 |
gduche |
40 |
public void rafraichir(Object nouvellesDonnees) {
|
1764 |
aurelien |
41 |
if (nouvellesDonnees instanceof StructureListe) {
|
416 |
gduche |
42 |
mediateur.afficherListeStructures((StructureListe) nouvellesDonnees);
|
985 |
jpm |
43 |
} else if (nouvellesDonnees instanceof CollectionListe) {
|
468 |
jp_milcent |
44 |
mediateur.afficherListeCollections((CollectionListe) nouvellesDonnees);
|
985 |
jpm |
45 |
} else if (nouvellesDonnees instanceof PersonneListe) {
|
|
|
46 |
mediateur.afficherListePersonnes((PersonneListe) nouvellesDonnees);
|
416 |
gduche |
47 |
} else if (nouvellesDonnees instanceof PublicationListe) {
|
|
|
48 |
mediateur.afficherListePublication((PublicationListe) nouvellesDonnees);
|
985 |
jpm |
49 |
} else if (nouvellesDonnees instanceof CommentaireListe) {
|
|
|
50 |
mediateur.afficherListeCommentaire((CommentaireListe) nouvellesDonnees);
|
416 |
gduche |
51 |
} else if (nouvellesDonnees instanceof Information) {
|
|
|
52 |
Information info = (Information) nouvellesDonnees;
|
667 |
gduche |
53 |
if (info.getType().equals("maj_utilisateur")) {
|
911 |
jpm |
54 |
if (getContenu() != null) {
|
672 |
gduche |
55 |
getContenu().rafraichir(info);
|
|
|
56 |
}
|
667 |
gduche |
57 |
} else {
|
|
|
58 |
// Affichage des éventuels messages de déboguage ou d'alerte
|
|
|
59 |
if (info.getMessages() != null && !info.getMessages().toString().equals("[]")) {
|
|
|
60 |
GWT.log(info.getMessages().toString(), null);
|
|
|
61 |
}
|
|
|
62 |
// Traitement en fonction des types d'information
|
|
|
63 |
if (info.getType().equals("liste_personne")) {
|
|
|
64 |
mediateur.afficherListePersonnes((PersonneListe) info.getDonnee(0));
|
1239 |
cyprien |
65 |
InfoLogger.display("Chargement d'une liste de personnes", "");
|
667 |
gduche |
66 |
}
|
277 |
jp_milcent |
67 |
}
|
|
|
68 |
}
|
|
|
69 |
}
|
60 |
jpm |
70 |
}
|