2022-02-08 12:49:51 +01:00
|
|
|
import { QueryClient, QueryFunction } from 'react-query';
|
2022-07-07 11:39:03 +02:00
|
|
|
import { httpRequest, isNumeric, getConfig } from '@utils';
|
2021-02-16 13:17:36 +01:00
|
|
|
import { matchSorter } from 'match-sorter';
|
2020-10-07 17:41:20 +02:00
|
|
|
|
2021-07-20 12:41:16 +02:00
|
|
|
const API_EDUCATION_QUERY_LIMIT = 5;
|
|
|
|
const API_GEO_QUERY_LIMIT = 5;
|
|
|
|
const API_ADRESSE_QUERY_LIMIT = 5;
|
|
|
|
|
|
|
|
// When searching for short strings like "mer", le exact match shows up quite far in
|
|
|
|
// the ordering (~50).
|
|
|
|
//
|
|
|
|
// That's why we deliberately fetch a lot of results, and then let the local matching
|
|
|
|
// (match-sorter) do the work.
|
|
|
|
//
|
|
|
|
// NB: 60 is arbitrary, we may add more if needed.
|
|
|
|
const API_GEO_COMMUNES_QUERY_LIMIT = 60;
|
|
|
|
|
2022-07-07 11:39:03 +02:00
|
|
|
const {
|
|
|
|
autocomplete: { api_geo_url, api_adresse_url, api_education_url }
|
|
|
|
} = getConfig();
|
2020-10-07 17:41:20 +02:00
|
|
|
|
2022-02-08 12:49:51 +01:00
|
|
|
type QueryKey = readonly [
|
|
|
|
scope: string,
|
|
|
|
term: string,
|
|
|
|
extra: string | undefined
|
|
|
|
];
|
2020-10-07 17:41:20 +02:00
|
|
|
|
2022-02-08 12:49:51 +01:00
|
|
|
function buildURL(scope: string, term: string, extra?: string) {
|
2021-03-03 16:42:29 +01:00
|
|
|
term = encodeURIComponent(term.replace(/\(|\)/g, ''));
|
2020-10-07 17:41:20 +02:00
|
|
|
if (scope === 'adresse') {
|
2021-07-20 12:41:16 +02:00
|
|
|
return `${api_adresse_url}/search?q=${term}&limit=${API_ADRESSE_QUERY_LIMIT}`;
|
2021-01-14 17:30:55 +01:00
|
|
|
} else if (scope === 'annuaire-education') {
|
2021-07-20 12:41:16 +02:00
|
|
|
return `${api_education_url}/search?dataset=fr-en-annuaire-education&q=${term}&rows=${API_EDUCATION_QUERY_LIMIT}`;
|
2021-04-20 12:55:07 +02:00
|
|
|
} else if (scope === 'communes') {
|
2021-10-26 16:21:47 +02:00
|
|
|
const limit = `limit=${API_GEO_COMMUNES_QUERY_LIMIT}`;
|
|
|
|
const url = extra
|
|
|
|
? `${api_geo_url}/communes?codeDepartement=${extra}&${limit}&`
|
|
|
|
: `${api_geo_url}/communes?${limit}&`;
|
2021-04-20 12:55:07 +02:00
|
|
|
if (isNumeric(term)) {
|
2021-10-26 16:21:47 +02:00
|
|
|
return `${url}codePostal=${term}`;
|
2021-04-20 12:55:07 +02:00
|
|
|
}
|
2021-10-26 16:21:47 +02:00
|
|
|
return `${url}nom=${term}&boost=population`;
|
2020-10-07 17:41:20 +02:00
|
|
|
} else if (isNumeric(term)) {
|
|
|
|
const code = term.padStart(2, '0');
|
2021-07-20 12:41:16 +02:00
|
|
|
return `${api_geo_url}/${scope}?code=${code}&limit=${API_GEO_QUERY_LIMIT}`;
|
2020-10-07 17:41:20 +02:00
|
|
|
}
|
2021-07-20 12:41:16 +02:00
|
|
|
return `${api_geo_url}/${scope}?nom=${term}&limit=${API_GEO_QUERY_LIMIT}`;
|
2020-10-07 17:41:20 +02:00
|
|
|
}
|
|
|
|
|
2022-02-08 12:49:51 +01:00
|
|
|
const defaultQueryFn: QueryFunction<unknown, QueryKey> = async ({
|
2022-04-28 23:19:03 +02:00
|
|
|
queryKey: [scope, term, extra],
|
|
|
|
signal
|
2022-02-08 12:49:51 +01:00
|
|
|
}) => {
|
2020-11-25 15:17:59 +01:00
|
|
|
if (scope == 'pays') {
|
2022-04-28 23:19:03 +02:00
|
|
|
return matchSorter(await getPays(signal), term, { keys: ['label'] });
|
2020-11-25 15:17:59 +01:00
|
|
|
}
|
|
|
|
|
2021-10-26 16:21:47 +02:00
|
|
|
const url = buildURL(scope, term, extra);
|
2022-04-28 23:19:03 +02:00
|
|
|
return httpRequest(url, { csrf: false, signal }).json();
|
2022-02-08 12:49:51 +01:00
|
|
|
};
|
2020-11-30 10:53:55 +01:00
|
|
|
|
2022-02-08 12:49:51 +01:00
|
|
|
let paysCache: { label: string }[];
|
2022-04-28 23:19:03 +02:00
|
|
|
async function getPays(signal?: AbortSignal): Promise<{ label: string }[]> {
|
2020-11-30 10:53:55 +01:00
|
|
|
if (!paysCache) {
|
2022-04-28 23:19:03 +02:00
|
|
|
const data = await httpRequest('/api/pays', { signal }).json<
|
|
|
|
typeof paysCache
|
|
|
|
>();
|
|
|
|
if (data) {
|
|
|
|
paysCache = data;
|
|
|
|
}
|
2020-11-30 10:53:55 +01:00
|
|
|
}
|
|
|
|
return paysCache;
|
|
|
|
}
|
2022-02-08 12:49:51 +01:00
|
|
|
|
|
|
|
export const queryClient = new QueryClient({
|
|
|
|
defaultOptions: {
|
|
|
|
queries: {
|
2022-02-23 13:27:07 +01:00
|
|
|
// we don't really care about global queryFn type
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
2022-02-08 12:49:51 +01:00
|
|
|
queryFn: defaultQueryFn as any
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|