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

129 lines
3.8 KiB
Elm
Raw Normal View History

2020-03-31 22:43:32 +03:00
module Examples.DisclosureIndicator exposing (Msg, State, example)
2019-05-07 22:14:51 +03:00
{-|
2020-03-31 22:43:32 +03:00
@docs Msg, State, example
2019-05-07 22:14:51 +03:00
-}
import Category exposing (Category(..))
2022-03-22 19:11:43 +03:00
import Css exposing (Style)
import Debug.Control as Control exposing (Control)
import Debug.Control.Extra as ControlExtra
2022-03-22 19:11:43 +03:00
import Debug.Control.View as ControlView
2020-03-31 23:20:03 +03:00
import Example exposing (Example)
import Html.Styled as Html
import Html.Styled.Attributes exposing (css)
import Nri.Ui.DisclosureIndicator.V2 as DisclosureIndicator
2021-10-27 20:42:23 +03:00
import Nri.Ui.Text.V6 as Text
{-| -}
2020-03-31 23:20:03 +03:00
example : Example State Msg
2020-03-31 22:43:32 +03:00
example =
2020-09-09 21:43:10 +03:00
{ name = "DisclosureIndicator"
, version = 2
, categories = [ Icons ]
, keyboardSupport = []
2020-03-31 22:43:32 +03:00
, state = init
, update = update
2020-03-31 22:48:26 +03:00
, subscriptions = \_ -> Sub.none
, preview =
[ DisclosureIndicator.medium [] False
, DisclosureIndicator.medium [] True
, DisclosureIndicator.large [] False
, DisclosureIndicator.large [] True
]
2020-03-31 22:43:32 +03:00
, view =
\state ->
let
attributes =
Control.currentValue state.settings
in
2021-10-27 21:54:14 +03:00
[ Text.smallBodyGray [ Text.plaintext "The disclosure indicator is only the caret. It is NOT a button -- you must create a button or clickabletext yourself!" ]
2022-03-22 19:11:43 +03:00
, ControlView.view
{ update = UpdateSettings
, settings = state.settings
, toExampleCode =
\settings ->
let
toCode viewName =
"DisclosureIndicator."
++ viewName
++ " "
++ Tuple.first settings.css
++ " "
++ Tuple.first settings.isOpen
in
[ { sectionName = "Large"
, code = toCode "large"
}
, { sectionName = "medium"
, code = toCode "medium"
}
]
}
2020-03-31 22:43:32 +03:00
, Html.div [ css [ Css.displayFlex, Css.alignItems Css.center, Css.marginBottom (Css.px 8) ] ]
[ DisclosureIndicator.large
2022-03-22 19:20:49 +03:00
(Tuple.second attributes.css)
(Tuple.second attributes.isOpen)
, Html.text "large is a 17px caret icon."
2020-03-31 22:43:32 +03:00
]
, Html.div [ css [ Css.displayFlex, Css.alignItems Css.center, Css.marginBottom (Css.px 8) ] ]
[ DisclosureIndicator.medium
2022-03-22 19:20:49 +03:00
(Tuple.second attributes.css)
(Tuple.second attributes.isOpen)
, Html.text "medium is a 15px caret icon."
2020-03-31 22:43:32 +03:00
]
]
2019-05-07 22:34:33 +03:00
}
2019-05-07 22:27:25 +03:00
2019-05-07 22:34:33 +03:00
2022-03-22 19:11:43 +03:00
{-| -}
type alias State =
{ settings : Control Settings
}
{-| -}
init : State
init =
2022-03-22 19:11:43 +03:00
{ settings = initSettings
}
2022-03-22 19:11:43 +03:00
type alias Settings =
{ css : ( String, List Style )
, isOpen : ( String, Bool )
}
initSettings : Control Settings
initSettings =
Control.record Settings
2022-03-22 19:20:49 +03:00
|> Control.field "css"
(Control.choice
[ ( "[ Css.marginRight (Css.px 8) ]"
, Control.value
( "[ Css.marginRight (Css.px 8) ]"
, [ Css.marginRight (Css.px 8) ]
)
)
, ( "[]", Control.value ( "[]", [] ) )
]
)
|> Control.field "isOpen" (ControlExtra.bool False)
2022-03-22 19:11:43 +03:00
2019-05-07 22:34:33 +03:00
{-| -}
type Msg
2022-03-22 19:11:43 +03:00
= UpdateSettings (Control Settings)
2019-05-07 22:34:33 +03:00
{-| -}
update : Msg -> State -> ( State, Cmd Msg )
update msg state =
case msg of
2022-03-22 19:11:43 +03:00
UpdateSettings settings ->
( { state | settings = settings }, Cmd.none )