166 |
gduche |
1 |
package org.tela_botanica.del.client.vues.rechercheobservations;
|
|
|
2 |
|
|
|
3 |
import java.util.Iterator;
|
|
|
4 |
import java.util.List;
|
|
|
5 |
|
332 |
gduche |
6 |
import org.tela_botanica.del.client.cache.CacheClient;
|
166 |
gduche |
7 |
import org.tela_botanica.del.client.composants.presenteur.Presenteur;
|
337 |
gduche |
8 |
import org.tela_botanica.del.client.i18n.I18n;
|
332 |
gduche |
9 |
import org.tela_botanica.del.client.modeles.Image;
|
334 |
gduche |
10 |
import org.tela_botanica.del.client.modeles.MoyenneVote;
|
166 |
gduche |
11 |
import org.tela_botanica.del.client.modeles.Observation;
|
183 |
gduche |
12 |
import org.tela_botanica.del.client.modeles.PropositionDetermination;
|
332 |
gduche |
13 |
import org.tela_botanica.del.client.navigation.evenement.BusEvenementiel;
|
|
|
14 |
import org.tela_botanica.del.client.navigation.evenement.validationobservation.EvenementValidation;
|
334 |
gduche |
15 |
import org.tela_botanica.del.client.services.CalculVoteDeterminationService;
|
|
|
16 |
import org.tela_botanica.del.client.vues.rechercheobservations.detail.DetailVoteObservationPresenteur;
|
|
|
17 |
import org.tela_botanica.del.client.vues.rechercheobservations.detail.DetailVoteObservationVue;
|
166 |
gduche |
18 |
|
200 |
gduche |
19 |
import com.google.gwt.event.dom.client.ClickEvent;
|
|
|
20 |
import com.google.gwt.event.dom.client.ClickHandler;
|
309 |
aurelien |
21 |
import com.google.gwt.event.dom.client.HasClickHandlers;
|
334 |
gduche |
22 |
import com.google.gwt.user.client.ui.HTMLPanel;
|
309 |
aurelien |
23 |
import com.google.gwt.user.client.ui.HasText;
|
166 |
gduche |
24 |
import com.google.gwt.user.client.ui.HasWidgets;
|
309 |
aurelien |
25 |
import com.google.gwt.user.client.ui.IsWidget;
|
166 |
gduche |
26 |
|
|
|
27 |
public class ObservationPresenteur extends Presenteur {
|
309 |
aurelien |
28 |
|
|
|
29 |
public abstract interface Vue extends IsWidget {
|
316 |
aurelien |
30 |
public void ajouterPhoto(String url, String titre, String alText, ClickHandler GestionnaireClic);
|
309 |
aurelien |
31 |
public HasText getAuteur();
|
|
|
32 |
public HasText getDate();
|
|
|
33 |
public HasText getFamille();
|
|
|
34 |
public HasText getLocalite();
|
|
|
35 |
public HasText getMotsClefs();
|
|
|
36 |
public HasText getNomRetenu();
|
|
|
37 |
public HasText getNumNomenclatural();
|
|
|
38 |
public HasClickHandlers getPhotoPrincipale();
|
|
|
39 |
public HasWidgets getPhotos();
|
|
|
40 |
public void setUrlImagePrincipale(String url);
|
|
|
41 |
public void setTitreImagePrincipale(String titre);
|
|
|
42 |
public void setAltTextImagePrincipale(String altText);
|
|
|
43 |
public String getUrlImagePrincipale();
|
|
|
44 |
public String getTitreImagePrincipale();
|
|
|
45 |
public String getAltTextImagePrincipale();
|
|
|
46 |
public void setTexteTableau(int ligne, int colonne, String texte);
|
334 |
gduche |
47 |
public void setElementTableau(int ligne, int colonne, IsWidget element);
|
332 |
gduche |
48 |
public HasClickHandlers getLienDeterminer();
|
309 |
aurelien |
49 |
}
|
|
|
50 |
|
|
|
51 |
private Vue vue;
|
166 |
gduche |
52 |
|
|
|
53 |
private Observation observation;
|
|
|
54 |
|
309 |
aurelien |
55 |
public ObservationPresenteur(Vue vue, Observation observation) {
|
166 |
gduche |
56 |
this.observation = observation;
|
314 |
gduche |
57 |
this.vue = vue;
|
166 |
gduche |
58 |
chargerObservation();
|
|
|
59 |
}
|
|
|
60 |
|
|
|
61 |
public void chargerObservation() {
|
314 |
gduche |
62 |
HasText auteur = vue.getAuteur();
|
|
|
63 |
auteur.setText(observation.getAuteur());
|
309 |
aurelien |
64 |
vue.getDate().setText(observation.getDate());
|
|
|
65 |
vue.getFamille().setText(observation.getFamille());
|
|
|
66 |
vue.getLocalite().setText(observation.getLocalite());
|
166 |
gduche |
67 |
|
|
|
68 |
List<String> motsCles = observation.getMotsClefs();
|
|
|
69 |
Iterator<String> itMotsCles = motsCles.iterator();
|
|
|
70 |
String motsClesChaine = "";
|
|
|
71 |
while (itMotsCles.hasNext()) {
|
|
|
72 |
String motCle = itMotsCles.next();
|
|
|
73 |
motsClesChaine += motCle;
|
|
|
74 |
if (itMotsCles.hasNext()) {
|
|
|
75 |
motsClesChaine += ", ";
|
|
|
76 |
}
|
|
|
77 |
}
|
309 |
aurelien |
78 |
vue.getMotsClefs().setText(motsClesChaine);
|
|
|
79 |
vue.getNomRetenu().setText(observation.getNomRetenu());
|
|
|
80 |
vue.getNumNomenclatural().setText(observation.getNumNomenclatural());
|
166 |
gduche |
81 |
|
200 |
gduche |
82 |
List<org.tela_botanica.del.client.modeles.Image> images = observation.getImages();
|
183 |
gduche |
83 |
|
243 |
gduche |
84 |
if (images != null && images.size() > 0) {
|
|
|
85 |
org.tela_botanica.del.client.modeles.Image imagePrincipale = images.get(0);
|
309 |
aurelien |
86 |
vue.setUrlImagePrincipale(imagePrincipale.getUrl());
|
|
|
87 |
vue.setTitreImagePrincipale(imagePrincipale.getUrlFormat("L"));
|
|
|
88 |
vue.setAltTextImagePrincipale(observation.getAuteur() + " - " + observation.getNomRetenu());
|
243 |
gduche |
89 |
images.remove(0);
|
|
|
90 |
}
|
200 |
gduche |
91 |
|
|
|
92 |
int nbImagesAffichees = 0;
|
|
|
93 |
for (org.tela_botanica.del.client.modeles.Image imageCourante : images) {
|
|
|
94 |
nbImagesAffichees++;
|
|
|
95 |
if (nbImagesAffichees < 5) {
|
316 |
aurelien |
96 |
ClickHandler gestionnaireClic = new ClickHandler() {
|
200 |
gduche |
97 |
public void onClick(ClickEvent event) {
|
316 |
aurelien |
98 |
IsWidget image = (IsWidget)event.getSource();
|
|
|
99 |
ouvrirFenetreModale(new DetailImagePresenteur(image, new DetailImageVue()));
|
200 |
gduche |
100 |
}
|
316 |
aurelien |
101 |
};
|
|
|
102 |
vue.ajouterPhoto(imageCourante.getUrlFormat("CRX2S"),
|
|
|
103 |
imageCourante.getUrlFormat("L"),
|
|
|
104 |
observation.getAuteur() + " - " + observation.getNomRetenu(),
|
|
|
105 |
gestionnaireClic);
|
200 |
gduche |
106 |
}
|
|
|
107 |
}
|
|
|
108 |
|
183 |
gduche |
109 |
List<PropositionDetermination> propositions = observation.getPropositionsDetermination();
|
|
|
110 |
|
|
|
111 |
|
|
|
112 |
int i = 0;
|
|
|
113 |
for (PropositionDetermination proposition : propositions) {
|
337 |
gduche |
114 |
|
334 |
gduche |
115 |
HTMLPanel panneau = new HTMLPanel("");
|
|
|
116 |
DetailVoteObservationPresenteur presenteurVote = new DetailVoteObservationPresenteur(new DetailVoteObservationVue(), proposition);
|
|
|
117 |
presenteurVote.go(panneau);
|
|
|
118 |
vue.setElementTableau(i, 0, panneau);
|
337 |
gduche |
119 |
vue.setTexteTableau(i, 1, String.valueOf(proposition.getListeCommentaires().size()) + " " +I18n.getVocabulary().commentaires());
|
|
|
120 |
i++;
|
183 |
gduche |
121 |
}
|
|
|
122 |
|
220 |
gduche |
123 |
gererEvenements();
|
183 |
gduche |
124 |
// vue.propositions.setText(ch);
|
166 |
gduche |
125 |
}
|
|
|
126 |
|
|
|
127 |
public void go(HasWidgets composite) {
|
309 |
aurelien |
128 |
composite.add(vue.asWidget());
|
166 |
gduche |
129 |
}
|
|
|
130 |
|
220 |
gduche |
131 |
protected void gererEvenements() {
|
309 |
aurelien |
132 |
vue.getPhotoPrincipale().addClickHandler(new ClickHandler() {
|
200 |
gduche |
133 |
public void onClick(ClickEvent event) {
|
309 |
aurelien |
134 |
//FIXME : faire une interface pour les images
|
316 |
aurelien |
135 |
IsWidget image = (IsWidget)event.getSource();
|
|
|
136 |
ouvrirFenetreModale(new DetailImagePresenteur(image, new DetailImageVue()));
|
200 |
gduche |
137 |
}
|
|
|
138 |
});
|
332 |
gduche |
139 |
|
|
|
140 |
vue.getLienDeterminer().addClickHandler(new ClickHandler() {
|
|
|
141 |
|
|
|
142 |
public void onClick(ClickEvent event) {
|
|
|
143 |
List<Image> images = observation.getImages();
|
|
|
144 |
if (images.size() > 0) {
|
|
|
145 |
CacheClient.getInstance().setImageCourante(images.get(0));
|
|
|
146 |
} else {
|
|
|
147 |
CacheClient.getInstance().setImageCourante(null);
|
|
|
148 |
}
|
|
|
149 |
BusEvenementiel.getInstance().fireEvent(new EvenementValidation(observation));
|
|
|
150 |
}
|
|
|
151 |
});
|
166 |
gduche |
152 |
}
|
|
|
153 |
}
|