mirror of
https://github.com/NoRedInk/noredink-ui.git
synced 2024-12-19 03:31:32 +03:00
Adds common disabled helper
This commit is contained in:
parent
06a5615959
commit
88cfb2453a
@ -1,6 +1,7 @@
|
|||||||
module CommonControls exposing (exampleHtml, httpError, premiumLevel, quickBrownFox, romeoAndJulietQuotation, uiIcon)
|
module CommonControls exposing (disabledListItem, exampleHtml, httpError, premiumLevel, quickBrownFox, romeoAndJulietQuotation, uiIcon)
|
||||||
|
|
||||||
import Debug.Control as Control exposing (Control)
|
import Debug.Control as Control exposing (Control)
|
||||||
|
import Debug.Control.Extra as ControlExtra
|
||||||
import Html.Styled as Html exposing (Html)
|
import Html.Styled as Html exposing (Html)
|
||||||
import Html.Styled.Attributes as Attributes
|
import Html.Styled.Attributes as Attributes
|
||||||
import Http
|
import Http
|
||||||
@ -110,3 +111,13 @@ uiIcon =
|
|||||||
( name, Control.value ( "UiIcon." ++ name, value ) )
|
( name, Control.value ( "UiIcon." ++ name, value ) )
|
||||||
)
|
)
|
||||||
|> Control.choice
|
|> Control.choice
|
||||||
|
|
||||||
|
|
||||||
|
disabledListItem : String -> (Bool -> b) -> Control (List ( String, b )) -> Control (List ( String, b ))
|
||||||
|
disabledListItem moduleName f =
|
||||||
|
ControlExtra.optionalBoolListItem "disabled"
|
||||||
|
(\bool ->
|
||||||
|
( moduleName ++ ".disabled True"
|
||||||
|
, f bool
|
||||||
|
)
|
||||||
|
)
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
module Debug.Control.Extra exposing
|
module Debug.Control.Extra exposing
|
||||||
( float, int
|
( float, int
|
||||||
, list, listItem, optionalListItem
|
, list, listItem, optionalListItem, optionalBoolListItem
|
||||||
, css
|
, css
|
||||||
)
|
)
|
||||||
|
|
||||||
{-|
|
{-|
|
||||||
|
|
||||||
@docs float, int
|
@docs float, int
|
||||||
@docs list, listItem, optionalListItem
|
@docs list, listItem, optionalListItem, optionalBoolListItem
|
||||||
@docs css
|
@docs css
|
||||||
|
|
||||||
-}
|
-}
|
||||||
@ -58,6 +58,23 @@ optionalListItem name accessor accumulator =
|
|||||||
(Control.map (++) accumulator)
|
(Control.map (++) accumulator)
|
||||||
|
|
||||||
|
|
||||||
|
{-| -}
|
||||||
|
optionalBoolListItem : String -> (Bool -> a) -> Control (List a) -> Control (List a)
|
||||||
|
optionalBoolListItem name f accumulator =
|
||||||
|
Control.field name
|
||||||
|
(Control.map
|
||||||
|
(\value ->
|
||||||
|
if value then
|
||||||
|
[ f value ]
|
||||||
|
|
||||||
|
else
|
||||||
|
[]
|
||||||
|
)
|
||||||
|
(Control.bool False)
|
||||||
|
)
|
||||||
|
(Control.map (++) accumulator)
|
||||||
|
|
||||||
|
|
||||||
{-| -}
|
{-| -}
|
||||||
css : String -> Control (List Css.Style)
|
css : String -> Control (List Css.Style)
|
||||||
css exampleCss =
|
css exampleCss =
|
||||||
|
@ -270,17 +270,15 @@ initSettings =
|
|||||||
|> Control.field "icon" CommonControls.uiIcon
|
|> Control.field "icon" CommonControls.uiIcon
|
||||||
|> Control.field "attributes"
|
|> Control.field "attributes"
|
||||||
(ControlExtra.list
|
(ControlExtra.list
|
||||||
|> ControlExtra.listItem "disabled"
|
|> CommonControls.disabledListItem "ClickableSvg" ClickableSvg.disabled
|
||||||
(Control.map ClickableSvg.disabled (Control.bool False))
|
--|> ControlExtra.optionalListItem "exactSize"
|
||||||
|> ControlExtra.optionalListItem "exactSize"
|
-- (Control.map ClickableSvg.exactSize (ControlExtra.int 36))
|
||||||
(Control.map ClickableSvg.exactSize (ControlExtra.int 36))
|
--|> ControlExtra.optionalListItem "css"
|
||||||
|> ControlExtra.optionalListItem "css"
|
-- (Control.map ClickableSvg.css (ControlExtra.css "border: 2px solid red;"))
|
||||||
(Control.map ClickableSvg.css (ControlExtra.css "border: 2px solid red;"))
|
--|> ControlExtra.optionalListItem "mobileCss"
|
||||||
|> ControlExtra.optionalListItem "mobileCss"
|
-- (Control.map ClickableSvg.mobileCss (ControlExtra.css "padding: 10px;"))
|
||||||
(Control.map ClickableSvg.mobileCss (ControlExtra.css "padding: 10px;"))
|
--|> ControlExtra.optionalListItem "quizEngineMobileCss"
|
||||||
|> ControlExtra.optionalListItem "quizEngineMobileCss"
|
-- (Control.map ClickableSvg.quizEngineMobileCss (ControlExtra.css ""))
|
||||||
(Control.map ClickableSvg.quizEngineMobileCss (ControlExtra.css ""))
|
--|> ControlExtra.optionalListItem "notMobileCss"
|
||||||
|> ControlExtra.optionalListItem "notMobileCss"
|
-- (Control.map ClickableSvg.notMobileCss (ControlExtra.css ""))
|
||||||
(Control.map ClickableSvg.notMobileCss (ControlExtra.css ""))
|
|
||||||
|> Control.map (List.map (\v -> ( Debug.toString v, v )))
|
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user