2020-04-01 02:30:18 +03:00
|
|
|
module Example exposing (Example, view, wrapMsg, wrapState)
|
2020-03-31 23:20:03 +03:00
|
|
|
|
2020-06-19 23:41:28 +03:00
|
|
|
import AtomicDesignType exposing (AtomicDesignType)
|
2020-03-31 23:20:03 +03:00
|
|
|
import Category exposing (Category)
|
2020-03-31 23:33:05 +03:00
|
|
|
import Css exposing (..)
|
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
|
2020-06-20 00:35:53 +03:00
|
|
|
import KeyboardShortcuts exposing (KeyboardShortcut)
|
2020-03-31 23:33:05 +03:00
|
|
|
import Nri.Ui.Colors.V1 exposing (..)
|
2020-06-20 00:23:17 +03:00
|
|
|
import Nri.Ui.Html.Attributes.V2 as AttributeExtras exposing (targetBlank)
|
2020-03-31 23:20:03 +03:00
|
|
|
|
|
|
|
|
|
|
|
type alias Example state msg =
|
|
|
|
{ name : String
|
|
|
|
, state : state
|
|
|
|
, update : msg -> state -> ( state, Cmd msg )
|
|
|
|
, subscriptions : state -> Sub msg
|
|
|
|
, view : state -> List (Html msg)
|
|
|
|
, categories : List Category
|
2020-06-19 23:41:28 +03:00
|
|
|
, atomicDesignType : AtomicDesignType
|
2020-06-20 00:35:53 +03:00
|
|
|
, keyboardShortcuts : List KeyboardShortcut
|
2020-03-31 23:20:03 +03:00
|
|
|
}
|
2020-03-31 23:33:05 +03:00
|
|
|
|
|
|
|
|
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-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)
|
|
|
|
, view = \state -> List.map (Html.map wrapMsg_) (example.view state)
|
|
|
|
, categories = example.categories
|
2020-06-19 23:41:28 +03:00
|
|
|
, atomicDesignType = example.atomicDesignType
|
2020-06-20 00:35:53 +03:00
|
|
|
, keyboardShortcuts = example.keyboardShortcuts
|
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
|
|
|
|
, 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
|
|
|
|
, view =
|
|
|
|
unwrapState
|
|
|
|
>> Maybe.map example.view
|
|
|
|
>> Maybe.withDefault []
|
2020-04-01 00:39:34 +03:00
|
|
|
, categories = example.categories
|
2020-06-19 23:41:28 +03:00
|
|
|
, atomicDesignType = example.atomicDesignType
|
2020-06-20 00:35:53 +03:00
|
|
|
, keyboardShortcuts = example.keyboardShortcuts
|
2020-04-01 00:39:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-03-31 23:33:05 +03:00
|
|
|
view : Bool -> Example state msg -> Html msg
|
|
|
|
view showFocusLink example =
|
|
|
|
Html.div
|
|
|
|
[ -- this class makes the axe accessibility checking output easier to parse
|
|
|
|
String.replace "." "-" example.name
|
|
|
|
|> (++) "module-example__"
|
|
|
|
|> Attributes.class
|
|
|
|
]
|
|
|
|
[ Html.div
|
|
|
|
[ Attributes.css
|
|
|
|
[ displayFlex
|
|
|
|
, alignItems center
|
|
|
|
, justifyContent flexStart
|
2020-04-01 00:39:34 +03:00
|
|
|
, flexWrap Css.wrap
|
2020-03-31 23:33:05 +03:00
|
|
|
, padding (px 4)
|
|
|
|
, backgroundColor glacier
|
|
|
|
]
|
|
|
|
]
|
|
|
|
[ Html.styled Html.h2
|
|
|
|
[ color gray20
|
|
|
|
, fontFamilies [ qt "Source Code Pro", "Consolas", "Courier", "monospace" ]
|
|
|
|
, fontSize (px 20)
|
|
|
|
, marginTop zero
|
|
|
|
, marginBottom zero
|
|
|
|
]
|
|
|
|
[]
|
2020-06-20 00:23:17 +03:00
|
|
|
[ Html.a [ Attributes.href ("#/doodad/" ++ example.name) ] [ Html.text example.name ] ]
|
2020-03-31 23:33:05 +03:00
|
|
|
, String.replace "." "-" example.name
|
|
|
|
|> (++) "https://package.elm-lang.org/packages/NoRedInk/noredink-ui/latest/"
|
2020-06-20 00:23:17 +03:00
|
|
|
|> viewLink "Docs"
|
|
|
|
, String.replace "." "/" example.name
|
|
|
|
++ ".elm"
|
|
|
|
|> (++) "https://github.com/NoRedInk/noredink-ui/blob/master/src/"
|
|
|
|
|> viewLink "Source"
|
2020-03-31 23:33:05 +03:00
|
|
|
]
|
2020-06-20 00:35:53 +03:00
|
|
|
, KeyboardShortcuts.view example.keyboardShortcuts
|
2020-03-31 23:33:05 +03:00
|
|
|
, Html.div [ Attributes.css [ padding2 (px 20) zero ] ] (example.view example.state)
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
viewLink : String -> String -> Html msg
|
|
|
|
viewLink text href =
|
|
|
|
Html.a
|
2020-06-20 00:23:17 +03:00
|
|
|
([ Attributes.href href
|
|
|
|
, Attributes.css [ Css.display Css.block, marginLeft (px 20) ]
|
|
|
|
]
|
|
|
|
++ targetBlank
|
|
|
|
)
|
2020-03-31 23:33:05 +03:00
|
|
|
[ Html.text text
|
|
|
|
]
|