2019-08-17 01:26:51 +03:00
|
|
|
module Examples.Tooltip exposing (example, init, update, State, Msg)
|
|
|
|
|
|
|
|
{-|
|
|
|
|
|
|
|
|
@docs example, init, update, State, Msg
|
|
|
|
|
|
|
|
-}
|
|
|
|
|
|
|
|
import Accessibility.Styled as Html
|
|
|
|
import Css
|
|
|
|
import Html.Styled.Attributes exposing (css)
|
|
|
|
import ModuleExample as ModuleExample exposing (Category(..), ModuleExample)
|
|
|
|
import Nri.Ui.Heading.V2 as Heading
|
|
|
|
import Nri.Ui.Text.V3 as Text
|
|
|
|
import Nri.Ui.Tooltip.V1 as Tooltip
|
|
|
|
|
|
|
|
|
|
|
|
type TooltipType
|
|
|
|
= PrimaryLabel
|
|
|
|
| AuxillaryDescription
|
|
|
|
| ToggleTip
|
|
|
|
|
|
|
|
|
|
|
|
type alias State =
|
|
|
|
{ openTooltip : Maybe TooltipType
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
init : State
|
|
|
|
init =
|
|
|
|
{ openTooltip = Nothing }
|
|
|
|
|
|
|
|
|
|
|
|
type Msg
|
|
|
|
= ToggleTooltip TooltipType Bool
|
|
|
|
|
|
|
|
|
|
|
|
update : Msg -> State -> State
|
|
|
|
update msg model =
|
|
|
|
case msg of
|
|
|
|
ToggleTooltip type_ isOpen ->
|
|
|
|
if isOpen then
|
|
|
|
{ model | openTooltip = Just type_ }
|
|
|
|
|
|
|
|
else
|
|
|
|
{ model | openTooltip = Nothing }
|
|
|
|
|
|
|
|
|
|
|
|
example : (Msg -> msg) -> State -> ModuleExample msg
|
|
|
|
example msg model =
|
|
|
|
{ name = "Nri.Ui.Tooltip.V1"
|
|
|
|
, category = Widgets
|
|
|
|
, content =
|
|
|
|
[ Text.mediumBody [ Html.text "These tooltips look similar, but serve different purposes when reading them via a screen-reader." ]
|
|
|
|
, Heading.h3 [] [ Html.text "primaryLabel" ]
|
2019-09-30 21:30:19 +03:00
|
|
|
, Text.smallBody [ Html.text "A primary label is used when the tooltip content serves as the main label for its trigger content, e.g. when the trigger content is an icon." ]
|
2019-08-17 01:26:51 +03:00
|
|
|
, Tooltip.tooltip [ Html.text "Tooltip" ]
|
|
|
|
|> Tooltip.primaryLabel
|
|
|
|
{ trigger = Tooltip.OnClick
|
|
|
|
, triggerHtml = Html.text "Primary Label Trigger"
|
|
|
|
, onTrigger = ToggleTooltip PrimaryLabel >> msg
|
|
|
|
, isOpen = model.openTooltip == Just PrimaryLabel
|
2019-09-30 21:30:19 +03:00
|
|
|
, id = "primary label tooltip"
|
2019-09-30 22:26:46 +03:00
|
|
|
, extraButtonAttrs = []
|
2019-08-17 01:26:51 +03:00
|
|
|
}
|
|
|
|
, Html.br [ css [ Css.marginBottom (Css.px 20) ] ]
|
|
|
|
, Heading.h3 [] [ Html.text "auxillaryDescription" ]
|
|
|
|
, Text.smallBody [ Html.text "An auxillary description is used when the tooltip content provides supplementary information about its trigger content." ]
|
|
|
|
, Tooltip.tooltip [ Html.text "Tooltip" ]
|
2019-09-30 21:30:19 +03:00
|
|
|
|> Tooltip.auxillaryDescription
|
2019-08-17 01:26:51 +03:00
|
|
|
{ trigger = Tooltip.OnClick
|
|
|
|
, triggerHtml = Html.text "Auxillary Description Trigger"
|
|
|
|
, onTrigger = ToggleTooltip AuxillaryDescription >> msg
|
|
|
|
, isOpen = model.openTooltip == Just AuxillaryDescription
|
2019-09-30 21:30:19 +03:00
|
|
|
, id = "Auxillary description"
|
2019-09-30 22:26:46 +03:00
|
|
|
, extraButtonAttrs = []
|
2019-08-17 01:26:51 +03:00
|
|
|
}
|
|
|
|
, Html.br [ css [ Css.marginBottom (Css.px 20) ] ]
|
|
|
|
, Heading.h3 [] [ Html.text "toggleTip" ]
|
|
|
|
, Text.smallBody [ Html.text "A Toggle Tip is triggered by the \"?\" icon and provides supplemental information for the page." ]
|
|
|
|
, Tooltip.tooltip [ Html.text "Tooltip" ]
|
|
|
|
|> Tooltip.toggleTip
|
2019-09-30 21:30:19 +03:00
|
|
|
{ onTrigger = ToggleTooltip ToggleTip >> msg
|
2019-08-17 01:26:51 +03:00
|
|
|
, isOpen = model.openTooltip == Just ToggleTip
|
2019-09-30 22:26:46 +03:00
|
|
|
, extraButtonAttrs = []
|
2019-08-17 01:26:51 +03:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|