@jobber/components-native 0.85.0 → 0.85.1-JOB-124062-e9724e3.22
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/package.json +11 -3
- package/dist/src/Form/components/FormCache/FormCache.js +1 -0
- package/dist/src/InputCurrency/InputCurrency.js +42 -30
- package/dist/src/InputEmail/InputEmail.js +10 -4
- package/dist/src/InputNumber/InputNumber.js +10 -4
- package/dist/src/hooks/useFormController.js +5 -15
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/src/Form/components/FormCache/FormCache.d.ts +2 -2
- package/dist/types/src/Form/context/types.d.ts +2 -2
- package/dist/types/src/Form/hooks/useInternalForm.d.ts +2 -2
- package/dist/types/src/Form/types.d.ts +3 -3
- package/package.json +11 -3
- package/src/Form/components/FormCache/FormCache.tsx +4 -3
- package/src/Form/context/types.ts +2 -2
- package/src/Form/hooks/useInternalForm.ts +2 -1
- package/src/Form/types.ts +3 -4
- package/src/InputCurrency/InputCurrency.tsx +71 -57
- package/src/InputEmail/InputEmail.tsx +12 -8
- package/src/InputNumber/InputNumber.tsx +11 -7
- package/src/hooks/useFormController.ts +6 -14
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jobber/components-native",
|
|
3
|
-
"version": "0.85.
|
|
3
|
+
"version": "0.85.1-JOB-124062-e9724e3.22+e9724e3bd",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "React Native implementation of Atlantis",
|
|
6
6
|
"repository": {
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"autolinker": "^4.0.0",
|
|
44
44
|
"deepmerge": "^4.2.2",
|
|
45
45
|
"lodash": "^4.17.21",
|
|
46
|
-
"react-hook-form": "^7.
|
|
46
|
+
"react-hook-form": "^7.52.0",
|
|
47
47
|
"react-intl": "^6.4.2",
|
|
48
48
|
"react-native-keyboard-aware-scroll-view": "^0.9.5",
|
|
49
49
|
"react-native-modalize": "^2.0.13",
|
|
@@ -53,6 +53,7 @@
|
|
|
53
53
|
"ts-xor": "^1.1.0"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
+
"@react-native-community/datetimepicker": "^7.1.0",
|
|
56
57
|
"@storybook/addon-a11y": "^9.1.2",
|
|
57
58
|
"@storybook/react": "^9.1.2",
|
|
58
59
|
"@storybook/react-native-web-vite": "^9.1.2",
|
|
@@ -66,6 +67,13 @@
|
|
|
66
67
|
"date-fns": "^2.30.0",
|
|
67
68
|
"date-fns-tz": "^2.0.0",
|
|
68
69
|
"metro-react-native-babel-preset": "^0.76.0",
|
|
70
|
+
"react-native": "^0.77.0",
|
|
71
|
+
"react-native-gesture-handler": "^2.10.2",
|
|
72
|
+
"react-native-modal-datetime-picker": "^15.0.1",
|
|
73
|
+
"react-native-reanimated": "^3.7.1",
|
|
74
|
+
"react-native-safe-area-context": "^5.4.0",
|
|
75
|
+
"react-native-svg": "^15.1.0",
|
|
76
|
+
"react-native-web": "^0.20.0",
|
|
69
77
|
"react-test-renderer": "^18.2.0",
|
|
70
78
|
"storybook": "^9.1.2"
|
|
71
79
|
},
|
|
@@ -87,5 +95,5 @@
|
|
|
87
95
|
"react-native-safe-area-context": "^5.4.0",
|
|
88
96
|
"react-native-svg": ">=12.0.0"
|
|
89
97
|
},
|
|
90
|
-
"gitHead": "
|
|
98
|
+
"gitHead": "e9724e3bd24e880e276edcd72019b2cce0b102c0"
|
|
91
99
|
}
|
|
@@ -28,5 +28,6 @@ export function FormCache({ localCacheExclude, localCacheKey, setLocalCache, })
|
|
|
28
28
|
setLocalCache(formData);
|
|
29
29
|
}
|
|
30
30
|
}, [formData, isDirty, localCacheExclude, setLocalCache, shouldExclude]);
|
|
31
|
+
// eslint-disable-next-line react/jsx-no-useless-fragment
|
|
31
32
|
return React.createElement(React.Fragment, null);
|
|
32
33
|
}
|
|
@@ -24,6 +24,31 @@ const getKeyboard = (props) => {
|
|
|
24
24
|
return "numeric";
|
|
25
25
|
}
|
|
26
26
|
};
|
|
27
|
+
const computeDisplayFromNumericInput = (numberedValue, decimalNumbers, decimalCount, maxLength, maxDecimalPlaces, decimalPlaces, formatNumber) => {
|
|
28
|
+
const transformedValue = limitInputWholeDigits(numberedValue, maxLength);
|
|
29
|
+
const stringValue = decimalNumbers !== ""
|
|
30
|
+
? transformedValue.toString() + "." + decimalNumbers.slice(1)
|
|
31
|
+
: transformedValue.toString();
|
|
32
|
+
if (checkLastChar(stringValue)) {
|
|
33
|
+
const roundedDecimal = configureDecimal(decimalCount, maxDecimalPlaces, stringValue, decimalPlaces);
|
|
34
|
+
const internationalizedValueToDisplay = formatNumber(roundedDecimal, {
|
|
35
|
+
maximumFractionDigits: maxDecimalPlaces,
|
|
36
|
+
});
|
|
37
|
+
return {
|
|
38
|
+
onChangeValue: roundedDecimal,
|
|
39
|
+
displayValue: internationalizedValueToDisplay,
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
else {
|
|
43
|
+
const internationalizedValueToDisplay = formatNumber(transformedValue, {
|
|
44
|
+
maximumFractionDigits: maxDecimalPlaces,
|
|
45
|
+
}) + decimalNumbers;
|
|
46
|
+
return {
|
|
47
|
+
onChangeValue: transformedValue.toString() + "." + decimalNumbers.slice(1),
|
|
48
|
+
displayValue: internationalizedValueToDisplay,
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
};
|
|
27
52
|
export function InputCurrency(props) {
|
|
28
53
|
var _a, _b;
|
|
29
54
|
const { showCurrencySymbol = true, maxDecimalPlaces = 5, decimalPlaces = 2, maxLength = 10, } = props;
|
|
@@ -35,52 +60,39 @@ export function InputCurrency(props) {
|
|
|
35
60
|
});
|
|
36
61
|
const internalValue = getInternalValue(props, field, intl.formatNumber);
|
|
37
62
|
const [displayValue, setDisplayValue] = useState(internalValue);
|
|
38
|
-
const setOnChangeAndDisplayValues = (onChangeValue, valueToDisplay) => {
|
|
39
|
-
var _a;
|
|
40
|
-
(_a = props.onChange) === null || _a === void 0 ? void 0 : _a.call(props, onChangeValue);
|
|
41
|
-
setDisplayValue(valueToDisplay);
|
|
42
|
-
};
|
|
43
|
-
const checkDecimalAndI18nOfDisplayValue = (numberedValue, decimalNumbers, decimalCount) => {
|
|
44
|
-
const transformedValue = limitInputWholeDigits(numberedValue, maxLength);
|
|
45
|
-
const stringValue = decimalNumbers !== ""
|
|
46
|
-
? transformedValue.toString() + "." + decimalNumbers.slice(1)
|
|
47
|
-
: transformedValue.toString();
|
|
48
|
-
if (checkLastChar(stringValue)) {
|
|
49
|
-
const roundedDecimal = configureDecimal(decimalCount, maxDecimalPlaces, stringValue, decimalPlaces);
|
|
50
|
-
const internationalizedValueToDisplay = intl.formatNumber(roundedDecimal, {
|
|
51
|
-
maximumFractionDigits: maxDecimalPlaces,
|
|
52
|
-
});
|
|
53
|
-
setOnChangeAndDisplayValues(roundedDecimal, internationalizedValueToDisplay);
|
|
54
|
-
}
|
|
55
|
-
else {
|
|
56
|
-
const internationalizedValueToDisplay = intl.formatNumber(transformedValue, {
|
|
57
|
-
maximumFractionDigits: maxDecimalPlaces,
|
|
58
|
-
}) + decimalNumbers;
|
|
59
|
-
setOnChangeAndDisplayValues(transformedValue.toString() + "." + decimalNumbers.slice(1), internationalizedValueToDisplay);
|
|
60
|
-
}
|
|
61
|
-
};
|
|
62
63
|
const handleChange = (newValue) => {
|
|
64
|
+
var _a, _b;
|
|
63
65
|
const [decimalCount, wholeIntegerValue, decimalNumbers] = parseGivenInput(newValue, floatSeparators.decimal);
|
|
64
66
|
const numberedValue = wholeIntegerValue
|
|
65
67
|
? convertToNumber(wholeIntegerValue)
|
|
66
68
|
: wholeIntegerValue;
|
|
67
69
|
if (isValidNumber(numberedValue) && typeof numberedValue === "number") {
|
|
68
|
-
|
|
70
|
+
const result = computeDisplayFromNumericInput(numberedValue, decimalNumbers, decimalCount, maxLength, maxDecimalPlaces, decimalPlaces, intl.formatNumber);
|
|
71
|
+
const { onChangeValue, displayValue: valueToDisplay } = result;
|
|
72
|
+
(_a = props.onChange) === null || _a === void 0 ? void 0 : _a.call(props, onChangeValue);
|
|
73
|
+
setDisplayValue(valueToDisplay);
|
|
69
74
|
}
|
|
70
75
|
else {
|
|
71
76
|
const value = (numberedValue === null || numberedValue === void 0 ? void 0 : numberedValue.toString()) + decimalNumbers;
|
|
72
|
-
|
|
77
|
+
(_b = props.onChange) === null || _b === void 0 ? void 0 : _b.call(props, value);
|
|
78
|
+
setDisplayValue(value);
|
|
73
79
|
}
|
|
74
80
|
};
|
|
75
81
|
const { t } = useAtlantisI18n();
|
|
82
|
+
const defaultValidations = {
|
|
83
|
+
pattern: {
|
|
84
|
+
value: NUMBER_VALIDATION_REGEX,
|
|
85
|
+
message: t("errors.notANumber"),
|
|
86
|
+
},
|
|
87
|
+
};
|
|
88
|
+
const mergedValidations = props.validations
|
|
89
|
+
? Object.assign({}, defaultValidations, props.validations)
|
|
90
|
+
: defaultValidations;
|
|
76
91
|
return (React.createElement(InputText, Object.assign({}, props, { prefix: showCurrencySymbol ? { label: currencySymbol } : undefined, keyboard: getKeyboard(props), value: ((_a = props.value) === null || _a === void 0 ? void 0 : _a.toString()) || displayValue, defaultValue: (_b = props.defaultValue) === null || _b === void 0 ? void 0 : _b.toString(), onChangeText: handleChange, transform: {
|
|
77
92
|
output: val => {
|
|
78
93
|
return val === null || val === void 0 ? void 0 : val.split(floatSeparators.group).join("").replace(floatSeparators.decimal, ".");
|
|
79
94
|
},
|
|
80
|
-
}, validations:
|
|
81
|
-
value: NUMBER_VALIDATION_REGEX,
|
|
82
|
-
message: t("errors.notANumber"),
|
|
83
|
-
} }, props.validations), onBlur: () => {
|
|
95
|
+
}, validations: mergedValidations, onBlur: () => {
|
|
84
96
|
var _a;
|
|
85
97
|
(_a = props.onBlur) === null || _a === void 0 ? void 0 : _a.call(props);
|
|
86
98
|
if (field.value === 0 ||
|
|
@@ -2,8 +2,14 @@ import React, { forwardRef } from "react";
|
|
|
2
2
|
import { InputText } from "../InputText";
|
|
3
3
|
export const InputEmail = forwardRef(InputEmailInternal);
|
|
4
4
|
function InputEmailInternal(props, ref) {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
const defaultValidations = {
|
|
6
|
+
pattern: {
|
|
7
|
+
value: /[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?\.)+[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?/,
|
|
8
|
+
message: "Enter a valid email address (email@example.com)",
|
|
9
|
+
},
|
|
10
|
+
};
|
|
11
|
+
const mergedValidations = props.validations
|
|
12
|
+
? Object.assign({}, defaultValidations, props.validations)
|
|
13
|
+
: defaultValidations;
|
|
14
|
+
return (React.createElement(InputText, Object.assign({}, props, { ref: ref, autoCapitalize: "none", autoCorrect: false, keyboard: "email-address", validations: mergedValidations })));
|
|
9
15
|
}
|
|
@@ -24,13 +24,19 @@ function InputNumberInternal(props, ref) {
|
|
|
24
24
|
(_a = props.onChange) === null || _a === void 0 ? void 0 : _a.call(props, newValue);
|
|
25
25
|
};
|
|
26
26
|
const { inputTransform: convertToString, outputTransform: convertToNumber } = useNumberTransform(props.value);
|
|
27
|
+
const defaultValidations = {
|
|
28
|
+
pattern: {
|
|
29
|
+
value: NUMBER_VALIDATION_REGEX,
|
|
30
|
+
message: t("errors.notANumber"),
|
|
31
|
+
},
|
|
32
|
+
};
|
|
33
|
+
const mergedValidations = props.validations
|
|
34
|
+
? Object.assign({}, defaultValidations, props.validations)
|
|
35
|
+
: defaultValidations;
|
|
27
36
|
return (React.createElement(InputText, Object.assign({}, props, { keyboard: getKeyboard(), transform: {
|
|
28
37
|
input: flow(convertToString, ((_a = props.transform) === null || _a === void 0 ? void 0 : _a.input) || identity),
|
|
29
38
|
output: flow(convertToNumber, ((_b = props.transform) === null || _b === void 0 ? void 0 : _b.output) || identity),
|
|
30
|
-
}, ref: ref, value: (_c = props.value) === null || _c === void 0 ? void 0 : _c.toString(), defaultValue: (_d = props.defaultValue) === null || _d === void 0 ? void 0 : _d.toString(), onChangeText: handleChange, validations:
|
|
31
|
-
value: NUMBER_VALIDATION_REGEX,
|
|
32
|
-
message: t("errors.notANumber"),
|
|
33
|
-
} }, props.validations) })));
|
|
39
|
+
}, ref: ref, value: (_c = props.value) === null || _c === void 0 ? void 0 : _c.toString(), defaultValue: (_d = props.defaultValue) === null || _d === void 0 ? void 0 : _d.toString(), onChangeText: handleChange, validations: mergedValidations })));
|
|
34
40
|
}
|
|
35
41
|
function hasPeriodAtEnd(value) {
|
|
36
42
|
// matches patterns like ".", "0.", "12.", "+1.", and "-0."
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { v1 } from "react-native-uuid";
|
|
2
|
-
import { useController, useForm, useFormContext } from "react-hook-form";
|
|
2
|
+
import { get, useController, useForm, useFormContext } from "react-hook-form";
|
|
3
3
|
import { useState } from "react";
|
|
4
4
|
export function useFormController({ name, value, validations, }) {
|
|
5
|
-
var _a, _b;
|
|
6
5
|
const fieldName = useControlName(name);
|
|
7
6
|
const form = useForm({
|
|
8
7
|
mode: "onTouched",
|
|
@@ -16,19 +15,10 @@ export function useFormController({ name, value, validations, }) {
|
|
|
16
15
|
rules: validations,
|
|
17
16
|
defaultValue: value || undefined,
|
|
18
17
|
});
|
|
19
|
-
//
|
|
20
|
-
//
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
const fieldIdentifiers = fieldName.split(".");
|
|
24
|
-
let error;
|
|
25
|
-
if (fieldIdentifiers.length === 3) {
|
|
26
|
-
const [section, item, identifier] = fieldIdentifiers;
|
|
27
|
-
error = (_b = (_a = errors[section]) === null || _a === void 0 ? void 0 : _a[item]) === null || _b === void 0 ? void 0 : _b[identifier];
|
|
28
|
-
}
|
|
29
|
-
else {
|
|
30
|
-
error = errors[fieldName];
|
|
31
|
-
}
|
|
18
|
+
// Preserve original behavior: only treat three-part names as nested paths.
|
|
19
|
+
// For anything else, perform a flat lookup to avoid behavioral changes.
|
|
20
|
+
const identifiers = fieldName.split(".");
|
|
21
|
+
const error = identifiers.length === 3 ? get(errors, fieldName) : errors[fieldName];
|
|
32
22
|
return { error, field };
|
|
33
23
|
}
|
|
34
24
|
function useControlName(name) {
|