480 |
benjamin |
1 |
package org.tela_botanica.del.client.vues.rechercheobservations.resultats.observations;
|
166 |
gduche |
2 |
|
|
|
3 |
import java.util.List;
|
|
|
4 |
|
332 |
gduche |
5 |
import org.tela_botanica.del.client.cache.CacheClient;
|
447 |
gduche |
6 |
import org.tela_botanica.del.client.composants.metadonnees.MetadonneesPresenteur;
|
|
|
7 |
import org.tela_botanica.del.client.composants.metadonnees.MetadonneesVue;
|
480 |
benjamin |
8 |
import org.tela_botanica.del.client.composants.observations.ObservationImagesPresenteur;
|
|
|
9 |
import org.tela_botanica.del.client.composants.observations.ObservationImagesVue;
|
166 |
gduche |
10 |
import org.tela_botanica.del.client.composants.presenteur.Presenteur;
|
332 |
gduche |
11 |
import org.tela_botanica.del.client.modeles.Image;
|
552 |
benjamin |
12 |
import org.tela_botanica.del.client.modeles.ModeRecherche;
|
166 |
gduche |
13 |
import org.tela_botanica.del.client.modeles.Observation;
|
602 |
aurelien |
14 |
import org.tela_botanica.del.client.modeles.PropositionDetermination;
|
332 |
gduche |
15 |
import org.tela_botanica.del.client.navigation.evenement.BusEvenementiel;
|
602 |
aurelien |
16 |
import org.tela_botanica.del.client.navigation.evenement.ajoutdetermination.EvenementAjoutDetermination;
|
|
|
17 |
import org.tela_botanica.del.client.navigation.evenement.ajoutdetermination.GestionnaireEvenementAjoutDetermination;
|
606 |
aurelien |
18 |
import org.tela_botanica.del.client.navigation.evenement.validationobservation.EvenementValidation;
|
613 |
gduche |
19 |
import org.tela_botanica.del.client.composants.fenetreoverlay.FenetreOverlayDefilanteVue;
|
|
|
20 |
import org.tela_botanica.del.client.composants.fenetreoverlay.FenetreOverlaySimplePresenteur;
|
602 |
aurelien |
21 |
import org.tela_botanica.del.client.composants.formulaires.formulaireproposition.FormulairePropositionPresenteur;
|
|
|
22 |
import org.tela_botanica.del.client.composants.formulaires.formulaireproposition.FormulairePropositionVue;
|
480 |
benjamin |
23 |
import org.tela_botanica.del.client.vues.rechercheobservations.resultats.observationdeterminations.ObservationDeterminationPresenteur;
|
|
|
24 |
import org.tela_botanica.del.client.vues.rechercheobservations.resultats.observationdeterminations.ObservationDeterminationVue;
|
166 |
gduche |
25 |
|
200 |
gduche |
26 |
import com.google.gwt.event.dom.client.ClickEvent;
|
|
|
27 |
import com.google.gwt.event.dom.client.ClickHandler;
|
309 |
aurelien |
28 |
import com.google.gwt.event.dom.client.HasClickHandlers;
|
166 |
gduche |
29 |
import com.google.gwt.user.client.ui.HasWidgets;
|
309 |
aurelien |
30 |
import com.google.gwt.user.client.ui.IsWidget;
|
166 |
gduche |
31 |
|
|
|
32 |
public class ObservationPresenteur extends Presenteur {
|
436 |
benjamin |
33 |
|
602 |
aurelien |
34 |
public interface Vue extends IsWidget {
|
|
|
35 |
public HasClickHandlers getBoutonAjoutProposition();
|
436 |
benjamin |
36 |
public HasWidgets getDeterminationsPanel();
|
602 |
aurelien |
37 |
public HasWidgets getImagesPanel();
|
447 |
gduche |
38 |
public HasWidgets getMetadonneesPanel();
|
606 |
aurelien |
39 |
public HasClickHandlers getLienDeterminer();
|
309 |
aurelien |
40 |
}
|
436 |
benjamin |
41 |
|
309 |
aurelien |
42 |
private Vue vue;
|
166 |
gduche |
43 |
|
|
|
44 |
private Observation observation;
|
602 |
aurelien |
45 |
|
|
|
46 |
private ObservationDeterminationPresenteur observationDeterminationPresenteur;
|
616 |
aurelien |
47 |
|
|
|
48 |
private FenetreOverlaySimplePresenteur fenetreOverlaySimplePresenteur;
|
166 |
gduche |
49 |
|
309 |
aurelien |
50 |
public ObservationPresenteur(Vue vue, Observation observation) {
|
166 |
gduche |
51 |
this.observation = observation;
|
314 |
gduche |
52 |
this.vue = vue;
|
166 |
gduche |
53 |
chargerObservation();
|
|
|
54 |
}
|
|
|
55 |
|
|
|
56 |
public void chargerObservation() {
|
436 |
benjamin |
57 |
new ObservationImagesPresenteur(new ObservationImagesVue(), observation).go(vue.getImagesPanel());
|
552 |
benjamin |
58 |
new MetadonneesPresenteur(new MetadonneesVue(), observation, ModeRecherche.MODE_OBSERVATION).go(vue.getMetadonneesPanel());
|
658 |
benjamin |
59 |
observationDeterminationPresenteur = new ObservationDeterminationPresenteur(new ObservationDeterminationVue(), observation.getPropositionDeterminations());
|
602 |
aurelien |
60 |
observationDeterminationPresenteur.go(vue.getDeterminationsPanel());
|
166 |
gduche |
61 |
|
436 |
benjamin |
62 |
gererEvenements();
|
166 |
gduche |
63 |
}
|
|
|
64 |
|
|
|
65 |
public void go(HasWidgets composite) {
|
309 |
aurelien |
66 |
composite.add(vue.asWidget());
|
166 |
gduche |
67 |
}
|
|
|
68 |
|
220 |
gduche |
69 |
protected void gererEvenements() {
|
602 |
aurelien |
70 |
|
|
|
71 |
BusEvenementiel.getInstance().addHandler(EvenementAjoutDetermination.TYPE, new GestionnaireEvenementAjoutDetermination() {
|
|
|
72 |
@Override
|
|
|
73 |
public void onAjoutDetermination(EvenementAjoutDetermination event) {
|
618 |
aurelien |
74 |
if (fenetreOverlaySimplePresenteur != null && fenetreOverlaySimplePresenteur.fenetreModaleEstOuverte()) {
|
616 |
aurelien |
75 |
fenetreOverlaySimplePresenteur.fermerFenetreModale();
|
602 |
aurelien |
76 |
ajouterPropositionDetermination(event.getPropositionDetermination());
|
|
|
77 |
}
|
|
|
78 |
}
|
|
|
79 |
});
|
606 |
aurelien |
80 |
|
|
|
81 |
vue.getLienDeterminer().addClickHandler(new ClickHandler() {
|
|
|
82 |
@Override
|
|
|
83 |
public void onClick(ClickEvent event) {
|
|
|
84 |
List<Image> images = observation.getImages();
|
|
|
85 |
if (images.size() > 0) {
|
|
|
86 |
CacheClient.getInstance().setImageCourante(images.get(0));
|
|
|
87 |
} else {
|
|
|
88 |
CacheClient.getInstance().setImageCourante(null);
|
|
|
89 |
}
|
|
|
90 |
BusEvenementiel.getInstance().fireEvent(new EvenementValidation(observation));
|
|
|
91 |
}
|
|
|
92 |
});
|
436 |
benjamin |
93 |
|
602 |
aurelien |
94 |
vue.getBoutonAjoutProposition().addClickHandler(new ClickHandler() {
|
|
|
95 |
@Override
|
332 |
gduche |
96 |
public void onClick(ClickEvent event) {
|
|
|
97 |
List<Image> images = observation.getImages();
|
|
|
98 |
if (images.size() > 0) {
|
|
|
99 |
CacheClient.getInstance().setImageCourante(images.get(0));
|
|
|
100 |
} else {
|
|
|
101 |
CacheClient.getInstance().setImageCourante(null);
|
|
|
102 |
}
|
602 |
aurelien |
103 |
CacheClient.getInstance().setObservationCourante(observation);
|
616 |
aurelien |
104 |
fenetreOverlaySimplePresenteur = new FenetreOverlaySimplePresenteur(new FenetreOverlayDefilanteVue());
|
602 |
aurelien |
105 |
fenetreOverlaySimplePresenteur.ouvrirFenetreModale(new FormulairePropositionPresenteur(new FormulairePropositionVue()));
|
332 |
gduche |
106 |
}
|
|
|
107 |
});
|
166 |
gduche |
108 |
}
|
602 |
aurelien |
109 |
|
|
|
110 |
private void ajouterPropositionDetermination(PropositionDetermination propositionDetermination) {
|
658 |
benjamin |
111 |
observationDeterminationPresenteur.setPropositions(observation.getPropositionDeterminations());
|
602 |
aurelien |
112 |
}
|
166 |
gduche |
113 |
}
|