Line 1... |
Line 1... |
1 |
package org.tela_botanica.client.modeles.commentaire;
|
1 |
package org.tela_botanica.client.modeles.commentaire;
|
Line -... |
Line 2... |
- |
|
2 |
|
- |
|
3 |
import java.util.HashMap;
|
2 |
|
4 |
|
3 |
import org.tela_botanica.client.Mediateur;
|
5 |
import org.tela_botanica.client.Mediateur;
|
4 |
import org.tela_botanica.client.RegistreId;
|
6 |
import org.tela_botanica.client.RegistreId;
|
5 |
import org.tela_botanica.client.http.JsonRestRequestBuilder;
|
7 |
import org.tela_botanica.client.http.JsonRestRequestBuilder;
|
6 |
import org.tela_botanica.client.http.JsonRestRequestCallback;
|
8 |
import org.tela_botanica.client.http.JsonRestRequestCallback;
|
7 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
9 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
- |
|
10 |
import org.tela_botanica.client.modeles.Information;
|
8 |
import org.tela_botanica.client.modeles.Information;
|
11 |
import org.tela_botanica.client.modeles.structure.StructureListe;
|
Line 9... |
Line 12... |
9 |
import org.tela_botanica.client.util.UtilDAO;
|
12 |
import org.tela_botanica.client.util.UtilDAO;
|
10 |
|
13 |
|
11 |
import com.extjs.gxt.ui.client.Registry;
|
14 |
import com.extjs.gxt.ui.client.Registry;
|
Line 23... |
Line 26... |
23 |
public CommentaireAsyncDao(Rafraichissable vueARafraichirCourrante) {
|
26 |
public CommentaireAsyncDao(Rafraichissable vueARafraichirCourrante) {
|
24 |
vueARafraichir = vueARafraichirCourrante ;
|
27 |
vueARafraichir = vueARafraichirCourrante ;
|
25 |
utilisateurId = ((Mediateur) Registry.get(RegistreId.MEDIATEUR)).getUtilisateurId();
|
28 |
utilisateurId = ((Mediateur) Registry.get(RegistreId.MEDIATEUR)).getUtilisateurId();
|
26 |
}
|
29 |
}
|
Line 27... |
Line 30... |
27 |
|
30 |
|
28 |
public void selectionner(final String commentaireId, String projetId, String titre) {
|
31 |
public void selectionner(final String commentaireId, String projetId, String titre, final int pageCourante, final int nbElements) {
|
29 |
String[] parametres = {projetId, commentaireId, titre};
|
32 |
String[] parametres = {projetId, commentaireId, titre};
|
- |
|
33 |
|
- |
|
34 |
HashMap<String, String> restrictions = new HashMap<String, String>();
|
- |
|
35 |
restrictions.put("start", String.valueOf(pageCourante));
|
- |
|
36 |
if (nbElements != -1) {
|
- |
|
37 |
restrictions.put("limit", String.valueOf(nbElements));
|
- |
|
38 |
}
|
30 |
|
39 |
|
31 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequete(SERVICE_NOM, parametres);
|
40 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequete(SERVICE_NOM, parametres, restrictions);
|
32 |
rb.envoyerRequete(null, new JsonRestRequestCallback() {
|
41 |
rb.envoyerRequete(null, new JsonRestRequestCallback() {
|
33 |
@Override
|
42 |
@Override
|
34 |
public void surReponse(JSONValue responseValue) {
|
43 |
public void surReponse(JSONValue responseValue) {
|
35 |
if (responseValue != null) {
|
44 |
if (responseValue != null) {
|
- |
|
45 |
// Si la requête est un succès, réception d'un objet ou d'un tableau
|
36 |
// Si la requête est un succès, réception d'un objet ou d'un tableau
|
46 |
JSONArray responseArray = responseValue.isArray();
|
37 |
if (responseValue.isObject() != null) {
|
47 |
if (responseArray.get(1).isObject() != null) {
|
38 |
final JSONObject reponse = responseValue.isObject();
|
48 |
final JSONObject reponse = responseArray.get(1).isObject();
|
39 |
// Transformation du tableau JSON réponse en ListeInstitution
|
49 |
// Transformation du tableau JSON réponse en ListeInstitution
|
40 |
Commentaire commentaire = new Commentaire(reponse);
|
50 |
Commentaire commentaire = new Commentaire(reponse);
|
41 |
// et on met à jour le demandeur des données
|
51 |
// et on met à jour le demandeur des données
|
42 |
vueARafraichir.rafraichir(commentaire);
|
52 |
vueARafraichir.rafraichir(commentaire);
|
43 |
} else if (responseValue.isArray() != null) {
|
53 |
} else if (responseValue.isArray() != null) {
|
- |
|
54 |
final JSONArray reponse = responseValue.isArray();
|
- |
|
55 |
CommentaireListe commentaires;
|
44 |
final JSONArray reponse = responseValue.isArray();
|
56 |
if (reponse.get(1).isObject() != null) {
|
- |
|
57 |
commentaires = new CommentaireListe(reponse.get(1).isArray());
|
- |
|
58 |
} else {
|
- |
|
59 |
commentaires = new CommentaireListe(reponse.get(1).isArray(), reponse.get(0).isNumber(), vueARafraichir);
|
- |
|
60 |
}
|
- |
|
61 |
commentaires.setTaillePage(nbElements);
|
- |
|
62 |
commentaires.setPageCourante(pageCourante);
|
45 |
CommentaireListe commentaires = new CommentaireListe(reponse);
|
63 |
|
46 |
vueARafraichir.rafraichir(commentaires);
|
64 |
vueARafraichir.rafraichir(commentaires);
|
47 |
} else {
|
65 |
} else {
|
48 |
GWT.log("La réponse n'est pas un objet ou un talbeau JSON et vaut : "+responseValue.toString(), null);
|
66 |
GWT.log("La réponse n'est pas un objet ou un talbeau JSON et vaut : "+responseValue.toString(), null);
|
49 |
}
|
67 |
}
|