@rsuci/shared-form-components 1.0.132 → 1.0.133
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/inputs/GeographicCascadeInput.d.ts +4 -0
- package/dist/components/inputs/GeographicCascadeInput.d.ts.map +1 -1
- package/dist/components/inputs/GeographicCascadeInput.js +30 -81
- package/dist/types/services.d.ts +1 -1
- package/dist/types/services.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import { GeographicItem, FetchFilter } from '../../types/services';
|
|
2
3
|
interface SelectDto {
|
|
3
4
|
id: number;
|
|
4
5
|
code: string;
|
|
@@ -13,6 +14,9 @@ interface GeographicCascadeInputProps {
|
|
|
13
14
|
required?: boolean;
|
|
14
15
|
className?: string;
|
|
15
16
|
isConsultationMode?: boolean;
|
|
17
|
+
services?: {
|
|
18
|
+
fetchGeographicData?: (entityType: string, parentId?: number, filter?: FetchFilter) => Promise<GeographicItem[]>;
|
|
19
|
+
};
|
|
16
20
|
}
|
|
17
21
|
export declare const GeographicCascadeInput: React.FC<GeographicCascadeInputProps>;
|
|
18
22
|
export default GeographicCascadeInput;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GeographicCascadeInput.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/GeographicCascadeInput.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4D,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"GeographicCascadeInput.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/GeographicCascadeInput.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4D,MAAM,OAAO,CAAC;AASjF,OAAO,EAAE,cAAc,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAEnE,UAAU,SAAS;IACjB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;CACrB;AAED,UAAU,2BAA2B;IACnC,QAAQ,EAAE,GAAG,CAAC;IACd,KAAK,EAAE,GAAG,CAAC;IACX,QAAQ,EAAE,CAAC,KAAK,EAAE,SAAS,GAAG,IAAI,KAAK,IAAI,CAAC;IAC5C,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAC9B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,QAAQ,CAAC,EAAE;QACT,mBAAmB,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,WAAW,KAAK,OAAO,CAAC,cAAc,EAAE,CAAC,CAAC;KAClH,CAAC;CACH;AAID,eAAO,MAAM,sBAAsB,EAAE,KAAK,CAAC,EAAE,CAAC,2BAA2B,CA2OxE,CAAC;AAEF,eAAe,sBAAsB,CAAC"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { useEffect, useState, useCallback, useRef, useMemo } from 'react';
|
|
3
3
|
import SearchableSelect from './SearchableSelect';
|
|
4
|
-
import { extractVariableCode, resolveParentValue,
|
|
4
|
+
import { extractVariableCode, resolveParentValue, getParentLabel, requiresParent } from '../../utils/variableDependencyResolver';
|
|
5
5
|
import { isComponentReadonly } from '../../utils/componentStateUtils';
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
const PAGE_SIZE = 50;
|
|
7
|
+
export const GeographicCascadeInput = ({ variable, value, onChange, reponses, disabled = false, required = false, className = '', isConsultationMode = false, services }) => {
|
|
8
8
|
const [items, setItems] = useState([]);
|
|
9
9
|
const [loading, setLoading] = useState(false);
|
|
10
10
|
const [loadingMore, setLoadingMore] = useState(false);
|
|
@@ -16,43 +16,12 @@ export const GeographicCascadeInput = ({ variable, value, onChange, reponses, di
|
|
|
16
16
|
const hasParentConfigured = !!extractVariableCode(variable);
|
|
17
17
|
const effectiveNeedsParent = needsParent && hasParentConfigured;
|
|
18
18
|
const parentValue = resolveParentValue(variable, reponses);
|
|
19
|
-
const
|
|
20
|
-
? (variable.valeur || 'CIV')
|
|
21
|
-
: undefined;
|
|
22
|
-
const baseEndpoint = getApiEndpoint(variable.typeCode, parentValue, countryCode, hasParentConfigured);
|
|
23
|
-
// Construire l'URL paginée avec recherche
|
|
24
|
-
const buildUrl = useCallback((p, search) => {
|
|
25
|
-
if (!baseEndpoint)
|
|
26
|
-
return null;
|
|
27
|
-
const url = new URL(baseEndpoint, window.location.origin);
|
|
28
|
-
url.searchParams.set('page', String(p));
|
|
29
|
-
url.searchParams.set('pageSize', String(PAGE_SIZE));
|
|
30
|
-
if (search)
|
|
31
|
-
url.searchParams.set('search', search);
|
|
32
|
-
return url.pathname + url.search;
|
|
33
|
-
}, [baseEndpoint]);
|
|
34
|
-
// Extraire les items depuis la réponse API (multi-format)
|
|
35
|
-
const parseResponse = (result) => {
|
|
36
|
-
// Format endpoint unifié : { data: { data: [...], totalCount, ... } }
|
|
37
|
-
if (result.data && typeof result.data === 'object' && !Array.isArray(result.data) && Array.isArray(result.data.data)) {
|
|
38
|
-
return result.data.data.map((item) => ({
|
|
39
|
-
id: item.id,
|
|
40
|
-
code: item.code,
|
|
41
|
-
designation: item.label || item.designation,
|
|
42
|
-
}));
|
|
43
|
-
}
|
|
44
|
-
// Format RSU API : { status: "SUCCESS", data: [...] }
|
|
45
|
-
if (result.status === 'SUCCESS' && Array.isArray(result.data)) {
|
|
46
|
-
return result.data;
|
|
47
|
-
}
|
|
48
|
-
if (Array.isArray(result))
|
|
49
|
-
return result;
|
|
50
|
-
if (result.data && Array.isArray(result.data))
|
|
51
|
-
return result.data;
|
|
52
|
-
throw new Error('Format de réponse invalide');
|
|
53
|
-
};
|
|
54
|
-
// Chargement initial + reset quand parent ou recherche change (debounce 300ms sur recherche)
|
|
19
|
+
const entityType = variable.typeCode;
|
|
55
20
|
useEffect(() => {
|
|
21
|
+
if (!services?.fetchGeographicData) {
|
|
22
|
+
setError('Service de chargement géographique non disponible');
|
|
23
|
+
return;
|
|
24
|
+
}
|
|
56
25
|
if (effectiveNeedsParent && !parentValue) {
|
|
57
26
|
setItems([]);
|
|
58
27
|
setLoading(false);
|
|
@@ -61,13 +30,6 @@ export const GeographicCascadeInput = ({ variable, value, onChange, reponses, di
|
|
|
61
30
|
setHasMore(true);
|
|
62
31
|
return;
|
|
63
32
|
}
|
|
64
|
-
const url = buildUrl(1, searchTerm || undefined);
|
|
65
|
-
if (!url) {
|
|
66
|
-
setItems([]);
|
|
67
|
-
setLoading(false);
|
|
68
|
-
setError(null);
|
|
69
|
-
return;
|
|
70
|
-
}
|
|
71
33
|
const timer = setTimeout(async () => {
|
|
72
34
|
setLoading(true);
|
|
73
35
|
setError(null);
|
|
@@ -75,15 +37,16 @@ export const GeographicCascadeInput = ({ variable, value, onChange, reponses, di
|
|
|
75
37
|
setPage(1);
|
|
76
38
|
setHasMore(true);
|
|
77
39
|
try {
|
|
78
|
-
const
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
40
|
+
const data = await services.fetchGeographicData(entityType, parentValue || undefined, { searchText: searchTerm || undefined, page: 1, pageSize: PAGE_SIZE });
|
|
41
|
+
const mapped = data.map(item => ({
|
|
42
|
+
id: item.id,
|
|
43
|
+
code: item.code,
|
|
44
|
+
designation: item.designation,
|
|
45
|
+
}));
|
|
46
|
+
setItems(mapped);
|
|
47
|
+
setHasMore(mapped.length === PAGE_SIZE);
|
|
85
48
|
}
|
|
86
|
-
catch
|
|
49
|
+
catch {
|
|
87
50
|
setError(`Erreur de chargement des ${variable.designation?.toLowerCase() || 'données'}`);
|
|
88
51
|
setItems([]);
|
|
89
52
|
}
|
|
@@ -92,24 +55,22 @@ export const GeographicCascadeInput = ({ variable, value, onChange, reponses, di
|
|
|
92
55
|
}
|
|
93
56
|
}, searchTerm ? 300 : 0);
|
|
94
57
|
return () => clearTimeout(timer);
|
|
95
|
-
}, [
|
|
58
|
+
}, [entityType, effectiveNeedsParent, parentValue, searchTerm, services]);
|
|
96
59
|
const handleScrollEnd = useCallback(async () => {
|
|
97
|
-
if (!hasMore || loadingMore || loading)
|
|
60
|
+
if (!hasMore || loadingMore || loading || !services?.fetchGeographicData)
|
|
98
61
|
return;
|
|
99
62
|
const nextPage = page + 1;
|
|
100
|
-
const url = buildUrl(nextPage, searchTerm || undefined);
|
|
101
|
-
if (!url)
|
|
102
|
-
return;
|
|
103
63
|
setLoadingMore(true);
|
|
104
64
|
try {
|
|
105
|
-
const
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
65
|
+
const data = await services.fetchGeographicData(entityType, parentValue || undefined, { searchText: searchTerm || undefined, page: nextPage, pageSize: PAGE_SIZE });
|
|
66
|
+
const mapped = data.map(item => ({
|
|
67
|
+
id: item.id,
|
|
68
|
+
code: item.code,
|
|
69
|
+
designation: item.designation,
|
|
70
|
+
}));
|
|
71
|
+
setItems(prev => [...prev, ...mapped]);
|
|
111
72
|
setPage(nextPage);
|
|
112
|
-
setHasMore(
|
|
73
|
+
setHasMore(mapped.length === PAGE_SIZE);
|
|
113
74
|
}
|
|
114
75
|
catch {
|
|
115
76
|
// Les données existantes restent affichées
|
|
@@ -117,34 +78,29 @@ export const GeographicCascadeInput = ({ variable, value, onChange, reponses, di
|
|
|
117
78
|
finally {
|
|
118
79
|
setLoadingMore(false);
|
|
119
80
|
}
|
|
120
|
-
}, [hasMore, loadingMore, loading, page, searchTerm,
|
|
81
|
+
}, [hasMore, loadingMore, loading, page, searchTerm, entityType, parentValue, services]);
|
|
121
82
|
const handleSearchChange = useCallback((term) => {
|
|
122
83
|
setSearchTerm(term);
|
|
123
84
|
}, []);
|
|
124
|
-
//
|
|
85
|
+
// Réinitialiser la valeur si le parent change
|
|
125
86
|
const previousParentRef = useRef(undefined);
|
|
126
87
|
useEffect(() => {
|
|
127
|
-
// Si un parent est requis (configuré) et que la valeur du parent a changé
|
|
128
88
|
if (effectiveNeedsParent) {
|
|
129
|
-
// Premier rendu : initialiser la référence sans réinitialiser
|
|
130
89
|
if (previousParentRef.current === undefined) {
|
|
131
90
|
previousParentRef.current = parentValue;
|
|
132
91
|
return;
|
|
133
92
|
}
|
|
134
|
-
// Si le parent a changé et qu'on a une valeur sélectionnée, la réinitialiser
|
|
135
93
|
if (parentValue !== previousParentRef.current && value) {
|
|
136
94
|
onChange(null);
|
|
137
95
|
}
|
|
138
96
|
previousParentRef.current = parentValue;
|
|
139
97
|
}
|
|
140
98
|
}, [parentValue, effectiveNeedsParent, value, onChange]);
|
|
141
|
-
// 7. Gérer le changement de valeur
|
|
142
99
|
const handleChange = (option) => {
|
|
143
100
|
if (!option) {
|
|
144
101
|
onChange(null);
|
|
145
102
|
return;
|
|
146
103
|
}
|
|
147
|
-
// Convertir SelectOption vers SelectDto
|
|
148
104
|
const selectDto = {
|
|
149
105
|
id: typeof option.id === 'string' ? parseInt(option.id, 10) : option.id,
|
|
150
106
|
code: option.code || '',
|
|
@@ -152,10 +108,8 @@ export const GeographicCascadeInput = ({ variable, value, onChange, reponses, di
|
|
|
152
108
|
};
|
|
153
109
|
onChange(selectDto);
|
|
154
110
|
};
|
|
155
|
-
// 8. Déterminer si le champ est désactivé (select ne supporte pas readonly, on utilise disabled)
|
|
156
111
|
const isReadonly = isComponentReadonly(variable, isConsultationMode);
|
|
157
112
|
const isDisabled = disabled || isReadonly || loading || (effectiveNeedsParent && !parentValue);
|
|
158
|
-
// 9. Déterminer le message du placeholder
|
|
159
113
|
const getPlaceholder = () => {
|
|
160
114
|
if (loading)
|
|
161
115
|
return 'Chargement...';
|
|
@@ -170,11 +124,9 @@ export const GeographicCascadeInput = ({ variable, value, onChange, reponses, di
|
|
|
170
124
|
const parsedValue = useMemo(() => {
|
|
171
125
|
if (!value)
|
|
172
126
|
return null;
|
|
173
|
-
// Si c'est déjà un objet avec les propriétés attendues
|
|
174
127
|
if (typeof value === 'object' && value !== null && 'id' in value) {
|
|
175
128
|
return value;
|
|
176
129
|
}
|
|
177
|
-
// Si c'est une chaîne JSON, la parser
|
|
178
130
|
if (typeof value === 'string') {
|
|
179
131
|
try {
|
|
180
132
|
const parsed = JSON.parse(value);
|
|
@@ -183,12 +135,11 @@ export const GeographicCascadeInput = ({ variable, value, onChange, reponses, di
|
|
|
183
135
|
}
|
|
184
136
|
}
|
|
185
137
|
catch {
|
|
186
|
-
// Ignorer les erreurs de parsing
|
|
138
|
+
// Ignorer les erreurs de parsing
|
|
187
139
|
}
|
|
188
140
|
}
|
|
189
141
|
return null;
|
|
190
142
|
}, [value]);
|
|
191
|
-
// Convertir les items en SelectOption, avec la valeur pré-sélectionnée en tête si absente
|
|
192
143
|
const options = useMemo(() => {
|
|
193
144
|
const mapped = items.map(item => ({
|
|
194
145
|
id: item.id,
|
|
@@ -200,13 +151,11 @@ export const GeographicCascadeInput = ({ variable, value, onChange, reponses, di
|
|
|
200
151
|
}
|
|
201
152
|
return mapped;
|
|
202
153
|
}, [items, parsedValue]);
|
|
203
|
-
// Convertir la valeur parsée en SelectOption
|
|
204
154
|
const currentValue = parsedValue ? {
|
|
205
155
|
id: parsedValue.id,
|
|
206
156
|
code: parsedValue.code,
|
|
207
157
|
designation: parsedValue.designation
|
|
208
158
|
} : null;
|
|
209
|
-
// 13. Rendu du composant
|
|
210
159
|
return (_jsxs("div", { className: "w-full", children: [_jsx(SearchableSelect, { options: options, value: currentValue, onChange: handleChange, placeholder: getPlaceholder(), searchPlaceholder: "Rechercher...", disabled: isDisabled, required: required, loading: loading, error: error || undefined, className: className, noOptionsMessage: effectiveNeedsParent && !parentValue
|
|
211
160
|
? `Veuillez d'abord sélectionner ${getParentLabel(variable.typeCode)}`
|
|
212
161
|
: `Aucun(e) ${variable.designation?.toLowerCase() || 'élément'} disponible`, formatOptionLabel: (option) => option.designation, onSearchChange: handleSearchChange, onScrollEnd: handleScrollEnd, loadingMore: loadingMore }), effectiveNeedsParent && !parentValue && !loading && !error && (_jsxs("p", { className: "mt-1 text-sm text-gray-500 flex items-center", children: [_jsx("svg", { className: "w-4 h-4 mr-1", fill: "currentColor", viewBox: "0 0 20 20", children: _jsx("path", { fillRule: "evenodd", d: "M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a1 1 0 000 2v3a1 1 0 001 1h1a1 1 0 100-2v-3a1 1 0 00-1-1H9z", clipRule: "evenodd" }) }), "Veuillez d'abord s\u00E9lectionner ", getParentLabel(variable.typeCode)] })), loading && (_jsxs("p", { className: "mt-1 text-sm text-blue-600 flex items-center", children: [_jsxs("svg", { className: "animate-spin h-4 w-4 mr-1", fill: "none", viewBox: "0 0 24 24", children: [_jsx("circle", { className: "opacity-25", cx: "12", cy: "12", r: "10", stroke: "currentColor", strokeWidth: "4" }), _jsx("path", { className: "opacity-75", fill: "currentColor", d: "M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z" })] }), "Chargement des donn\u00E9es..."] }))] }));
|
package/dist/types/services.d.ts
CHANGED
|
@@ -34,7 +34,7 @@ export interface FormRendererServices {
|
|
|
34
34
|
fetchEnquetes?: (filter?: FetchFilter) => Promise<EnqueteCompletDto[]>;
|
|
35
35
|
fetchEnqueteDonnees?: (enqueteId: number) => Promise<any>;
|
|
36
36
|
fetchStructures?: (filter?: FetchFilter) => Promise<StructureDto[]>;
|
|
37
|
-
fetchGeographicData?: (
|
|
37
|
+
fetchGeographicData?: (entityType: string, parentId?: number, filter?: FetchFilter) => Promise<GeographicItem[]>;
|
|
38
38
|
forceUppercase?: boolean;
|
|
39
39
|
currentUser?: CurrentUserDto;
|
|
40
40
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"services.d.ts","sourceRoot":"","sources":["../../src/types/services.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,MAAM,WAAW,YAAY;IAC3B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,wBAAwB,CAAC,EAAE,MAAM,CAAC;IAClC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACpB;AAGD,MAAM,WAAW,cAAc;IAC7B,EAAE,EAAE,MAAM,CAAC;IACX,GAAG,EAAE,MAAM,CAAC;IACZ,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,WAAW;IAC1B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAGD,MAAM,WAAW,oBAAoB;IAEnC,YAAY,CAAC,EAAE,CAAC,MAAM,CAAC,EAAE,WAAW,KAAK,OAAO,CAAC,gBAAgB,EAAE,CAAC,CAAC;IAGrE,aAAa,CAAC,EAAE,CAAC,MAAM,CAAC,EAAE,WAAW,KAAK,OAAO,CAAC,iBAAiB,EAAE,CAAC,CAAC;IAGvE,mBAAmB,CAAC,EAAE,CAAC,SAAS,EAAE,MAAM,KAAK,OAAO,CAAC,GAAG,CAAC,CAAC;IAG1D,eAAe,CAAC,EAAE,CAAC,MAAM,CAAC,EAAE,WAAW,KAAK,OAAO,CAAC,YAAY,EAAE,CAAC,CAAC;IAGpE,mBAAmB,CAAC,EAAE,CAAC,
|
|
1
|
+
{"version":3,"file":"services.d.ts","sourceRoot":"","sources":["../../src/types/services.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED