2020-03-31 22:43:32 +03:00
|
|
|
module Examples.ClickableText exposing (Msg, State, example)
|
2019-02-15 21:51:19 +03:00
|
|
|
|
2019-03-28 22:47:20 +03:00
|
|
|
{-|
|
|
|
|
|
2020-03-31 22:43:32 +03:00
|
|
|
@docs Msg, State, example
|
2019-03-28 22:47:20 +03:00
|
|
|
|
2019-02-15 21:51:19 +03:00
|
|
|
-}
|
|
|
|
|
2020-03-24 03:33:42 +03:00
|
|
|
import Category exposing (Category(..))
|
2019-02-15 21:51:19 +03:00
|
|
|
import Css exposing (middle, verticalAlign)
|
|
|
|
import Debug.Control as Control exposing (Control)
|
2020-03-31 23:20:03 +03:00
|
|
|
import Example exposing (Example)
|
2019-02-15 21:51:19 +03:00
|
|
|
import Html.Styled exposing (..)
|
|
|
|
import Html.Styled.Attributes exposing (css, id)
|
2020-06-20 00:45:32 +03:00
|
|
|
import KeyboardSupport exposing (Direction(..), Key(..))
|
2019-07-30 22:13:09 +03:00
|
|
|
import Nri.Ui.ClickableText.V3 as ClickableText
|
2019-10-24 20:49:49 +03:00
|
|
|
import Nri.Ui.Svg.V1 as Svg exposing (Svg)
|
2020-10-15 00:47:15 +03:00
|
|
|
import Nri.Ui.Text.V5 as Text
|
2019-10-24 20:49:49 +03:00
|
|
|
import Nri.Ui.UiIcon.V1 as UiIcon
|
2019-02-15 21:51:19 +03:00
|
|
|
|
|
|
|
|
|
|
|
{-| -}
|
|
|
|
type State
|
|
|
|
= State (Control Model)
|
|
|
|
|
|
|
|
|
|
|
|
{-| -}
|
2020-03-31 23:20:03 +03:00
|
|
|
example : Example State Msg
|
2020-03-31 22:43:32 +03:00
|
|
|
example =
|
2020-09-09 21:43:10 +03:00
|
|
|
{ name = "ClickableText"
|
|
|
|
, version = 3
|
2020-03-31 22:43:32 +03:00
|
|
|
, state = init
|
|
|
|
, update = update
|
2020-03-31 22:48:26 +03:00
|
|
|
, subscriptions = \_ -> Sub.none
|
2020-03-31 22:43:32 +03:00
|
|
|
, view = \state -> [ viewExamples state ]
|
|
|
|
, categories = [ Buttons ]
|
2020-06-20 00:45:32 +03:00
|
|
|
, keyboardSupport = []
|
2019-02-15 21:51:19 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
{-| -}
|
2019-10-24 20:49:49 +03:00
|
|
|
init : State
|
|
|
|
init =
|
2019-02-15 21:51:19 +03:00
|
|
|
Control.record Model
|
2019-02-16 01:33:26 +03:00
|
|
|
|> Control.field "label" (Control.string "Clickable Text")
|
2019-02-15 21:51:19 +03:00
|
|
|
|> Control.field "icon"
|
2019-03-28 22:37:44 +03:00
|
|
|
(Control.maybe True <|
|
2019-02-15 21:51:19 +03:00
|
|
|
Control.choice
|
2019-10-24 20:49:49 +03:00
|
|
|
[ ( "Preview", Control.value UiIcon.preview )
|
|
|
|
, ( "Performance", Control.value UiIcon.performance )
|
|
|
|
, ( "Edit", Control.value UiIcon.edit )
|
2019-02-15 21:51:19 +03:00
|
|
|
]
|
|
|
|
)
|
|
|
|
|> State
|
|
|
|
|
|
|
|
|
2020-03-31 22:43:32 +03:00
|
|
|
{-| -}
|
|
|
|
type Msg
|
|
|
|
= SetState State
|
|
|
|
| ShowItWorked String String
|
|
|
|
|
|
|
|
|
2019-02-15 21:51:19 +03:00
|
|
|
{-| -}
|
|
|
|
update : Msg -> State -> ( State, Cmd Msg )
|
|
|
|
update msg state =
|
|
|
|
case msg of
|
|
|
|
SetState newState ->
|
|
|
|
( newState, Cmd.none )
|
|
|
|
|
2020-03-31 22:43:32 +03:00
|
|
|
ShowItWorked group message ->
|
|
|
|
let
|
|
|
|
_ =
|
|
|
|
Debug.log group message
|
|
|
|
in
|
|
|
|
( state, Cmd.none )
|
|
|
|
|
2019-02-15 21:51:19 +03:00
|
|
|
|
|
|
|
|
|
|
|
-- INTERNAL
|
|
|
|
|
|
|
|
|
|
|
|
type alias Model =
|
|
|
|
{ label : String
|
2019-03-28 22:37:44 +03:00
|
|
|
, icon : Maybe Svg
|
2019-02-15 21:51:19 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-03-31 22:43:32 +03:00
|
|
|
viewExamples : State -> Html Msg
|
|
|
|
viewExamples (State control) =
|
2019-02-15 21:51:19 +03:00
|
|
|
let
|
|
|
|
model =
|
|
|
|
Control.currentValue control
|
|
|
|
in
|
2020-03-31 22:43:32 +03:00
|
|
|
[ Control.view (State >> SetState) control
|
2019-02-15 21:51:19 +03:00
|
|
|
|> fromUnstyled
|
2020-03-31 22:43:32 +03:00
|
|
|
, buttons model
|
2020-10-15 00:47:15 +03:00
|
|
|
, Text.smallBody []
|
2019-03-28 22:47:20 +03:00
|
|
|
[ text "Sometimes, we'll want our clickable links: "
|
2019-07-30 22:28:35 +03:00
|
|
|
, ClickableText.link model.label
|
|
|
|
[ ClickableText.small
|
|
|
|
, Maybe.map ClickableText.icon model.icon
|
|
|
|
|> Maybe.withDefault (ClickableText.custom [])
|
|
|
|
]
|
2019-03-28 22:47:20 +03:00
|
|
|
, text " and clickable buttons: "
|
2019-07-30 22:28:35 +03:00
|
|
|
, ClickableText.button model.label
|
|
|
|
[ ClickableText.small
|
2020-03-31 22:43:32 +03:00
|
|
|
, ClickableText.onClick (ShowItWorked "ClickableText" "in-line button")
|
2019-07-30 22:28:35 +03:00
|
|
|
, Maybe.map ClickableText.icon model.icon
|
|
|
|
|> Maybe.withDefault (ClickableText.custom [])
|
|
|
|
]
|
2019-03-28 22:47:20 +03:00
|
|
|
, text " to show up in-line."
|
|
|
|
]
|
2019-02-15 21:51:19 +03:00
|
|
|
]
|
|
|
|
|> div []
|
|
|
|
|
|
|
|
|
2019-07-30 22:13:09 +03:00
|
|
|
sizes : List ( ClickableText.Attribute msg, String )
|
2019-02-15 21:51:19 +03:00
|
|
|
sizes =
|
2019-07-30 22:13:09 +03:00
|
|
|
[ ( ClickableText.small, "small" )
|
|
|
|
, ( ClickableText.medium, "medium" )
|
|
|
|
, ( ClickableText.large, "large" )
|
2019-02-15 21:51:19 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
|
2020-03-31 22:43:32 +03:00
|
|
|
buttons : Model -> Html Msg
|
|
|
|
buttons model =
|
2019-02-15 21:51:19 +03:00
|
|
|
let
|
2019-07-30 22:28:35 +03:00
|
|
|
sizeRow label render =
|
|
|
|
row label (List.map render sizes)
|
2019-02-15 21:51:19 +03:00
|
|
|
in
|
2019-07-30 22:28:35 +03:00
|
|
|
table []
|
|
|
|
[ sizeRow "" (\( size, sizeLabel ) -> th [] [ text sizeLabel ])
|
|
|
|
, sizeRow ".link"
|
|
|
|
(\( size, sizeLabel ) ->
|
|
|
|
ClickableText.link model.label
|
|
|
|
[ size
|
|
|
|
, Maybe.map ClickableText.icon model.icon
|
|
|
|
|> Maybe.withDefault (ClickableText.custom [])
|
|
|
|
]
|
|
|
|
|> exampleCell
|
|
|
|
)
|
|
|
|
, sizeRow ".button"
|
|
|
|
(\( size, sizeLabel ) ->
|
|
|
|
ClickableText.button model.label
|
|
|
|
[ size
|
2020-03-31 22:43:32 +03:00
|
|
|
, ClickableText.onClick (ShowItWorked "ClickableText" sizeLabel)
|
2019-07-30 22:28:35 +03:00
|
|
|
, Maybe.map ClickableText.icon model.icon
|
|
|
|
|> Maybe.withDefault (ClickableText.custom [])
|
|
|
|
]
|
|
|
|
|> exampleCell
|
|
|
|
)
|
|
|
|
]
|
2019-03-28 22:47:20 +03:00
|
|
|
|
|
|
|
|
2019-07-30 22:28:35 +03:00
|
|
|
row : String -> List (Html msg) -> Html msg
|
|
|
|
row label tds =
|
|
|
|
tr [] (th [] [ td [] [ text label ] ] :: tds)
|
2019-07-30 22:13:09 +03:00
|
|
|
|
|
|
|
|
2019-07-30 22:28:35 +03:00
|
|
|
exampleCell : Html msg -> Html msg
|
|
|
|
exampleCell view =
|
|
|
|
td [ css [ verticalAlign middle, Css.width (Css.px 200) ] ] [ view ]
|