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

242 lines
6.5 KiB
Elm
Raw Normal View History

2020-03-31 22:43:32 +03:00
module Examples.Button exposing (Msg, State, example)
2018-04-30 14:14:20 +03:00
{-|
2020-03-31 22:43:32 +03:00
@docs Msg, State, example
2018-04-30 14:14:20 +03:00
-}
2020-06-19 23:41:28 +03:00
import AtomicDesignType exposing (AtomicDesignType(..))
import Category exposing (Category(..))
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)
2020-03-31 23:20:03 +03:00
import Example exposing (Example)
2018-08-18 00:37:26 +03:00
import Html.Styled exposing (..)
import Html.Styled.Attributes exposing (css, id)
2020-01-29 04:09:32 +03:00
import Nri.Ui.Button.V10 as Button
import Nri.Ui.Heading.V2 as Heading
import Nri.Ui.Svg.V1 as Svg exposing (Svg)
import Nri.Ui.UiIcon.V1 as UiIcon
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-03-31 22:05:56 +03:00
{ name = "Nri.Ui.Button.V10"
, state = init
, update = update
2020-03-31 22:48:26 +03:00
, subscriptions = \_ -> Sub.none
2020-03-31 22:05:56 +03:00
, view = \state -> [ viewButtonExamples state ]
, categories = [ Buttons ]
2020-06-19 23:41:28 +03:00
, atomicDesignType = AtomicDesignType.Molecule
2020-03-31 22:05:56 +03:00
}
2018-04-30 14:14:20 +03:00
{-| -}
2020-03-31 22:05:56 +03:00
type State
= State (Control Model)
2018-04-30 14:14:20 +03:00
{-| -}
type ButtonType
= Button
| Link
{-| -}
2020-03-31 22:05:56 +03:00
type Msg
= SetState State
| ShowItWorked String String
| NoOp
{-| -}
2020-03-31 22:05:56 +03:00
update : Msg -> State -> ( State, Cmd Msg )
update msg state =
case msg of
SetState newState ->
( newState, Cmd.none )
2020-03-31 22:05:56 +03:00
ShowItWorked group message ->
let
_ =
Debug.log group message
in
( state, Cmd.none )
NoOp ->
( state, Cmd.none )
-- INTERNAL
2020-03-31 22:05:56 +03:00
type alias Model =
{ label : String
, icon : Maybe Svg
, buttonType : ButtonType
2020-03-31 22:05:56 +03:00
, width : Button.Attribute Msg
, state : Button.Attribute Msg
}
2018-04-30 14:14:20 +03:00
{-| -}
2020-03-31 22:05:56 +03:00
init : State
init =
2018-04-30 14:14:20 +03:00
Control.record Model
|> Control.field "label" (Control.string "Label")
|> Control.field "icon" iconChoice
2019-07-12 01:18:49 +03:00
|> Control.field "button type"
(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
]
)
2018-04-30 14:14:20 +03:00
|> Control.field "width"
(Control.choice
2019-07-30 22:55:55 +03:00
[ ( "exactWidth 120", Control.value (Button.exactWidth 120) )
, ( "exactWidth 70", Control.value (Button.exactWidth 70) )
, ( "unboundedWidth", Control.value Button.unboundedWidth )
, ( "fillContainerWidth", Control.value Button.fillContainerWidth )
]
2018-04-30 14:14:20 +03:00
)
|> Control.field "state (button only)"
(Control.choice
2019-07-30 22:55:55 +03:00
[ ( "enabled", Control.value Button.enabled )
, ( "disabled", Control.value Button.disabled )
, ( "error", Control.value Button.error )
, ( "unfulfilled", Control.value Button.unfulfilled )
, ( "loading", Control.value Button.loading )
, ( "success", Control.value Button.success )
]
2018-04-30 14:14:20 +03:00
)
|> State
iconChoice : Control.Control (Maybe Svg)
iconChoice =
Control.choice
[ ( "Nothing", Control.value Nothing )
, ( "Just Performance", Control.value (Just UiIcon.performance) )
, ( "Just Share", Control.value (Just UiIcon.share) )
, ( "Just Download", Control.value (Just UiIcon.download) )
]
2018-04-30 14:14:20 +03:00
2020-03-31 22:05:56 +03:00
viewButtonExamples : State -> Html Msg
viewButtonExamples (State control) =
2018-04-30 14:14:20 +03:00
let
model =
Control.currentValue control
in
2020-03-31 22:05:56 +03:00
[ Control.view (State >> SetState) control
2018-08-18 00:37:26 +03:00
|> fromUnstyled
2020-03-31 22:05:56 +03:00
, buttons model
, toggleButtons
, Button.delete
2018-04-30 14:24:03 +03:00
{ label = "Delete Something"
2020-03-31 22:05:56 +03:00
, onClick = ShowItWorked "ButtonExample" "delete"
2018-04-30 14:24:03 +03:00
}
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
{ url = "#"
2020-03-31 22:05:56 +03:00
, track = ShowItWorked "ButtonExample" "linkExternalWithTracking clicked"
}
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
sizes =
2019-07-12 00:29:10 +03:00
[ ( Button.small, "small" )
, ( Button.medium, "medium" )
, ( Button.large, "large" )
]
styles =
2019-07-12 00:29:10 +03:00
[ ( Button.primary, "primary" )
, ( Button.secondary, "secondary" )
, ( Button.danger, "danger" )
, ( Button.premium, "premium" )
]
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
]
]
[ text styleName ]
2018-04-30 14:14:20 +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
exampleCell setStyle setSize =
2019-07-20 04:16:46 +03:00
buttonOrLink model.label
2019-07-19 18:57:56 +03:00
[ setSize
, setStyle
, model.width
, model.state
2019-07-20 00:56:01 +03:00
, Button.custom [ Html.Styled.Attributes.class "styleguide-button" ]
2020-03-31 22:05:56 +03:00
, Button.onClick (ShowItWorked "ButtonExample" "Button clicked!")
, case model.icon of
Just icon ->
Button.icon icon
Nothing ->
2019-07-20 00:56:01 +03:00
Button.custom []
2019-07-19 18:57:56 +03:00
]
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
|> List.map (\( _, sizeName ) -> th [] [ text sizeName ])
2018-04-30 14:24:03 +03:00
|> (\cells -> tr [] (th [] [] :: cells))
]
, List.map exampleRow styles
2018-04-30 14:24:03 +03:00
]
|> table []
2018-04-30 14:14:20 +03:00
2020-03-31 22:05:56 +03:00
toggleButtons : Html Msg
toggleButtons =
2018-04-30 14:14:20 +03:00
div []
[ Heading.h3 [] [ text "Button toggle" ]
2020-01-29 04:09:53 +03:00
, div [ css [ Css.displayFlex, Css.marginBottom (Css.px 20) ] ]
[ Button.toggleButton
2020-03-31 22:05:56 +03:00
{ onDeselect = ShowItWorked "ButtonExample" "onDeselect"
, onSelect = ShowItWorked "ButtonExample" "onSelect"
2020-01-29 04:09:53 +03:00
, label = "5"
, pressed = False
}
, Button.toggleButton
2020-03-31 22:05:56 +03:00
{ onDeselect = ShowItWorked "ButtonExample" "onDeselect"
, onSelect = ShowItWorked "ButtonExample" "onSelect"
2020-01-29 04:09:53 +03:00
, label = "5"
, pressed = True
}
]
2018-04-30 14:14:20 +03:00
]