mirror of
https://github.com/langgenius/dify.git
synced 2025-07-05 16:22:23 +00:00
28 lines
779 B
TypeScript
28 lines
779 B
TypeScript
![]() |
import { get } from './base'
|
||
|
import type { App } from '@/types/app'
|
||
|
import type { AppListResponse } from '@/models/app'
|
||
|
import { useInvalid } from './use-base'
|
||
|
import { useQuery } from '@tanstack/react-query'
|
||
|
|
||
|
const NAME_SPACE = 'apps'
|
||
|
|
||
|
// TODO paging for list
|
||
|
const useAppFullListKey = [NAME_SPACE, 'full-list']
|
||
|
export const useAppFullList = () => {
|
||
|
return useQuery<AppListResponse>({
|
||
|
queryKey: useAppFullListKey,
|
||
|
queryFn: () => get<AppListResponse>('/apps', { params: { page: 1, limit: 100 } }),
|
||
|
})
|
||
|
}
|
||
|
|
||
|
export const useInvalidateAppFullList = () => {
|
||
|
return useInvalid(useAppFullListKey)
|
||
|
}
|
||
|
|
||
|
export const useAppDetail = (appID: string) => {
|
||
|
return useQuery<App>({
|
||
|
queryKey: [NAME_SPACE, 'detail', appID],
|
||
|
queryFn: () => get<App>(`/apps/${appID}`),
|
||
|
})
|
||
|
}
|