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

323 lines
10 KiB
Elm
Raw Normal View History

2020-03-31 22:43:32 +03:00
module Examples.ClickableSvg exposing (Msg, State, example)
2020-03-09 19:38:16 +03:00
{-|
2020-03-31 22:43:32 +03:00
@docs Msg, State, example
2020-03-09 19:38:16 +03:00
-}
2020-06-19 23:41:28 +03:00
import AtomicDesignType exposing (AtomicDesignType(..))
import Category exposing (Category(..))
2020-03-09 19:38:16 +03:00
import Color exposing (Color)
import Css
2020-09-28 21:28:24 +03:00
import Debug.Control as Control exposing (Control)
2020-03-31 23:20:03 +03:00
import Example exposing (Example)
2020-03-09 19:38:16 +03:00
import Examples.IconExamples as IconExamples
import Html.Styled as Html exposing (Html)
2020-03-09 19:38:16 +03:00
import Html.Styled.Attributes as Attributes
import Html.Styled.Events as Events
import KeyboardSupport exposing (Direction(..), Key(..))
2020-03-09 19:38:16 +03:00
import Nri.Ui.ClickableSvg.V1 as ClickableSvg
import Nri.Ui.Colors.Extra exposing (fromCssColor, toCssColor)
import Nri.Ui.Colors.V1 as Colors
import Nri.Ui.Heading.V2 as Heading
2020-04-24 23:11:09 +03:00
import Nri.Ui.Select.V7 as Select
2020-09-28 21:44:00 +03:00
import Nri.Ui.Svg.V1 as Svg exposing (Svg)
import Nri.Ui.Tooltip.V2 as Tooltip
2020-03-09 19:38:16 +03:00
import Nri.Ui.UiIcon.V1 as UiIcon
{-| -}
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 = "ClickableSvg"
, version = 1
2020-03-31 22:43:32 +03:00
, categories = [ Buttons, Icons ]
2020-06-20 00:16:10 +03:00
, atomicDesignType = Molecule
, keyboardSupport = []
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 ->
2020-09-28 21:28:24 +03:00
let
( icon, attributes ) =
applySettings state.settings
2020-09-28 21:28:24 +03:00
in
[ Html.fromUnstyled (Control.view SetControls state.settings)
, viewExampleTable icon attributes
, viewExample
"""
ClickableSvg.button "Go to tutorial"
UiIcon.footsteps
[ ClickableSvg.width (Css.px 30)
, ClickableSvg.height (Css.px 30)
, ClickableSvg.onClick (ShowItWorked "You clicked the tutorials button!")
, ClickableSvg.custom [ Attributes.id "clickable-svg-customized-example-id" ]
, ClickableSvg.css [ Css.border3 (Css.px 1) Css.dashed Colors.azure ]
]
"""
<|
ClickableSvg.button "Go to tutorial"
2020-03-31 22:43:32 +03:00
UiIcon.footsteps
[ ClickableSvg.width (Css.px 30)
, ClickableSvg.height (Css.px 30)
2020-03-31 22:43:32 +03:00
, ClickableSvg.onClick (ShowItWorked "You clicked the tutorials button!")
, ClickableSvg.custom [ Attributes.id "clickable-svg-customized-example-id" ]
, ClickableSvg.css [ Css.border3 (Css.px 1) Css.dashed Colors.azure ]
2020-03-31 22:43:32 +03:00
]
2020-06-09 23:47:53 +03:00
, viewExample
"""
Tooltip.view
{ trigger =
\\attrs ->
ClickableSvg.button "Preview"
UiIcon.preview
[ ClickableSvg.width (Css.px 20)
, ClickableSvg.height (Css.px 20)
, ClickableSvg.onClick (ShowItWorked "You clicked the preview button!")
, ClickableSvg.withBorder
, ClickableSvg.custom attrs
]
, id = "preview-tooltip"
}
[ Tooltip.plaintext "Preview"
, Tooltip.primaryLabel
, Tooltip.onHover SetPreviewTooltip
, Tooltip.open state.tooltipPreview
, Tooltip.smallPadding
, Tooltip.fitToContent
, Tooltip.alignEnd (Css.px 28)
2020-06-09 23:47:53 +03:00
]
"""
<|
Tooltip.view
{ trigger =
\attrs ->
ClickableSvg.button "Preview"
UiIcon.preview
[ ClickableSvg.width (Css.px 20)
, ClickableSvg.height (Css.px 20)
, ClickableSvg.onClick (ShowItWorked "You clicked the preview button!")
, ClickableSvg.withBorder
, ClickableSvg.custom attrs
]
, id = "preview-tooltip"
}
[ Tooltip.plaintext "Preview"
, Tooltip.primaryLabel
, Tooltip.onHover SetPreviewTooltip
, Tooltip.open state.tooltipPreview
, Tooltip.smallPadding
, Tooltip.fitToContent
, Tooltip.alignEnd (Css.px 28)
2020-06-09 23:47:53 +03:00
]
, viewExample
"""
Tooltip.view
{ trigger =
\\attrs ->
ClickableSvg.button "Share"
UiIcon.share
[ ClickableSvg.width (Css.px 20)
, ClickableSvg.height (Css.px 20)
, ClickableSvg.onClick (ShowItWorked "You clicked the share button!")
, ClickableSvg.custom attrs
]
, id = "share-tooltip"
}
[ Tooltip.plaintext "Share"
, Tooltip.primaryLabel
, Tooltip.onHover SetShareTooltip
, Tooltip.open state.tooltipShareTo
, Tooltip.smallPadding
, Tooltip.fitToContent
, Tooltip.onRight
2020-06-09 23:47:53 +03:00
]
"""
<|
Tooltip.view
{ trigger =
\attrs ->
ClickableSvg.button "Share"
UiIcon.share
[ ClickableSvg.width (Css.px 20)
, ClickableSvg.height (Css.px 20)
, ClickableSvg.onClick (ShowItWorked "You clicked the share button!")
, ClickableSvg.custom attrs
]
, id = "share-tooltip"
}
[ Tooltip.plaintext "Share"
, Tooltip.primaryLabel
, Tooltip.onHover SetShareTooltip
, Tooltip.open state.tooltipShareTo
, Tooltip.smallPadding
, Tooltip.fitToContent
, Tooltip.onRight
2020-06-09 23:47:53 +03:00
]
2020-03-09 21:05:28 +03:00
]
2020-03-09 19:38:16 +03:00
}
viewExampleTable : Svg -> List (ClickableSvg.Attribute Msg) -> Html Msg
viewExampleTable icon attributes =
Html.table []
[ Html.thead []
[ Html.tr []
[ Html.th [] [ Html.text "button" ]
, Html.th [] [ Html.text "link" ]
]
]
, Html.tbody []
[ Html.tr []
[ Html.td []
[ ClickableSvg.button "Button example"
icon
(ClickableSvg.onClick (ShowItWorked "You clicked the back button!")
:: attributes
)
]
, Html.td []
[ ClickableSvg.link "Link example"
icon
(ClickableSvg.linkSpa "some_link" :: attributes)
]
]
]
]
viewExample : String -> Html.Html msg -> Html.Html msg
viewExample code html =
Html.div
[ Attributes.css [ Css.displayFlex, Css.alignItems Css.center ] ]
[ html
, viewCode code
]
2020-03-09 20:55:43 +03:00
viewCode : String -> Html.Html msg
viewCode renderStrategy =
2020-03-09 20:50:00 +03:00
Html.code
2020-03-09 19:38:16 +03:00
[ Attributes.css
[ Css.width (Css.px 400)
, Css.marginLeft (Css.px 20)
2020-03-09 19:38:16 +03:00
]
]
2020-03-09 20:55:43 +03:00
[ Html.pre [] [ Html.text renderStrategy ] ]
2020-03-09 19:38:16 +03:00
{-| -}
type alias State =
2020-06-09 23:47:53 +03:00
{ tooltipPreview : Bool
, tooltipShareTo : Bool
, settings : Control (Settings Msg)
2020-06-09 23:47:53 +03:00
}
2020-03-09 19:38:16 +03:00
{-| -}
init : State
init =
2020-06-09 23:47:53 +03:00
{ tooltipPreview = False
, tooltipShareTo = False
2020-09-28 21:28:24 +03:00
, settings = initSettings
2020-06-09 23:47:53 +03:00
}
2020-03-09 19:38:16 +03:00
{-| -}
type Msg
2020-03-31 22:43:32 +03:00
= ShowItWorked String
2020-06-09 23:47:53 +03:00
| SetPreviewTooltip Bool
| SetShareTooltip Bool
| SetControls (Control (Settings Msg))
2020-03-09 19:38:16 +03:00
{-| -}
update : Msg -> State -> ( State, Cmd Msg )
update msg state =
2020-03-31 22:43:32 +03:00
case msg of
ShowItWorked message ->
let
_ =
Debug.log "ClickableSvg" message
in
( state, Cmd.none )
2020-06-09 23:47:53 +03:00
SetPreviewTooltip bool ->
( { state | tooltipPreview = bool }, Cmd.none )
SetShareTooltip bool ->
( { state | tooltipShareTo = bool }, Cmd.none )
2020-09-28 21:28:24 +03:00
SetControls settings ->
( { state | settings = settings }, Cmd.none )
type alias Settings msg =
{ icon : Svg
, disabled : ClickableSvg.Attribute msg
, withBorder : ClickableSvg.Attribute msg
, theme : ClickableSvg.Attribute msg
, width : ClickableSvg.Attribute msg
, height : ClickableSvg.Attribute msg
2020-09-28 21:44:00 +03:00
}
2020-09-28 21:28:24 +03:00
applySettings : Control (Settings msg) -> ( Svg, List (ClickableSvg.Attribute msg) )
applySettings settings =
let
{ icon, disabled, withBorder, theme, width, height } =
Control.currentValue settings
in
( icon, [ disabled, withBorder, theme, width, height ] )
initSettings : Control (Settings msg)
2020-09-28 21:28:24 +03:00
initSettings =
Control.record Settings
|> Control.field "icon"
(Control.choice
[ ( "arrowLeft", Control.value UiIcon.arrowLeft )
, ( "unarchive", Control.value UiIcon.unarchive )
, ( "share", Control.value UiIcon.share )
, ( "preview", Control.value UiIcon.preview )
, ( "skip", Control.value UiIcon.skip )
, ( "copyToClipboard", Control.value UiIcon.copyToClipboard )
, ( "gift", Control.value UiIcon.gift )
, ( "home", Control.value UiIcon.home )
, ( "library", Control.value UiIcon.library )
, ( "searchInCicle", Control.value UiIcon.searchInCicle )
]
)
2020-09-28 21:44:00 +03:00
|> Control.field "disabled"
(Control.map ClickableSvg.disabled (Control.bool False))
|> Control.field "withBorder"
(Control.map
(\hasBorder ->
if hasBorder then
ClickableSvg.withBorder
else
ClickableSvg.css []
)
(Control.bool False)
)
|> Control.field "theme"
(Control.choice
[ ( "primary", Control.value ClickableSvg.primary )
, ( "secondary", Control.value ClickableSvg.secondary )
, ( "danger", Control.value ClickableSvg.danger )
]
)
|> Control.field "width"
(Control.map (Css.px >> ClickableSvg.width) (controlNumber 30))
|> Control.field "height"
(Control.map (Css.px >> ClickableSvg.height) (controlNumber 30))
2020-09-28 21:44:00 +03:00
controlNumber : Float -> Control Float
controlNumber default =
Control.map (String.toFloat >> Maybe.withDefault default)
(Control.string (String.fromFloat default))