64 lines
1.9 KiB
TypeScript
64 lines
1.9 KiB
TypeScript
|
|
import { useQuery, useMutation, useQueryClient } from '@tanstack/react-query';
|
||
|
|
import { api } from './client';
|
||
|
|
import type { DashboardData, TenantLicenseData, TenantSettings } from '../types/api';
|
||
|
|
|
||
|
|
export function useTenantDashboard() {
|
||
|
|
return useQuery<DashboardData>({
|
||
|
|
queryKey: ['tenant', 'dashboard'],
|
||
|
|
queryFn: () => api.get('/tenant/dashboard'),
|
||
|
|
refetchInterval: 30_000,
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
export function useTenantLicense() {
|
||
|
|
return useQuery<TenantLicenseData>({
|
||
|
|
queryKey: ['tenant', 'license'],
|
||
|
|
queryFn: () => api.get('/tenant/license'),
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
export function useTenantOidc() {
|
||
|
|
return useQuery<Record<string, unknown>>({
|
||
|
|
queryKey: ['tenant', 'oidc'],
|
||
|
|
queryFn: () => api.get('/tenant/oidc'),
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
export function useUpdateOidc() {
|
||
|
|
const qc = useQueryClient();
|
||
|
|
return useMutation<void, Error, Record<string, unknown>>({
|
||
|
|
mutationFn: (config) => api.post('/tenant/oidc', config),
|
||
|
|
onSuccess: () => qc.invalidateQueries({ queryKey: ['tenant', 'oidc'] }),
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
export function useTenantTeam() {
|
||
|
|
return useQuery<Array<Record<string, unknown>>>({
|
||
|
|
queryKey: ['tenant', 'team'],
|
||
|
|
queryFn: () => api.get('/tenant/team'),
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
export function useInviteTeamMember() {
|
||
|
|
const qc = useQueryClient();
|
||
|
|
return useMutation<{ userId: string }, Error, { email: string; roleId: string }>({
|
||
|
|
mutationFn: (body) => api.post('/tenant/team/invite', body),
|
||
|
|
onSuccess: () => qc.invalidateQueries({ queryKey: ['tenant', 'team'] }),
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
export function useRemoveTeamMember() {
|
||
|
|
const qc = useQueryClient();
|
||
|
|
return useMutation<void, Error, string>({
|
||
|
|
mutationFn: (userId) => api.delete(`/tenant/team/${userId}`),
|
||
|
|
onSuccess: () => qc.invalidateQueries({ queryKey: ['tenant', 'team'] }),
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
export function useTenantSettings() {
|
||
|
|
return useQuery<TenantSettings>({
|
||
|
|
queryKey: ['tenant', 'settings'],
|
||
|
|
queryFn: () => api.get('/tenant/settings'),
|
||
|
|
});
|
||
|
|
}
|