sort course

This commit is contained in:
philipcheung 2025-01-22 19:51:29 +08:00
parent e0e2c05f7b
commit a0bd4d25b1
2 changed files with 6 additions and 1 deletions

View File

@ -843,6 +843,7 @@ export class Info_imageService {
export type TDataReadCourses = {
limit?: number
skip?: number
sort?: string
}
export type TDataCreate = {
requestBody: CourseCreate

View File

@ -38,7 +38,7 @@ const PER_PAGE = 100
function getcoursesQueryOptions({ page }: { page: number }) {
return {
queryFn: () =>
CoursesService.readCourses({ skip: (page - 1) * PER_PAGE, limit: PER_PAGE }),
CoursesService.readCourses({ skip: (page - 1) * PER_PAGE, limit: PER_PAGE, }),
queryKey: ["courses", { page }],
}
}
@ -59,6 +59,10 @@ function CoursesTable() {
} = useQuery({
...getcoursesQueryOptions({ page }),
placeholderData: (prevData) => prevData,
select: (data) => ({
...data,
data: [...data.data].sort((a, b) => a.index - b.index)
})
})
const hasNextPage = !isPlaceholderData && courses?.data.length === PER_PAGE