33 lines
1.3 KiB
TypeScript
33 lines
1.3 KiB
TypeScript
import useSWR, { ConfigInterface, responseInterface } from 'swr';
|
|
import { ActivityLog, Transformers } from '@definitions/user';
|
|
import { AxiosError } from 'axios';
|
|
import http, { PaginatedResult, QueryBuilderParams, withQueryBuilderParams } from '@/api/http';
|
|
import { toPaginatedSet } from '@definitions/helpers';
|
|
import useFilteredObject from '@/plugins/useFilteredObject';
|
|
import { useUserSWRKey } from '@/plugins/useSWRKey';
|
|
|
|
export type ActivityLogFilters = QueryBuilderParams<'ip' | 'event', 'timestamp'>;
|
|
|
|
const useActivityLogs = (
|
|
filters?: ActivityLogFilters,
|
|
config?: ConfigInterface<PaginatedResult<ActivityLog>, AxiosError>
|
|
): responseInterface<PaginatedResult<ActivityLog>, AxiosError> => {
|
|
const key = useUserSWRKey(['account', 'activity', JSON.stringify(useFilteredObject(filters || {}))]);
|
|
|
|
return useSWR<PaginatedResult<ActivityLog>>(
|
|
key,
|
|
async () => {
|
|
const { data } = await http.get('/api/client/account/activity', {
|
|
params: {
|
|
...withQueryBuilderParams(filters),
|
|
include: ['actor'],
|
|
},
|
|
});
|
|
|
|
return toPaginatedSet(data, Transformers.toActivityLog);
|
|
},
|
|
{ revalidateOnMount: false, ...(config || {}) }
|
|
);
|
|
};
|
|
|
|
export { useActivityLogs };
|