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

127 lines
3.2 KiB
Elm
Raw Normal View History

module Examples.Tabs exposing
( example
2020-03-31 22:43:32 +03:00
, State, Msg
)
{-|
@docs example
2020-03-31 22:43:32 +03:00
@docs State, Msg
-}
import Category exposing (Category(..))
2020-06-10 00:51:00 +03:00
import Debug.Control as Control exposing (Control)
2020-03-31 23:20:03 +03:00
import Example exposing (Example)
2020-06-10 00:51:00 +03:00
import Html.Styled as Html exposing (Html, fromUnstyled)
import List.Zipper
2020-06-10 00:51:00 +03:00
import Nri.Ui.Tabs.V5 as Tabs exposing (Alignment(..))
2020-06-10 00:51:00 +03:00
type alias State =
{ selected : Id
, settings : Control Settings
2020-06-10 00:51:00 +03:00
}
init : State
init =
{ selected = First
, settings = initSettings
}
type alias Settings =
{ title : Maybe String
, alignment : Alignment
2020-06-10 00:51:00 +03:00
}
initSettings : Control Settings
initSettings =
Control.record Settings
|> Control.field "title" (Control.maybe False (Control.string "Title"))
|> Control.field "alignment"
(Control.choice
[ ( "Left", Control.value Left )
, ( "Center", Control.value Center )
, ( "Right", Control.value Right )
]
)
2020-06-10 00:51:00 +03:00
type Id
= First
| Second
2020-06-10 00:51:00 +03:00
type Msg
= SelectTab Id
| SetSettings (Control Settings)
2020-06-10 00:51:00 +03:00
update : Msg -> State -> State
update msg model =
case msg of
SelectTab id ->
{ model | selected = id }
SetSettings settings ->
{ model | settings = settings }
2020-03-31 22:43:32 +03:00
2020-03-31 23:20:03 +03:00
example : Example State Msg
2020-03-31 22:43:32 +03:00
example =
2020-06-10 00:21:42 +03:00
{ name = "Nri.Ui.Tabs.V5"
2020-03-31 22:43:32 +03:00
, categories = [ Layout ]
2020-06-10 00:51:00 +03:00
, state = init
, update = \msg model -> ( update msg model, Cmd.none )
2020-03-31 22:48:26 +03:00
, subscriptions = \_ -> Sub.none
2020-03-31 22:43:32 +03:00
, view =
2020-06-10 00:51:00 +03:00
\model ->
let
settings =
Control.currentValue model.settings
in
[ Control.view SetSettings model.settings |> fromUnstyled
2020-06-10 00:51:00 +03:00
, Tabs.view
{ title = settings.title
2020-06-10 00:51:00 +03:00
, onSelect = SelectTab
2020-03-31 22:43:32 +03:00
, tabs =
2020-06-10 00:51:00 +03:00
case model.selected of
First ->
List.Zipper.from
[]
2020-03-31 22:43:32 +03:00
(Tabs.Tab "First tab" First)
[ Tabs.Tab "Second tab" Second ]
Second ->
List.Zipper.from
2020-03-31 22:43:32 +03:00
[ Tabs.Tab "First tab" First ]
(Tabs.Tab "Second tab" Second)
[]
2020-03-31 22:43:32 +03:00
, content =
\id ->
case id of
First ->
Html.text "First"
Second ->
Html.text "Second"
, alignment = settings.alignment
2020-03-31 22:43:32 +03:00
}
, Tabs.links
{ title = Nothing
, content = Html.text "Links"
, alignment = Tabs.Left
, tabs =
List.Zipper.from
[]
(Tabs.NormalLink { label = "Nowhere", href = Nothing })
[ Tabs.NormalLink { label = "Elm", href = Just "http://elm-lang.org" }
2020-06-10 00:51:00 +03:00
, Tabs.SpaLink { label = "Spa", href = "/#category/Layout", msg = SelectTab Second }
2020-03-31 22:43:32 +03:00
]
}
]
}