tooot/src/utils/queryHooks/lists.ts

25 lines
539 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']
2021-12-18 19:59:38 +01:00
const queryFunction = async () => {
const res = await apiInstance<Mastodon.List[]>({
2021-01-07 19:13:09 +01:00
method: 'get',
url: 'lists'
2021-12-18 19:59:38 +01:00
})
return res.body
2021-01-07 19:13:09 +01:00
}
2021-12-18 19:59:38 +01:00
const useListsQuery = ({
2021-01-07 19:13:09 +01:00
options
}: {
2021-12-18 19:59:38 +01:00
options?: UseQueryOptions<Mastodon.List[], AxiosError>
2021-01-07 19:13:09 +01:00
}) => {
const queryKey: QueryKey = ['Lists']
return useQuery(queryKey, queryFunction, options)
}
2021-01-11 21:36:57 +01:00
export { useListsQuery }