mirror of https://github.com/halo-dev/halo
Code optimization
parent
60472912fa
commit
c9c68eef54
|
@ -1,6 +1,8 @@
|
|||
package cc.ryanc.halo.repository;
|
||||
|
||||
import cc.ryanc.halo.model.entity.Post;
|
||||
import cc.ryanc.halo.model.enums.PostStatus;
|
||||
import cc.ryanc.halo.model.enums.PostType;
|
||||
import cc.ryanc.halo.repository.base.BaseRepository;
|
||||
import org.springframework.data.domain.Page;
|
||||
import org.springframework.data.domain.Pageable;
|
||||
|
@ -24,7 +26,7 @@ public interface PostRepository extends BaseRepository<Post, Integer>, JpaSpecif
|
|||
*
|
||||
* @return Page<Post>
|
||||
*/
|
||||
Page<Post> queryAllByStatusAndType(int status, Integer type, Pageable pageable);
|
||||
Page<Post> queryAllByStatusAndType(PostStatus status, PostType type, Pageable pageable);
|
||||
|
||||
/**
|
||||
* Count posts by status and type
|
||||
|
@ -34,5 +36,5 @@ public interface PostRepository extends BaseRepository<Post, Integer>, JpaSpecif
|
|||
*
|
||||
* @return posts count
|
||||
*/
|
||||
Long countAllByStatusAndType(int status, Integer type);
|
||||
Long countAllByStatusAndType(PostStatus status, PostType type);
|
||||
}
|
||||
|
|
|
@ -2,6 +2,8 @@ package cc.ryanc.halo.service;
|
|||
|
||||
import cc.ryanc.halo.model.dto.post.PostSimpleOutputDTO;
|
||||
import cc.ryanc.halo.model.entity.Post;
|
||||
import cc.ryanc.halo.model.enums.PostStatus;
|
||||
import cc.ryanc.halo.model.enums.PostType;
|
||||
import cc.ryanc.halo.service.base.CrudService;
|
||||
import org.springframework.data.domain.Page;
|
||||
import org.springframework.data.domain.Pageable;
|
||||
|
@ -35,7 +37,7 @@ public interface PostService extends CrudService<Post, Integer> {
|
|||
* @return Page<PostSimpleOutputDTO>
|
||||
*/
|
||||
@NonNull
|
||||
Page<PostSimpleOutputDTO> listByStatus(int status, Integer type, Pageable pageable);
|
||||
Page<PostSimpleOutputDTO> listByStatus(PostStatus status, PostType type, Pageable pageable);
|
||||
|
||||
/**
|
||||
* Count posts by status and type
|
||||
|
@ -44,5 +46,5 @@ public interface PostService extends CrudService<Post, Integer> {
|
|||
* @param type type
|
||||
* @return posts count
|
||||
*/
|
||||
Long countByStatus(int status,Integer type);
|
||||
Long countByStatus(PostStatus status, PostType type);
|
||||
}
|
||||
|
|
|
@ -2,6 +2,8 @@ package cc.ryanc.halo.service.impl;
|
|||
|
||||
import cc.ryanc.halo.model.dto.post.PostSimpleOutputDTO;
|
||||
import cc.ryanc.halo.model.entity.Post;
|
||||
import cc.ryanc.halo.model.enums.PostStatus;
|
||||
import cc.ryanc.halo.model.enums.PostType;
|
||||
import cc.ryanc.halo.repository.PostRepository;
|
||||
import cc.ryanc.halo.service.PostService;
|
||||
import cc.ryanc.halo.service.base.AbstractCrudService;
|
||||
|
@ -49,7 +51,7 @@ public class PostServiceImpl extends AbstractCrudService<Post, Integer> implemen
|
|||
* @return Page<PostSimpleOutputDTO>
|
||||
*/
|
||||
@Override
|
||||
public Page<PostSimpleOutputDTO> listByStatus(int status, Integer type, Pageable pageable) {
|
||||
public Page<PostSimpleOutputDTO> listByStatus(PostStatus status, PostType type, Pageable pageable) {
|
||||
Page<Post> posts = postRepository.queryAllByStatusAndType(status, type, pageable);
|
||||
return posts.map(post -> new PostSimpleOutputDTO().convertFrom(post));
|
||||
}
|
||||
|
@ -63,7 +65,7 @@ public class PostServiceImpl extends AbstractCrudService<Post, Integer> implemen
|
|||
* @return posts count
|
||||
*/
|
||||
@Override
|
||||
public Long countByStatus(int status, Integer type) {
|
||||
public Long countByStatus(PostStatus status, PostType type) {
|
||||
return postRepository.countAllByStatusAndType(status,type);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -45,18 +45,18 @@ public class PostController {
|
|||
*/
|
||||
@GetMapping
|
||||
public String posts(Model model,
|
||||
@RequestParam(value = "status", defaultValue = "0") Integer status,
|
||||
@RequestParam(value = "status", defaultValue = "0") PostStatus status,
|
||||
@RequestParam(value = "page", defaultValue = "0") Integer page,
|
||||
@SortDefault.SortDefaults({
|
||||
@SortDefault(sort = "postPriority", direction = DESC),
|
||||
@SortDefault(sort = "postDate", direction = DESC)
|
||||
}) Sort sort) {
|
||||
final Pageable pageable = PageRequest.of(page, 10, sort);
|
||||
final Page<PostSimpleOutputDTO> posts = postService.listByStatus(status, PostType.POST.getValue(), pageable);
|
||||
final Page<PostSimpleOutputDTO> posts = postService.listByStatus(status, PostType.POST, pageable);
|
||||
model.addAttribute("posts", posts);
|
||||
model.addAttribute("publishCount", postService.countByStatus(PostStatus.PUBLISHED.getValue(), PostType.POST.getValue()));
|
||||
model.addAttribute("draftCount", postService.countByStatus(PostStatus.DRAFT.getValue(), PostType.POST.getValue()));
|
||||
model.addAttribute("trashCount", postService.countByStatus(PostStatus.RECYCLE.getValue(), PostType.POST.getValue()));
|
||||
model.addAttribute("publishCount", postService.countByStatus(PostStatus.PUBLISHED, PostType.POST));
|
||||
model.addAttribute("draftCount", postService.countByStatus(PostStatus.DRAFT, PostType.POST));
|
||||
model.addAttribute("trashCount", postService.countByStatus(PostStatus.RECYCLE, PostType.POST));
|
||||
model.addAttribute("status", status);
|
||||
return "admin/admin_post";
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue