2020-03-31 22:43:32 +03:00
|
|
|
module Examples.Button exposing (Msg, State, example)
|
2018-04-30 14:14:20 +03:00
|
|
|
|
2019-07-12 00:23:03 +03:00
|
|
|
{-|
|
|
|
|
|
2020-03-31 22:43:32 +03:00
|
|
|
@docs Msg, State, example
|
2019-07-12 00:23:03 +03:00
|
|
|
|
2018-04-30 14:14:20 +03:00
|
|
|
-}
|
|
|
|
|
2021-11-06 00:35:09 +03:00
|
|
|
import Accessibility.Styled.Key as Key
|
2020-03-24 03:33:42 +03:00
|
|
|
import Category exposing (Category(..))
|
2022-03-05 04:13:22 +03:00
|
|
|
import CommonControls
|
2018-08-18 02:06:31 +03:00
|
|
|
import Css exposing (middle, verticalAlign)
|
2018-04-30 14:14:20 +03:00
|
|
|
import Debug.Control as Control exposing (Control)
|
2022-03-05 04:13:22 +03:00
|
|
|
import Debug.Control.Extra as ControlExtra
|
2022-03-05 04:19:03 +03:00
|
|
|
import Debug.Control.View as ControlView
|
2020-03-31 23:20:03 +03:00
|
|
|
import Example exposing (Example)
|
2018-08-18 00:37:26 +03:00
|
|
|
import Html.Styled exposing (..)
|
2022-03-15 21:06:13 +03:00
|
|
|
import Html.Styled.Attributes exposing (css)
|
2020-01-29 04:09:32 +03:00
|
|
|
import Nri.Ui.Button.V10 as Button
|
2019-07-23 17:58:23 +03:00
|
|
|
import Nri.Ui.Heading.V2 as Heading
|
2019-10-24 20:47:11 +03:00
|
|
|
import Nri.Ui.UiIcon.V1 as UiIcon
|
2021-09-02 21:35:18 +03:00
|
|
|
import Set exposing (Set)
|
2018-04-30 14:14:20 +03:00
|
|
|
|
|
|
|
|
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 = "Button"
|
|
|
|
, version = 10
|
2020-03-31 22:05:56 +03:00
|
|
|
, state = init
|
|
|
|
, update = update
|
2020-03-31 22:48:26 +03:00
|
|
|
, subscriptions = \_ -> Sub.none
|
2021-11-05 22:04:46 +03:00
|
|
|
, preview =
|
2021-11-05 22:16:52 +03:00
|
|
|
[ Button.link "Primary"
|
|
|
|
[ Button.small
|
|
|
|
, Button.fillContainerWidth
|
2021-11-06 00:35:09 +03:00
|
|
|
, Button.custom [ Key.tabbable False ]
|
2022-02-18 22:42:53 +03:00
|
|
|
, Button.icon UiIcon.link
|
2021-11-05 22:16:52 +03:00
|
|
|
]
|
2021-11-05 22:04:46 +03:00
|
|
|
, Button.link "Secondary"
|
|
|
|
[ Button.small
|
|
|
|
, Button.fillContainerWidth
|
|
|
|
, Button.secondary
|
|
|
|
, Button.css [ Css.marginTop (Css.px 8) ]
|
2021-11-06 00:35:09 +03:00
|
|
|
, Button.custom [ Key.tabbable False ]
|
2022-02-18 22:42:53 +03:00
|
|
|
, Button.icon UiIcon.link
|
2021-11-05 22:04:46 +03:00
|
|
|
]
|
|
|
|
, Button.link "Premium"
|
|
|
|
[ Button.small
|
|
|
|
, Button.fillContainerWidth
|
|
|
|
, Button.premium
|
|
|
|
, Button.css [ Css.marginTop (Css.px 8) ]
|
2021-11-06 00:35:09 +03:00
|
|
|
, Button.custom [ Key.tabbable False ]
|
2022-02-18 22:42:53 +03:00
|
|
|
, Button.icon UiIcon.link
|
2021-11-05 22:04:46 +03:00
|
|
|
]
|
|
|
|
]
|
2020-03-31 22:05:56 +03:00
|
|
|
, view = \state -> [ viewButtonExamples state ]
|
|
|
|
, categories = [ Buttons ]
|
2020-06-20 00:45:32 +03:00
|
|
|
, keyboardSupport = []
|
2020-03-31 22:05:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-04-30 14:14:20 +03:00
|
|
|
{-| -}
|
2021-09-02 20:55:19 +03:00
|
|
|
type alias State =
|
|
|
|
{ debugControlsState : Control Model
|
2021-09-02 21:35:18 +03:00
|
|
|
, pressedToggleButtons : Set Int
|
2021-09-02 20:55:19 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
{-| -}
|
|
|
|
init : State
|
|
|
|
init =
|
|
|
|
{ debugControlsState = initDebugControls
|
2021-09-02 21:35:18 +03:00
|
|
|
, pressedToggleButtons = Set.singleton 1
|
2021-09-02 20:55:19 +03:00
|
|
|
}
|
2018-04-30 14:14:20 +03:00
|
|
|
|
|
|
|
|
|
|
|
{-| -}
|
|
|
|
type ButtonType
|
|
|
|
= Button
|
|
|
|
| Link
|
|
|
|
|
|
|
|
|
2019-07-03 19:39:06 +03:00
|
|
|
{-| -}
|
2020-03-31 22:05:56 +03:00
|
|
|
type Msg
|
2021-09-02 20:55:19 +03:00
|
|
|
= SetDebugControlsState (Control Model)
|
2020-03-31 22:05:56 +03:00
|
|
|
| ShowItWorked String String
|
2021-09-02 23:05:50 +03:00
|
|
|
| ToggleToggleButton Int
|
2019-07-03 19:39:06 +03:00
|
|
|
|
|
|
|
|
|
|
|
{-| -}
|
2020-03-31 22:05:56 +03:00
|
|
|
update : Msg -> State -> ( State, Cmd Msg )
|
2019-07-03 19:39:06 +03:00
|
|
|
update msg state =
|
|
|
|
case msg of
|
2021-09-02 20:55:19 +03:00
|
|
|
SetDebugControlsState newDebugControlsState ->
|
|
|
|
( { state | debugControlsState = newDebugControlsState }
|
|
|
|
, Cmd.none
|
|
|
|
)
|
2019-07-03 19:39:06 +03:00
|
|
|
|
2020-03-31 22:05:56 +03:00
|
|
|
ShowItWorked group message ->
|
2022-03-15 21:06:13 +03:00
|
|
|
( Debug.log group message |> always state, Cmd.none )
|
2020-03-31 22:05:56 +03:00
|
|
|
|
2021-09-02 23:05:50 +03:00
|
|
|
ToggleToggleButton id ->
|
2021-09-03 00:33:25 +03:00
|
|
|
( { state
|
|
|
|
| pressedToggleButtons =
|
|
|
|
if Set.member id state.pressedToggleButtons then
|
|
|
|
Set.remove id state.pressedToggleButtons
|
|
|
|
|
|
|
|
else
|
|
|
|
Set.insert id state.pressedToggleButtons
|
|
|
|
}
|
2021-09-02 23:05:50 +03:00
|
|
|
, Cmd.none
|
|
|
|
)
|
|
|
|
|
2019-07-03 19:39:06 +03:00
|
|
|
|
|
|
|
|
|
|
|
-- INTERNAL
|
|
|
|
|
|
|
|
|
2020-03-31 22:05:56 +03:00
|
|
|
type alias Model =
|
2022-03-05 04:14:07 +03:00
|
|
|
{ buttonType : ButtonType
|
|
|
|
, label : String
|
2022-03-05 04:13:22 +03:00
|
|
|
, attributes : List ( String, Button.Attribute Msg )
|
2019-07-03 19:39:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-04-30 14:14:20 +03:00
|
|
|
{-| -}
|
2021-09-02 20:55:19 +03:00
|
|
|
initDebugControls : Control Model
|
|
|
|
initDebugControls =
|
2018-04-30 14:14:20 +03:00
|
|
|
Control.record Model
|
2022-03-05 04:14:07 +03:00
|
|
|
|> Control.field "type"
|
2019-07-12 01:18:49 +03:00
|
|
|
(Control.choice
|
2019-07-30 22:55:55 +03:00
|
|
|
[ ( "button", Control.value Button )
|
|
|
|
, ( "link", Control.value Link )
|
2019-07-12 01:18:49 +03:00
|
|
|
]
|
|
|
|
)
|
2022-03-05 04:14:07 +03:00
|
|
|
|> Control.field "label" (Control.string "Label")
|
2022-03-05 04:13:22 +03:00
|
|
|
|> Control.field "attributes"
|
|
|
|
(ControlExtra.list
|
|
|
|
|> CommonControls.icon "Button" Button.icon
|
|
|
|
|> ControlExtra.optionalListItem "width"
|
|
|
|
(CommonControls.choice "Button"
|
|
|
|
[ ( "exactWidth 120", Button.exactWidth 120 )
|
|
|
|
, ( "exactWidth 70", Button.exactWidth 70 )
|
|
|
|
, ( "boundedWidth 100 180", Button.boundedWidth { min = 100, max = 180 } )
|
|
|
|
, ( "unboundedWidth", Button.unboundedWidth )
|
|
|
|
, ( "fillContainerWidth", Button.fillContainerWidth )
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|> ControlExtra.optionalListItem "state (button only)"
|
|
|
|
(CommonControls.choice "Button"
|
|
|
|
[ ( "enabled", Button.enabled )
|
|
|
|
, ( "disabled", Button.disabled )
|
|
|
|
, ( "error", Button.error )
|
|
|
|
, ( "unfulfilled", Button.unfulfilled )
|
|
|
|
, ( "loading", Button.loading )
|
|
|
|
, ( "success", Button.success )
|
|
|
|
]
|
|
|
|
)
|
2022-03-09 22:57:36 +03:00
|
|
|
|> ControlExtra.optionalBoolListItem "hideIconForMobile"
|
2022-03-10 19:14:42 +03:00
|
|
|
( "Button.hideIconForMobile", Button.hideIconForMobile )
|
2022-03-05 04:16:57 +03:00
|
|
|
|> CommonControls.css
|
|
|
|
{ moduleName = "Button"
|
|
|
|
, use = Button.css
|
|
|
|
}
|
|
|
|
|> CommonControls.mobileCss
|
|
|
|
{ moduleName = "Button"
|
|
|
|
, use = Button.mobileCss
|
|
|
|
}
|
|
|
|
|> CommonControls.quizEngineMobileCss
|
|
|
|
{ moduleName = "Button"
|
|
|
|
, use = Button.quizEngineMobileCss
|
|
|
|
}
|
|
|
|
|> CommonControls.notMobileCss
|
|
|
|
{ moduleName = "Button"
|
|
|
|
, use = Button.notMobileCss
|
|
|
|
}
|
2018-04-30 14:14:20 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2020-03-31 22:05:56 +03:00
|
|
|
viewButtonExamples : State -> Html Msg
|
2021-09-02 20:55:19 +03:00
|
|
|
viewButtonExamples state =
|
2018-04-30 14:14:20 +03:00
|
|
|
let
|
|
|
|
model =
|
2021-09-02 20:55:19 +03:00
|
|
|
Control.currentValue state.debugControlsState
|
2018-04-30 14:14:20 +03:00
|
|
|
in
|
2022-03-05 04:19:03 +03:00
|
|
|
[ ControlView.view
|
|
|
|
{ update = SetDebugControlsState
|
|
|
|
, settings = state.debugControlsState
|
|
|
|
, toExampleCode =
|
|
|
|
\{ label, attributes } ->
|
|
|
|
let
|
|
|
|
toCode fName =
|
|
|
|
"Button."
|
|
|
|
++ fName
|
|
|
|
++ " \""
|
|
|
|
++ label
|
|
|
|
++ "\"\n\t"
|
|
|
|
++ ControlView.codeFromList attributes
|
|
|
|
in
|
|
|
|
[ { sectionName = "Button"
|
|
|
|
, code = toCode "button"
|
|
|
|
}
|
|
|
|
, { sectionName = "Link"
|
|
|
|
, code = toCode "link"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2020-03-31 22:05:56 +03:00
|
|
|
, buttons model
|
2021-09-02 21:35:18 +03:00
|
|
|
, toggleButtons state.pressedToggleButtons
|
2019-07-20 04:16:46 +03:00
|
|
|
, Button.link "linkExternalWithTracking"
|
|
|
|
[ Button.unboundedWidth
|
2019-07-19 18:57:56 +03:00
|
|
|
, Button.secondary
|
|
|
|
, Button.linkExternalWithTracking
|
2019-07-20 04:27:17 +03:00
|
|
|
{ url = "#"
|
2020-03-31 22:05:56 +03:00
|
|
|
, track = ShowItWorked "ButtonExample" "linkExternalWithTracking clicked"
|
2019-07-20 04:27:17 +03:00
|
|
|
}
|
2019-07-19 18:57:56 +03:00
|
|
|
]
|
2018-04-30 14:24:03 +03:00
|
|
|
]
|
|
|
|
|> div []
|
2018-04-30 14:14:20 +03:00
|
|
|
|
|
|
|
|
2020-03-31 22:05:56 +03:00
|
|
|
buttons : Model -> Html Msg
|
|
|
|
buttons model =
|
2018-04-30 14:14:20 +03:00
|
|
|
let
|
2019-07-03 19:39:06 +03:00
|
|
|
sizes =
|
2019-07-12 00:29:10 +03:00
|
|
|
[ ( Button.small, "small" )
|
|
|
|
, ( Button.medium, "medium" )
|
|
|
|
, ( Button.large, "large" )
|
2019-07-03 19:39:06 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
styles =
|
2019-07-12 00:29:10 +03:00
|
|
|
[ ( Button.primary, "primary" )
|
|
|
|
, ( Button.secondary, "secondary" )
|
|
|
|
, ( Button.danger, "danger" )
|
|
|
|
, ( Button.premium, "premium" )
|
2019-07-03 19:39:06 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
exampleRow ( style, styleName ) =
|
2018-04-30 14:14:20 +03:00
|
|
|
List.concat
|
2018-08-18 02:06:31 +03:00
|
|
|
[ [ td
|
|
|
|
[ css
|
|
|
|
[ verticalAlign middle
|
|
|
|
]
|
|
|
|
]
|
2019-07-03 19:39:06 +03:00
|
|
|
[ text styleName ]
|
2018-04-30 14:14:20 +03:00
|
|
|
]
|
2019-07-03 19:39:06 +03:00
|
|
|
, List.map (Tuple.first >> exampleCell style) sizes
|
2018-04-30 14:14:20 +03:00
|
|
|
]
|
|
|
|
|> tr []
|
|
|
|
|
2019-07-19 18:57:56 +03:00
|
|
|
buttonOrLink =
|
|
|
|
case model.buttonType of
|
|
|
|
Link ->
|
|
|
|
Button.link
|
|
|
|
|
|
|
|
Button ->
|
|
|
|
Button.button
|
2019-07-03 19:39:06 +03:00
|
|
|
|
|
|
|
exampleCell setStyle setSize =
|
2019-07-20 04:16:46 +03:00
|
|
|
buttonOrLink model.label
|
2022-03-05 04:13:22 +03:00
|
|
|
([ setSize
|
|
|
|
, setStyle
|
|
|
|
, Button.custom [ Html.Styled.Attributes.class "styleguide-button" ]
|
|
|
|
, Button.onClick (ShowItWorked "ButtonExample" "Button clicked!")
|
|
|
|
]
|
|
|
|
++ List.map Tuple.second model.attributes
|
|
|
|
)
|
2018-04-30 14:14:20 +03:00
|
|
|
|> List.singleton
|
2018-12-20 21:53:09 +03:00
|
|
|
|> td
|
|
|
|
[ css
|
|
|
|
[ verticalAlign middle
|
|
|
|
, Css.width (Css.px 200)
|
|
|
|
]
|
|
|
|
]
|
2018-04-30 14:14:20 +03:00
|
|
|
in
|
2018-04-30 14:24:03 +03:00
|
|
|
List.concat
|
|
|
|
[ [ sizes
|
2019-07-03 19:39:06 +03:00
|
|
|
|> List.map (\( _, sizeName ) -> th [] [ text sizeName ])
|
2018-04-30 14:24:03 +03:00
|
|
|
|> (\cells -> tr [] (th [] [] :: cells))
|
|
|
|
]
|
2019-07-03 19:39:06 +03:00
|
|
|
, List.map exampleRow styles
|
2018-04-30 14:24:03 +03:00
|
|
|
]
|
|
|
|
|> table []
|
2018-04-30 14:14:20 +03:00
|
|
|
|
|
|
|
|
2021-09-02 21:35:18 +03:00
|
|
|
toggleButtons : Set Int -> Html Msg
|
|
|
|
toggleButtons pressedToggleButtons =
|
2018-04-30 14:14:20 +03:00
|
|
|
div []
|
2019-07-23 17:58:23 +03:00
|
|
|
[ Heading.h3 [] [ text "Button toggle" ]
|
2020-01-29 04:09:53 +03:00
|
|
|
, div [ css [ Css.displayFlex, Css.marginBottom (Css.px 20) ] ]
|
|
|
|
[ Button.toggleButton
|
2021-09-02 23:05:50 +03:00
|
|
|
{ onDeselect = ToggleToggleButton 0
|
|
|
|
, onSelect = ToggleToggleButton 0
|
2020-01-29 04:09:53 +03:00
|
|
|
, label = "5"
|
2021-09-02 21:35:18 +03:00
|
|
|
, pressed = Set.member 0 pressedToggleButtons
|
2020-01-29 04:09:53 +03:00
|
|
|
}
|
|
|
|
, Button.toggleButton
|
2021-09-02 23:05:50 +03:00
|
|
|
{ onDeselect = ToggleToggleButton 1
|
|
|
|
, onSelect = ToggleToggleButton 1
|
|
|
|
, label = "Kindergarten"
|
2021-09-02 21:35:18 +03:00
|
|
|
, pressed = Set.member 1 pressedToggleButtons
|
2020-01-29 04:09:53 +03:00
|
|
|
}
|
|
|
|
]
|
2018-04-30 14:14:20 +03:00
|
|
|
]
|