935 |
jpm |
1 |
package org.tela_botanica.client.vues.projet;
|
834 |
aurelien |
2 |
|
|
|
3 |
import org.tela_botanica.client.ComposantClass;
|
|
|
4 |
import org.tela_botanica.client.ComposantId;
|
|
|
5 |
import org.tela_botanica.client.Mediateur;
|
|
|
6 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
908 |
aurelien |
7 |
import org.tela_botanica.client.modeles.ValeurListe;
|
935 |
jpm |
8 |
import org.tela_botanica.client.modeles.projet.Projet;
|
|
|
9 |
import org.tela_botanica.client.modeles.projet.ProjetListe;
|
936 |
jpm |
10 |
import org.tela_botanica.client.vues.DetailVue;
|
834 |
aurelien |
11 |
|
|
|
12 |
import com.extjs.gxt.ui.client.util.Format;
|
|
|
13 |
import com.extjs.gxt.ui.client.util.Params;
|
|
|
14 |
import com.extjs.gxt.ui.client.widget.ContentPanel;
|
|
|
15 |
import com.extjs.gxt.ui.client.widget.Html;
|
|
|
16 |
import com.extjs.gxt.ui.client.widget.layout.FitLayout;
|
|
|
17 |
import com.google.gwt.core.client.GWT;
|
|
|
18 |
|
|
|
19 |
public class ProjetDetailVue extends DetailVue implements Rafraichissable {
|
|
|
20 |
|
|
|
21 |
private String enteteTpl = null;
|
|
|
22 |
private String contenuTpl = null;
|
|
|
23 |
|
|
|
24 |
private ContentPanel panneauPrincipal = null;
|
|
|
25 |
private Html entete = null;
|
|
|
26 |
private Html contenu = null;
|
|
|
27 |
|
928 |
jpm |
28 |
private final String listeValeurIndexationDureeId = "dureesIndexation";
|
|
|
29 |
private final int listeValeurIndexationDureeInt = 1072;
|
|
|
30 |
private final String listeValeurIndexationFrequenceId = "frequencesIndexation";
|
|
|
31 |
private final int listeValeurIndexationFrequenceInt = 1073;
|
|
|
32 |
private final String listeLanguesId = "langues";
|
|
|
33 |
private final int listeLanguesInt = 1071;
|
|
|
34 |
|
834 |
aurelien |
35 |
private Projet projet = null;
|
|
|
36 |
private boolean projetChargementOk = false;
|
928 |
jpm |
37 |
private ValeurListe valeurListeIndexationDuree = null;
|
|
|
38 |
private boolean listeIndexationDureeChargee = false;
|
908 |
aurelien |
39 |
private ValeurListe valeurListeIndexationFrequence = null;
|
928 |
jpm |
40 |
private boolean listeIndexationFrequenceChargee = false;
|
908 |
aurelien |
41 |
private ValeurListe valeurListeLangue = null;
|
|
|
42 |
private boolean listeLangueChargee = false;
|
834 |
aurelien |
43 |
|
|
|
44 |
public ProjetDetailVue(Mediateur mediateurCourant) {
|
|
|
45 |
super(mediateurCourant);
|
|
|
46 |
|
|
|
47 |
initialiserTousLesTpl();
|
|
|
48 |
|
|
|
49 |
panneauPrincipal = new ContentPanel();
|
|
|
50 |
panneauPrincipal.setLayout(new FitLayout());
|
|
|
51 |
panneauPrincipal.setHeaderVisible(false);
|
|
|
52 |
panneauPrincipal.setBodyBorder(false);
|
|
|
53 |
|
|
|
54 |
entete = new Html();
|
|
|
55 |
entete.setId(ComposantId.ZONE_DETAIL_ENTETE);
|
|
|
56 |
panneauPrincipal.setTopComponent(entete);
|
|
|
57 |
|
|
|
58 |
contenu = new Html();
|
|
|
59 |
panneauPrincipal.add(contenu);
|
|
|
60 |
|
|
|
61 |
add(panneauPrincipal);
|
908 |
aurelien |
62 |
|
|
|
63 |
mediateurCourant.obtenirListeValeurEtRafraichir(this, listeValeurIndexationDureeId);
|
|
|
64 |
mediateurCourant.obtenirListeValeurEtRafraichir(this, listeValeurIndexationFrequenceId);
|
|
|
65 |
mediateurCourant.obtenirListeValeurEtRafraichir(this, listeLanguesId);
|
834 |
aurelien |
66 |
}
|
|
|
67 |
|
|
|
68 |
private void initialiserTousLesTpl() {
|
|
|
69 |
initialiserEnteteHtmlTpl();
|
|
|
70 |
initialiserGeneralTpl();
|
|
|
71 |
}
|
|
|
72 |
|
|
|
73 |
private void initialiserEnteteHtmlTpl() {
|
|
|
74 |
enteteTpl =
|
|
|
75 |
"<div id='{css_id}'>"+
|
877 |
aurelien |
76 |
" <h1>{projet}</h1>"+
|
|
|
77 |
" <h2>{abreviation} <span class='{css_meta}'>{projet} <br /> {i18n_id}:{id} - {guid}</span></h2>" +
|
834 |
aurelien |
78 |
"</div>";
|
|
|
79 |
}
|
|
|
80 |
|
|
|
81 |
private void initialiserGeneralTpl() {
|
|
|
82 |
contenuTpl =
|
|
|
83 |
"<div class='{css_corps}'>"+
|
|
|
84 |
" <div class='{css_fieldset}'>"+
|
928 |
jpm |
85 |
" <h2>{i18n_titre_info_generale}</h2>"+
|
877 |
aurelien |
86 |
" <span class='{css_label}'>{i18n_nom} :</span> {nom}<br />"+
|
|
|
87 |
" <span class='{css_label}'>{i18n_abreviation} :</span> {abreviation}<br />"+
|
|
|
88 |
" <span class='{css_label}'>{i18n_resume} :</span> {resume}<br />"+
|
|
|
89 |
" <span class='{css_label}'>{i18n_description} :</span> {description}<br />"+
|
928 |
jpm |
90 |
" </div>"+
|
|
|
91 |
" <div class='{css_fieldset}'>"+
|
|
|
92 |
" <h2>{i18n_titre_complement}</h2>"+
|
|
|
93 |
" <span class='{css_label}'>{i18n_mot_cles} :</span> {mot_cles}<br />"+
|
877 |
aurelien |
94 |
" <span class='{css_label}'>{i18n_citation} :</span> {citation}<br />"+
|
|
|
95 |
" <span class='{css_label}'>{i18n_licence} :</span> {licence}<br />"+
|
|
|
96 |
" <span class='{css_label}'>{i18n_langue} :</span> {langue}<br />"+
|
928 |
jpm |
97 |
" </div>"+
|
|
|
98 |
" <hr class='{css_clear}'/>"+
|
|
|
99 |
" <div class='{css_fieldset}'>"+
|
|
|
100 |
" <h2>{i18n_titre_indexation}</h2>"+
|
877 |
aurelien |
101 |
" <span class='{css_label}'>{i18n_indexation_heure} :</span> {indexation_heure}<br />"+
|
|
|
102 |
" <span class='{css_label}'>{i18n_indexation_duree} :</span> {indexation_duree}<br />"+
|
|
|
103 |
" <span class='{css_label}'>{i18n_indexation_frequence} :</span> {indexation_frequence}<br />"+
|
|
|
104 |
" <span class='{css_label}'>{i18n_mark_public} :</span> {mark_public}<br />"+
|
834 |
aurelien |
105 |
" </div>"+
|
|
|
106 |
"</div>";
|
|
|
107 |
}
|
|
|
108 |
|
|
|
109 |
public void afficherDetail() {
|
|
|
110 |
if (projet != null) {
|
|
|
111 |
afficherEntete();
|
|
|
112 |
afficherDetailProjet();
|
|
|
113 |
}
|
|
|
114 |
layout();
|
|
|
115 |
}
|
|
|
116 |
|
|
|
117 |
private void afficherEntete() {
|
|
|
118 |
Params enteteParams = new Params();
|
|
|
119 |
enteteParams.set("css_id", ComposantId.ZONE_DETAIL_ENTETE);
|
|
|
120 |
enteteParams.set("css_meta", ComposantClass.META);
|
|
|
121 |
|
|
|
122 |
enteteParams.set("i18n_id", i18nC.id());
|
|
|
123 |
|
|
|
124 |
enteteParams.set("id", projet.getId());
|
|
|
125 |
enteteParams.set("guid", getGuid());
|
|
|
126 |
enteteParams.set("projet", construireTxtProjet(projet.getId()));
|
877 |
aurelien |
127 |
enteteParams.set("abreviation", projet.getAbreviation());
|
834 |
aurelien |
128 |
GWT.log("entete généré", null);
|
|
|
129 |
String eHtml = Format.substitute(enteteTpl, enteteParams);
|
|
|
130 |
entete.getElement().setInnerHTML(eHtml);
|
|
|
131 |
}
|
|
|
132 |
|
|
|
133 |
public String getGuid() {
|
|
|
134 |
String guid = "URN:tela-botanica.org:";
|
|
|
135 |
guid += "coel"+projet.getId()+":";
|
|
|
136 |
guid += "pro"+projet.getId();
|
|
|
137 |
return guid;
|
|
|
138 |
}
|
|
|
139 |
|
|
|
140 |
public void afficherDetailProjet() {
|
|
|
141 |
Params contenuParams = new Params();
|
|
|
142 |
|
928 |
jpm |
143 |
contenuParams.set("i18n_titre_info_generale", i18nC.projetTitreInfoGenerale());
|
834 |
aurelien |
144 |
|
877 |
aurelien |
145 |
contenuParams.set("i18n_nom", i18nC.nom());
|
|
|
146 |
contenuParams.set("nom", projet.getNom());
|
|
|
147 |
|
|
|
148 |
contenuParams.set("i18n_abreviation", i18nC.projetAbreviation());
|
|
|
149 |
contenuParams.set("abreviation", projet.getAbreviation());
|
|
|
150 |
|
|
|
151 |
contenuParams.set("i18n_resume", i18nC.projetResume());
|
|
|
152 |
contenuParams.set("resume", projet.getResume());
|
|
|
153 |
|
|
|
154 |
contenuParams.set("i18n_description", i18nC.projetDescription());
|
|
|
155 |
contenuParams.set("description", projet.getDescription());
|
|
|
156 |
|
928 |
jpm |
157 |
contenuParams.set("i18n_titre_complement", i18nC.projetTitreComplement());
|
877 |
aurelien |
158 |
|
928 |
jpm |
159 |
contenuParams.set("i18n_mot_cles", i18nC.projetMotsCles());
|
|
|
160 |
contenuParams.set("mot_cles", projet.getMotsCles());
|
|
|
161 |
|
877 |
aurelien |
162 |
contenuParams.set("i18n_citation", i18nC.projetCitation());
|
|
|
163 |
contenuParams.set("citation", projet.getCitation());
|
|
|
164 |
|
|
|
165 |
contenuParams.set("i18n_licence", i18nC.projetLicence());
|
|
|
166 |
contenuParams.set("licence", projet.getLicence());
|
|
|
167 |
|
|
|
168 |
contenuParams.set("i18n_langue", i18nC.projetLangue());
|
908 |
aurelien |
169 |
contenuParams.set("langue", obtenirValeurLangue(projet.getLangue()));
|
877 |
aurelien |
170 |
|
928 |
jpm |
171 |
contenuParams.set("i18n_titre_indexation", i18nC.projetTitreIndexation());
|
|
|
172 |
|
877 |
aurelien |
173 |
contenuParams.set("i18n_indexation_heure", i18nC.projetIndexationHeure());
|
|
|
174 |
contenuParams.set("indexation_heure", projet.getIndexationHeure());
|
|
|
175 |
|
|
|
176 |
contenuParams.set("i18n_indexation_duree", i18nC.projetIndexationDuree());
|
908 |
aurelien |
177 |
contenuParams.set("indexation_duree", obtenirValeurIndexationDuree(projet.getIndexationDuree()));
|
877 |
aurelien |
178 |
|
|
|
179 |
contenuParams.set("i18n_indexation_frequence", i18nC.projetIndexationFrequence());
|
908 |
aurelien |
180 |
contenuParams.set("indexation_frequence", obtenirValeurIndexationFrequence(projet.getIndexationFreq()));
|
877 |
aurelien |
181 |
|
|
|
182 |
contenuParams.set("i18n_mark_public", i18nC.projetMarkPublic());
|
908 |
aurelien |
183 |
contenuParams.set("mark_public", obtenirValeurPublic(projet.getMarkPublic()));
|
877 |
aurelien |
184 |
|
834 |
aurelien |
185 |
String gHtml = formaterContenu(contenuTpl, contenuParams);
|
|
|
186 |
contenu.getElement().setInnerHTML(gHtml);
|
|
|
187 |
}
|
|
|
188 |
|
|
|
189 |
public void rafraichir(Object nouvellesDonnees) {
|
|
|
190 |
if (nouvellesDonnees instanceof Projet) {
|
|
|
191 |
projet = (Projet) nouvellesDonnees;
|
|
|
192 |
projetChargementOk = true;
|
|
|
193 |
} else if (nouvellesDonnees instanceof ProjetListe) {
|
|
|
194 |
projets = (ProjetListe) nouvellesDonnees;
|
|
|
195 |
projetsChargementOk = true;
|
908 |
aurelien |
196 |
} else if(nouvellesDonnees instanceof ValeurListe) {
|
|
|
197 |
ValeurListe nValeurListe = (ValeurListe)nouvellesDonnees;
|
|
|
198 |
|
924 |
jpm |
199 |
if (nValeurListe.getId() == listeValeurIndexationDureeInt) {
|
908 |
aurelien |
200 |
valeurListeIndexationDuree = (ValeurListe)nouvellesDonnees;
|
|
|
201 |
listeIndexationDureeChargee = true;
|
|
|
202 |
}
|
|
|
203 |
|
924 |
jpm |
204 |
if (nValeurListe.getId() == listeValeurIndexationFrequenceInt) {
|
908 |
aurelien |
205 |
valeurListeIndexationFrequence = (ValeurListe)nouvellesDonnees;
|
|
|
206 |
listeIndexationFrequenceChargee = true;
|
|
|
207 |
}
|
|
|
208 |
|
924 |
jpm |
209 |
if (nValeurListe.getId() == listeLanguesInt) {
|
908 |
aurelien |
210 |
valeurListeLangue = (ValeurListe)nouvellesDonnees;
|
|
|
211 |
listeLangueChargee = true;
|
|
|
212 |
}
|
928 |
jpm |
213 |
} else {
|
834 |
aurelien |
214 |
GWT.log(Mediateur.i18nM.erreurRafraichir(nouvellesDonnees.getClass(), this.getClass()), null);
|
|
|
215 |
}
|
|
|
216 |
|
|
|
217 |
if (avoirDonneesChargees()) {
|
|
|
218 |
afficherDetail();
|
|
|
219 |
}
|
|
|
220 |
}
|
|
|
221 |
|
|
|
222 |
private boolean avoirDonneesChargees() {
|
|
|
223 |
boolean ok = false;
|
928 |
jpm |
224 |
if (projetsChargementOk && projetChargementOk && listeIndexationDureeChargee && listeIndexationFrequenceChargee && listeLangueChargee) {
|
834 |
aurelien |
225 |
ok = true;
|
|
|
226 |
}
|
|
|
227 |
return ok;
|
|
|
228 |
}
|
908 |
aurelien |
229 |
|
|
|
230 |
private String obtenirValeurIndexationDuree(String id) {
|
924 |
jpm |
231 |
if (valeurListeIndexationDuree.get(id) != null) {
|
908 |
aurelien |
232 |
return valeurListeIndexationDuree.get(id).getNom();
|
|
|
233 |
}
|
|
|
234 |
return "";
|
|
|
235 |
}
|
|
|
236 |
|
|
|
237 |
private String obtenirValeurIndexationFrequence(String id) {
|
924 |
jpm |
238 |
if (valeurListeIndexationFrequence.get(id) != null) {
|
908 |
aurelien |
239 |
return valeurListeIndexationFrequence.get(id).getNom();
|
|
|
240 |
}
|
|
|
241 |
return "";
|
|
|
242 |
}
|
|
|
243 |
|
|
|
244 |
private String obtenirValeurLangue(String id) {
|
924 |
jpm |
245 |
if (valeurListeLangue.get(id) != null) {
|
908 |
aurelien |
246 |
return valeurListeLangue.get(id).getNom();
|
|
|
247 |
}
|
|
|
248 |
return "";
|
|
|
249 |
}
|
|
|
250 |
|
|
|
251 |
private String obtenirValeurPublic(String ouiNon) {
|
924 |
jpm |
252 |
if (ouiNon.equals("1")) {
|
908 |
aurelien |
253 |
return i18nC.oui();
|
|
|
254 |
}
|
|
|
255 |
return i18nC.non();
|
|
|
256 |
}
|
834 |
aurelien |
257 |
}
|