com.diboot.core.vo.Pagination Maven / Gradle / Ivy
/*
* Copyright (c) 2015-2020, www.dibo.ltd ([email protected]).
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.diboot.core.vo;
import com.alibaba.fastjson.annotation.JSONField;
import com.baomidou.mybatisplus.core.metadata.OrderItem;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.diboot.core.config.BaseConfig;
import com.diboot.core.config.Cons;
import com.diboot.core.util.S;
import com.diboot.core.util.V;
import lombok.Getter;
import lombok.Setter;
import lombok.experimental.Accessors;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
/**
* 分页 (属性以下划线开头以避免与提交参数字段冲突)
* @author [email protected]
* @version v2.0
* @date 2019/01/01
*/
@Getter @Setter @Accessors(chain = true)
public class Pagination implements Serializable {
private static final Logger log = LoggerFactory.getLogger(Pagination.class);
private static final long serialVersionUID = -4083929594112114522L;
/***
* 当前页
*/
private int pageIndex = 1;
/***
* 默认每页数量10
*/
private int pageSize = BaseConfig.getPageSize();
/***
* count总数
*/
private long totalCount = 0;
/**
* 默认排序
*/
private static final String DEFAULT_ORDER_BY = Cons.FieldName.id.name()+":"+Cons.ORDER_DESC;
/**
* 排序
*/
private String orderBy = DEFAULT_ORDER_BY;
public Pagination(){
}
/***
* 指定当前页数
*/
public Pagination(int pageIndex){
setPageIndex(pageIndex);
}
public void setPageSize(int pageSize) {
if(pageSize > 1000){
log.warn("分页pageSize过大,将被调整为默认限值,请检查调用是否合理!pageSize="+ pageSize);
pageSize = 1000;
}
this.pageSize = pageSize;
}
/***
* 获取总的页数
* @return
*/
public int getTotalPage() {
if(totalCount <= 0){
return 0;
}
return (int)Math.ceil((float) totalCount / pageSize);
}
/**
* 清空默认排序
*/
public void clearDefaultOrder(){
// 是否为默认排序
if(isDefaultOrderBy()){
orderBy = null;
}
}
/**
* 是否为默认排序
* @return
*/
@JSONField(serialize = false)
public boolean isDefaultOrderBy(){
return V.equals(orderBy, DEFAULT_ORDER_BY);
}
/**
* 转换为IPage
* @param
* @return
*/
public Page toPage(){
List orderItemList = null;
// 解析排序
if(V.notEmpty(this.orderBy)){
orderItemList = new ArrayList<>();
// orderBy=shortName:DESC,age:ASC,birthdate
String[] orderByFields = S.split(this.orderBy);
for(String field : orderByFields){
if(field.contains(":")){
String[] fieldAndOrder = S.split(field, ":");
String columnName = S.toSnakeCase(fieldAndOrder[0]);
if(Cons.ORDER_DESC.equalsIgnoreCase(fieldAndOrder[1])){
orderItemList.add(OrderItem.desc(columnName));
}
else{
orderItemList.add(OrderItem.asc(columnName));
}
}
else{
orderItemList.add(OrderItem.asc(S.toSnakeCase(field)));
}
}
}
Page page = new Page()
.setCurrent(getPageIndex())
.setSize(getPageSize())
// 如果前端传递过来了缓存的总数,则本次不再count统计
.setTotal(getTotalCount() > 0? -1 : getTotalCount());
if(orderItemList != null){
page.addOrder(orderItemList);
}
return page;
}
/**
* 当id不是主键的时候,默认使用创建时间排序
*
* @return
*/
public String setDefaultCreateTimeOrderBy() {
return this.orderBy = Cons.FieldName.createTime.name()+":"+Cons.ORDER_DESC;
}
}