tooot/src/utils/queryHooks/lists.ts

24 lines
558 B
TypeScript
Raw Normal View History

2021-02-20 19:12:44 +01:00
import apiInstance from '@api/instance'
2021-01-07 19:13:09 +01:00
import { AxiosError } from 'axios'
import { useQuery, UseQueryOptions } from 'react-query'
export type QueryKey = ['Lists']
const queryFunction = () => {
2021-02-20 19:12:44 +01:00
return apiInstance<Mastodon.List[]>({
2021-01-07 19:13:09 +01:00
method: 'get',
url: 'lists'
2021-02-11 01:33:31 +01:00
}).then(res => res.body)
2021-01-07 19:13:09 +01:00
}
2021-01-11 21:36:57 +01:00
const useListsQuery = <TData = Mastodon.List[]>({
2021-01-07 19:13:09 +01:00
options
}: {
options?: UseQueryOptions<Mastodon.List[], AxiosError, TData>
}) => {
const queryKey: QueryKey = ['Lists']
return useQuery(queryKey, queryFunction, options)
}
2021-01-11 21:36:57 +01:00
export { useListsQuery }