935 |
jpm |
1 |
package org.tela_botanica.client.vues.publication;
|
106 |
aurelien |
2 |
|
|
|
3 |
import java.util.ArrayList;
|
713 |
aurelien |
4 |
import java.util.Iterator;
|
106 |
aurelien |
5 |
import java.util.List;
|
|
|
6 |
|
|
|
7 |
import org.tela_botanica.client.Mediateur;
|
|
|
8 |
import org.tela_botanica.client.RegistreId;
|
1633 |
aurelien |
9 |
import org.tela_botanica.client.composants.ChampFiltreRecherche;
|
1239 |
cyprien |
10 |
import org.tela_botanica.client.composants.InfoLogger;
|
553 |
jp_milcent |
11 |
import org.tela_botanica.client.i18n.Constantes;
|
|
|
12 |
import org.tela_botanica.client.images.Images;
|
106 |
aurelien |
13 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
553 |
jp_milcent |
14 |
import org.tela_botanica.client.modeles.Information;
|
|
|
15 |
import org.tela_botanica.client.modeles.Utilisateur;
|
935 |
jpm |
16 |
import org.tela_botanica.client.modeles.publication.Publication;
|
|
|
17 |
import org.tela_botanica.client.modeles.publication.PublicationAPersonneListe;
|
|
|
18 |
import org.tela_botanica.client.modeles.publication.PublicationListe;
|
1046 |
gduche |
19 |
import org.tela_botanica.client.modeles.structure.StructureListe;
|
907 |
jpm |
20 |
import org.tela_botanica.client.util.Debug;
|
1046 |
gduche |
21 |
import org.tela_botanica.client.vues.BarrePaginationVue;
|
106 |
aurelien |
22 |
|
|
|
23 |
import com.extjs.gxt.ui.client.Registry;
|
553 |
jp_milcent |
24 |
import com.extjs.gxt.ui.client.Style.SortDir;
|
567 |
jp_milcent |
25 |
import com.extjs.gxt.ui.client.event.BaseEvent;
|
500 |
jp_milcent |
26 |
import com.extjs.gxt.ui.client.event.ButtonEvent;
|
567 |
jp_milcent |
27 |
import com.extjs.gxt.ui.client.event.Events;
|
|
|
28 |
import com.extjs.gxt.ui.client.event.Listener;
|
106 |
aurelien |
29 |
import com.extjs.gxt.ui.client.event.SelectionChangedEvent;
|
|
|
30 |
import com.extjs.gxt.ui.client.event.SelectionChangedListener;
|
|
|
31 |
import com.extjs.gxt.ui.client.event.SelectionListener;
|
|
|
32 |
import com.extjs.gxt.ui.client.store.ListStore;
|
|
|
33 |
import com.extjs.gxt.ui.client.widget.ContentPanel;
|
500 |
jp_milcent |
34 |
import com.extjs.gxt.ui.client.widget.button.Button;
|
553 |
jp_milcent |
35 |
import com.extjs.gxt.ui.client.widget.grid.ColumnConfig;
|
713 |
aurelien |
36 |
import com.extjs.gxt.ui.client.widget.grid.ColumnData;
|
553 |
jp_milcent |
37 |
import com.extjs.gxt.ui.client.widget.grid.ColumnModel;
|
|
|
38 |
import com.extjs.gxt.ui.client.widget.grid.Grid;
|
713 |
aurelien |
39 |
import com.extjs.gxt.ui.client.widget.grid.GridCellRenderer;
|
553 |
jp_milcent |
40 |
import com.extjs.gxt.ui.client.widget.grid.GridSelectionModel;
|
106 |
aurelien |
41 |
import com.extjs.gxt.ui.client.widget.layout.FitLayout;
|
|
|
42 |
import com.extjs.gxt.ui.client.widget.toolbar.ToolBar;
|
553 |
jp_milcent |
43 |
import com.google.gwt.core.client.GWT;
|
1882 |
aurelien |
44 |
import com.google.gwt.user.client.Window;
|
106 |
aurelien |
45 |
|
444 |
jp_milcent |
46 |
public class PublicationListeVue extends ContentPanel implements Rafraichissable {
|
106 |
aurelien |
47 |
|
553 |
jp_milcent |
48 |
private Mediateur mediateur = null;
|
|
|
49 |
private Constantes i18nC = null;
|
|
|
50 |
|
|
|
51 |
private Grid<Publication> grille = null;
|
106 |
aurelien |
52 |
private ListStore<Publication> store = null;
|
713 |
aurelien |
53 |
private ColumnModel modeleDesColonnes = null;
|
106 |
aurelien |
54 |
|
553 |
jp_milcent |
55 |
private Button ajouter;
|
|
|
56 |
private Button modifier;
|
|
|
57 |
private Button supprimer;
|
1860 |
aurelien |
58 |
private Button importer;
|
749 |
aurelien |
59 |
|
1633 |
aurelien |
60 |
private ChampFiltreRecherche champFiltreRecherche = null;
|
1046 |
gduche |
61 |
private BarrePaginationVue pagination = null;
|
|
|
62 |
|
1613 |
aurelien |
63 |
private int indexElementSelectionne = 0;
|
|
|
64 |
private Publication publicationSelectionnee = null;
|
|
|
65 |
|
553 |
jp_milcent |
66 |
public PublicationListeVue(Mediateur mediateurCourant) {
|
|
|
67 |
mediateur = mediateurCourant;
|
802 |
jpm |
68 |
i18nC = Mediateur.i18nC;
|
106 |
aurelien |
69 |
|
553 |
jp_milcent |
70 |
setLayout(new FitLayout());
|
1789 |
aurelien |
71 |
setHeaderVisible(false);
|
553 |
jp_milcent |
72 |
|
919 |
jpm |
73 |
// Gestion de la barre d'outil
|
106 |
aurelien |
74 |
ToolBar toolBar = new ToolBar();
|
553 |
jp_milcent |
75 |
ajouter = new Button(i18nC.ajouter());
|
|
|
76 |
ajouter.setIcon(Images.ICONES.ajouter());
|
500 |
jp_milcent |
77 |
ajouter.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
|
|
78 |
public void componentSelected(ButtonEvent be) {
|
553 |
jp_milcent |
79 |
mediateur.clicAjouterPublication();
|
106 |
aurelien |
80 |
}
|
|
|
81 |
});
|
1630 |
aurelien |
82 |
ajouter.setToolTip(i18nC.indicationCreerUneFiche()+" "+i18nC.publicationSingulier());
|
106 |
aurelien |
83 |
toolBar.add(ajouter);
|
|
|
84 |
|
553 |
jp_milcent |
85 |
modifier = new Button(i18nC.modifier());
|
|
|
86 |
modifier.setIcon(Images.ICONES.formModifier());
|
500 |
jp_milcent |
87 |
modifier.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
877 |
aurelien |
88 |
public void componentSelected(ButtonEvent be) {
|
919 |
jpm |
89 |
mediateur.clicModifierPublication(grille.getSelectionModel().getSelectedItems());
|
219 |
aurelien |
90 |
}
|
|
|
91 |
});
|
1630 |
aurelien |
92 |
modifier.setToolTip(i18nC.indicationModifierUneFiche());
|
919 |
jpm |
93 |
toolBar.add(modifier);
|
106 |
aurelien |
94 |
|
553 |
jp_milcent |
95 |
supprimer = new Button(i18nC.supprimer());
|
|
|
96 |
supprimer.setIcon(Images.ICONES.supprimer());
|
500 |
jp_milcent |
97 |
supprimer.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
749 |
aurelien |
98 |
public void componentSelected(ButtonEvent be) {
|
553 |
jp_milcent |
99 |
mediateur.clicSupprimerPublication(grille.getSelectionModel().getSelectedItems());
|
239 |
aurelien |
100 |
}
|
|
|
101 |
});
|
1630 |
aurelien |
102 |
supprimer.setToolTip(i18nC.indicationSupprimerUneFiche());
|
919 |
jpm |
103 |
toolBar.add(supprimer);
|
1860 |
aurelien |
104 |
|
106 |
aurelien |
105 |
setTopComponent(toolBar);
|
|
|
106 |
|
919 |
jpm |
107 |
// Gestion de la grille
|
553 |
jp_milcent |
108 |
List<ColumnConfig> colonnes = new ArrayList<ColumnConfig>();
|
239 |
aurelien |
109 |
// ATTENTION : les noms des colonnes doivent correspondre aux noms variables de la classe utilisée dans la liste
|
801 |
jpm |
110 |
colonnes.add(new ColumnConfig("fmt_auteur", i18nC.publicationAuteurs(), 200));
|
|
|
111 |
colonnes.add(new ColumnConfig("titre", i18nC.publicationTitre(), 150));
|
|
|
112 |
colonnes.add(new ColumnConfig("collection", i18nC.publicationRevueCollection(), 110));
|
|
|
113 |
colonnes.add(creerColonneEditeur());
|
|
|
114 |
colonnes.add(creerColonneAnneePublication());
|
|
|
115 |
colonnes.add(new ColumnConfig("indication_nvt", i18nC.publicationNvt(), 35));
|
|
|
116 |
colonnes.add(new ColumnConfig("fascicule", i18nC.publicationFascicule(), 35));
|
|
|
117 |
colonnes.add(new ColumnConfig("truk_pages", i18nC.publicationPage(), 35));
|
713 |
aurelien |
118 |
modeleDesColonnes = new ColumnModel(colonnes);
|
106 |
aurelien |
119 |
|
553 |
jp_milcent |
120 |
GridSelectionModel<Publication> modeleDeSelection = new GridSelectionModel<Publication>();
|
|
|
121 |
modeleDeSelection.addSelectionChangedListener(new SelectionChangedListener<Publication>() {
|
106 |
aurelien |
122 |
public void selectionChanged(SelectionChangedEvent<Publication> event) {
|
1613 |
aurelien |
123 |
publicationSelectionnee = (Publication) event.getSelectedItem();
|
|
|
124 |
indexElementSelectionne = store.indexOf(publicationSelectionnee);
|
|
|
125 |
clicListe(publicationSelectionnee);
|
106 |
aurelien |
126 |
}
|
|
|
127 |
});
|
553 |
jp_milcent |
128 |
|
|
|
129 |
store = new ListStore<Publication>();
|
|
|
130 |
store.sort("titre", SortDir.ASC);
|
|
|
131 |
|
|
|
132 |
grille = new Grid<Publication>(store, modeleDesColonnes);
|
|
|
133 |
grille.setWidth("100%");
|
919 |
jpm |
134 |
grille.setAutoExpandColumn("titre");
|
565 |
jp_milcent |
135 |
grille.getView().setAutoFill(true);
|
|
|
136 |
grille.getView().setForceFit(true);
|
553 |
jp_milcent |
137 |
grille.setSelectionModel(modeleDeSelection);
|
567 |
jp_milcent |
138 |
grille.addListener(Events.ViewReady, new Listener<BaseEvent>() {
|
|
|
139 |
public void handleEvent(BaseEvent be) {
|
|
|
140 |
grille.getSelectionModel().select(0, false);
|
|
|
141 |
}
|
|
|
142 |
});
|
877 |
aurelien |
143 |
grille.addListener(Events.OnDoubleClick, new Listener<BaseEvent>(){
|
|
|
144 |
public void handleEvent(BaseEvent be) {
|
|
|
145 |
modifier.fireEvent(Events.Select);
|
|
|
146 |
}
|
|
|
147 |
});
|
553 |
jp_milcent |
148 |
add(grille);
|
1046 |
gduche |
149 |
|
1633 |
aurelien |
150 |
PublicationListe publicationListe = new PublicationListe();
|
|
|
151 |
champFiltreRecherche = new ChampFiltreRecherche(mediateurCourant, toolBar, publicationListe);
|
1860 |
aurelien |
152 |
|
|
|
153 |
importer = new Button(i18nC.importer());
|
|
|
154 |
importer.setIcon(Images.ICONES.importerCsv());
|
|
|
155 |
importer.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
|
|
156 |
public void componentSelected(ButtonEvent be) {
|
1882 |
aurelien |
157 |
if(mediateur.getUtilisateur().isIdentifie()) {
|
|
|
158 |
mediateur.clicImporterPublication(PublicationListeVue.this);
|
|
|
159 |
} else {
|
|
|
160 |
Window.alert(i18nC.identificationNecessaire());
|
|
|
161 |
}
|
1860 |
aurelien |
162 |
}
|
|
|
163 |
});
|
|
|
164 |
importer.setToolTip(i18nC.indicationImporterUnePubli());
|
|
|
165 |
toolBar.add(importer);
|
|
|
166 |
|
1046 |
gduche |
167 |
// Définition de la barre de pagination
|
1687 |
raphael |
168 |
pagination = new BarrePaginationVue(publicationListe, mediateur, champFiltreRecherche);
|
1046 |
gduche |
169 |
setBottomComponent(pagination);
|
106 |
aurelien |
170 |
}
|
801 |
jpm |
171 |
|
910 |
jpm |
172 |
private ColumnConfig creerColonneEditeur() {
|
801 |
jpm |
173 |
GridCellRenderer<Publication> editeurRendu = new GridCellRenderer<Publication>() {
|
|
|
174 |
public String render(Publication model, String property, ColumnData config, int rowIndex, int colIndex, ListStore<Publication> store, Grid<Publication> grid) {
|
|
|
175 |
String editeur = model.getNomEditeur();
|
|
|
176 |
model.set("_editeur_", editeur);
|
|
|
177 |
return editeur;
|
|
|
178 |
}
|
|
|
179 |
};
|
985 |
jpm |
180 |
ColumnConfig editeurColonne = new ColumnConfig("_editeur_", i18nC.publicationEditeur(), 135);
|
801 |
jpm |
181 |
editeurColonne.setRenderer(editeurRendu);
|
|
|
182 |
return editeurColonne;
|
|
|
183 |
}
|
|
|
184 |
|
910 |
jpm |
185 |
private ColumnConfig creerColonneAnneePublication() {
|
801 |
jpm |
186 |
GridCellRenderer<Publication> datePublicationRendu = new GridCellRenderer<Publication>() {
|
|
|
187 |
public String render(Publication model, String property, ColumnData config, int rowIndex, int colIndex, ListStore<Publication> store, Grid<Publication> grid) {
|
|
|
188 |
String annee = model.getAnneeParution();
|
|
|
189 |
model.set("_annee_", annee);
|
|
|
190 |
return annee;
|
|
|
191 |
}
|
|
|
192 |
};
|
985 |
jpm |
193 |
ColumnConfig datePublicationColonne = new ColumnConfig("_annee_", i18nC.publicationDateParution(), 75);
|
801 |
jpm |
194 |
datePublicationColonne.setRenderer(datePublicationRendu);
|
|
|
195 |
return datePublicationColonne;
|
|
|
196 |
}
|
|
|
197 |
|
553 |
jp_milcent |
198 |
private void clicListe(Publication publication) {
|
865 |
jpm |
199 |
if (publication != null && store.getCount() > 0) {
|
|
|
200 |
mediateur.clicListePublication(publication);
|
|
|
201 |
}
|
106 |
aurelien |
202 |
}
|
|
|
203 |
|
553 |
jp_milcent |
204 |
private void gererEtatActivationBouton() {
|
|
|
205 |
int nbreElementDuMagazin = store.getCount();
|
877 |
aurelien |
206 |
ajouter.enable();
|
900 |
jpm |
207 |
if (nbreElementDuMagazin <= 0) {
|
553 |
jp_milcent |
208 |
supprimer.disable();
|
|
|
209 |
modifier.disable();
|
900 |
jpm |
210 |
} else if (nbreElementDuMagazin > 0) {
|
|
|
211 |
modifier.enable();
|
|
|
212 |
if (((Utilisateur) Registry.get(RegistreId.UTILISATEUR_COURANT)).isIdentifie()) {
|
553 |
jp_milcent |
213 |
supprimer.enable();
|
|
|
214 |
}
|
|
|
215 |
}
|
106 |
aurelien |
216 |
}
|
553 |
jp_milcent |
217 |
|
1262 |
cyprien |
218 |
public void rafraichir(Object nouvellesDonnees) {
|
851 |
gduche |
219 |
if (nouvellesDonnees instanceof PublicationListe) {
|
|
|
220 |
PublicationListe publications = (PublicationListe) nouvellesDonnees;
|
919 |
jpm |
221 |
|
1633 |
aurelien |
222 |
champFiltreRecherche.setListePaginable(publications);
|
1046 |
gduche |
223 |
pagination.setlistePaginable(publications);
|
|
|
224 |
pagination.rafraichir(publications.getPageTable());
|
|
|
225 |
|
553 |
jp_milcent |
226 |
if (publications != null) {
|
713 |
aurelien |
227 |
List<Publication> liste = publications.toList();
|
553 |
jp_milcent |
228 |
store.removeAll();
|
|
|
229 |
store.add(liste);
|
919 |
jpm |
230 |
|
|
|
231 |
mediateur.actualiserPanneauCentral();
|
106 |
aurelien |
232 |
}
|
851 |
gduche |
233 |
} else if (nouvellesDonnees instanceof Information) {
|
|
|
234 |
Information info = (Information) nouvellesDonnees;
|
553 |
jp_milcent |
235 |
if (info.getType().equals("maj_utilisateur")) {
|
|
|
236 |
gererEtatActivationBouton();
|
1613 |
aurelien |
237 |
} else if (info.getType().equals("publication_modifiee")) {
|
|
|
238 |
if(publicationSelectionnee != null) {
|
|
|
239 |
|
|
|
240 |
store.remove(indexElementSelectionne);
|
|
|
241 |
publicationSelectionnee = null;
|
|
|
242 |
}
|
|
|
243 |
Publication publiModifee = (Publication)info.getDonnee(0);
|
|
|
244 |
// au cas ou le bouton appliquer aurait été cliqué avant de valider
|
|
|
245 |
store.remove(publiModifee);
|
1645 |
aurelien |
246 |
store.insert(publiModifee, indexElementSelectionne);
|
|
|
247 |
publicationSelectionnee = publiModifee;
|
|
|
248 |
int indexElementSelectionne = store.indexOf(publicationSelectionnee);
|
|
|
249 |
grille.getSelectionModel().select(indexElementSelectionne, false);
|
|
|
250 |
grille.getView().focusRow(indexElementSelectionne);
|
|
|
251 |
clicListe(publicationSelectionnee);
|
919 |
jpm |
252 |
} else if (info.getType().equals("suppression_publication")) {
|
1524 |
jpm |
253 |
InfoLogger.display(i18nC.publicationTitreSuppression(), info.getMessages().toString());
|
734 |
aurelien |
254 |
supprimerPublicationsSelectionnees();
|
919 |
jpm |
255 |
gererEtatActivationBouton();
|
734 |
aurelien |
256 |
}
|
553 |
jp_milcent |
257 |
} else {
|
910 |
jpm |
258 |
GWT.log(Mediateur.i18nM.erreurRafraichir(nouvellesDonnees.getClass(), this.getClass()), null);
|
106 |
aurelien |
259 |
}
|
802 |
jpm |
260 |
|
553 |
jp_milcent |
261 |
layout();
|
106 |
aurelien |
262 |
}
|
713 |
aurelien |
263 |
|
910 |
jpm |
264 |
private void supprimerPublicationsSelectionnees() {
|
|
|
265 |
List<Publication> publicationsSelectionnees = grille.getSelectionModel().getSelectedItems();
|
|
|
266 |
Iterator<Publication> it = publicationsSelectionnees.iterator();
|
|
|
267 |
while (it.hasNext()) {
|
713 |
aurelien |
268 |
grille.getStore().remove(it.next());
|
|
|
269 |
}
|
|
|
270 |
layout(true);
|
|
|
271 |
}
|
106 |
aurelien |
272 |
|
1860 |
aurelien |
273 |
public void afficherDernierePage() {
|
|
|
274 |
pagination.allerALaDernierePage();
|
|
|
275 |
}
|
|
|
276 |
|
106 |
aurelien |
277 |
}
|