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

35 lines
923 B
React
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 from './ComboSearch';
2021-02-16 13:54:16 +01:00
import { queryClient } from './shared/queryClient';
2020-10-07 17:42:21 +02:00
const extraTerms = [{ code: '99', nom: 'Etranger' }];
function expandResultsWithForeignDepartement(term, results) {
return [
2020-10-07 17:42:21 +02:00
...results,
...matchSorter(extraTerms, term, {
keys: ['nom', 'code']
})
];
}
2020-10-07 17:42:21 +02:00
function ComboDepartementsSearch(params) {
2020-10-07 17:42:21 +02:00
return (
2021-02-16 13:54:16 +01:00
<QueryClientProvider client={queryClient}>
2020-10-07 17:42:21 +02:00
<ComboSearch
required={params.mandatory}
hiddenFieldId={params.hiddenFieldId}
scope="departements"
minimumInputLength={1}
transformResult={({ code, nom }) => [code, `${code} - ${nom}`]}
transformResults={expandResultsWithForeignDepartement}
2020-10-07 17:42:21 +02:00
/>
2021-02-16 13:54:16 +01:00
</QueryClientProvider>
2020-10-07 17:42:21 +02:00
);
}
export default ComboDepartementsSearch;