demarches-normaliennes/app/javascript/components/ComboDepartementsSearch.tsx

55 lines
1.4 KiB
TypeScript
Raw Normal View History

import React from 'react';
2021-02-16 13:54:16 +01:00
import { QueryClientProvider } from 'react-query';
2021-02-16 13:17:36 +01:00
import { matchSorter } from 'match-sorter';
2020-10-07 17:42:21 +02:00
import ComboSearch, { ComboSearchProps } from './ComboSearch';
2021-02-16 13:54:16 +01:00
import { queryClient } from './shared/queryClient';
2020-10-07 17:42:21 +02:00
type DepartementResult = { code: string; nom: string };
2020-10-07 17:42:21 +02:00
const extraTerms = [{ code: '99', nom: 'Etranger' }];
function expandResultsWithForeignDepartement(term: string, result: unknown) {
const results = result as DepartementResult[];
return [
2020-10-07 17:42:21 +02:00
...results,
...matchSorter(extraTerms, term, {
keys: ['nom', 'code']
})
];
}
2020-10-07 17:42:21 +02:00
type ComboDepartementsSearchProps = Omit<
ComboSearchProps<DepartementResult> & {
addForeignDepartement: boolean;
},
'transformResult' | 'transformResults'
>;
export function ComboDepartementsSearch({
addForeignDepartement = true,
...props
}: ComboDepartementsSearchProps) {
return (
<ComboSearch
{...props}
scope="departements"
minimumInputLength={1}
transformResult={({ code, nom }) => [code, `${code} - ${nom}`]}
transformResults={
addForeignDepartement ? expandResultsWithForeignDepartement : undefined
}
/>
);
}
export default function ComboDepartementsSearchDefault(
params: ComboDepartementsSearchProps
) {
2020-10-07 17:42:21 +02:00
return (
2021-02-16 13:54:16 +01:00
<QueryClientProvider client={queryClient}>
<ComboDepartementsSearch {...params} />
2021-02-16 13:54:16 +01:00
</QueryClientProvider>
2020-10-07 17:42:21 +02:00
);
}