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

253 lines
7.0 KiB
Elm
Raw Normal View History

2018-04-30 14:14:20 +03:00
module Examples.Button exposing (Msg, State, example, init, update)
{- \
@docs Msg, State, example, init, update,
-}
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)
import Headings
2018-08-18 00:37:26 +03:00
import Html.Styled exposing (..)
2018-08-18 02:06:31 +03:00
import Html.Styled.Attributes exposing (css)
2018-04-30 14:14:20 +03:00
import ModuleExample as ModuleExample exposing (Category(..), ModuleExample, ModuleMessages)
2018-04-30 14:24:03 +03:00
import Nri.Ui.AssetPath exposing (Asset)
2018-10-01 12:53:30 +03:00
import Nri.Ui.Button.V4 as Button
2018-08-18 00:37:26 +03:00
import Nri.Ui.Icon.V3 as Icon
2018-04-30 14:14:20 +03:00
{-| -}
type Msg
= SetState State
{-| -}
type State
= State (Control Model)
{-| -}
type ButtonType
= Button
| Link
| CopyToClipboard
{-| -}
example :
2018-08-18 01:37:33 +03:00
{ r | teach_assignments_copyWhite_svg : Asset, x : String }
2018-04-30 14:14:20 +03:00
-> (String -> ModuleMessages Msg parentMsg)
-> State
-> ModuleExample parentMsg
example assets unnamedMessages state =
let
messages =
unnamedMessages "ButtonExample"
in
2018-10-01 12:53:30 +03:00
{ filename = "Nri.Ui.Button.V4"
2018-04-30 14:24:03 +03:00
, category = Buttons
, content =
[ viewButtonExamples assets messages state ]
2018-08-18 00:37:26 +03:00
|> List.map toUnstyled
2018-04-30 14:24:03 +03:00
}
2018-04-30 14:14:20 +03:00
{-| -}
init : { r | performance : String, lock : String } -> State
init assets =
Control.record Model
|> Control.field "label" (Control.string "Button")
|> Control.field "icon (copyToClipboard has only one choice)"
2018-04-30 14:14:20 +03:00
(Control.maybe False <|
Control.choice
[ ( "Performance", Control.value (Icon.performance assets) )
, ( "Lock", Control.value (Icon.lock assets) )
]
)
|> Control.field "width"
(Control.choice
[ ( "Nri.Ui.Button.V4.WidthExact 120", Control.value <| Button.WidthExact 120 )
, ( "Nri.Ui.Button.V4.WidthExact 70", Control.value <| Button.WidthExact 70 )
, ( "Nri.Ui.Button.V4.WidthUnbounded", Control.value <| Button.WidthUnbounded )
]
2018-04-30 14:14:20 +03:00
)
|> Control.field "button type"
(Control.choice
[ ( "Nri.Ui.Button.V4.button", Control.value Button )
, ( "Nri.Ui.Button.V4.link", Control.value Link )
, ( "Nri.Ui.Button.V4.copyToClipboard", Control.value CopyToClipboard )
2018-04-30 14:14:20 +03:00
]
)
|> Control.field "state (button only)"
2018-04-30 14:14:20 +03:00
(Control.choice <|
List.map (\x -> ( toString x, Control.value x ))
[ Button.Enabled
, Button.Disabled
, Button.Error
, Button.Unfulfilled
, Button.Loading
, Button.Success
]
)
|> State
{-| -}
update : Msg -> State -> ( State, Cmd Msg )
update msg state =
case msg of
SetState newState ->
( newState, Cmd.none )
-- INTERNAL
type alias Model =
{ label : String
, icon : Maybe Icon.IconType
, width : Button.ButtonWidth
2018-04-30 14:14:20 +03:00
, buttonType : ButtonType
, state : Button.ButtonState
}
viewButtonExamples :
{ r | teach_assignments_copyWhite_svg : Asset, x : String }
-> ModuleMessages Msg parentMsg
-> State
-> Html parentMsg
2018-04-30 14:14:20 +03:00
viewButtonExamples assets messages (State control) =
let
model =
Control.currentValue control
in
2018-04-30 14:24:03 +03:00
[ Control.view (State >> SetState >> messages.wrapper) control
2018-08-18 00:37:26 +03:00
|> fromUnstyled
, buttons assets messages sizes model
2018-04-30 14:24:03 +03:00
, toggleButtons messages
2018-08-18 01:37:33 +03:00
, Button.delete assets
2018-04-30 14:24:03 +03:00
{ label = "Delete Something"
, onClick = messages.showItWorked "delete"
}
, Button.linkExternalWithTracking
(messages.showItWorked "linkExternalWithTracking clicked")
{ size = Button.Medium
, style = Button.Secondary
, width = Button.WidthUnbounded
, label = "linkExternalWithTracking"
, icon = Nothing
, url = "#"
}
2018-04-30 14:24:03 +03:00
]
|> div []
2018-04-30 14:14:20 +03:00
sizes : List Button.ButtonSize
sizes =
[ Button.Small
, Button.Medium
, Button.Large
]
allStyles : List Button.ButtonStyle
allStyles =
[ Button.Primary
, Button.Secondary
, Button.Borderless
, Button.Danger
, Button.Premium
]
buttons :
{ r | teach_assignments_copyWhite_svg : Asset }
-> ModuleMessages Msg parentMsg
-> List Button.ButtonSize
-> Model
-> Html parentMsg
buttons assets messages sizes model =
2018-04-30 14:14:20 +03:00
let
exampleRow style =
2018-04-30 14:14:20 +03:00
List.concat
2018-08-18 02:06:31 +03:00
[ [ td
[ css
[ verticalAlign middle
]
]
[ text <| toString style ]
2018-04-30 14:14:20 +03:00
]
, sizes
|> List.map (exampleCell style)
2018-04-30 14:14:20 +03:00
]
|> tr []
exampleCell style size =
2018-04-30 14:14:20 +03:00
(case model.buttonType of
Link ->
Button.link
{ size = size
, style = style
, label = model.label
, icon = model.icon
, url = ""
, width = model.width
}
Button ->
Button.button
{ size = size
, style = style
, onClick = messages.showItWorked (toString ( style, size ))
, width = model.width
}
{ label = model.label
, icon = model.icon
, state = model.state
}
CopyToClipboard ->
Button.copyToClipboard
assets
{ size = size
, style = style
, copyText = "wire up in your coffee file with clipboard.js"
, buttonLabel = model.label
, withIcon = model.icon /= Nothing
, width = model.width
}
)
|> List.singleton
|> td []
in
2018-04-30 14:24:03 +03:00
List.concat
[ [ sizes
|> List.map (\size -> th [] [ text <| toString size ])
|> (\cells -> tr [] (th [] [] :: cells))
]
, allStyles
|> List.map exampleRow
2018-04-30 14:24:03 +03:00
]
|> table []
2018-04-30 14:14:20 +03:00
toggleButtons : ModuleMessages Msg parentMsg -> Html parentMsg
toggleButtons messages =
div []
2018-08-18 00:37:26 +03:00
[ Headings.h3 [ text "Button toggle" |> toUnstyled ]
|> fromUnstyled
2018-04-30 14:14:20 +03:00
, Button.toggleButton
{ onDeselect = messages.showItWorked "onDeselect"
, onSelect = messages.showItWorked "onSelect"
, label = "5"
, pressed = False
}
, Button.toggleButton
{ onDeselect = messages.showItWorked "onDeselect"
, onSelect = messages.showItWorked "onSelect"
, label = "5"
, pressed = True
}
]