mirror of
https://github.com/NoRedInk/noredink-ui.git
synced 2024-12-11 06:31:38 +03:00
186 lines
4.9 KiB
Elm
186 lines
4.9 KiB
Elm
module Examples.Tabs exposing
|
|
( example
|
|
, State, Msg
|
|
)
|
|
|
|
{-|
|
|
|
|
@docs example
|
|
@docs State, Msg
|
|
|
|
-}
|
|
|
|
import AtomicDesignType exposing (AtomicDesignType(..))
|
|
import Browser.Dom as Dom
|
|
import Category exposing (Category(..))
|
|
import Css
|
|
import Debug.Control as Control exposing (Control)
|
|
import Example exposing (Example)
|
|
import Html.Styled as Html exposing (Html, fromUnstyled)
|
|
import Html.Styled.Attributes exposing (css)
|
|
import KeyboardSupport exposing (Key(..))
|
|
import List.Zipper exposing (Zipper)
|
|
import Nri.Ui.Svg.V1 as Svg
|
|
import Nri.Ui.Tabs.V7 as Tabs exposing (Alignment(..), Tab)
|
|
import Nri.Ui.Tooltip.V2 as Tooltip
|
|
import Nri.Ui.UiIcon.V1 as UiIcon
|
|
import Task
|
|
|
|
|
|
type alias State =
|
|
{ selected : Id
|
|
, settings : Control Settings
|
|
, isTooltipOpen : Bool
|
|
}
|
|
|
|
|
|
init : State
|
|
init =
|
|
{ selected = First
|
|
, settings = initSettings
|
|
, isTooltipOpen = False
|
|
}
|
|
|
|
|
|
type alias Settings =
|
|
{ title : Maybe String
|
|
, alignment : Alignment
|
|
, customSpacing : Maybe Float
|
|
}
|
|
|
|
|
|
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 )
|
|
]
|
|
)
|
|
|> Control.field "customSpacing"
|
|
(Control.maybe False
|
|
(Control.choice
|
|
[ ( "2", Control.value 2 )
|
|
, ( "3", Control.value 3 )
|
|
, ( "4", Control.value 4 )
|
|
, ( "8", Control.value 8 )
|
|
, ( "16", Control.value 16 )
|
|
]
|
|
)
|
|
)
|
|
|
|
|
|
type Id
|
|
= First
|
|
| Second
|
|
| Third
|
|
| Fourth
|
|
|
|
|
|
type Msg
|
|
= SelectTab Id
|
|
| Focus String
|
|
| Focused (Result Dom.Error ())
|
|
| SetSettings (Control Settings)
|
|
| ToggleTooltip Bool
|
|
|
|
|
|
update : Msg -> State -> ( State, Cmd Msg )
|
|
update msg model =
|
|
case msg of
|
|
SelectTab id ->
|
|
( { model | selected = id }, Cmd.none )
|
|
|
|
Focus id ->
|
|
( model, Task.attempt Focused (Dom.focus id) )
|
|
|
|
Focused error ->
|
|
( model, Cmd.none )
|
|
|
|
SetSettings settings ->
|
|
( { model | settings = settings }, Cmd.none )
|
|
|
|
ToggleTooltip isTooltipOpen ->
|
|
( { model | isTooltipOpen = isTooltipOpen }, Cmd.none )
|
|
|
|
|
|
example : Example State Msg
|
|
example =
|
|
{ name = "Nri.Ui.Tabs.V7"
|
|
, categories = [ Layout ]
|
|
, atomicDesignType = Molecule
|
|
, keyboardSupport =
|
|
[ { keys = [ KeyboardSupport.Tab ]
|
|
, result = "Move focus to the currently-selected Tab's tab panel"
|
|
}
|
|
, { keys = [ Arrow KeyboardSupport.Left ]
|
|
, result = "Select the tab to the left of the currently-selected Tab"
|
|
}
|
|
, { keys = [ Arrow KeyboardSupport.Right ]
|
|
, result = "Select the tab to the right of the currently-selected Tab"
|
|
}
|
|
]
|
|
, state = init
|
|
, update = update
|
|
, subscriptions = \_ -> Sub.none
|
|
, view =
|
|
\model ->
|
|
let
|
|
settings =
|
|
Control.currentValue model.settings
|
|
in
|
|
[ Control.view SetSettings model.settings |> fromUnstyled
|
|
, Tabs.view
|
|
{ title = settings.title
|
|
, alignment = settings.alignment
|
|
, customSpacing = settings.customSpacing
|
|
, onSelect = SelectTab
|
|
, onFocus = Focus
|
|
, selected = model.selected
|
|
, tabs = allTabs model.isTooltipOpen
|
|
}
|
|
]
|
|
}
|
|
|
|
|
|
allTabs : Bool -> List (Tab Id Msg)
|
|
allTabs isTooltipOpen =
|
|
let
|
|
bulbIcon =
|
|
UiIcon.bulb
|
|
|> Svg.withWidth (Css.px 40)
|
|
|> Svg.withHeight (Css.px 45)
|
|
|> Svg.withCss [ Css.padding2 Css.zero (Css.px 6) ]
|
|
|> Svg.toHtml
|
|
in
|
|
[ Tabs.build { id = First, idString = "tab-0" }
|
|
[ Tabs.spaHref "/#/doodad/Nri.Ui.Tabs.V7"
|
|
, Tabs.tabString "Link example"
|
|
, Tabs.panelHtml (Html.text "First Panel")
|
|
]
|
|
, Tabs.build { id = Second, idString = "tab-1" }
|
|
[ Tabs.tabString "Second Tab"
|
|
, Tabs.panelHtml (Html.text "Second Panel")
|
|
]
|
|
, Tabs.build { id = Third, idString = "tab-2" }
|
|
[ Tabs.tabHtml bulbIcon
|
|
, Tabs.withTooltip
|
|
[ Tooltip.plaintext "The Electrifying Third Tab"
|
|
, Tooltip.onBottom
|
|
, Tooltip.onHover ToggleTooltip
|
|
, Tooltip.primaryLabel
|
|
, Tooltip.fitToContent
|
|
, Tooltip.smallPadding
|
|
, Tooltip.open isTooltipOpen
|
|
]
|
|
, Tabs.panelHtml (Html.text "Third Panel")
|
|
]
|
|
, Tabs.build { id = Fourth, idString = "tab-3" }
|
|
[ Tabs.tabString "Fourth Tab"
|
|
, Tabs.panelHtml (Html.text "Fourth Panel")
|
|
]
|
|
]
|