mirror of https://github.com/buster-so/buster.git
initialize listing data
This commit is contained in:
parent
ea7ca17b16
commit
c9e76819e9
|
@ -8,25 +8,18 @@ import {
|
|||
updateChat,
|
||||
deleteChat
|
||||
} from './requests';
|
||||
import type { BusterChatListItem, IBusterChat } from '@/api/asset_interfaces/chat';
|
||||
import type { IBusterChat } from '@/api/asset_interfaces/chat';
|
||||
import { queryKeys } from '@/api/query_keys';
|
||||
import { updateChatToIChat } from '@/lib/chat';
|
||||
import { RustApiError } from '@/api/buster_rest/errors';
|
||||
|
||||
export const useGetListChats = (params?: Parameters<typeof getListChats>[0]) => {
|
||||
const queryFn = useMemoizedFn((): Promise<BusterChatListItem[]> => {
|
||||
return getListChats(params);
|
||||
});
|
||||
const queryFn = useMemoizedFn(() => getListChats(params));
|
||||
|
||||
const res = useQuery({
|
||||
return useQuery({
|
||||
...queryKeys.chatsGetList(params),
|
||||
queryFn
|
||||
});
|
||||
|
||||
return {
|
||||
...res,
|
||||
data: res.data || []
|
||||
};
|
||||
};
|
||||
|
||||
export const prefetchGetListChats = async (
|
||||
|
|
|
@ -29,26 +29,24 @@ export const listMetrics_server = async (params: ListMetricsParams) => {
|
|||
return await serverFetch<BusterMetricListItem[]>('/metrics/list', { params });
|
||||
};
|
||||
|
||||
export const getMetricData = async (params: { id: string }) => {
|
||||
return mainApi.get<BusterMetricData>(`/metrics/data`, { params }).then((res) => res.data);
|
||||
export const getMetricData = async ({ id }: { id: string }) => {
|
||||
return mainApi.get<BusterMetricData>(`/metrics/data/${id}`).then((res) => res.data);
|
||||
};
|
||||
|
||||
export const updateMetric = async (params: UpdateMetricParams) => {
|
||||
return mainApi.put<BusterMetric>(`/metrics/update`, { params }).then((res) => res.data);
|
||||
};
|
||||
|
||||
export const deleteMetrics = async (params: { ids: string[] }) => {
|
||||
return mainApi
|
||||
.delete<BusterMetricListItem[]>(`/metrics/delete`, { params })
|
||||
.put<BusterMetric>(`/metrics/update/${params.id}`, { params })
|
||||
.then((res) => res.data);
|
||||
};
|
||||
|
||||
export const duplicateMetrics = async (params: {
|
||||
export const deleteMetrics = async (params: { ids: string[] }) => {
|
||||
return mainApi.delete<null>(`/metrics/delete`, { params }).then((res) => res.data);
|
||||
};
|
||||
|
||||
export const duplicateMetric = async (params: {
|
||||
id: string;
|
||||
message_id: string;
|
||||
share_with_same_people: boolean;
|
||||
}) => {
|
||||
return mainApi
|
||||
.post<BusterMetricListItem[]>(`/metrics/duplicate`, { params })
|
||||
.then((res) => res.data);
|
||||
return mainApi.post<BusterMetric>(`/metrics/duplicate`, { params }).then((res) => res.data);
|
||||
};
|
||||
|
|
|
@ -27,7 +27,8 @@ const chatsMessagesFetchingData = (messageId: string) =>
|
|||
const chatsGetList = (filters?: GetChatListParams) =>
|
||||
queryOptions<BusterChatListItem[]>({
|
||||
queryKey: ['chats', 'list', filters] as const,
|
||||
staleTime: 10 * 1000
|
||||
staleTime: 10 * 1000,
|
||||
initialData: []
|
||||
});
|
||||
|
||||
const chatsBlackBoxMessages = (messageId: string) =>
|
||||
|
|
|
@ -12,10 +12,8 @@ export const useBusterChatListByFilter = (
|
|||
|
||||
const { data: chatsList, isFetched: isFetchedChatsList } = useGetListChats(filters);
|
||||
|
||||
//ACTIONS
|
||||
|
||||
return {
|
||||
list: chatsList || [],
|
||||
list: chatsList,
|
||||
isFetched: isFetchedChatsList
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue