Notice
Recent Posts
Recent Comments
«   2024/07   »
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
Tags more
Archives
Today
Total
관리 메뉴

HYEWON JUNG의 개발일지

20240124 TIL 페이지 네이션하기 / 반응형 본문

개발일지

20240124 TIL 페이지 네이션하기 / 반응형

혜won 2024. 1. 25. 04:08

아마. 주말에 추가 예정

 

const PAGE_POST_NUMBER = 12;
export const fetchRangePosts = async (page: number) => {
  const startIndex = (page - 1) * PAGE_POST_NUMBER;
  const endIndex = startIndex + PAGE_POST_NUMBER - 1; // 수정된 부분
  const { data, count, error } = await supabase
    .from('community')
    .select('*', { count: 'exact' }) //count는 총 갯수를 알려줌
    .order('post_id', { ascending: false })//최신순으로 가져오기
    .range(startIndex, endIndex); // 어디부터 어디 가져올건지
  if (error) {
    throw error;
  }
  return { data, count };
};