Subversion Repositories eFlore/Applications.del

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
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;
332 gduche 8
import org.tela_botanica.del.client.modeles.Image;
334 gduche 9
import org.tela_botanica.del.client.modeles.MoyenneVote;
166 gduche 10
import org.tela_botanica.del.client.modeles.Observation;
183 gduche 11
import org.tela_botanica.del.client.modeles.PropositionDetermination;
332 gduche 12
import org.tela_botanica.del.client.navigation.evenement.BusEvenementiel;
13
import org.tela_botanica.del.client.navigation.evenement.validationobservation.EvenementValidation;
334 gduche 14
import org.tela_botanica.del.client.services.CalculVoteDeterminationService;
15
import org.tela_botanica.del.client.vues.rechercheobservations.detail.DetailVoteObservationPresenteur;
16
import org.tela_botanica.del.client.vues.rechercheobservations.detail.DetailVoteObservationVue;
166 gduche 17
 
200 gduche 18
import com.google.gwt.event.dom.client.ClickEvent;
19
import com.google.gwt.event.dom.client.ClickHandler;
309 aurelien 20
import com.google.gwt.event.dom.client.HasClickHandlers;
334 gduche 21
import com.google.gwt.user.client.ui.HTMLPanel;
309 aurelien 22
import com.google.gwt.user.client.ui.HasText;
166 gduche 23
import com.google.gwt.user.client.ui.HasWidgets;
309 aurelien 24
import com.google.gwt.user.client.ui.IsWidget;
166 gduche 25
 
26
public class ObservationPresenteur extends Presenteur {
309 aurelien 27
 
28
	public abstract interface Vue extends IsWidget {
316 aurelien 29
		public void ajouterPhoto(String url, String titre, String alText, ClickHandler GestionnaireClic);
309 aurelien 30
		public HasText getAuteur();
31
		public HasText getDate();
32
		public HasText getFamille();
33
		public HasText getLocalite();
34
		public HasText getMotsClefs();
35
		public HasText getNomRetenu();
36
		public HasText getNumNomenclatural();
37
		public HasClickHandlers getPhotoPrincipale();
38
		public HasWidgets getPhotos();
39
		public void setUrlImagePrincipale(String url);
40
		public void setTitreImagePrincipale(String titre);
41
		public void setAltTextImagePrincipale(String altText);
42
		public String getUrlImagePrincipale();
43
		public String getTitreImagePrincipale();
44
		public String getAltTextImagePrincipale();
45
		public void setTexteTableau(int ligne, int colonne, String texte);
334 gduche 46
		public void setElementTableau(int ligne, int colonne, IsWidget element);
332 gduche 47
		public HasClickHandlers getLienDeterminer();
309 aurelien 48
	}
49
 
50
	private Vue vue;
166 gduche 51
 
52
	private Observation observation;
53
 
309 aurelien 54
	public ObservationPresenteur(Vue vue, Observation observation) {
166 gduche 55
		this.observation = observation;
314 gduche 56
		this.vue = vue;
166 gduche 57
		chargerObservation();
58
	}
59
 
60
	public void chargerObservation() {
314 gduche 61
		HasText auteur = vue.getAuteur();
62
		auteur.setText(observation.getAuteur());
309 aurelien 63
		vue.getDate().setText(observation.getDate());
64
		vue.getFamille().setText(observation.getFamille());
65
		vue.getLocalite().setText(observation.getLocalite());
166 gduche 66
 
67
		List<String> motsCles = observation.getMotsClefs();
68
		Iterator<String> itMotsCles = motsCles.iterator();
69
		String motsClesChaine = "";
70
		while (itMotsCles.hasNext()) {
71
			String motCle = itMotsCles.next();
72
			motsClesChaine += motCle;
73
			if (itMotsCles.hasNext()) {
74
				motsClesChaine += ", ";
75
			}
76
		}
309 aurelien 77
		vue.getMotsClefs().setText(motsClesChaine);
78
		vue.getNomRetenu().setText(observation.getNomRetenu());
79
		vue.getNumNomenclatural().setText(observation.getNumNomenclatural());
166 gduche 80
 
200 gduche 81
		List<org.tela_botanica.del.client.modeles.Image> images = observation.getImages();
183 gduche 82
 
243 gduche 83
		if (images != null && images.size() > 0) {
84
			org.tela_botanica.del.client.modeles.Image imagePrincipale = images.get(0);
309 aurelien 85
			vue.setUrlImagePrincipale(imagePrincipale.getUrl());
86
			vue.setTitreImagePrincipale(imagePrincipale.getUrlFormat("L"));
87
			vue.setAltTextImagePrincipale(observation.getAuteur() + " - " + observation.getNomRetenu());
243 gduche 88
			images.remove(0);
89
		}
200 gduche 90
 
91
		int nbImagesAffichees = 0;
92
		for (org.tela_botanica.del.client.modeles.Image imageCourante : images) {
93
			nbImagesAffichees++;
94
			if (nbImagesAffichees < 5) {
316 aurelien 95
				ClickHandler gestionnaireClic = new ClickHandler() {
200 gduche 96
					public void onClick(ClickEvent event) {
316 aurelien 97
						IsWidget image = (IsWidget)event.getSource();
98
						ouvrirFenetreModale(new DetailImagePresenteur(image, new DetailImageVue()));
200 gduche 99
					}
316 aurelien 100
				};
101
				vue.ajouterPhoto(imageCourante.getUrlFormat("CRX2S"),
102
								 imageCourante.getUrlFormat("L"),
103
								 observation.getAuteur() + " - " + observation.getNomRetenu(),
104
								 gestionnaireClic);
200 gduche 105
			}
106
		}
107
 
183 gduche 108
		List<PropositionDetermination> propositions = observation.getPropositionsDetermination();
109
 
309 aurelien 110
		vue.setTexteTableau(0, 0, "Certitude");
111
		vue.setTexteTableau(0, 1, "Commentaires");
183 gduche 112
 
113
		int i = 0;
114
		for (PropositionDetermination proposition : propositions) {
115
			i++;
334 gduche 116
			HTMLPanel panneau = new HTMLPanel("");
117
			DetailVoteObservationPresenteur presenteurVote = new DetailVoteObservationPresenteur(new DetailVoteObservationVue(), proposition);
118
			presenteurVote.go(panneau);
119
			vue.setElementTableau(i, 0, panneau);
309 aurelien 120
			vue.setTexteTableau(i, 1, String.valueOf(proposition.getListeCommentaires().size()));
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
}