1196 |
gduche |
1 |
package org.tela_botanica.del.client.vues.identiplante.resultats.observationdeterminations;
|
|
|
2 |
|
|
|
3 |
import java.util.Collections;
|
|
|
4 |
import java.util.List;
|
|
|
5 |
|
|
|
6 |
import org.tela_botanica.del.client.composants.fenetreoverlay.FenetreOverlaySimplePresenteur;
|
|
|
7 |
import org.tela_botanica.del.client.composants.rss.RssPresenteur;
|
|
|
8 |
import org.tela_botanica.del.client.composants.rss.RssVue;
|
1209 |
gduche |
9 |
import org.tela_botanica.del.client.modeles.Observation;
|
1196 |
gduche |
10 |
import org.tela_botanica.del.client.modeles.PropositionDetermination;
|
|
|
11 |
import org.tela_botanica.del.client.modeles.VoteDetermination;
|
|
|
12 |
import org.tela_botanica.del.client.navigation.evenement.BusEvenementiel;
|
|
|
13 |
import org.tela_botanica.del.client.navigation.evenement.voteDetermination.EvenementVoteDetermination;
|
|
|
14 |
import org.tela_botanica.del.client.navigation.evenement.voteDetermination.GestionnaireEvenementVoteDetermination;
|
|
|
15 |
import org.tela_botanica.del.client.utils.ComparateurPropositionDetermination;
|
|
|
16 |
import org.tela_botanica.del.client.vues.identiplante.resultats.votes.DetailVoteObservationPresenteur;
|
|
|
17 |
import org.tela_botanica.del.client.vues.identiplante.resultats.votes.DetailVoteObservationVue;
|
|
|
18 |
|
|
|
19 |
import com.google.gwt.user.client.Window;
|
|
|
20 |
import com.google.gwt.user.client.ui.HTMLPanel;
|
|
|
21 |
import com.google.gwt.user.client.ui.HasWidgets;
|
|
|
22 |
import com.google.gwt.user.client.ui.IsWidget;
|
1209 |
gduche |
23 |
|
1196 |
gduche |
24 |
public class ObservationDeterminationPresenteur {
|
|
|
25 |
public abstract interface Vue extends IsWidget {
|
|
|
26 |
public void viderTableau();
|
|
|
27 |
|
1209 |
gduche |
28 |
public void viderTableauPropositionInitiale();
|
1196 |
gduche |
29 |
|
|
|
30 |
public HasWidgets getTableauPropositions();
|
|
|
31 |
|
1209 |
gduche |
32 |
public HasWidgets getTableauPropositionInitiale();
|
|
|
33 |
|
|
|
34 |
public void viderTableauPropositionRetenue();
|
|
|
35 |
|
|
|
36 |
public HasWidgets getTableauPropositionRetenue();
|
1196 |
gduche |
37 |
|
|
|
38 |
void setNbVotes(int index, int nbVotes);
|
|
|
39 |
|
|
|
40 |
void setNbCommentaires(int index, int nbCommentaires);
|
|
|
41 |
|
|
|
42 |
int getIndexLigneProposition(LignePropositionVue lignePropositionVue);
|
|
|
43 |
|
|
|
44 |
public void masquerPropositions();
|
|
|
45 |
|
1209 |
gduche |
46 |
public void toggleTableauPropositionRetenue();
|
1196 |
gduche |
47 |
}
|
|
|
48 |
private Vue vue;
|
|
|
49 |
private List<PropositionDetermination> propositions;
|
|
|
50 |
FenetreOverlaySimplePresenteur fenetreOverlaySimplePresenteur;
|
|
|
51 |
|
|
|
52 |
public ObservationDeterminationPresenteur(Vue vue, List<PropositionDetermination> propositions) {
|
|
|
53 |
this.propositions = propositions;
|
|
|
54 |
this.vue = vue;
|
|
|
55 |
}
|
|
|
56 |
|
1209 |
gduche |
57 |
public void chargerPropositionRetenue(PropositionDetermination proposition) {
|
|
|
58 |
vue.viderTableauPropositionRetenue();
|
|
|
59 |
HTMLPanel panneau = new HTMLPanel("");
|
|
|
60 |
DetailVoteObservationPresenteur presenteurVote = new DetailVoteObservationPresenteur(new DetailVoteObservationVue(), proposition);
|
|
|
61 |
presenteurVote.go(panneau);
|
|
|
62 |
LignePropositionVue lignePropositionVue = new LignePropositionVue(panneau);
|
|
|
63 |
LignePropositionPresenteur lignePropositionPresenteur = new LignePropositionPresenteur(lignePropositionVue, proposition);
|
|
|
64 |
lignePropositionPresenteur.go(vue.getTableauPropositionRetenue());
|
|
|
65 |
vue.toggleTableauPropositionRetenue();
|
|
|
66 |
}
|
|
|
67 |
|
1196 |
gduche |
68 |
public void chargerPropositionOriginale(PropositionDetermination proposition) {
|
1209 |
gduche |
69 |
vue.viderTableauPropositionInitiale();
|
1196 |
gduche |
70 |
// TODO: afficher nombre de votes total et mettre à jour en cas de
|
|
|
71 |
// vote
|
|
|
72 |
HTMLPanel panneau = new HTMLPanel("");
|
|
|
73 |
DetailVoteObservationPresenteur presenteurVote = new DetailVoteObservationPresenteur(new DetailVoteObservationVue(), proposition);
|
|
|
74 |
presenteurVote.go(panneau);
|
|
|
75 |
LignePropositionVue lignePropositionVue = new LignePropositionVue(panneau);
|
|
|
76 |
LignePropositionPresenteur lignePropositionPresenteur = new LignePropositionPresenteur(lignePropositionVue, proposition);
|
1209 |
gduche |
77 |
lignePropositionPresenteur.go(vue.getTableauPropositionInitiale());
|
1196 |
gduche |
78 |
|
|
|
79 |
}
|
|
|
80 |
|
|
|
81 |
|
|
|
82 |
public void classerPropositions(List<PropositionDetermination> propositions) {
|
|
|
83 |
|
|
|
84 |
Collections.sort(propositions, new ComparateurPropositionDetermination());
|
|
|
85 |
}
|
|
|
86 |
|
|
|
87 |
public void chargerPropositions() {
|
|
|
88 |
vue.viderTableau();
|
|
|
89 |
int nbPropositions = 0;
|
|
|
90 |
classerPropositions(propositions);
|
|
|
91 |
for (PropositionDetermination proposition : propositions) {
|
|
|
92 |
if (proposition.estPropositionInitiale()) {
|
1209 |
gduche |
93 |
chargerPropositionOriginale(proposition);
|
|
|
94 |
} else if (proposition.estPropositionRetenue()) {
|
|
|
95 |
chargerPropositionRetenue(proposition);
|
1196 |
gduche |
96 |
} else {
|
|
|
97 |
|
|
|
98 |
nbPropositions++;
|
|
|
99 |
// TODO: afficher nombre de votes total et mettre à jour en
|
|
|
100 |
// cas de
|
|
|
101 |
// vote
|
|
|
102 |
HTMLPanel panneau = new HTMLPanel("");
|
|
|
103 |
DetailVoteObservationPresenteur presenteurVote = new DetailVoteObservationPresenteur(new DetailVoteObservationVue(), proposition);
|
|
|
104 |
presenteurVote.go(panneau);
|
|
|
105 |
LignePropositionVue lignePropositionVue = new LignePropositionVue(panneau);
|
|
|
106 |
LignePropositionPresenteur lignePropositionPresenteur = new LignePropositionPresenteur(lignePropositionVue, proposition);
|
|
|
107 |
lignePropositionPresenteur.go(vue.getTableauPropositions());
|
|
|
108 |
}
|
|
|
109 |
}
|
1209 |
gduche |
110 |
|
1196 |
gduche |
111 |
if (nbPropositions > 0) {
|
|
|
112 |
} else {
|
|
|
113 |
vue.masquerPropositions();
|
|
|
114 |
}
|
|
|
115 |
BusEvenementiel.getInstance().addHandler(EvenementVoteDetermination.TYPE, new GestionnaireEvenementVoteDetermination() {
|
|
|
116 |
@Override
|
|
|
117 |
public void onVoteDetermination(VoteDetermination event) {
|
|
|
118 |
surVoteDetermination(event);
|
|
|
119 |
}
|
|
|
120 |
});
|
|
|
121 |
}
|
|
|
122 |
|
|
|
123 |
public void setPropositions(List<PropositionDetermination> propositions) {
|
|
|
124 |
this.propositions = propositions;
|
|
|
125 |
chargerPropositions();
|
|
|
126 |
}
|
|
|
127 |
|
|
|
128 |
public void go(HasWidgets composite) {
|
|
|
129 |
composite.add(vue.asWidget());
|
|
|
130 |
chargerPropositions();
|
|
|
131 |
}
|
|
|
132 |
|
|
|
133 |
public void surVoteDetermination(VoteDetermination voteDetermination) {
|
|
|
134 |
int indexProposition = propositions.indexOf(voteDetermination.getPropositionDetermination());
|
|
|
135 |
if (indexProposition != -1) {
|
|
|
136 |
vue.setNbVotes(indexProposition, voteDetermination.getPropositionDetermination().getVotesDeterminations().size());
|
|
|
137 |
}
|
|
|
138 |
}
|
|
|
139 |
}
|