2021-11-05 20:35:58 +03:00
|
|
|
module Example exposing (Example, preview, view, wrapMsg, wrapState)
|
2020-03-31 23:20:03 +03:00
|
|
|
|
|
|
|
import Category exposing (Category)
|
2020-03-31 23:33:05 +03:00
|
|
|
import Css exposing (..)
|
2020-10-02 07:08:41 +03:00
|
|
|
import Css.Global exposing (a, descendants)
|
2020-03-31 23:20:03 +03:00
|
|
|
import Html.Styled as Html exposing (Html)
|
2020-03-31 23:33:05 +03:00
|
|
|
import Html.Styled.Attributes as Attributes
|
2021-11-05 21:13:28 +03:00
|
|
|
import Html.Styled.Events as Events
|
2020-10-16 17:24:38 +03:00
|
|
|
import Html.Styled.Lazy as Lazy
|
2020-06-20 00:45:32 +03:00
|
|
|
import KeyboardSupport exposing (KeyboardSupport)
|
2021-11-06 01:16:54 +03:00
|
|
|
import Nri.Ui.ClickableSvg.V2 as ClickableSvg
|
2021-11-05 20:42:52 +03:00
|
|
|
import Nri.Ui.ClickableText.V3 as ClickableText
|
2021-11-05 21:05:08 +03:00
|
|
|
import Nri.Ui.Colors.V1 as Colors exposing (..)
|
2021-11-05 20:35:58 +03:00
|
|
|
import Nri.Ui.Container.V2 as Container
|
2020-10-02 07:08:41 +03:00
|
|
|
import Nri.Ui.Fonts.V1 as Fonts
|
2021-11-05 20:42:52 +03:00
|
|
|
import Nri.Ui.Heading.V2 as Heading
|
2020-06-20 00:23:17 +03:00
|
|
|
import Nri.Ui.Html.Attributes.V2 as AttributeExtras exposing (targetBlank)
|
2021-11-06 01:16:54 +03:00
|
|
|
import Nri.Ui.UiIcon.V1 as UiIcon
|
2021-11-06 01:04:14 +03:00
|
|
|
import Routes exposing (Route)
|
2020-03-31 23:20:03 +03:00
|
|
|
|
|
|
|
|
|
|
|
type alias Example state msg =
|
|
|
|
{ name : String
|
2020-09-09 21:43:10 +03:00
|
|
|
, version : Int
|
2020-03-31 23:20:03 +03:00
|
|
|
, state : state
|
|
|
|
, update : msg -> state -> ( state, Cmd msg )
|
|
|
|
, subscriptions : state -> Sub msg
|
2021-11-05 21:19:08 +03:00
|
|
|
, preview : List (Html Never)
|
2020-03-31 23:20:03 +03:00
|
|
|
, view : state -> List (Html msg)
|
|
|
|
, categories : List Category
|
2020-06-20 00:45:32 +03:00
|
|
|
, keyboardSupport : List KeyboardSupport
|
2020-03-31 23:20:03 +03:00
|
|
|
}
|
2020-03-31 23:33:05 +03:00
|
|
|
|
|
|
|
|
2021-11-05 20:35:58 +03:00
|
|
|
fullName : Example state msg -> String
|
|
|
|
fullName example =
|
|
|
|
"Nri.Ui." ++ example.name ++ ".V" ++ String.fromInt example.version
|
|
|
|
|
|
|
|
|
2020-04-01 02:30:18 +03:00
|
|
|
wrapMsg :
|
|
|
|
(msg -> msg2)
|
|
|
|
-> (msg2 -> Maybe msg)
|
2020-04-01 00:39:34 +03:00
|
|
|
-> Example state msg
|
2020-04-01 02:30:18 +03:00
|
|
|
-> Example state msg2
|
|
|
|
wrapMsg wrapMsg_ unwrapMsg example =
|
2020-04-01 00:39:34 +03:00
|
|
|
{ name = example.name
|
2020-09-09 21:43:10 +03:00
|
|
|
, version = example.version
|
2020-04-01 02:30:18 +03:00
|
|
|
, state = example.state
|
2020-04-01 00:39:34 +03:00
|
|
|
, update =
|
2020-04-01 02:30:18 +03:00
|
|
|
\msg2 state ->
|
|
|
|
case unwrapMsg msg2 of
|
|
|
|
Just msg ->
|
2020-04-01 00:39:34 +03:00
|
|
|
example.update msg state
|
2020-04-01 02:30:18 +03:00
|
|
|
|> Tuple.mapSecond (Cmd.map wrapMsg_)
|
2020-04-01 01:16:10 +03:00
|
|
|
|
|
|
|
Nothing ->
|
2020-04-01 02:30:18 +03:00
|
|
|
( state, Cmd.none )
|
|
|
|
, subscriptions = \state -> Sub.map wrapMsg_ (example.subscriptions state)
|
2021-11-05 21:48:09 +03:00
|
|
|
, preview = example.preview
|
2020-04-01 02:30:18 +03:00
|
|
|
, view = \state -> List.map (Html.map wrapMsg_) (example.view state)
|
|
|
|
, categories = example.categories
|
2020-06-20 00:45:32 +03:00
|
|
|
, keyboardSupport = example.keyboardSupport
|
2020-04-01 02:30:18 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
wrapState :
|
|
|
|
(state -> state2)
|
|
|
|
-> (state2 -> Maybe state)
|
|
|
|
-> Example state msg
|
|
|
|
-> Example state2 msg
|
|
|
|
wrapState wrapState_ unwrapState example =
|
|
|
|
{ name = example.name
|
2020-09-09 21:43:10 +03:00
|
|
|
, version = example.version
|
2020-04-01 02:30:18 +03:00
|
|
|
, state = wrapState_ example.state
|
|
|
|
, update =
|
|
|
|
\msg state2 ->
|
2020-04-01 01:16:10 +03:00
|
|
|
case unwrapState state2 of
|
|
|
|
Just state ->
|
2020-04-01 02:30:18 +03:00
|
|
|
example.update msg state
|
|
|
|
|> Tuple.mapFirst wrapState_
|
2020-04-01 01:16:10 +03:00
|
|
|
|
2020-04-01 00:39:34 +03:00
|
|
|
Nothing ->
|
2020-04-01 02:30:18 +03:00
|
|
|
( state2, Cmd.none )
|
|
|
|
, subscriptions =
|
|
|
|
unwrapState
|
|
|
|
>> Maybe.map example.subscriptions
|
|
|
|
>> Maybe.withDefault Sub.none
|
2021-11-05 21:48:09 +03:00
|
|
|
, preview = example.preview
|
2020-04-01 02:30:18 +03:00
|
|
|
, view =
|
|
|
|
unwrapState
|
|
|
|
>> Maybe.map example.view
|
|
|
|
>> Maybe.withDefault []
|
2020-04-01 00:39:34 +03:00
|
|
|
, categories = example.categories
|
2020-06-20 00:45:32 +03:00
|
|
|
, keyboardSupport = example.keyboardSupport
|
2020-04-01 00:39:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-11-06 01:04:14 +03:00
|
|
|
preview : (Route -> msg2) -> Example state msg -> Html msg2
|
2021-11-05 21:13:28 +03:00
|
|
|
preview navigate =
|
|
|
|
Lazy.lazy (preview_ navigate)
|
2021-11-05 20:35:58 +03:00
|
|
|
|
|
|
|
|
2021-11-06 01:04:14 +03:00
|
|
|
preview_ : (Route -> msg2) -> Example state msg -> Html msg2
|
2021-11-05 21:13:28 +03:00
|
|
|
preview_ navigate example =
|
2021-11-05 20:35:58 +03:00
|
|
|
Container.view
|
2021-11-05 21:05:08 +03:00
|
|
|
[ Container.gray
|
|
|
|
, Container.css
|
|
|
|
[ Css.flexBasis (Css.px 150)
|
|
|
|
, Css.hover
|
|
|
|
[ Css.backgroundColor Colors.glacier
|
|
|
|
, Css.cursor Css.pointer
|
|
|
|
]
|
|
|
|
]
|
2021-11-06 01:04:14 +03:00
|
|
|
, Container.custom [ Events.onClick (navigate (Routes.Doodad example.name)) ]
|
2021-11-05 21:05:08 +03:00
|
|
|
, Container.html
|
2021-11-05 21:19:08 +03:00
|
|
|
(ClickableText.link example.name
|
2021-11-05 21:05:08 +03:00
|
|
|
[ ClickableText.href (exampleHref example)
|
2021-11-05 21:59:39 +03:00
|
|
|
, ClickableText.css [ Css.marginBottom (Css.px 10) ]
|
2021-11-05 21:05:08 +03:00
|
|
|
]
|
2021-11-05 22:04:46 +03:00
|
|
|
:: [ Html.div
|
|
|
|
[ Attributes.css
|
|
|
|
[ Css.displayFlex
|
|
|
|
, Css.flexDirection Css.column
|
|
|
|
]
|
|
|
|
]
|
|
|
|
(List.map (Html.map never) example.preview)
|
|
|
|
]
|
2021-11-05 21:19:08 +03:00
|
|
|
)
|
2021-11-05 20:35:58 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
|
2021-11-06 01:16:54 +03:00
|
|
|
view : Maybe Route -> Example state msg -> Html msg
|
2021-11-06 01:24:00 +03:00
|
|
|
view previousRoute example =
|
|
|
|
Container.view
|
|
|
|
[ Container.pillow
|
|
|
|
, Container.css
|
|
|
|
[ Css.position Css.relative
|
|
|
|
, Css.margin (Css.px 10)
|
|
|
|
, Css.minHeight (Css.calc (Css.vh 100) Css.minus (Css.px 20))
|
|
|
|
, Css.boxSizing Css.borderBox
|
|
|
|
]
|
|
|
|
, Container.html
|
|
|
|
[ Lazy.lazy view_ example
|
|
|
|
, ClickableSvg.link ("Close " ++ example.name ++ " example")
|
|
|
|
UiIcon.x
|
|
|
|
[ ClickableSvg.href
|
|
|
|
(Maybe.withDefault Routes.All previousRoute
|
|
|
|
|> Routes.toString
|
|
|
|
)
|
|
|
|
, ClickableSvg.small
|
|
|
|
, ClickableSvg.css
|
|
|
|
[ Css.position Css.absolute
|
|
|
|
, Css.top (Css.px 15)
|
|
|
|
, Css.right (Css.px 15)
|
|
|
|
]
|
|
|
|
]
|
|
|
|
]
|
|
|
|
]
|
2020-10-16 17:24:38 +03:00
|
|
|
|
|
|
|
|
2021-11-06 01:24:00 +03:00
|
|
|
view_ : Example state msg -> Html msg
|
|
|
|
view_ example =
|
2020-03-31 23:33:05 +03:00
|
|
|
Html.div
|
|
|
|
[ -- this class makes the axe accessibility checking output easier to parse
|
|
|
|
String.replace "." "-" example.name
|
|
|
|
|> (++) "module-example__"
|
|
|
|
|> Attributes.class
|
2021-11-06 01:16:54 +03:00
|
|
|
, Attributes.id (String.replace "." "-" example.name)
|
2020-03-31 23:33:05 +03:00
|
|
|
]
|
|
|
|
[ Html.div
|
|
|
|
[ Attributes.css
|
|
|
|
[ displayFlex
|
|
|
|
, alignItems center
|
|
|
|
, justifyContent flexStart
|
2020-04-01 00:39:34 +03:00
|
|
|
, flexWrap Css.wrap
|
2020-10-02 07:08:41 +03:00
|
|
|
, Fonts.baseFont
|
|
|
|
, descendants [ Css.Global.a [ textDecoration none ] ]
|
2020-03-31 23:33:05 +03:00
|
|
|
]
|
|
|
|
]
|
2021-11-05 20:42:52 +03:00
|
|
|
[ exampleLink example
|
|
|
|
, docsLink example
|
|
|
|
, srcLink example
|
2020-03-31 23:33:05 +03:00
|
|
|
]
|
2020-06-20 00:45:32 +03:00
|
|
|
, KeyboardSupport.view example.keyboardSupport
|
2021-11-06 01:16:54 +03:00
|
|
|
, Html.div [] (example.view example.state)
|
2020-03-31 23:33:05 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
|
2021-11-05 21:05:08 +03:00
|
|
|
exampleHref : Example state msg -> String
|
|
|
|
exampleHref example =
|
2021-11-06 01:04:14 +03:00
|
|
|
Routes.toString (Routes.Doodad example.name)
|
2021-11-05 21:05:08 +03:00
|
|
|
|
|
|
|
|
2021-11-05 20:42:52 +03:00
|
|
|
exampleLink : Example state msg -> Html msg
|
|
|
|
exampleLink example =
|
|
|
|
Heading.h2 []
|
|
|
|
[ ClickableText.link (fullName example)
|
2021-11-05 21:05:08 +03:00
|
|
|
[ ClickableText.href (exampleHref example)
|
2021-11-05 20:42:52 +03:00
|
|
|
, ClickableText.large
|
|
|
|
, ClickableText.custom
|
|
|
|
[ -- this data attribute is used to name the Percy screenshots
|
|
|
|
String.replace "." "-" example.name
|
|
|
|
|> Attributes.attribute "data-percy-name"
|
|
|
|
]
|
2021-11-05 20:35:58 +03:00
|
|
|
]
|
|
|
|
]
|
|
|
|
|
|
|
|
|
2021-11-05 20:42:52 +03:00
|
|
|
docsLink : Example state msg -> Html msg
|
|
|
|
docsLink example =
|
|
|
|
let
|
|
|
|
link =
|
|
|
|
"https://package.elm-lang.org/packages/NoRedInk/noredink-ui/latest/"
|
|
|
|
++ String.replace "." "-" (fullName example)
|
|
|
|
in
|
|
|
|
ClickableText.link "Docs"
|
|
|
|
[ ClickableText.linkExternal link
|
|
|
|
, ClickableText.css [ Css.marginLeft (Css.px 20) ]
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
srcLink : Example state msg -> Html msg
|
|
|
|
srcLink example =
|
|
|
|
let
|
|
|
|
link =
|
|
|
|
String.replace "." "/" (fullName example)
|
|
|
|
++ ".elm"
|
|
|
|
|> (++) "https://github.com/NoRedInk/noredink-ui/blob/master/src/"
|
|
|
|
in
|
|
|
|
ClickableText.link "Source"
|
|
|
|
[ ClickableText.linkExternal link
|
|
|
|
, ClickableText.css [ Css.marginLeft (Css.px 20) ]
|
2020-03-31 23:33:05 +03:00
|
|
|
]
|