47 lines
1.2 KiB
TypeScript
47 lines
1.2 KiB
TypeScript
import { useQuery } from '@tanstack/react-query'
|
|
import { api } from '../api'
|
|
import { Tier, Tiers } from '@/types/services/tier'
|
|
|
|
interface TierQueryParams {
|
|
page?: number
|
|
limit?: number
|
|
search?: string
|
|
}
|
|
|
|
export function useTiers(params: TierQueryParams = {}) {
|
|
const { page = 1, limit = 10, search = '', ...filters } = params
|
|
|
|
return useQuery<Tiers>({
|
|
queryKey: ['tiers', { page, limit, search, ...filters }],
|
|
queryFn: async () => {
|
|
const queryParams = new URLSearchParams()
|
|
|
|
queryParams.append('page', page.toString())
|
|
queryParams.append('limit', limit.toString())
|
|
|
|
if (search) {
|
|
queryParams.append('search', search)
|
|
}
|
|
|
|
Object.entries(filters).forEach(([key, value]) => {
|
|
if (value !== undefined && value !== null && value !== '') {
|
|
queryParams.append(key, value.toString())
|
|
}
|
|
})
|
|
|
|
const res = await api.get(`/marketing/tiers?${queryParams.toString()}`)
|
|
return res.data.data
|
|
}
|
|
})
|
|
}
|
|
|
|
export function useTierById(id: string) {
|
|
return useQuery<Tier>({
|
|
queryKey: ['tiers', id],
|
|
queryFn: async () => {
|
|
const res = await api.get(`/marketing/tiers/${id}`)
|
|
return res.data.data
|
|
}
|
|
})
|
|
}
|