mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-12-26 13:21:42 +03:00
Replace requiredRadio with radio that can apply required option.
This commit is contained in:
parent
adc22cf493
commit
5b06fe51a4
@ -399,11 +399,9 @@ form user =
|
||||
|> Form.appendForm (|>)
|
||||
(Form.succeed identity
|
||||
|> Form.with
|
||||
(Form.requiredRadio
|
||||
(Form.radio
|
||||
"push-notifications"
|
||||
{ missing = "Please select your notification preference."
|
||||
, invalid = \_ -> "Invalid option"
|
||||
}
|
||||
"Invalid option"
|
||||
( ( "PushAll", PushAll )
|
||||
, [ ( "PushEmail", PushEmail )
|
||||
, ( "PushNone", PushNone )
|
||||
|
118
src/Form.elm
118
src/Form.elm
@ -9,7 +9,7 @@ module Form exposing
|
||||
, withInitialValue
|
||||
, checkbox, date, email, hidden, multiple, number, password, radio, range, telephone, text, url, floatRange, search
|
||||
, submit
|
||||
, required, requiredNumber, requiredRadio
|
||||
, required
|
||||
, validate
|
||||
, withServerValidation
|
||||
, withMax, withMaxDate, withMin, withMinDate
|
||||
@ -84,7 +84,7 @@ A Date type can be entered with the native date picker UI of the user's browser,
|
||||
|
||||
### Required
|
||||
|
||||
@docs required, requiredNumber, requiredRadio
|
||||
@docs required
|
||||
|
||||
|
||||
### Custom Client-Side Validations
|
||||
@ -775,15 +775,30 @@ hidden name value toHtmlFn =
|
||||
radio :
|
||||
-- TODO inject the error type
|
||||
String
|
||||
-> error
|
||||
-> ( ( String, item ), List ( String, item ) )
|
||||
->
|
||||
(item
|
||||
-> FieldRenderInfo error
|
||||
-> view
|
||||
)
|
||||
-> ({ errors : List error, submitStatus : SubmitStatus } -> List view -> view)
|
||||
-> Field error (Maybe item) view {}
|
||||
radio name nonEmptyItemMapping toHtmlFn wrapFn =
|
||||
->
|
||||
({ errors : List error
|
||||
, submitStatus : SubmitStatus
|
||||
, status : FieldStatus
|
||||
}
|
||||
-> List view
|
||||
-> view
|
||||
)
|
||||
->
|
||||
Field
|
||||
error
|
||||
(Maybe item)
|
||||
view
|
||||
{ required : ()
|
||||
, wasMapped : No
|
||||
}
|
||||
radio name invalidError nonEmptyItemMapping toHtmlFn wrapFn =
|
||||
let
|
||||
itemMapping : List ( String, item )
|
||||
itemMapping =
|
||||
@ -816,78 +831,6 @@ radio name nonEmptyItemMapping toHtmlFn wrapFn =
|
||||
, type_ = "radio"
|
||||
, required = False
|
||||
, serverValidation = \_ -> DataSource.succeed []
|
||||
, toHtml =
|
||||
-- TODO use `toString` to set value
|
||||
\formInfo _ fieldInfo info ->
|
||||
items
|
||||
|> List.map (\item -> toHtmlFn item (toRadioInputRecord formInfo name (toString item) info fieldInfo))
|
||||
|> wrapFn { errors = info |> Maybe.map .errors |> Maybe.withDefault [], submitStatus = formInfo.submitStatus }
|
||||
, decode =
|
||||
\raw ->
|
||||
Ok
|
||||
-- TODO on failure, this should be an error
|
||||
( raw |> Maybe.andThen fromString
|
||||
, []
|
||||
)
|
||||
, properties = []
|
||||
}
|
||||
|
||||
|
||||
{-| -}
|
||||
requiredRadio :
|
||||
String
|
||||
->
|
||||
{ missing : error
|
||||
, invalid : String -> error
|
||||
}
|
||||
-> ( ( String, item ), List ( String, item ) )
|
||||
->
|
||||
(item
|
||||
-> FieldRenderInfo error
|
||||
-> view
|
||||
)
|
||||
->
|
||||
({ errors : List error
|
||||
, submitStatus : SubmitStatus
|
||||
, status : FieldStatus
|
||||
}
|
||||
-> List view
|
||||
-> view
|
||||
)
|
||||
-> Field error item view {}
|
||||
requiredRadio name toError nonEmptyItemMapping toHtmlFn wrapFn =
|
||||
let
|
||||
itemMapping : List ( String, item )
|
||||
itemMapping =
|
||||
nonEmptyItemMapping
|
||||
|> List.NonEmpty.toList
|
||||
|
||||
toString : item -> String
|
||||
toString targetItem =
|
||||
case nonEmptyItemMapping |> List.NonEmpty.toList |> List.filter (\( string, item ) -> item == targetItem) |> List.head of
|
||||
Just ( string, _ ) ->
|
||||
string
|
||||
|
||||
Nothing ->
|
||||
"Missing enum"
|
||||
|
||||
fromString : String -> Maybe item
|
||||
fromString string =
|
||||
itemMapping
|
||||
|> Dict.fromList
|
||||
|> Dict.get string
|
||||
|
||||
items : List item
|
||||
items =
|
||||
itemMapping
|
||||
|> List.map Tuple.second
|
||||
in
|
||||
Field
|
||||
{ name = name
|
||||
, initialValue = Nothing
|
||||
, type_ = "radio"
|
||||
, required = True
|
||||
, serverValidation = \_ -> DataSource.succeed []
|
||||
, toHtml =
|
||||
\formInfo _ fieldInfo info ->
|
||||
items
|
||||
@ -895,16 +838,21 @@ requiredRadio name toError nonEmptyItemMapping toHtmlFn wrapFn =
|
||||
|> wrapFn { errors = info |> Maybe.map .errors |> Maybe.withDefault [], submitStatus = formInfo.submitStatus, status = info |> Maybe.map .status |> Maybe.withDefault NotVisited }
|
||||
, decode =
|
||||
\raw ->
|
||||
(if raw == Just "" then
|
||||
Nothing
|
||||
|
||||
else
|
||||
raw
|
||||
|> validateRequiredField toError
|
||||
|> Result.mapError (\_ -> toError.missing)
|
||||
|> Result.andThen
|
||||
(\rawString ->
|
||||
rawString
|
||||
|> fromString
|
||||
|> Result.fromMaybe (toError.invalid rawString)
|
||||
)
|
||||
|> toFieldResult
|
||||
|> Maybe.map
|
||||
(\justValue ->
|
||||
justValue
|
||||
|> fromString
|
||||
|> Result.fromMaybe invalidError
|
||||
|> Result.map (\decoded -> ( Just decoded, [] ))
|
||||
|> Result.mapError List.singleton
|
||||
)
|
||||
|> Maybe.withDefault (Ok ( Nothing, [] ))
|
||||
, properties = []
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user