Merge pull request #1984 from eikek/numeric-field-comma

Map comma to dot for numeric custom fields
This commit is contained in:
mergify[bot] 2023-03-04 22:51:34 +00:00 committed by GitHub
commit d36ec1419f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 22 additions and 4 deletions

View File

@ -133,6 +133,15 @@ errorMsg texts model =
Nothing
textInputNumberConfig : Comp.SimpleTextInput.Config
textInputNumberConfig =
let
cfg =
Comp.SimpleTextInput.defaultConfig
in
{ cfg | valueTransform = normalizeStringToNumber }
init : CustomField -> ( Model, Cmd Msg )
init =
init1 Comp.SimpleTextInput.defaultConfig
@ -151,7 +160,7 @@ init1 cfg field =
TextField (Comp.SimpleTextInput.init cfg Nothing)
Data.CustomFieldType.Numeric ->
NumberField (FloatModel (Comp.SimpleTextInput.init cfg Nothing) (Err NoValue))
NumberField (FloatModel (Comp.SimpleTextInput.init textInputNumberConfig Nothing) (Err NoValue))
Data.CustomFieldType.Money ->
MoneyField (MoneyModel "" (Err NoValue))
@ -193,7 +202,7 @@ initWith1 cfg value =
Data.CustomFieldType.Numeric ->
let
fm =
Comp.SimpleTextInput.init cfg <| Just value.value
Comp.SimpleTextInput.init textInputNumberConfig <| Just value.value
res =
string2Float value.value
@ -414,7 +423,7 @@ updateFloatModel forSearch model lm fm parse =
( { input = result.model
, result = Ok n
}
, Value value
, Value (normalizeStringToNumber value)
)
Err err ->
@ -569,9 +578,14 @@ mkLabel model =
Maybe.withDefault model.field.name model.field.label
normalizeStringToNumber : String -> String
normalizeStringToNumber =
String.replace "," "."
string2Float : String -> Result FieldError Float
string2Float str =
case String.toFloat str of
case (normalizeStringToNumber >> String.toFloat) str of
Just n ->
Ok n

View File

@ -83,6 +83,7 @@ init cfg =
, setOnTyping = True
, setOnEnter = True
, setOnBlur = False
, valueTransform = identity
}
in
{ searchModel = Comp.SimpleTextInput.init textCfg Nothing

View File

@ -40,6 +40,7 @@ type alias Config =
, setOnTyping : Bool
, setOnEnter : Bool
, setOnBlur : Bool
, valueTransform : String -> String
}
@ -49,6 +50,7 @@ defaultConfig =
, setOnTyping = True
, setOnEnter = True
, setOnBlur = True
, valueTransform = identity
}
@ -130,6 +132,7 @@ update msg (Model model) =
let
maybeStr =
Util.Maybe.fromString str
|> Maybe.map model.cfg.valueTransform
cmd_ =
Task.succeed () |> Task.perform (\_ -> DelayedSet)