noredink-ui/styleguide-app/Examples/TextInput.elm

244 lines
9.8 KiB
Elm
Raw Normal View History

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
-}
import Accessibility.Styled as Html exposing (..)
import Category exposing (Category(..))
2020-04-14 20:59:38 +03:00
import Css exposing (..)
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)
2020-04-14 20:59:38 +03:00
import Html.Styled.Attributes exposing (css)
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
| 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
, control : Control ExampleConfig
}
type alias ExampleConfig =
2020-04-14 19:00:25 +03:00
{ label : String
, maybePlaceholderAttribute : Maybe (TextInput.Attribute Msg)
, maybeErrorAttribute1 : Maybe (TextInput.Attribute Msg)
, maybeErrorAttribute2 : Maybe (TextInput.Attribute Msg)
2020-04-14 19:00:25 +03:00
, maybeShowLabelAttribute : Maybe (TextInput.Attribute Msg)
, maybeDisabledAttribute : Maybe (TextInput.Attribute Msg)
, maybeLoadingAttribute : Maybe (TextInput.Attribute Msg)
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 ->
let
exampleConfig =
Control.currentValue state.control
in
2020-04-14 20:59:38 +03:00
[ Control.view UpdateControl state.control
|> Html.fromUnstyled
, Html.div
[ css
[ property "display" "grid"
, property "grid-template-columns" "auto 1fr"
, property "grid-gap" "10px"
]
]
[ Heading.h3 [] [ text "TextInput.text" ]
, TextInput.view (exampleConfig.label ++ " (text)")
(TextInput.text (SetTextInput 1))
2020-04-14 19:00:25 +03:00
(List.filterMap identity
[ exampleConfig.maybeErrorAttribute1
, exampleConfig.maybeErrorAttribute2
2020-04-14 19:00:25 +03:00
, exampleConfig.maybePlaceholderAttribute
, exampleConfig.maybeShowLabelAttribute
, exampleConfig.maybeDisabledAttribute
, exampleConfig.maybeLoadingAttribute
2020-04-14 19:00:25 +03:00
]
)
(Maybe.withDefault "" <| Dict.get 1 state.stringInputValues)
2020-04-14 20:59:38 +03:00
, Heading.h3 [] [ text "TextInput.number" ]
, TextInput.view (exampleConfig.label ++ " (number)")
(TextInput.number SetNumberInput)
2020-04-14 19:00:25 +03:00
(List.filterMap identity
[ exampleConfig.maybeErrorAttribute1
, exampleConfig.maybeErrorAttribute2
2020-04-14 19:00:25 +03:00
, exampleConfig.maybePlaceholderAttribute
, exampleConfig.maybeShowLabelAttribute
, exampleConfig.maybeDisabledAttribute
, exampleConfig.maybeLoadingAttribute
2020-04-14 19:00:25 +03:00
]
)
state.numberInputValue
2020-04-14 20:59:38 +03:00
, Heading.h3 [] [ text "TextInput.float" ]
, TextInput.view (exampleConfig.label ++ " (float)")
(TextInput.float SetFloatInput)
2020-04-14 19:00:25 +03:00
(List.filterMap identity
[ exampleConfig.maybeErrorAttribute1
, exampleConfig.maybeErrorAttribute2
2020-04-14 19:00:25 +03:00
, exampleConfig.maybePlaceholderAttribute
, exampleConfig.maybeShowLabelAttribute
, exampleConfig.maybeDisabledAttribute
, exampleConfig.maybeLoadingAttribute
2020-04-14 19:00:25 +03:00
]
)
state.floatInputValue
2020-04-14 20:59:38 +03:00
, Heading.h3 [] [ text "TextInput.password" ]
, TextInput.view (exampleConfig.label ++ " (password)")
(TextInput.password SetPassword)
2020-04-14 19:00:25 +03:00
(List.filterMap identity
[ exampleConfig.maybeErrorAttribute1
, exampleConfig.maybeErrorAttribute2
2020-04-14 19:00:25 +03:00
, exampleConfig.maybePlaceholderAttribute
, exampleConfig.maybeShowLabelAttribute
, exampleConfig.maybeDisabledAttribute
, exampleConfig.maybeLoadingAttribute
2020-04-14 19:00:25 +03:00
]
)
state.passwordInputValue
2020-04-14 20:59:38 +03:00
, Heading.h3 [] [ text "TextInput.email" ]
, TextInput.view (exampleConfig.label ++ " (email)")
(TextInput.email (SetTextInput 2))
2020-04-14 19:00:25 +03:00
(List.filterMap identity
[ exampleConfig.maybeErrorAttribute1
, exampleConfig.maybeErrorAttribute2
2020-04-14 19:00:25 +03:00
, exampleConfig.maybePlaceholderAttribute
, exampleConfig.maybeShowLabelAttribute
, exampleConfig.maybeDisabledAttribute
, exampleConfig.maybeLoadingAttribute
2020-04-14 19:00:25 +03:00
]
)
(Maybe.withDefault "" <| Dict.get 2 state.stringInputValues)
2020-04-14 20:59:38 +03:00
, Heading.h3 [] [ Html.text "TextInput.writing" ]
, TextInput.view (exampleConfig.label ++ " (writing)")
(TextInput.text (SetTextInput 4))
2020-04-14 19:00:25 +03:00
(List.filterMap identity
[ Just TextInput.writing
, exampleConfig.maybeErrorAttribute1
, exampleConfig.maybeErrorAttribute2
2020-04-14 19:00:25 +03:00
, exampleConfig.maybePlaceholderAttribute
, exampleConfig.maybeShowLabelAttribute
, exampleConfig.maybeDisabledAttribute
, exampleConfig.maybeLoadingAttribute
2020-04-14 19:00:25 +03:00
]
)
(Maybe.withDefault "" <| Dict.get 4 state.stringInputValues)
2020-04-14 20:59:38 +03:00
, Heading.h3 [] [ text "TextInput.onBlur" ]
, TextInput.view (exampleConfig.label ++ " (onBlur)")
(TextInput.text (SetTextInput 7))
2020-04-14 19:00:25 +03:00
(List.filterMap identity
2020-04-14 23:23:55 +03:00
[ Just (TextInput.onBlur (SetTextInput 7 "Blurred!"))
, exampleConfig.maybeErrorAttribute1
, exampleConfig.maybeErrorAttribute2
2020-04-14 19:00:25 +03:00
, exampleConfig.maybePlaceholderAttribute
, exampleConfig.maybeShowLabelAttribute
, exampleConfig.maybeDisabledAttribute
, exampleConfig.maybeLoadingAttribute
2020-04-14 19:00:25 +03:00
]
)
(Maybe.withDefault "" <| Dict.get 7 state.stringInputValues)
2020-04-14 23:23:55 +03:00
, Heading.h3 [] [ text "TextInput.css" ]
, TextInput.view (exampleConfig.label ++ " (custom CSS)")
(TextInput.text (SetTextInput 8))
(List.filterMap identity
[ exampleConfig.maybeErrorAttribute1
, exampleConfig.maybeErrorAttribute2
, exampleConfig.maybePlaceholderAttribute
, exampleConfig.maybeShowLabelAttribute
, exampleConfig.maybeDisabledAttribute
, exampleConfig.maybeLoadingAttribute
, Just
(TextInput.css
[ margin (px 50)
, transform (rotateZ <| deg 4)
]
)
]
)
(Maybe.withDefault "" <| Dict.get 8 state.stringInputValues)
]
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 = ""
, control =
Control.record ExampleConfig
|> Control.field "label" (Control.string "Assignment name")
|> Control.field "TextInput.placeholder"
2020-04-14 19:00:25 +03:00
(Control.maybe True <|
Control.map TextInput.placeholder <|
Control.string "Learning with commas"
)
|> Control.field "TextInput.hiddenLabel"
(Control.maybe False (Control.value TextInput.hiddenLabel))
|> Control.field "TextInput.errorIf"
(Control.maybe False (Control.map TextInput.errorIf <| Control.bool True))
|> Control.field "TextInput.errorMessage"
(Control.maybe False (Control.map TextInput.errorMessage <| Control.maybe True <| Control.string "The statement must be true."))
|> Control.field "TextInput.disabled"
(Control.maybe False (Control.value TextInput.disabled))
|> Control.field "TextInput.loading"
(Control.maybe False (Control.value TextInput.loading))
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 )
UpdateControl newControl ->
( { state | control = newControl }, Cmd.none )
2018-05-25 21:16:54 +03:00
-- INTERNAL
type alias Id =
Int