@arquimedes.co/eureka-forms 3.0.62 → 3.0.64-entity-step-filter
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/README +33 -1
- package/dist/@Types/AvailabilityFormStep.d.ts +48 -0
- package/dist/@Types/AvailabilityFormStep.js +24 -0
- package/dist/@Types/BankAccountFormStep.d.ts +67 -0
- package/dist/@Types/BankAccountFormStep.js +14 -0
- package/dist/@Types/BookingFormStep.d.ts +187 -0
- package/dist/@Types/BookingFormStep.js +44 -0
- package/dist/@Types/CalendarFormStep.d.ts +209 -0
- package/dist/@Types/CalendarFormStep.js +55 -0
- package/dist/@Types/CommunicationChannelFormStep.d.ts +51 -0
- package/dist/@Types/CommunicationChannelFormStep.js +15 -0
- package/dist/@Types/ConsentFormStep.d.ts +36 -0
- package/dist/@Types/ConsentFormStep.js +8 -0
- package/dist/@Types/EntityFormFormStep.d.ts +66 -0
- package/dist/@Types/EntityFormFormStep.js +20 -0
- package/dist/@Types/EventFormStep.d.ts +52 -0
- package/dist/@Types/EventFormStep.js +13 -0
- package/dist/@Types/ExternalReferenceFormStep.d.ts +74 -0
- package/dist/@Types/ExternalReferenceFormStep.js +20 -0
- package/dist/@Types/FormStep.d.ts +7 -2
- package/dist/@Types/FormStep.js +2 -1
- package/dist/@Types/LocationFormStep.d.ts +159 -0
- package/dist/@Types/LocationFormStep.js +46 -0
- package/dist/@Types/NumericFormSteps.d.ts +108 -0
- package/dist/@Types/NumericFormSteps.js +20 -0
- package/dist/@Types/PredefinedSelectorFormStep.d.ts +51 -0
- package/dist/@Types/PredefinedSelectorFormStep.js +39 -0
- package/dist/@Types/StepRef.d.ts +135 -0
- package/dist/@Types/StepRef.js +49 -0
- package/dist/App/AppHooks.js +8 -0
- package/dist/App/AppHooks.test.js +8 -0
- package/dist/FormSteps/AvailabilityStep/AvailabilityStep.d.ts +7 -0
- package/dist/FormSteps/AvailabilityStep/AvailabilityStep.js +14 -0
- package/dist/FormSteps/AvailabilityStep/MaterialAvailabilityStep/MaterialAvailabilityStep.d.ts +8 -0
- package/dist/FormSteps/AvailabilityStep/MaterialAvailabilityStep/MaterialAvailabilityStep.js +32 -0
- package/dist/FormSteps/BookingStep/BookingStep.d.ts +17 -0
- package/dist/FormSteps/BookingStep/BookingStep.js +14 -0
- package/dist/FormSteps/BookingStep/MaterialBookingStep/MaterialBookingStep.d.ts +7 -0
- package/dist/FormSteps/BookingStep/MaterialBookingStep/MaterialBookingStep.js +32 -0
- package/dist/FormSteps/ClassifierSelectorStep/ClassifierSelectorStep.lateClassifiers.test.d.ts +1 -0
- package/dist/FormSteps/ClassifierSelectorStep/ClassifierSelectorStep.lateClassifiers.test.js +70 -0
- package/dist/FormSteps/ClassifierSelectorStep/MaterialClassifierSelectorStep/MaterialClassifierSelectorStep.js +3 -1
- package/dist/FormSteps/EntityValueStep/MaterialEntityValuePickerStep/MaterialEntityValuePickerStep.js +4 -6
- package/dist/FormSteps/EntityValueStep/entityValueDependencyValue.d.ts +12 -0
- package/dist/FormSteps/EntityValueStep/entityValueDependencyValue.js +35 -0
- package/dist/FormSteps/EntityValueStep/entityValueDependencyValue.test.d.ts +1 -0
- package/dist/FormSteps/EntityValueStep/entityValueDependencyValue.test.js +31 -0
- package/dist/FormSteps/LocationStep/LocationStep.d.ts +10 -0
- package/dist/FormSteps/LocationStep/LocationStep.js +14 -0
- package/dist/FormSteps/LocationStep/MaterialLocationStep/MaterialLocationStep.d.ts +3 -0
- package/dist/FormSteps/LocationStep/MaterialLocationStep/MaterialLocationStep.js +54 -0
- package/dist/FormSteps/LocationStep/MaterialLocationStep/MaterialLocationStep.module.css +18 -0
- package/dist/FormSteps/NumberStep/MaterialNumberStep/MaterialNumberStep.d.ts +3 -0
- package/dist/FormSteps/NumberStep/MaterialNumberStep/MaterialNumberStep.js +170 -0
- package/dist/FormSteps/NumberStep/MaterialNumberStep/MaterialNumberStep.module.css +96 -0
- package/dist/FormSteps/NumberStep/NumberStep.d.ts +10 -0
- package/dist/FormSteps/NumberStep/NumberStep.js +14 -0
- package/dist/FormSteps/Step.js +16 -0
- package/dist/FormSteps/StepFunctions.js +14 -0
- package/dist/FormSteps/StepFunctions.test.js +54 -0
- package/dist/Icons/AddIcon.d.ts +3 -0
- package/dist/Icons/AddIcon.js +7 -0
- package/dist/Icons/EditIcon.d.ts +3 -0
- package/dist/Icons/EditIcon.js +7 -0
- package/dist/Icons/RemoveIcon.d.ts +3 -0
- package/dist/Icons/RemoveIcon.js +7 -0
- package/dist/Icons/ViewDayIcon.d.ts +3 -0
- package/dist/Icons/ViewDayIcon.js +7 -0
- package/dist/Icons/ViewWeekIcon.d.ts +3 -0
- package/dist/Icons/ViewWeekIcon.js +7 -0
- package/dist/Shared/ErkAddressAutocomplete/ErkAddressAutocomplete.d.ts +19 -0
- package/dist/Shared/ErkAddressAutocomplete/ErkAddressAutocomplete.js +80 -0
- package/dist/Shared/ErkAddressAutocomplete/ErkAddressAutocomplete.module.css +88 -0
- package/dist/Shared/ErkAddressAutocomplete/googlePlaces.d.ts +29 -0
- package/dist/Shared/ErkAddressAutocomplete/googlePlaces.js +139 -0
- package/dist/Shared/ErkAvailabilityPicker/ErkAvailabilityPicker.d.ts +25 -0
- package/dist/Shared/ErkAvailabilityPicker/ErkAvailabilityPicker.js +112 -0
- package/dist/Shared/ErkAvailabilityPicker/ErkAvailabilityPicker.module.css +88 -0
- package/dist/Shared/ErkAvailabilityPicker/ErkAvailabilityPicker.test.d.ts +1 -0
- package/dist/Shared/ErkAvailabilityPicker/ErkAvailabilityPicker.test.js +73 -0
- package/dist/Shared/ErkBookingPicker/ErkBookingPicker.d.ts +31 -0
- package/dist/Shared/ErkBookingPicker/ErkBookingPicker.js +228 -0
- package/dist/Shared/ErkBookingPicker/ErkBookingPicker.module.css +608 -0
- package/dist/Shared/ErkBookingPicker/ErkBookingPicker.stories.d.ts +28 -0
- package/dist/Shared/ErkBookingPicker/ErkBookingPicker.stories.js +117 -0
- package/dist/Shared/ErkBookingPicker/ErkBookingPicker.stories.test.d.ts +1 -0
- package/dist/Shared/ErkBookingPicker/ErkBookingPicker.stories.test.js +49 -0
- package/dist/Shared/ErkBookingPicker/ErkBookingPicker.test.d.ts +1 -0
- package/dist/Shared/ErkBookingPicker/ErkBookingPicker.test.js +107 -0
- package/dist/Shared/ErkDatePicker/ErkDatePicker.js +1 -3
- package/dist/Shared/ErkDateRangePicker/ErkDateRangePicker.d.ts +2 -3
- package/dist/Shared/ErkDateRangePicker/ErkDateRangePicker.js +1 -2
- package/dist/Shared/ErkIconButton/ErkIconButton.d.ts +17 -0
- package/dist/Shared/ErkIconButton/ErkIconButton.js +11 -0
- package/dist/Shared/ErkIconButton/ErkIconButton.module.css +41 -0
- package/dist/Shared/ErkLocationField/ErkLocationField.d.ts +24 -0
- package/dist/Shared/ErkLocationField/ErkLocationField.js +128 -0
- package/dist/Shared/ErkLocationField/ErkLocationField.module.css +164 -0
- package/dist/Shared/ErkLocationField/ErkLocationField.test.d.ts +1 -0
- package/dist/Shared/ErkLocationField/ErkLocationField.test.js +82 -0
- package/dist/Shared/ErkLocationField/addressFields.d.ts +12 -0
- package/dist/Shared/ErkLocationField/addressFields.js +34 -0
- package/dist/Shared/ErkLocationField/locationRestrictions.d.ts +6 -0
- package/dist/Shared/ErkLocationField/locationRestrictions.js +51 -0
- package/dist/Shared/ErkLocationInput/ErkLocationInput.d.ts +15 -0
- package/dist/Shared/ErkLocationInput/ErkLocationInput.js +502 -0
- package/dist/Shared/ErkLocationInput/ErkLocationInput.module.css +128 -0
- package/dist/Shared/ErkNumberField/ErkNumberField.d.ts +42 -0
- package/dist/Shared/ErkNumberField/ErkNumberField.js +169 -0
- package/dist/Utils/AxiosWidget.js +9 -1
- package/dist/constants/FormStepTypes.d.ts +5 -1
- package/dist/constants/FormStepTypes.js +4 -0
- package/dist/index.lib.d.ts +4 -2
- package/dist/index.lib.js +3 -1
- package/package.json +2 -1
|
@@ -50,8 +50,10 @@ function ClassifierSelectorStep({ step, editable }) {
|
|
|
50
50
|
};
|
|
51
51
|
}) ?? []);
|
|
52
52
|
},
|
|
53
|
+
// The classifiers dictionary can arrive after the first render (see useSetupApp), so the
|
|
54
|
+
// options must follow it, not only the dependency values.
|
|
53
55
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
54
|
-
[dependenciesValues]);
|
|
56
|
+
[dependenciesValues, classifier, form.classifiers]);
|
|
55
57
|
useEffect(() => {
|
|
56
58
|
if (value && !options?.find((option) => option.value === value?.value)) {
|
|
57
59
|
onChange('');
|
|
@@ -13,6 +13,7 @@ import { evaluateCondition } from '../../StepFunctions';
|
|
|
13
13
|
import StepComponent from '../../Step';
|
|
14
14
|
import ErkValueTypes from '../../../constants/ErkValueTypes';
|
|
15
15
|
import { IntegrationsApi } from '../../../Services/IntegrationService';
|
|
16
|
+
import { entityValueDependencyValue } from '../entityValueDependencyValue';
|
|
16
17
|
function EntityValuePickerStep({ step, editable }) {
|
|
17
18
|
const form = useContext(FormContext);
|
|
18
19
|
const subscribe = useApiSubscribe();
|
|
@@ -173,12 +174,9 @@ const getEntityValueOptions = async (step, dependencyStore, { idOrganization, id
|
|
|
173
174
|
break;
|
|
174
175
|
}
|
|
175
176
|
case EntityValueDataTypes.STEP: {
|
|
176
|
-
const currentValue = dependencyStore[filter.idStep]
|
|
177
|
-
if (currentValue) {
|
|
178
|
-
|
|
179
|
-
params.set(filter.idProperty, currentValue);
|
|
180
|
-
else
|
|
181
|
-
params.set(filter.idProperty, currentValue._id ?? currentValue.id);
|
|
177
|
+
const currentValue = entityValueDependencyValue(dependencyStore[filter.idStep]);
|
|
178
|
+
if (currentValue !== undefined) {
|
|
179
|
+
params.set(filter.idProperty, currentValue);
|
|
182
180
|
}
|
|
183
181
|
else if (filter.required) {
|
|
184
182
|
return null;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { StepDependency } from '../../Form/Form';
|
|
2
|
+
/**
|
|
3
|
+
* Serializes the current value of a dependency step into the string an entity-picker STEP filter
|
|
4
|
+
* sends as `values.<idProperty>` query param.
|
|
5
|
+
*
|
|
6
|
+
* Entity values (and any id-bearing object) resolve to their id. The answer of a Selector or
|
|
7
|
+
* Classifier step is a `{ label, value }` option: a Selector keeps `value === label`, so its `value`
|
|
8
|
+
* is the text the entity property stores; a Classifier's `value` is the classifier id, which no
|
|
9
|
+
* entity property holds, so it resolves to its `label`. Returns undefined when the dependency has
|
|
10
|
+
* no usable value, so the caller treats the filter as unresolved.
|
|
11
|
+
*/
|
|
12
|
+
export declare function entityValueDependencyValue(dependency: StepDependency | undefined): string | undefined;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import FormStepTypes from '../../constants/FormStepTypes';
|
|
2
|
+
/**
|
|
3
|
+
* Serializes the current value of a dependency step into the string an entity-picker STEP filter
|
|
4
|
+
* sends as `values.<idProperty>` query param.
|
|
5
|
+
*
|
|
6
|
+
* Entity values (and any id-bearing object) resolve to their id. The answer of a Selector or
|
|
7
|
+
* Classifier step is a `{ label, value }` option: a Selector keeps `value === label`, so its `value`
|
|
8
|
+
* is the text the entity property stores; a Classifier's `value` is the classifier id, which no
|
|
9
|
+
* entity property holds, so it resolves to its `label`. Returns undefined when the dependency has
|
|
10
|
+
* no usable value, so the caller treats the filter as unresolved.
|
|
11
|
+
*/
|
|
12
|
+
export function entityValueDependencyValue(dependency) {
|
|
13
|
+
const currentValue = dependency?.value;
|
|
14
|
+
if (currentValue === null || currentValue === undefined || currentValue === '')
|
|
15
|
+
return undefined;
|
|
16
|
+
if (typeof currentValue === 'string')
|
|
17
|
+
return currentValue;
|
|
18
|
+
if (typeof currentValue === 'number' || typeof currentValue === 'boolean')
|
|
19
|
+
return String(currentValue);
|
|
20
|
+
if (currentValue instanceof Date)
|
|
21
|
+
return currentValue.toISOString();
|
|
22
|
+
if (typeof currentValue !== 'object')
|
|
23
|
+
return undefined;
|
|
24
|
+
const record = currentValue;
|
|
25
|
+
// A Selector's `value` is the stored text; every other step's `value` may be an id, so its `label` wins.
|
|
26
|
+
const keys = dependency?.type === FormStepTypes.SELECTOR ? ['_id', 'id', 'value', 'label'] : ['_id', 'id', 'label', 'value'];
|
|
27
|
+
for (const key of keys) {
|
|
28
|
+
const candidate = record[key];
|
|
29
|
+
if (typeof candidate === 'string' && candidate !== '')
|
|
30
|
+
return candidate;
|
|
31
|
+
if (typeof candidate === 'number')
|
|
32
|
+
return String(candidate);
|
|
33
|
+
}
|
|
34
|
+
return undefined;
|
|
35
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { describe, expect, test } from 'vitest';
|
|
2
|
+
import FormStepTypes from '../../constants/FormStepTypes';
|
|
3
|
+
import { entityValueDependencyValue } from './entityValueDependencyValue';
|
|
4
|
+
const dep = (type, value) => ({
|
|
5
|
+
idOriginal: 'dep',
|
|
6
|
+
dependents: [],
|
|
7
|
+
type,
|
|
8
|
+
value,
|
|
9
|
+
});
|
|
10
|
+
describe('entityValueDependencyValue', () => {
|
|
11
|
+
test('an unanswered dependency is unresolved', () => {
|
|
12
|
+
expect(entityValueDependencyValue(undefined)).toBeUndefined();
|
|
13
|
+
expect(entityValueDependencyValue(dep(FormStepTypes.SELECTOR, null))).toBeUndefined();
|
|
14
|
+
expect(entityValueDependencyValue(dep(FormStepTypes.SELECTOR, ''))).toBeUndefined();
|
|
15
|
+
expect(entityValueDependencyValue(dep(FormStepTypes.SELECTOR, {}))).toBeUndefined();
|
|
16
|
+
});
|
|
17
|
+
test('plain answers are sent as text', () => {
|
|
18
|
+
expect(entityValueDependencyValue(dep(FormStepTypes.TEXTINPUT, 'Torre 3'))).toBe('Torre 3');
|
|
19
|
+
expect(entityValueDependencyValue(dep(FormStepTypes.TEXTINPUT, 7))).toBe('7');
|
|
20
|
+
expect(entityValueDependencyValue(dep(FormStepTypes.DATEPICKER, new Date('2026-01-02T00:00:00.000Z')))).toBe('2026-01-02T00:00:00.000Z');
|
|
21
|
+
});
|
|
22
|
+
test('an entity value resolves to its id', () => {
|
|
23
|
+
expect(entityValueDependencyValue(dep(FormStepTypes.ENTITYVALUEPICKER, { _id: 'ev-1', label: 'Morros' }))).toBe('ev-1');
|
|
24
|
+
expect(entityValueDependencyValue(dep(FormStepTypes.API_SELECTOR, { id: 'api-1', label: 'X' }))).toBe('api-1');
|
|
25
|
+
});
|
|
26
|
+
test('a selector option resolves to its value, a classifier option to its label', () => {
|
|
27
|
+
expect(entityValueDependencyValue(dep(FormStepTypes.SELECTOR, { label: 'Piso 2', value: 'Piso 2' }))).toBe('Piso 2');
|
|
28
|
+
expect(entityValueDependencyValue(dep(FormStepTypes.SELECTOR, { label: 'Dos', value: '2' }))).toBe('2');
|
|
29
|
+
expect(entityValueDependencyValue(dep(FormStepTypes.CLASSIFIER_SELECTOR, { label: 'Piso 2', value: '65f0c1a2b3c4d5e6f7a8b9c0' }))).toBe('Piso 2');
|
|
30
|
+
});
|
|
31
|
+
});
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { LocationStep } from '../../@Types/LocationFormStep';
|
|
2
|
+
import { StepProps } from '../Step';
|
|
3
|
+
export interface LocationStepProps extends StepProps {
|
|
4
|
+
/** The LocationStep to display */
|
|
5
|
+
step: LocationStep;
|
|
6
|
+
/** The icon to display */
|
|
7
|
+
IconComponent?: React.ElementType;
|
|
8
|
+
}
|
|
9
|
+
declare function LocationStepComponent(props: LocationStepProps): JSX.Element;
|
|
10
|
+
export default LocationStepComponent;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { FormStyleTypes } from '../../constants/FormStepTypes';
|
|
3
|
+
import MaterialLocationStep from './MaterialLocationStep/MaterialLocationStep';
|
|
4
|
+
import { useAppSelector } from '../../hooks';
|
|
5
|
+
function LocationStepComponent(props) {
|
|
6
|
+
const { formStyle } = useAppSelector((state) => state.global);
|
|
7
|
+
switch (formStyle.type) {
|
|
8
|
+
case FormStyleTypes.MATERIAL:
|
|
9
|
+
default: {
|
|
10
|
+
return _jsx(MaterialLocationStep, { ...props });
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export default LocationStepComponent;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { useContext } from 'react';
|
|
3
|
+
import { AddressFieldMode, LocationInputMode } from '../../../@Types/LocationFormStep';
|
|
4
|
+
import { useFormStep } from '../../StepHooks';
|
|
5
|
+
import FormContext from '../../../Contexts/FormContext';
|
|
6
|
+
import { selectBreakPoint, useAppSelector } from '../../../hooks';
|
|
7
|
+
import { calcStepWidth } from '../../StepFunctions';
|
|
8
|
+
import ErkLocationField from '../../../Shared/ErkLocationField/ErkLocationField';
|
|
9
|
+
import { fieldConfig } from '../../../Shared/ErkLocationField/addressFields';
|
|
10
|
+
import { validateRestrictions } from '../../../Shared/ErkLocationField/locationRestrictions';
|
|
11
|
+
import styles from './MaterialLocationStep.module.css';
|
|
12
|
+
function MaterialLocationStep({ step, editable }) {
|
|
13
|
+
const currentBreakPoint = useAppSelector(selectBreakPoint);
|
|
14
|
+
const { postview, formStyle } = useAppSelector((state) => state.global);
|
|
15
|
+
const form = useContext(FormContext);
|
|
16
|
+
const isReadOnly = !editable || postview;
|
|
17
|
+
const widthStyle = currentBreakPoint <= step.size ? '100%' : calcStepWidth(step.size, form.size);
|
|
18
|
+
const { ref, value, onChange, error } = useFormStep(step, {
|
|
19
|
+
defaultValue: step.defaultValue ?? null,
|
|
20
|
+
rules: {
|
|
21
|
+
required: step.required ? 'La ubicación es obligatoria' : undefined,
|
|
22
|
+
validate: (val) => {
|
|
23
|
+
if (!val)
|
|
24
|
+
return step.required ? 'La ubicación es obligatoria' : true;
|
|
25
|
+
if (val.source === LocationInputMode.MANUAL) {
|
|
26
|
+
// Un campo es obligatorio en manual solo si no está omitido (FIXED lo llena solo).
|
|
27
|
+
const detail = val.addressDetail;
|
|
28
|
+
const isRequired = (key) => fieldConfig(step.addressFields, key).mode !== AddressFieldMode.OMIT;
|
|
29
|
+
if (step.required && isRequired('street') && !detail?.street)
|
|
30
|
+
return 'Por favor completa la calle en el formulario manual.';
|
|
31
|
+
if (step.required && isRequired('city') && !detail?.city)
|
|
32
|
+
return 'Por favor completa la ciudad en el formulario manual.';
|
|
33
|
+
if (step.required && isRequired('country') && !detail?.country)
|
|
34
|
+
return 'Por favor completa el país en el formulario manual.';
|
|
35
|
+
return true;
|
|
36
|
+
}
|
|
37
|
+
if (val.latitude === undefined || val.longitude === undefined) {
|
|
38
|
+
return step.required ? 'Coordenadas geográficas no capturadas.' : true;
|
|
39
|
+
}
|
|
40
|
+
// Restricciones geográficas (radio / geofence).
|
|
41
|
+
return validateRestrictions(val.latitude, val.longitude, step.restrictions) ?? true;
|
|
42
|
+
},
|
|
43
|
+
},
|
|
44
|
+
});
|
|
45
|
+
return (_jsxs("div", { className: styles.container, style: {
|
|
46
|
+
width: widthStyle,
|
|
47
|
+
'--eureka-outline': formStyle.outlineColor,
|
|
48
|
+
'--eureka-primary': formStyle.primaryColor,
|
|
49
|
+
'--eureka-text': formStyle.textColor,
|
|
50
|
+
'--eureka-error': formStyle.errorColor,
|
|
51
|
+
'--eureka-bg': formStyle.standAloneBackgroundColor ?? '#fff',
|
|
52
|
+
}, children: [step.label && (_jsxs("div", { className: styles.label, children: [step.label, step.required && _jsx("span", { className: styles.required, children: " *" })] })), _jsx(ErkLocationField, { value: value, onChange: onChange, allowedModes: step.allowedModes, defaultMode: step.defaultMode, addressFields: step.addressFields, helperText: error?.message ?? step.description, required: step.required, error: !!error, readOnly: isReadOnly, inputRef: ref })] }));
|
|
53
|
+
}
|
|
54
|
+
export default MaterialLocationStep;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
.container {
|
|
2
|
+
max-width: 100%;
|
|
3
|
+
display: flex;
|
|
4
|
+
flex-direction: column;
|
|
5
|
+
gap: 6px;
|
|
6
|
+
padding: 5px 10px 0;
|
|
7
|
+
box-sizing: border-box;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.label {
|
|
11
|
+
font-size: 14px;
|
|
12
|
+
font-weight: 500;
|
|
13
|
+
color: var(--eureka-text, #333);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.required {
|
|
17
|
+
color: var(--eureka-error, #e53935);
|
|
18
|
+
}
|
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
import { Fragment as _Fragment, jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { useContext, useState, useEffect } from 'react';
|
|
3
|
+
import { NumberStepType, } from '../../../@Types/NumericFormSteps';
|
|
4
|
+
import { useFormStep } from '../../StepHooks';
|
|
5
|
+
import FormContext from '../../../Contexts/FormContext';
|
|
6
|
+
import { selectBreakPoint, useAppSelector } from '../../../hooks';
|
|
7
|
+
import { calcStepWidth } from '../../StepFunctions';
|
|
8
|
+
import ErkNumberField from '../../../Shared/ErkNumberField/ErkNumberField';
|
|
9
|
+
import ErkSelect from '../../../Shared/ErkSelect/ErkSelect';
|
|
10
|
+
import ErkMenuItem from '../../../Shared/ErkMenuItem';
|
|
11
|
+
import styles from './MaterialNumberStep.module.css';
|
|
12
|
+
const DEFAULT_CURRENCIES = ['COP', 'USD', 'EUR', 'MXN', 'CLP', 'BRL'];
|
|
13
|
+
const DEFAULT_UNITS = ['unidades', 'kg', 'g', 'm', 'cm', 'l', 'ml', 'hrs', 'mes', 'año'];
|
|
14
|
+
// ---------------------------------------------------------------------------
|
|
15
|
+
// Helpers
|
|
16
|
+
// ---------------------------------------------------------------------------
|
|
17
|
+
function getNumericValue(value) {
|
|
18
|
+
if (value === null || value === undefined)
|
|
19
|
+
return null;
|
|
20
|
+
if (typeof value === 'number')
|
|
21
|
+
return value;
|
|
22
|
+
return value.value;
|
|
23
|
+
}
|
|
24
|
+
// ---------------------------------------------------------------------------
|
|
25
|
+
// Component
|
|
26
|
+
// ---------------------------------------------------------------------------
|
|
27
|
+
function MaterialNumberStep({ step, editable }) {
|
|
28
|
+
const currentBreakPoint = useAppSelector(selectBreakPoint);
|
|
29
|
+
const { postview, formStyle } = useAppSelector((state) => state.global);
|
|
30
|
+
const form = useContext(FormContext);
|
|
31
|
+
const isReadOnly = !editable || postview;
|
|
32
|
+
const widthStyle = currentBreakPoint <= step.size ? '100%' : calcStepWidth(step.size, form.size);
|
|
33
|
+
const isComposite = step.numberType === NumberStepType.MONEY ||
|
|
34
|
+
step.numberType === NumberStepType.MEASURE ||
|
|
35
|
+
step.numberType === NumberStepType.UNIT_PRICE;
|
|
36
|
+
// Narrowed views — only used after the corresponding numberType check
|
|
37
|
+
const asMoney = step;
|
|
38
|
+
const asMeasure = step;
|
|
39
|
+
const asUnitPrice = step;
|
|
40
|
+
const { ref, value, onChange, error } = useFormStep(step, {
|
|
41
|
+
defaultValue: step.defaultValue ?? null,
|
|
42
|
+
rules: {
|
|
43
|
+
required: step.required ? 'Este campo es obligatorio' : undefined,
|
|
44
|
+
validate: (val) => {
|
|
45
|
+
if (!step.required && (val === null || val === undefined || val === ''))
|
|
46
|
+
return true;
|
|
47
|
+
if (step.required && (val === null || val === undefined || val === ''))
|
|
48
|
+
return 'Este campo es obligatorio';
|
|
49
|
+
const numVal = getNumericValue(val);
|
|
50
|
+
if (numVal === null)
|
|
51
|
+
return 'Formato numérico inválido';
|
|
52
|
+
if (step.min !== undefined && numVal < step.min)
|
|
53
|
+
return `El valor mínimo es ${step.min}`;
|
|
54
|
+
if (step.max !== undefined && numVal > step.max)
|
|
55
|
+
return `El valor máximo es ${step.max}`;
|
|
56
|
+
return true;
|
|
57
|
+
},
|
|
58
|
+
},
|
|
59
|
+
});
|
|
60
|
+
// Currency/unit selectors
|
|
61
|
+
const [selectedCurrency, setSelectedCurrency] = useState(() => {
|
|
62
|
+
const v = value;
|
|
63
|
+
return v?.currency ?? asMoney.currency ?? asUnitPrice.currency ?? 'COP';
|
|
64
|
+
});
|
|
65
|
+
const [selectedUnit, setSelectedUnit] = useState(() => {
|
|
66
|
+
const v = value;
|
|
67
|
+
return v?.unit ?? asMeasure.unit ?? asUnitPrice.unit ?? 'unidades';
|
|
68
|
+
});
|
|
69
|
+
// Sync when value changes externally
|
|
70
|
+
useEffect(() => {
|
|
71
|
+
if (value && typeof value === 'object') {
|
|
72
|
+
if ('currency' in value && value.currency && value.currency !== selectedCurrency) {
|
|
73
|
+
void Promise.resolve().then(() => setSelectedCurrency(value.currency));
|
|
74
|
+
}
|
|
75
|
+
if ('unit' in value && value.unit && value.unit !== selectedUnit) {
|
|
76
|
+
void Promise.resolve().then(() => setSelectedUnit(value.unit));
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}, [value, selectedCurrency, selectedUnit]);
|
|
80
|
+
// ---------------------------------------------------------------------------
|
|
81
|
+
// Handlers: wrap ErkNumberField's (number | null) into the step value shape
|
|
82
|
+
// ---------------------------------------------------------------------------
|
|
83
|
+
const handleNumberChange = (num) => {
|
|
84
|
+
if (num === null) {
|
|
85
|
+
onChange(null);
|
|
86
|
+
return;
|
|
87
|
+
}
|
|
88
|
+
if (step.numberType === NumberStepType.MONEY) {
|
|
89
|
+
onChange({ value: num, currency: selectedCurrency });
|
|
90
|
+
}
|
|
91
|
+
else if (step.numberType === NumberStepType.MEASURE) {
|
|
92
|
+
onChange({ value: num, unit: selectedUnit });
|
|
93
|
+
}
|
|
94
|
+
else if (step.numberType === NumberStepType.UNIT_PRICE) {
|
|
95
|
+
onChange({ value: num, currency: selectedCurrency, unit: selectedUnit });
|
|
96
|
+
}
|
|
97
|
+
else {
|
|
98
|
+
onChange(num);
|
|
99
|
+
}
|
|
100
|
+
};
|
|
101
|
+
const handleCurrencyChange = (curr) => {
|
|
102
|
+
const next = curr ?? 'USD';
|
|
103
|
+
setSelectedCurrency(next);
|
|
104
|
+
const num = getNumericValue(value);
|
|
105
|
+
if (num !== null) {
|
|
106
|
+
onChange(step.numberType === NumberStepType.UNIT_PRICE
|
|
107
|
+
? { value: num, currency: next, unit: selectedUnit }
|
|
108
|
+
: { value: num, currency: next });
|
|
109
|
+
}
|
|
110
|
+
};
|
|
111
|
+
const handleUnitChange = (u) => {
|
|
112
|
+
const next = u ?? 'unidades';
|
|
113
|
+
setSelectedUnit(next);
|
|
114
|
+
const num = getNumericValue(value);
|
|
115
|
+
if (num !== null) {
|
|
116
|
+
onChange(step.numberType === NumberStepType.UNIT_PRICE
|
|
117
|
+
? { value: num, currency: selectedCurrency, unit: next }
|
|
118
|
+
: { value: num, unit: next });
|
|
119
|
+
}
|
|
120
|
+
};
|
|
121
|
+
// ---------------------------------------------------------------------------
|
|
122
|
+
// Static suffix text shown inside ErkNumberField
|
|
123
|
+
// ---------------------------------------------------------------------------
|
|
124
|
+
const staticSuffix = () => {
|
|
125
|
+
if (step.numberType === NumberStepType.PERCENTAGE)
|
|
126
|
+
return '%';
|
|
127
|
+
if (step.numberType === NumberStepType.MONEY && !asMoney.allowCurrencyChange)
|
|
128
|
+
return asMoney.currency ?? 'USD';
|
|
129
|
+
if (step.numberType === NumberStepType.MEASURE && !asMeasure.allowUnitChange)
|
|
130
|
+
return asMeasure.unit ?? 'unidades';
|
|
131
|
+
// UNIT_PRICE renders its adornment fully inside the field only when neither part is editable.
|
|
132
|
+
if (step.numberType === NumberStepType.UNIT_PRICE &&
|
|
133
|
+
!asUnitPrice.allowCurrencyChange &&
|
|
134
|
+
!asUnitPrice.allowUnitChange)
|
|
135
|
+
return `${asUnitPrice.currency ?? 'USD'} / ${asUnitPrice.unit ?? 'unidades'}`;
|
|
136
|
+
if (!isComposite && step.suffix)
|
|
137
|
+
return step.suffix;
|
|
138
|
+
return undefined;
|
|
139
|
+
};
|
|
140
|
+
// ---------------------------------------------------------------------------
|
|
141
|
+
// Resolved selector lists
|
|
142
|
+
// ---------------------------------------------------------------------------
|
|
143
|
+
const currenciesList = step.numberType === NumberStepType.MONEY || step.numberType === NumberStepType.UNIT_PRICE
|
|
144
|
+
? (step.availableCurrencies ?? DEFAULT_CURRENCIES)
|
|
145
|
+
: [];
|
|
146
|
+
const unitsList = step.numberType === NumberStepType.MEASURE || step.numberType === NumberStepType.UNIT_PRICE
|
|
147
|
+
? (step.availableUnits ?? DEFAULT_UNITS)
|
|
148
|
+
: [];
|
|
149
|
+
const isMoneyDynamic = step.numberType === NumberStepType.MONEY && asMoney.allowCurrencyChange;
|
|
150
|
+
const isMeasureDynamic = step.numberType === NumberStepType.MEASURE && asMeasure.allowUnitChange;
|
|
151
|
+
// UNIT_PRICE has two independent toggles: currency and unit can each be fixed or selectable.
|
|
152
|
+
const isUnitPriceCurrencyDynamic = step.numberType === NumberStepType.UNIT_PRICE && !!asUnitPrice.allowCurrencyChange;
|
|
153
|
+
const isUnitPriceUnitDynamic = step.numberType === NumberStepType.UNIT_PRICE && !!asUnitPrice.allowUnitChange;
|
|
154
|
+
const isUnitPriceDynamic = isUnitPriceCurrencyDynamic || isUnitPriceUnitDynamic;
|
|
155
|
+
// ---------------------------------------------------------------------------
|
|
156
|
+
// Shared CSS vars
|
|
157
|
+
// ---------------------------------------------------------------------------
|
|
158
|
+
const cssVars = {
|
|
159
|
+
width: widthStyle,
|
|
160
|
+
'--eureka-outline': formStyle.outlineColor,
|
|
161
|
+
'--eureka-primary': formStyle.primaryColor,
|
|
162
|
+
'--eureka-text': formStyle.textColor,
|
|
163
|
+
'--eureka-bg': formStyle.standAloneBackgroundColor ?? '#fff',
|
|
164
|
+
};
|
|
165
|
+
// ---------------------------------------------------------------------------
|
|
166
|
+
// Read-only view
|
|
167
|
+
// ---------------------------------------------------------------------------
|
|
168
|
+
return (_jsx("div", { className: styles.container, style: cssVars, children: _jsxs("div", { className: styles.inputRow, children: [_jsx("div", { style: { flex: 1 }, children: _jsx(ErkNumberField, { label: step.label, value: getNumericValue(value), onChange: handleNumberChange, error: !!error, errorBorder: true, required: step.required, helperText: error?.message ?? step.description ?? undefined, inputRef: ref, min: step.min, max: step.max, decimals: step.numberType === NumberStepType.INTEGER ? 0 : (step.decimals ?? 2), suffix: staticSuffix(), readOnly: isReadOnly, spinner: step.spinner, step: step.step, placeholder: step.placeholder }) }), isMoneyDynamic && (_jsx("div", { className: styles.selectWrapper, children: _jsx(ErkSelect, { value: selectedCurrency, onChange: handleCurrencyChange, clearable: false, children: currenciesList.map((c) => (_jsx(ErkMenuItem, { value: c, children: c }, c))) }) })), isMeasureDynamic && (_jsx("div", { className: styles.selectWrapper, children: _jsx(ErkSelect, { value: selectedUnit, onChange: handleUnitChange, clearable: false, children: unitsList.map((u) => (_jsx(ErkMenuItem, { value: u, children: u }, u))) }) })), isUnitPriceDynamic && (_jsxs(_Fragment, { children: [isUnitPriceCurrencyDynamic ? (_jsx("div", { className: styles.selectWrapper, children: _jsx(ErkSelect, { value: selectedCurrency, onChange: handleCurrencyChange, clearable: false, children: currenciesList.map((c) => (_jsx(ErkMenuItem, { value: c, children: c }, c))) }) })) : (_jsx("span", { className: styles.suffixText, children: asUnitPrice.currency ?? 'USD' })), _jsx("span", { className: styles.dividerSlash, children: "/" }), isUnitPriceUnitDynamic ? (_jsx("div", { className: styles.selectWrapper, children: _jsx(ErkSelect, { value: selectedUnit, onChange: handleUnitChange, clearable: false, children: unitsList.map((u) => (_jsx(ErkMenuItem, { value: u, children: u }, u))) }) })) : (_jsx("span", { className: styles.suffixText, children: asUnitPrice.unit ?? 'unidades' }))] }))] }) }));
|
|
169
|
+
}
|
|
170
|
+
export default MaterialNumberStep;
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
.container {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
width: 100%;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.inputRow {
|
|
8
|
+
display: flex;
|
|
9
|
+
align-items: flex-start;
|
|
10
|
+
gap: 12px;
|
|
11
|
+
width: 100%;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.selectWrapper {
|
|
15
|
+
width: 100px;
|
|
16
|
+
min-width: 90px;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.dividerSlash {
|
|
20
|
+
align-self: flex-start;
|
|
21
|
+
display: flex;
|
|
22
|
+
align-items: center;
|
|
23
|
+
justify-content: center;
|
|
24
|
+
height: 40px;
|
|
25
|
+
font-size: 20px;
|
|
26
|
+
font-weight: bold;
|
|
27
|
+
color: var(--eureka-text, #333);
|
|
28
|
+
opacity: 0.6;
|
|
29
|
+
margin-left: 2px;
|
|
30
|
+
margin-right: 2px;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.suffixText {
|
|
34
|
+
align-self: flex-start;
|
|
35
|
+
display: flex;
|
|
36
|
+
align-items: center;
|
|
37
|
+
height: 40px;
|
|
38
|
+
font-size: 14px;
|
|
39
|
+
font-weight: 600;
|
|
40
|
+
color: var(--eureka-primary, #1976d2);
|
|
41
|
+
padding: 0 4px;
|
|
42
|
+
user-select: none;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
/* Read-Only Styles */
|
|
46
|
+
.readOnlyContainer {
|
|
47
|
+
width: 100%;
|
|
48
|
+
margin-bottom: 8px;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.readOnlyCard {
|
|
52
|
+
display: flex;
|
|
53
|
+
align-items: center;
|
|
54
|
+
padding: 12px 16px;
|
|
55
|
+
border: 1px solid var(--eureka-outline, #e0e0e0);
|
|
56
|
+
border-radius: 12px;
|
|
57
|
+
background-color: var(--eureka-bg, #ffffff);
|
|
58
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
|
|
59
|
+
transition:
|
|
60
|
+
box-shadow 0.2s ease,
|
|
61
|
+
border-color 0.2s ease;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.readOnlyCard:hover {
|
|
65
|
+
border-color: var(--eureka-primary, #1976d2);
|
|
66
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.readOnlyDetails {
|
|
70
|
+
display: flex;
|
|
71
|
+
flex-direction: column;
|
|
72
|
+
gap: 2px;
|
|
73
|
+
width: 100%;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.readOnlyLabel {
|
|
77
|
+
font-size: 11px !important;
|
|
78
|
+
text-transform: uppercase;
|
|
79
|
+
letter-spacing: 0.5px;
|
|
80
|
+
color: var(--eureka-text, #333) !important;
|
|
81
|
+
opacity: 0.6;
|
|
82
|
+
font-weight: 600 !important;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.readOnlyValue {
|
|
86
|
+
font-size: 16px !important;
|
|
87
|
+
font-weight: 600 !important;
|
|
88
|
+
color: var(--eureka-primary, #1976d2) !important;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.readOnlyDesc {
|
|
92
|
+
font-size: 12px !important;
|
|
93
|
+
color: var(--eureka-text, #333) !important;
|
|
94
|
+
opacity: 0.5;
|
|
95
|
+
margin-top: 2px !important;
|
|
96
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { NumberStep } from '../../@Types/FormStep';
|
|
2
|
+
import { StepProps } from '../Step';
|
|
3
|
+
export interface NumberStepProps extends StepProps {
|
|
4
|
+
/** The NumberStep to display */
|
|
5
|
+
step: NumberStep;
|
|
6
|
+
/** The icon to display */
|
|
7
|
+
IconComponent?: React.ElementType;
|
|
8
|
+
}
|
|
9
|
+
declare function NumberStepComponent(props: NumberStepProps): JSX.Element;
|
|
10
|
+
export default NumberStepComponent;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { FormStyleTypes } from '../../constants/FormStepTypes';
|
|
3
|
+
import MaterialNumberStep from './MaterialNumberStep/MaterialNumberStep';
|
|
4
|
+
import { useAppSelector } from '../../hooks';
|
|
5
|
+
function NumberStepComponent(props) {
|
|
6
|
+
const { formStyle } = useAppSelector((state) => state.global);
|
|
7
|
+
switch (formStyle.type) {
|
|
8
|
+
case FormStyleTypes.MATERIAL:
|
|
9
|
+
default: {
|
|
10
|
+
return _jsx(MaterialNumberStep, { ...props });
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export default NumberStepComponent;
|
package/dist/FormSteps/Step.js
CHANGED
|
@@ -24,6 +24,10 @@ import CustomContext from '../Contexts/CustomContext';
|
|
|
24
24
|
import { selectOriginalValue, useCondition } from './StepHooks';
|
|
25
25
|
import TimePickerStep from './TimePickerStep/TimePickerStep';
|
|
26
26
|
import PhoneInputStep from './PhoneInputStep/PhoneInputStep';
|
|
27
|
+
import LocationStepComponent from './LocationStep/LocationStep';
|
|
28
|
+
import NumberStepComponent from './NumberStep/NumberStep';
|
|
29
|
+
import BookingStepComponent from './BookingStep/BookingStep';
|
|
30
|
+
import AvailabilityStepComponent from './AvailabilityStep/AvailabilityStep';
|
|
27
31
|
function StepComponent({ step, ...props }) {
|
|
28
32
|
const { postview, partial } = useAppSelector((state) => state.global);
|
|
29
33
|
const { customSteps, customClientInfoStep } = useContext(CustomContext);
|
|
@@ -75,6 +79,18 @@ function StepComponent({ step, ...props }) {
|
|
|
75
79
|
case FormStepTypes.DATEPICKER: {
|
|
76
80
|
return _jsx(DatePickerStep, { ...props, step: step, editable: editable });
|
|
77
81
|
}
|
|
82
|
+
case FormStepTypes.LOCATION: {
|
|
83
|
+
return _jsx(LocationStepComponent, { ...props, step: step, editable: editable });
|
|
84
|
+
}
|
|
85
|
+
case FormStepTypes.NUMBER: {
|
|
86
|
+
return _jsx(NumberStepComponent, { ...props, step: step, editable: editable });
|
|
87
|
+
}
|
|
88
|
+
case FormStepTypes.BOOKING: {
|
|
89
|
+
return _jsx(BookingStepComponent, { ...props, step: step, editable: editable });
|
|
90
|
+
}
|
|
91
|
+
case FormStepTypes.AVAILABILITY: {
|
|
92
|
+
return _jsx(AvailabilityStepComponent, { ...props, step: step, editable: editable });
|
|
93
|
+
}
|
|
78
94
|
case FormStepTypes.DATEPICKER_RANGE: {
|
|
79
95
|
return _jsx(DatePickerRangeStep, { ...props, step: step, editable: editable });
|
|
80
96
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { NumberStepType, } from '../@Types/FormStep';
|
|
1
2
|
import FormStepTypes, { ApiSelectorOptionTypes, ClassifierOptionTypes, EntityValueDataTypes, EntityValueOptionTypes, OptionTypes, } from '../constants/FormStepTypes';
|
|
2
3
|
import CBRFormStepTypes from '../constants/CBRFormStepTypes';
|
|
3
4
|
import AYFFormStepTypes from '../constants/AYFFormStepTypes';
|
|
@@ -87,6 +88,8 @@ function recursivelyCheckOpenSize(idStep, steps, values) {
|
|
|
87
88
|
return size;
|
|
88
89
|
}
|
|
89
90
|
case FormStepTypes.DATEPICKER:
|
|
91
|
+
case FormStepTypes.LOCATION:
|
|
92
|
+
case FormStepTypes.NUMBER:
|
|
90
93
|
case FormStepTypes.TEXTINPUT: {
|
|
91
94
|
return step.size;
|
|
92
95
|
}
|
|
@@ -175,6 +178,17 @@ export const calcDefaultValue = (step) => {
|
|
|
175
178
|
return getRawText();
|
|
176
179
|
else
|
|
177
180
|
return '';
|
|
181
|
+
case FormStepTypes.LOCATION:
|
|
182
|
+
return step.defaultValue ?? null;
|
|
183
|
+
case FormStepTypes.NUMBER: {
|
|
184
|
+
const numStep = step;
|
|
185
|
+
if (numStep.numberType === NumberStepType.MONEY ||
|
|
186
|
+
numStep.numberType === NumberStepType.MEASURE ||
|
|
187
|
+
numStep.numberType === NumberStepType.UNIT_PRICE) {
|
|
188
|
+
return numStep.defaultValue ?? null;
|
|
189
|
+
}
|
|
190
|
+
return numStep.defaultValue ?? '';
|
|
191
|
+
}
|
|
178
192
|
case FormStepTypes.RATING:
|
|
179
193
|
case FormStepTypes.DATEPICKER:
|
|
180
194
|
case FormStepTypes.DATEPICKER_RANGE:
|