1
1
import { IntlShape } from 'react-intl' ;
2
2
import { TextFieldFormatter } from '../components/formik-text-field/FormikTextField' ;
3
3
4
+ /* Returns a number from a string value, if the string value is a valid number */
4
5
export const getNumberFromNumberInputValue = ( inputValue : string | undefined ) : number | undefined => {
5
6
if ( inputValue === undefined || inputValue === '' || Array . isArray ( inputValue ) ) {
6
7
return undefined ;
@@ -17,24 +18,26 @@ export const getNumberFromNumberInputValue = (inputValue: string | undefined): n
17
18
18
19
const cleanedValue = ( inputValue || '' ) . trim ( ) ;
19
20
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 ( '.' ) ) {
24
23
return undefined ;
25
24
}
26
25
26
+ /** Return undefined if spaces are present, and they are not in a valid thousand separator format 00 000 000 */
27
27
if ( cleanedValue . includes ( ' ' ) ) {
28
28
const parts = cleanedValue . split ( ' ' ) ;
29
+ /** First part has to contain less than 4 digits */
29
30
if ( parts [ 0 ] . length > 3 ) {
30
31
return undefined ;
31
32
}
33
+ /** All the rest has to contain 3 digits */
32
34
const rest = parts . slice ( 1 ) ;
33
35
if ( rest . some ( ( part ) => part . length !== 3 ) ) {
34
36
return undefined ;
35
37
}
36
38
}
37
39
40
+ /** Replace comma with dot, and remove spaces */
38
41
const value = `${ cleanedValue } ` . replace ( / , / g, '.' ) . replace ( / \s / g, '' ) ;
39
42
const numValue = Number ( value ) ;
40
43
if ( isNaN ( numValue ) ) {
@@ -43,15 +46,18 @@ export const getNumberFromNumberInputValue = (inputValue: string | undefined): n
43
46
return numValue ;
44
47
} ;
45
48
49
+ /** To be deprecated */
46
50
export const getStringForNumberInputValue = ( value ?: number ) : string => {
47
51
return value === undefined ? '' : `${ value } ` . replace ( / \. / g, ',' ) ;
48
52
} ;
49
53
50
54
export const getNumberInputFormatter = ( intl : IntlShape ) : TextFieldFormatter => ( {
55
+ /** Formats a number string value to norwegian format 1 000 000,0 */
51
56
applyFormatting : ( value : string ) : string => {
52
57
const numValue = getNumberFromNumberInputValue ( value ) ;
53
58
return numValue !== undefined ? intl . formatNumber ( numValue ) : value ;
54
59
} ,
60
+ /** Removes all formatting from a number string value */
55
61
clearFormatting : ( value : string ) : string => {
56
62
const numValue = getNumberFromNumberInputValue ( value ) ;
57
63
return numValue !== undefined ? getStringForNumberInputValue ( numValue ) : value ;
0 commit comments