Ben Lin
2024-06-18 ebbd788fbb2c0b45d4473798efc57eec8ba74a25
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import type { PaginationProps } from '../types/pagination';
import type { BasicTableProps } from '../types/table';
import { computed, unref, ref, ComputedRef, watch, h } from 'vue';
import { LeftOutlined, RightOutlined } from '@ant-design/icons-vue';
import { isBoolean } from '@/utils/is';
import { PAGE_SIZE, PAGE_SIZE_OPTIONS } from '../const';
import { useI18n } from '@/hooks/web/useI18n';
 
interface ItemRender {
  page: number;
  type: 'page' | 'prev' | 'next';
  originalElement: any;
}
 
function itemRender({ page, type, originalElement }: ItemRender) {
  if (type === 'prev') {
    return page === 0 ? null : h(LeftOutlined);
  } else if (type === 'next') {
    return page === 1 ? null : h(RightOutlined);
  }
  return originalElement;
}
 
export function usePagination(refProps: ComputedRef<BasicTableProps>) {
  const { t } = useI18n();
 
  const configRef = ref<PaginationProps>({});
  const show = ref(true);
 
  watch(
    () => unref(refProps).pagination,
    (pagination) => {
      if (!isBoolean(pagination) && pagination) {
        configRef.value = {
          ...unref(configRef),
          ...(pagination ?? {}),
        };
      }
    },
  );
 
  const getPaginationInfo = computed((): PaginationProps | boolean => {
    const { pagination } = unref(refProps);
 
    if (!unref(show) || (isBoolean(pagination) && !pagination)) {
      return false;
    }
 
    return {
      current: 1,
      size: 'small',
      defaultPageSize: PAGE_SIZE,
      showTotal: (total) => t('component.table.total', { total }),
      showSizeChanger: true,
      pageSizeOptions: PAGE_SIZE_OPTIONS,
      itemRender: itemRender,
      showQuickJumper: true,
      ...(isBoolean(pagination) ? {} : pagination),
      ...unref(configRef),
    };
  });
 
  function setPagination(info: Partial<PaginationProps>) {
    const paginationInfo = unref(getPaginationInfo);
    configRef.value = {
      ...(!isBoolean(paginationInfo) ? paginationInfo : {}),
      ...info,
    };
  }
 
  function getPagination() {
    return unref(getPaginationInfo);
  }
 
  function getShowPagination() {
    return unref(show);
  }
 
  async function setShowPagination(flag: boolean) {
    show.value = flag;
  }
 
  return { getPagination, getPaginationInfo, setShowPagination, getShowPagination, setPagination };
}