use of com.tale.model.entity.Comments in project tale by otale.
the class IndexController method index.
/**
* 仪表盘
*/
@GetRoute(value = { "/", "index" })
public String index(Request request) {
List<Comments> comments = siteService.recentComments(5);
List<Contents> contents = siteService.getContens(Types.RECENT_ARTICLE, 5);
Statistics statistics = siteService.getStatistics();
request.attribute("comments", comments);
request.attribute("articles", contents);
request.attribute("statistics", statistics);
return "admin/index";
}
use of com.tale.model.entity.Comments in project tale by otale.
the class CommentsService method apply.
private Comment apply(Comments parent) {
Comment comment = new Comment(parent);
List<Comments> children = new ArrayList<>();
getChildren(children, comment.getCoid());
comment.setChildren(children);
if (BladeKit.isNotEmpty(children)) {
comment.setLevels(1);
}
return comment;
}