elm-mdl/demo/Demo/Buttons.elm

178 lines
4.8 KiB
Elm
Raw Normal View History

2016-03-14 10:00:58 +00:00
module Demo.Buttons where
import Dict
import Html exposing (..)
import Html.Attributes exposing (..)
import Effects
import Material.Button as Button exposing (..)
import Material.Grid as Grid
import Material.Icon as Icon
2016-03-19 22:47:21 +00:00
import Material.Style exposing (Style)
2016-03-14 10:00:58 +00:00
2016-04-08 13:51:45 +00:00
import Demo.Page as Page
2016-03-31 19:58:30 +00:00
2016-03-14 10:00:58 +00:00
-- MODEL
type alias Index = (Int, Int)
2016-03-14 10:00:58 +00:00
type alias View =
2016-03-19 22:47:21 +00:00
Signal.Address Button.Action -> Button.Model -> List Style -> List Html -> Html
2016-03-14 10:00:58 +00:00
2016-03-14 10:00:58 +00:00
type alias View' =
Signal.Address Button.Action -> Button.Model -> Html
2016-03-19 22:47:21 +00:00
view' : View -> List Style -> Html -> Signal.Address Button.Action -> Button.Model -> Html
2016-03-14 10:00:58 +00:00
view' view coloring elem addr model =
view addr model coloring [elem]
2016-03-19 22:47:21 +00:00
describe : String -> Bool -> String -> String
describe kind ripple c =
2016-03-14 10:00:58 +00:00
kind ++ ", " ++ c ++ if ripple then " w/ripple" else ""
row : (String, Html, View) -> Bool -> List (Int, (Bool, String, View'))
row (kind, elem, v) ripple =
2016-03-19 22:47:21 +00:00
[ ("plain", [])
, ("colored", [Button.colored])
, ("primary", [Button.primary])
, ("accent", [Button.accent])
]
|> List.map (\(d,c) -> (ripple, describe kind ripple d, view' v c elem))
|> List.indexedMap (,)
2016-03-14 10:00:58 +00:00
buttons : List (List (Index, (Bool, String, View')))
buttons =
[ ("flat", text "Flat Button", Button.flat)
, ("raised", text "Raised Button", Button.raised)
, ("FAB", Icon.i "add", Button.fab)
, ("mini-FAB", Icon.i "zoom_in", Button.minifab)
, ("icon", Icon.i "flight_land", Button.icon)
]
|> List.concatMap (\a -> [row a False, row a True])
2016-03-19 22:47:21 +00:00
|> List.indexedMap (\i r -> List.map (\(j, x) -> ((i,j), x)) r)
2016-03-14 10:00:58 +00:00
model : Model
model =
{ clicked = ""
, buttons =
buttons
|> List.concatMap (List.map <| \(idx, (ripple, _, _)) -> (idx, Button.model ripple))
|> Dict.fromList
}
-- ACTION, UPDATE
2016-03-31 19:58:30 +00:00
type Action
= Action Index Button.Action
2016-03-14 10:00:58 +00:00
type alias Model =
{ clicked : String
, buttons : Dict.Dict Index Button.Model
}
update : Action -> Model -> (Model, Effects.Effects Action)
2016-03-31 19:58:30 +00:00
update action model =
case action of
Action idx action ->
Dict.get idx model.buttons
|> Maybe.map (\m0 ->
let
(m1, e) = Button.update action m0
in
({ model | buttons = Dict.insert idx m1 model.buttons }, Effects.map (Action idx) e)
)
|> Maybe.withDefault (model, Effects.none)
2016-03-14 10:00:58 +00:00
-- VIEW
2016-03-31 19:58:30 +00:00
2016-03-14 10:00:58 +00:00
view : Signal.Address Action -> Model -> Html
view addr model =
buttons |> List.concatMap (\row ->
row |> List.concatMap (\(idx, (ripple, description, view)) ->
let model' =
Dict.get idx model.buttons |> Maybe.withDefault (Button.model False)
in
[ Grid.cell
[ Grid.size Grid.All 3]
[ div
[ style
[ ("text-align", "center")
2016-04-12 14:37:16 +00:00
, ("margin-top", ".6em")
, ("margin-bottom", ".6em")
2016-03-14 10:00:58 +00:00
]
]
[ view
(Signal.forwardTo addr (Action idx))
model'
, div
[ style
[ ("font-size", "9pt")
2016-04-12 14:37:16 +00:00
, ("margin-top", ".6em")
2016-03-14 10:00:58 +00:00
]
]
[ text description
]
]
]
]
)
)
2016-04-08 13:51:45 +00:00
|> Grid.grid []
2016-04-12 14:37:16 +00:00
|> flip (::)
[ p []
[ text """Various combinations of colors and button styles can be seen
below. Most buttons have animations; try clicking."""
]
]
|> List.reverse
|> Page.body2 "Buttons" srcUrl intro references
2016-04-08 13:51:45 +00:00
intro : Html
intro =
Page.fromMDL "https://www.getmdl.io/components/#buttons-section" """
> The Material Design Lite (MDL) button component is an enhanced version of the
> standard HTML `<button>` element. A button consists of text and/or an image that
> clearly communicates what action will occur when the user clicks or touches it.
> The MDL button component provides various types of buttons, and allows you to
> add both display and click effects.
>
> Buttons are a ubiquitous feature of most user interfaces, regardless of a
> site's content or function. Their design and use is therefore an important
> factor in the overall user experience. See the button component's Material
> Design specifications page for details.
>
> The available button display types are flat (default), raised, fab, mini-fab,
> and icon; any of these types may be plain (light gray) or colored, and may be
> initially or programmatically disabled. The fab, mini-fab, and icon button
> types typically use a small image as their caption rather than text.
"""
srcUrl : String
srcUrl =
2016-04-12 22:21:31 +00:00
"https://github.com/debois/elm-mdl/blob/master/demo/Demo/Buttons.elm"
2016-04-08 13:51:45 +00:00
references : List (String, String)
references =
[ Page.package "http://package.elm-lang.org/packages/debois/elm-mdl/latest/Material-Button"
, Page.mds "https://www.google.com/design/spec/components/buttons.html"
, Page.mdl "https://www.getmdl.io/components/#buttons-section"
]
2016-03-31 19:58:30 +00:00