321 |
aurelien |
1 |
package org.tela_botanica.del.client.vues.plateformedetermination.forum;
|
|
|
2 |
|
658 |
benjamin |
3 |
import java.util.ArrayList;
|
321 |
aurelien |
4 |
import java.util.Date;
|
|
|
5 |
import java.util.List;
|
|
|
6 |
|
|
|
7 |
import org.tela_botanica.del.client.modeles.Commentaire;
|
882 |
aurelien |
8 |
import org.tela_botanica.del.client.modeles.InterventionForum;
|
321 |
aurelien |
9 |
|
|
|
10 |
import com.google.gwt.i18n.client.DateTimeFormat;
|
|
|
11 |
import com.google.gwt.i18n.client.DateTimeFormat.PredefinedFormat;
|
|
|
12 |
import com.google.gwt.user.client.ui.HTML;
|
|
|
13 |
import com.google.gwt.user.client.ui.Tree;
|
|
|
14 |
import com.google.gwt.user.client.ui.TreeItem;
|
|
|
15 |
|
|
|
16 |
public class ArbreCommentaireVue extends Tree implements ArbreCommentairePresenteur.Vue {
|
658 |
benjamin |
17 |
|
321 |
aurelien |
18 |
public ArbreCommentaireVue() {
|
|
|
19 |
super();
|
|
|
20 |
}
|
658 |
benjamin |
21 |
|
882 |
aurelien |
22 |
public void creerArbreCommentaire(InterventionForum possesseurDeCommentaires) {
|
321 |
aurelien |
23 |
TreeItem racineArbreCommentaires = new TreeItem();
|
|
|
24 |
addItem(racineArbreCommentaires);
|
658 |
benjamin |
25 |
|
|
|
26 |
if (possesseurDeCommentaires instanceof Commentaire) {
|
|
|
27 |
List<Commentaire> commentaires = new ArrayList<Commentaire>();
|
|
|
28 |
commentaires.add((Commentaire) possesseurDeCommentaires);
|
|
|
29 |
creerListeCommentaireRecursive(racineArbreCommentaires, commentaires);
|
|
|
30 |
} else {
|
|
|
31 |
creerListeCommentaireRecursive(racineArbreCommentaires, possesseurDeCommentaires.getListeCommentaires());
|
|
|
32 |
}
|
321 |
aurelien |
33 |
}
|
658 |
benjamin |
34 |
|
321 |
aurelien |
35 |
private void creerListeCommentaireRecursive(TreeItem parentTreeItem, List<Commentaire> commentaires) {
|
|
|
36 |
|
|
|
37 |
for (Commentaire commentaire : commentaires) {
|
916 |
aurelien |
38 |
String commentaireHTML = commentaire.getCommentaire();
|
321 |
aurelien |
39 |
HTML commentaireWidget = new HTML(commentaireHTML);
|
|
|
40 |
parentTreeItem.setWidget(commentaireWidget);
|
|
|
41 |
if (commentaire.getListeCommentaires().size() != 0) {
|
|
|
42 |
TreeItem childTreeItem = new TreeItem();
|
|
|
43 |
parentTreeItem.addItem(childTreeItem);
|
|
|
44 |
creerListeCommentaireRecursive(childTreeItem, commentaire.getListeCommentaires());
|
|
|
45 |
}
|
|
|
46 |
}
|
|
|
47 |
parentTreeItem.setState(true);
|
|
|
48 |
|
|
|
49 |
}
|
|
|
50 |
|
|
|
51 |
private String formaterDatePourForum(Date date) {
|
|
|
52 |
return DateTimeFormat.getFormat(PredefinedFormat.DATE_SHORT).format(date);
|
|
|
53 |
}
|
|
|
54 |
}
|