mirror of
https://github.com/supabase/supabase.git
synced 2026-06-20 11:22:25 +08:00
* Bump the deps, refactor deprecated code.
* Migrate keepPreviousData usage.
* Migrate all uses of InfiniteQuery.
* Fix refetchInterval in queries.
* Migrate all use of isLoading to isPending in mutations.
* Fix accessing location in claim-project.
* Fix a bug in duplicate query keys.
* Migrate all queries to use isPending.
* Revert "Fix accessing location in claim-project."
This reverts commit 2a07df64b5.
* Revert the rss.xml file to master.
109 lines
3.5 KiB
TypeScript
109 lines
3.5 KiB
TypeScript
import { InfiniteData, useInfiniteQuery, useQueryClient } from '@tanstack/react-query'
|
|
import { useCallback } from 'react'
|
|
|
|
import { components } from 'api-types'
|
|
import { get, handleError } from 'data/fetchers'
|
|
import { useProfile } from 'lib/profile'
|
|
import type { ResponseError, UseCustomInfiniteQueryOptions } from 'types'
|
|
import { INFINITE_PROJECTS_KEY_PREFIX, projectKeys } from './keys'
|
|
|
|
// [Joshen] Try to keep this value a multiple of 6 (common denominator of 2 and 3) to fit the cards view
|
|
// So that the last row will always be a full row of cards while there's a next page
|
|
// API max rows is 100, I'm just choosing 96 here as the highest value thats a multiple of 6
|
|
const DEFAULT_LIMIT = 96
|
|
|
|
interface GetOrgProjectsInfiniteVariables {
|
|
slug?: string
|
|
limit?: number
|
|
sort?: 'name_asc' | 'name_desc' | 'created_asc' | 'created_desc'
|
|
search?: string
|
|
page?: number
|
|
statuses?: string[]
|
|
}
|
|
|
|
export type OrgProjectsResponse = components['schemas']['OrganizationProjectsResponse']
|
|
export type OrgProject = OrgProjectsResponse['projects'][number]
|
|
|
|
async function getOrganizationProjects(
|
|
{
|
|
slug,
|
|
limit = DEFAULT_LIMIT,
|
|
page = 0,
|
|
sort = 'name_asc',
|
|
search: _search = '',
|
|
statuses: _statuses = [],
|
|
}: GetOrgProjectsInfiniteVariables,
|
|
signal?: AbortSignal,
|
|
headers?: Record<string, string>
|
|
) {
|
|
if (!slug) throw new Error('Slug is required')
|
|
|
|
const offset = page * limit
|
|
const search = _search.length === 0 ? undefined : _search
|
|
const statuses = _statuses.length === 0 ? undefined : _statuses.join(',')
|
|
|
|
const { data, error } = await get('/platform/organizations/{slug}/projects', {
|
|
params: { path: { slug }, query: { limit, offset, sort, search, statuses } },
|
|
signal,
|
|
headers,
|
|
})
|
|
|
|
if (error) handleError(error)
|
|
return data
|
|
}
|
|
|
|
export type OrgProjectsInfiniteData = Awaited<ReturnType<typeof getOrganizationProjects>>
|
|
export type OrgProjectsInfiniteError = ResponseError
|
|
|
|
export const useOrgProjectsInfiniteQuery = <TData = OrgProjectsInfiniteData>(
|
|
{
|
|
slug,
|
|
limit = DEFAULT_LIMIT,
|
|
sort = 'name_asc',
|
|
search,
|
|
statuses = [],
|
|
}: GetOrgProjectsInfiniteVariables,
|
|
{
|
|
enabled = true,
|
|
...options
|
|
}: UseCustomInfiniteQueryOptions<
|
|
OrgProjectsInfiniteData,
|
|
OrgProjectsInfiniteError,
|
|
InfiniteData<TData>,
|
|
readonly unknown[],
|
|
number | undefined
|
|
> = {}
|
|
) => {
|
|
const { profile } = useProfile()
|
|
return useInfiniteQuery({
|
|
queryKey: projectKeys.infiniteListByOrg(slug, { limit, sort, search, statuses }),
|
|
queryFn: ({ signal, pageParam }) =>
|
|
getOrganizationProjects({ slug, limit, page: pageParam, sort, search, statuses }, signal),
|
|
enabled: enabled && profile !== undefined && typeof slug !== 'undefined',
|
|
staleTime: 30 * 60 * 1000, // 30 minutes
|
|
initialPageParam: 0,
|
|
getNextPageParam(lastPage, pages) {
|
|
const page = pages.length
|
|
const currentTotalCount = page * limit
|
|
const totalCount = lastPage.pagination.count
|
|
|
|
if (currentTotalCount >= totalCount) return undefined
|
|
return page
|
|
},
|
|
...options,
|
|
})
|
|
}
|
|
|
|
export const getComputeSize = (project: OrgProject) => {
|
|
const primaryDatabase = project.databases.find((db) => db.identifier === project.ref)
|
|
return primaryDatabase?.infra_compute_size
|
|
}
|
|
|
|
export const useInvalidateProjectsInfiniteQuery = () => {
|
|
const queryClient = useQueryClient()
|
|
const invalidateProjectsQuery = useCallback(() => {
|
|
return queryClient.invalidateQueries({ queryKey: [INFINITE_PROJECTS_KEY_PREFIX] })
|
|
}, [queryClient])
|
|
return { invalidateProjectsQuery }
|
|
}
|