Skip to content

Commit 9734d5e

Browse files
committed
Kommentarer
1 parent 3c5f911 commit 9734d5e

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

packages/sif-common-formik-ds/src/utils/numberInputUtils.ts

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { IntlShape } from 'react-intl';
22
import { TextFieldFormatter } from '../components/formik-text-field/FormikTextField';
33

4+
/* Returns a number from a string value, if the string value is a valid number */
45
export const getNumberFromNumberInputValue = (inputValue: string | undefined): number | undefined => {
56
if (inputValue === undefined || inputValue === '' || Array.isArray(inputValue)) {
67
return undefined;
@@ -17,24 +18,26 @@ export const getNumberFromNumberInputValue = (inputValue: string | undefined): n
1718

1819
const cleanedValue = (inputValue || '').trim();
1920

20-
const hasCommas = cleanedValue.includes(',');
21-
const hasDots = cleanedValue.includes('.');
22-
23-
if (hasCommas && hasDots) {
21+
/** Return undefined if both comma and dots are present */
22+
if (cleanedValue.includes(',') && cleanedValue.includes('.')) {
2423
return undefined;
2524
}
2625

26+
/** Return undefined if spaces are present, and they are not in a valid thousand separator format 00 000 000 */
2727
if (cleanedValue.includes(' ')) {
2828
const parts = cleanedValue.split(' ');
29+
/** First part has to contain less than 4 digits */
2930
if (parts[0].length > 3) {
3031
return undefined;
3132
}
33+
/** All the rest has to contain 3 digits */
3234
const rest = parts.slice(1);
3335
if (rest.some((part) => part.length !== 3)) {
3436
return undefined;
3537
}
3638
}
3739

40+
/** Replace comma with dot, and remove spaces */
3841
const value = `${cleanedValue}`.replace(/,/g, '.').replace(/\s/g, '');
3942
const numValue = Number(value);
4043
if (isNaN(numValue)) {
@@ -43,15 +46,18 @@ export const getNumberFromNumberInputValue = (inputValue: string | undefined): n
4346
return numValue;
4447
};
4548

49+
/** To be deprecated */
4650
export const getStringForNumberInputValue = (value?: number): string => {
4751
return value === undefined ? '' : `${value}`.replace(/\./g, ',');
4852
};
4953

5054
export const getNumberInputFormatter = (intl: IntlShape): TextFieldFormatter => ({
55+
/** Formats a number string value to norwegian format 1 000 000,0 */
5156
applyFormatting: (value: string): string => {
5257
const numValue = getNumberFromNumberInputValue(value);
5358
return numValue !== undefined ? intl.formatNumber(numValue) : value;
5459
},
60+
/** Removes all formatting from a number string value */
5561
clearFormatting: (value: string): string => {
5662
const numValue = getNumberFromNumberInputValue(value);
5763
return numValue !== undefined ? getStringForNumberInputValue(numValue) : value;

0 commit comments

Comments
 (0)