noredink-ui/styleguide-app/Debug/Control/Extra.elm

107 lines
2.6 KiB
Elm
Raw Normal View History

2021-10-22 03:20:29 +03:00
module Debug.Control.Extra exposing
2022-03-04 21:26:19 +03:00
( float, int
, list, listItem, optionalListItem, optionalListItemDefaultChecked
, optionalBoolListItem, optionalBoolListItemDefaultTrue
2021-10-22 03:20:29 +03:00
)
{-|
2022-03-04 21:26:19 +03:00
@docs float, int
@docs list, listItem, optionalListItem, optionalListItemDefaultChecked
@docs optionalBoolListItem, optionalBoolListItemDefaultTrue
2021-10-22 03:20:29 +03:00
-}
import Debug.Control as Control exposing (Control)
{-| -}
float : Float -> Control Float
float default =
Control.map (String.toFloat >> Maybe.withDefault default)
(Control.string (String.fromFloat default))
2022-03-04 21:26:19 +03:00
{-| -}
int : Int -> Control Int
int default =
Control.map (String.toInt >> Maybe.withDefault default)
(Control.string (String.fromInt default))
2021-10-22 03:20:29 +03:00
{-| Use with `listItem` and `optionalListItem`
2022-03-04 21:42:00 +03:00
list
|> listItem "first name" string
|> listItem "last name" string
2021-10-22 03:20:29 +03:00
-}
list : Control (List a)
list =
Control.record []
{-| -}
listItem : String -> Control a -> Control (List a) -> Control (List a)
2022-03-11 05:01:47 +03:00
listItem name accessor =
listItems name (Control.map List.singleton accessor)
{-| -}
listItems : String -> Control (List a) -> Control (List a) -> Control (List a)
listItems name accessor accumulator =
Control.field name accessor (Control.map (++) accumulator)
2021-10-22 03:20:29 +03:00
{-| -}
2021-10-22 03:27:29 +03:00
optionalListItem : String -> Control a -> Control (List a) -> Control (List a)
optionalListItem =
optionalListItem_ False
{-| -}
optionalListItemDefaultChecked : String -> Control a -> Control (List a) -> Control (List a)
optionalListItemDefaultChecked =
optionalListItem_ True
{-| -}
optionalListItem_ : Bool -> String -> Control a -> Control (List a) -> Control (List a)
optionalListItem_ default name accessor accumulator =
2021-10-22 03:20:29 +03:00
Control.field name
(Control.map (List.singleton >> List.filterMap identity) (Control.maybe default accessor))
2021-10-22 03:20:29 +03:00
(Control.map (++) accumulator)
2022-03-04 21:42:09 +03:00
2022-03-05 00:51:31 +03:00
{-| -}
optionalBoolListItem : String -> a -> Control (List a) -> Control (List a)
2022-03-05 00:51:31 +03:00
optionalBoolListItem name f accumulator =
Control.field name
(Control.map
(\value ->
if value then
[ f ]
2022-03-05 00:51:31 +03:00
else
[]
)
(Control.bool False)
)
(Control.map (++) accumulator)
optionalBoolListItemDefaultTrue : String -> a -> Control (List a) -> Control (List a)
optionalBoolListItemDefaultTrue name f accumulator =
Control.field name
(Control.map
(\value ->
if not value then
[ f ]
else
[]
)
(Control.bool True)
)
(Control.map (++) accumulator)