kopia lustrzana https://gitlab.com/soapbox-pub/soapbox
89 wiersze
2.3 KiB
TypeScript
89 wiersze
2.3 KiB
TypeScript
import { useMutation, useQuery } from '@tanstack/react-query';
|
|
|
|
import { useApi } from 'soapbox/hooks/useApi.ts';
|
|
import { queryClient } from 'soapbox/queries/client.ts';
|
|
import { adminRuleSchema, type AdminRule } from 'soapbox/schemas/index.ts';
|
|
|
|
interface CreateRuleParams {
|
|
priority?: number;
|
|
text: string;
|
|
hint?: string;
|
|
}
|
|
|
|
interface UpdateRuleParams {
|
|
id: string;
|
|
priority?: number;
|
|
text?: string;
|
|
hint?: string;
|
|
}
|
|
|
|
const useRules = () => {
|
|
const api = useApi();
|
|
|
|
const getRules = async () => {
|
|
const response = await api.get('/api/v1/pleroma/admin/rules');
|
|
const data: AdminRule[] = await response.json();
|
|
|
|
const normalizedData = data.map((rule) => adminRuleSchema.parse(rule));
|
|
return normalizedData;
|
|
};
|
|
|
|
const result = useQuery<ReadonlyArray<AdminRule>>({
|
|
queryKey: ['admin', 'rules'],
|
|
queryFn: getRules,
|
|
placeholderData: [],
|
|
});
|
|
|
|
const {
|
|
mutate: createRule,
|
|
isPending: isCreating,
|
|
} = useMutation({
|
|
mutationFn: (params: CreateRuleParams) => api.post('/api/v1/pleroma/admin/rules', params),
|
|
retry: false,
|
|
onSuccess: async (response: Response) => {
|
|
const data = await response.json();
|
|
return queryClient.setQueryData(['admin', 'rules'], (prevResult: ReadonlyArray<AdminRule>) =>
|
|
[...prevResult, adminRuleSchema.parse(data)],
|
|
);
|
|
},
|
|
});
|
|
|
|
const {
|
|
mutate: updateRule,
|
|
isPending: isUpdating,
|
|
} = useMutation({
|
|
mutationFn: ({ id, ...params }: UpdateRuleParams) => api.patch(`/api/v1/pleroma/admin/rules/${id}`, params),
|
|
retry: false,
|
|
onSuccess: async (response: Response) => {
|
|
const data = await response.json();
|
|
return queryClient.setQueryData(['admin', 'rules'], (prevResult: ReadonlyArray<AdminRule>) =>
|
|
prevResult.map((rule) => rule.id === data.id ? adminRuleSchema.parse(data) : rule),
|
|
);
|
|
},
|
|
});
|
|
|
|
const {
|
|
mutate: deleteRule,
|
|
isPending: isDeleting,
|
|
} = useMutation({
|
|
mutationFn: (id: string) => api.delete(`/api/v1/pleroma/admin/rules/${id}`),
|
|
retry: false,
|
|
onSuccess: (_, id) =>
|
|
queryClient.setQueryData(['admin', 'rules'], (prevResult: ReadonlyArray<AdminRule>) =>
|
|
prevResult.filter(({ id: ruleId }) => ruleId !== id),
|
|
),
|
|
});
|
|
|
|
return {
|
|
...result,
|
|
createRule,
|
|
isCreating,
|
|
updateRule,
|
|
isUpdating,
|
|
deleteRule,
|
|
isDeleting,
|
|
};
|
|
};
|
|
|
|
export { useRules };
|