mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-01 18:33:33 +00:00
27 lines
913 B
TypeScript
27 lines
913 B
TypeScript
import { SearchQuery } from '/@/renderer/api/types';
|
|
import { QueryHookArgs } from '/@/renderer/lib/react-query';
|
|
import { useQuery } from '@tanstack/react-query';
|
|
import { queryKeys } from '/@/renderer/api/query-keys';
|
|
import { getServerById } from '/@/renderer/store';
|
|
import { api } from '/@/renderer/api';
|
|
|
|
export const useSearch = (args: QueryHookArgs<SearchQuery>) => {
|
|
const { options, query, serverId } = args;
|
|
const server = getServerById(serverId);
|
|
|
|
return useQuery({
|
|
enabled: !!serverId,
|
|
queryFn: ({ signal }) => {
|
|
if (!server) throw new Error('Server not found');
|
|
return api.controller.search({
|
|
apiClientProps: {
|
|
server,
|
|
signal,
|
|
},
|
|
query,
|
|
});
|
|
},
|
|
queryKey: queryKeys.search.list(serverId || '', query),
|
|
...options,
|
|
});
|
|
};
|