2020-03-31 22:43:32 +03:00
|
|
|
module Examples.TextInput exposing (Msg, State, example)
|
2018-05-25 21:16:54 +03:00
|
|
|
|
2019-08-03 03:20:09 +03:00
|
|
|
{-|
|
|
|
|
|
2020-03-31 22:43:32 +03:00
|
|
|
@docs Msg, State, example
|
2019-08-03 03:20:09 +03:00
|
|
|
|
2018-05-25 21:16:54 +03:00
|
|
|
-}
|
|
|
|
|
2020-03-31 23:04:36 +03:00
|
|
|
import Accessibility.Styled as Html exposing (..)
|
2020-03-24 03:33:42 +03:00
|
|
|
import Category exposing (Category(..))
|
2020-03-31 23:04:36 +03:00
|
|
|
import Debug.Control as Control exposing (Control)
|
2018-05-25 21:16:54 +03:00
|
|
|
import Dict exposing (Dict)
|
2020-03-31 23:20:03 +03:00
|
|
|
import Example exposing (Example)
|
2019-07-23 17:58:23 +03:00
|
|
|
import Nri.Ui.Heading.V2 as Heading
|
2020-04-14 00:28:15 +03:00
|
|
|
import Nri.Ui.TextInput.V6 as TextInput
|
2018-05-25 21:16:54 +03:00
|
|
|
|
|
|
|
|
|
|
|
{-| -}
|
|
|
|
type Msg
|
|
|
|
= SetTextInput Id String
|
|
|
|
| SetNumberInput (Maybe Int)
|
2019-11-19 01:43:58 +03:00
|
|
|
| SetFloatInput (Maybe Float)
|
2019-08-05 22:27:29 +03:00
|
|
|
| SetPassword String
|
2020-03-31 23:04:36 +03:00
|
|
|
| UpdateControl (Control ExampleConfig)
|
2018-05-25 21:16:54 +03:00
|
|
|
|
|
|
|
|
|
|
|
{-| -}
|
|
|
|
type alias State =
|
|
|
|
{ numberInputValue : Maybe Int
|
2019-11-19 01:43:58 +03:00
|
|
|
, floatInputValue : Maybe Float
|
2020-03-31 23:19:56 +03:00
|
|
|
, stringInputValues : Dict Id String
|
2019-08-05 22:27:29 +03:00
|
|
|
, passwordInputValue : String
|
2020-03-31 23:04:36 +03:00
|
|
|
, control : Control ExampleConfig
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type alias ExampleConfig =
|
|
|
|
{ showLabel : Bool
|
|
|
|
, label : String
|
|
|
|
, isInError : Bool
|
|
|
|
, placeholder : String
|
2018-05-25 21:16:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
{-| -}
|
2020-03-31 23:20:03 +03:00
|
|
|
example : Example State Msg
|
2020-03-31 22:43:32 +03:00
|
|
|
example =
|
2020-04-14 00:28:15 +03:00
|
|
|
{ name = "Nri.Ui.TextInput.V6"
|
2020-03-31 22:43:32 +03:00
|
|
|
, categories = [ Inputs ]
|
|
|
|
, state = init
|
|
|
|
, update = update
|
2020-03-31 22:48:26 +03:00
|
|
|
, subscriptions = \_ -> Sub.none
|
2020-03-31 22:43:32 +03:00
|
|
|
, view =
|
|
|
|
\state ->
|
2020-04-11 01:07:27 +03:00
|
|
|
let
|
|
|
|
exampleConfig =
|
|
|
|
Control.currentValue state.control
|
|
|
|
in
|
2020-03-31 22:43:32 +03:00
|
|
|
[ Html.div []
|
2020-03-31 23:04:36 +03:00
|
|
|
[ Control.view UpdateControl state.control
|
|
|
|
|> Html.fromUnstyled
|
|
|
|
, Heading.h3 [] [ text "TextInput.view { type_ = TextInput.text }" ]
|
2020-04-14 02:43:07 +03:00
|
|
|
, TextInput.view (exampleConfig.label ++ " (text)")
|
|
|
|
(TextInput.text (SetTextInput 1))
|
|
|
|
([ TextInput.errorIf exampleConfig.isInError
|
|
|
|
, TextInput.placeholder exampleConfig.placeholder
|
|
|
|
]
|
|
|
|
++ (if exampleConfig.showLabel then
|
|
|
|
[]
|
|
|
|
|
|
|
|
else
|
|
|
|
[ TextInput.hiddenLabel ]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
(Maybe.withDefault "" <| Dict.get 1 state.stringInputValues)
|
2020-03-31 23:04:36 +03:00
|
|
|
, Heading.h3 [] [ text "... type_ = TextInput.number" ]
|
2020-04-14 02:43:07 +03:00
|
|
|
, TextInput.view (exampleConfig.label ++ " (number)")
|
|
|
|
(TextInput.number SetNumberInput)
|
|
|
|
([ TextInput.errorIf exampleConfig.isInError
|
|
|
|
, TextInput.placeholder exampleConfig.placeholder
|
|
|
|
]
|
|
|
|
++ (if exampleConfig.showLabel then
|
|
|
|
[]
|
|
|
|
|
|
|
|
else
|
|
|
|
[ TextInput.hiddenLabel ]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
state.numberInputValue
|
2020-03-31 23:04:36 +03:00
|
|
|
, Heading.h3 [] [ text "... type_ = TextInput.float" ]
|
2020-04-14 02:43:07 +03:00
|
|
|
, TextInput.view (exampleConfig.label ++ " (float)")
|
|
|
|
(TextInput.float SetFloatInput)
|
|
|
|
([ TextInput.errorIf exampleConfig.isInError
|
|
|
|
, TextInput.placeholder exampleConfig.placeholder
|
|
|
|
]
|
|
|
|
++ (if exampleConfig.showLabel then
|
|
|
|
[]
|
|
|
|
|
|
|
|
else
|
|
|
|
[ TextInput.hiddenLabel ]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
state.floatInputValue
|
2020-03-31 23:04:36 +03:00
|
|
|
, Heading.h3 [] [ text "... type_ = TextInput.password" ]
|
2020-04-14 02:43:07 +03:00
|
|
|
, TextInput.view (exampleConfig.label ++ " (password)")
|
|
|
|
(TextInput.password SetPassword)
|
|
|
|
([ TextInput.errorIf exampleConfig.isInError
|
|
|
|
, TextInput.placeholder exampleConfig.placeholder
|
|
|
|
]
|
|
|
|
++ (if exampleConfig.showLabel then
|
|
|
|
[]
|
|
|
|
|
|
|
|
else
|
|
|
|
[ TextInput.hiddenLabel ]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
state.passwordInputValue
|
2020-03-31 23:19:56 +03:00
|
|
|
, Heading.h3 [] [ text "... type_ = TextInput.email" ]
|
2020-04-14 02:43:07 +03:00
|
|
|
, TextInput.view (exampleConfig.label ++ " (email)")
|
|
|
|
(TextInput.email (SetTextInput 2))
|
|
|
|
([ TextInput.errorIf exampleConfig.isInError
|
|
|
|
, TextInput.placeholder exampleConfig.placeholder
|
|
|
|
]
|
|
|
|
++ (if exampleConfig.showLabel then
|
|
|
|
[]
|
|
|
|
|
|
|
|
else
|
|
|
|
[ TextInput.hiddenLabel ]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
(Maybe.withDefault "" <| Dict.get 2 state.stringInputValues)
|
2020-03-31 23:04:36 +03:00
|
|
|
, Heading.h3 [] [ Html.text "TextInput.writing { type_ = TextInput.text }" ]
|
2020-04-14 02:43:07 +03:00
|
|
|
, TextInput.view (exampleConfig.label ++ " (writing)")
|
|
|
|
(TextInput.text (SetTextInput 4))
|
|
|
|
([ TextInput.writing
|
|
|
|
, TextInput.errorIf exampleConfig.isInError
|
|
|
|
, TextInput.placeholder exampleConfig.placeholder
|
|
|
|
]
|
|
|
|
++ (if exampleConfig.showLabel then
|
|
|
|
[]
|
|
|
|
|
|
|
|
else
|
|
|
|
[ TextInput.hiddenLabel ]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
(Maybe.withDefault "" <| Dict.get 4 state.stringInputValues)
|
2020-03-31 23:04:36 +03:00
|
|
|
, Heading.h3 [] [ text "onBlur demonstration" ]
|
2020-04-14 02:43:07 +03:00
|
|
|
, TextInput.view (exampleConfig.label ++ " (onBlur)")
|
|
|
|
(TextInput.text (SetTextInput 7))
|
|
|
|
([ TextInput.writing
|
|
|
|
, TextInput.errorIf exampleConfig.isInError
|
|
|
|
, TextInput.placeholder exampleConfig.placeholder
|
|
|
|
, TextInput.onBlur (SetTextInput 7 "Blurred!")
|
|
|
|
]
|
|
|
|
++ (if exampleConfig.showLabel then
|
|
|
|
[]
|
|
|
|
|
|
|
|
else
|
|
|
|
[ TextInput.hiddenLabel ]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
(Maybe.withDefault "" <| Dict.get 7 state.stringInputValues)
|
2018-10-23 19:55:30 +03:00
|
|
|
]
|
2020-03-31 22:43:32 +03:00
|
|
|
]
|
2018-05-25 21:16:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
{-| -}
|
|
|
|
init : State
|
|
|
|
init =
|
|
|
|
{ numberInputValue = Nothing
|
2019-11-19 01:43:58 +03:00
|
|
|
, floatInputValue = Nothing
|
2020-03-31 23:19:56 +03:00
|
|
|
, stringInputValues = Dict.empty
|
2019-08-05 22:27:29 +03:00
|
|
|
, passwordInputValue = ""
|
2020-03-31 23:04:36 +03:00
|
|
|
, control =
|
|
|
|
Control.record ExampleConfig
|
|
|
|
|> Control.field "showLabel" (Control.bool True)
|
|
|
|
|> Control.field "label" (Control.string "Assignment name")
|
|
|
|
|> Control.field "isInError" (Control.bool False)
|
|
|
|
|> Control.field "placeholder" (Control.string "Learning with commas")
|
2018-05-25 21:16:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
{-| -}
|
|
|
|
update : Msg -> State -> ( State, Cmd Msg )
|
|
|
|
update msg state =
|
|
|
|
case msg of
|
|
|
|
SetTextInput id textInputValue ->
|
2020-03-31 23:19:56 +03:00
|
|
|
( { state | stringInputValues = Dict.insert id textInputValue state.stringInputValues }, Cmd.none )
|
2018-05-25 21:16:54 +03:00
|
|
|
|
|
|
|
SetNumberInput numberInputValue ->
|
|
|
|
( { state | numberInputValue = numberInputValue }, Cmd.none )
|
|
|
|
|
2019-11-19 01:43:58 +03:00
|
|
|
SetFloatInput floatInputValue ->
|
|
|
|
( { state | floatInputValue = floatInputValue }, Cmd.none )
|
|
|
|
|
2019-08-05 22:27:29 +03:00
|
|
|
SetPassword password ->
|
|
|
|
( { state | passwordInputValue = password }, Cmd.none )
|
|
|
|
|
2020-03-31 23:04:36 +03:00
|
|
|
UpdateControl newControl ->
|
|
|
|
( { state | control = newControl }, Cmd.none )
|
|
|
|
|
2018-05-25 21:16:54 +03:00
|
|
|
|
|
|
|
|
|
|
|
-- INTERNAL
|
|
|
|
|
|
|
|
|
|
|
|
type alias Id =
|
|
|
|
Int
|