2022-03-15 21:06:13 +03:00
|
|
|
module Main exposing (main)
|
2018-02-13 00:32:38 +03:00
|
|
|
|
2021-11-05 21:26:43 +03:00
|
|
|
import Accessibility.Styled as Html exposing (Html)
|
2020-03-24 03:25:24 +03:00
|
|
|
import Browser exposing (Document, UrlRequest(..))
|
2020-03-24 22:26:41 +03:00
|
|
|
import Browser.Dom
|
2018-12-05 01:36:15 +03:00
|
|
|
import Browser.Navigation exposing (Key)
|
2022-03-15 21:06:13 +03:00
|
|
|
import Category
|
2020-03-24 03:25:24 +03:00
|
|
|
import Css exposing (..)
|
2021-10-05 01:40:18 +03:00
|
|
|
import Css.Media exposing (withMedia)
|
2020-04-01 02:09:09 +03:00
|
|
|
import Dict exposing (Dict)
|
|
|
|
import Example exposing (Example)
|
|
|
|
import Examples
|
2022-03-15 21:06:13 +03:00
|
|
|
import Html.Styled.Attributes exposing (..)
|
2020-11-06 21:51:33 +03:00
|
|
|
import Nri.Ui.CssVendorPrefix.V1 as VendorPrefixed
|
2020-03-24 03:25:24 +03:00
|
|
|
import Nri.Ui.Heading.V2 as Heading
|
2021-10-05 01:40:18 +03:00
|
|
|
import Nri.Ui.MediaQuery.V1 exposing (mobile, notMobile)
|
2021-11-06 01:16:54 +03:00
|
|
|
import Nri.Ui.Page.V3 as Page
|
2022-03-07 23:26:56 +03:00
|
|
|
import Nri.Ui.SideNav.V2 as SideNav
|
2022-01-18 21:36:20 +03:00
|
|
|
import Nri.Ui.Sprite.V1 as Sprite
|
2022-03-15 21:06:13 +03:00
|
|
|
import Routes exposing (Route)
|
|
|
|
import Sort.Set as Set
|
2020-03-24 22:26:41 +03:00
|
|
|
import Task
|
2018-12-05 01:36:15 +03:00
|
|
|
import Url exposing (Url)
|
2018-02-13 00:32:38 +03:00
|
|
|
|
|
|
|
|
2018-12-05 01:36:15 +03:00
|
|
|
main : Program () Model Msg
|
2018-02-13 00:32:38 +03:00
|
|
|
main =
|
2018-12-05 01:36:15 +03:00
|
|
|
Browser.application
|
2018-02-13 00:32:38 +03:00
|
|
|
{ init = init
|
|
|
|
, update = update
|
|
|
|
, subscriptions = subscriptions
|
2018-12-05 01:36:15 +03:00
|
|
|
, view = view
|
|
|
|
, onUrlRequest = OnUrlRequest
|
|
|
|
, onUrlChange = OnUrlChange
|
2018-02-13 00:32:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-03-24 03:25:24 +03:00
|
|
|
type alias Model =
|
|
|
|
{ -- Global UI
|
|
|
|
route : Route
|
2021-11-06 01:04:14 +03:00
|
|
|
, previousRoute : Maybe Route
|
2020-04-01 02:09:09 +03:00
|
|
|
, moduleStates : Dict String (Example Examples.State Examples.Msg)
|
2020-03-24 03:25:24 +03:00
|
|
|
, navigationKey : Key
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-12-05 01:36:15 +03:00
|
|
|
init : () -> Url -> Key -> ( Model, Cmd Msg )
|
2018-12-05 21:56:04 +03:00
|
|
|
init () url key =
|
2018-12-05 01:36:15 +03:00
|
|
|
( { route = Routes.fromLocation url
|
2021-11-06 01:04:14 +03:00
|
|
|
, previousRoute = Nothing
|
2020-04-01 02:09:09 +03:00
|
|
|
, moduleStates =
|
|
|
|
Dict.fromList
|
|
|
|
(List.map (\example -> ( example.name, example )) Examples.all)
|
2018-12-05 21:56:04 +03:00
|
|
|
, navigationKey = key
|
2018-02-13 00:32:38 +03:00
|
|
|
}
|
|
|
|
, Cmd.none
|
|
|
|
)
|
2020-03-24 03:25:24 +03:00
|
|
|
|
|
|
|
|
|
|
|
type Msg
|
2020-04-01 02:09:09 +03:00
|
|
|
= UpdateModuleStates String Examples.Msg
|
2020-03-24 03:25:24 +03:00
|
|
|
| OnUrlRequest Browser.UrlRequest
|
|
|
|
| OnUrlChange Url
|
2021-11-06 01:04:14 +03:00
|
|
|
| ChangeRoute Route
|
2020-03-24 22:26:41 +03:00
|
|
|
| SkipToMainContent
|
2020-03-24 03:25:24 +03:00
|
|
|
| NoOp
|
|
|
|
|
|
|
|
|
|
|
|
update : Msg -> Model -> ( Model, Cmd Msg )
|
|
|
|
update action model =
|
|
|
|
case action of
|
2020-04-01 02:09:09 +03:00
|
|
|
UpdateModuleStates key exampleMsg ->
|
|
|
|
case Dict.get key model.moduleStates of
|
|
|
|
Just example ->
|
|
|
|
example.update exampleMsg example.state
|
|
|
|
|> Tuple.mapFirst
|
|
|
|
(\newState ->
|
|
|
|
{ model
|
|
|
|
| moduleStates =
|
|
|
|
Dict.insert key
|
|
|
|
{ example | state = newState }
|
|
|
|
model.moduleStates
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|> Tuple.mapSecond (Cmd.map (UpdateModuleStates key))
|
|
|
|
|
|
|
|
Nothing ->
|
|
|
|
( model, Cmd.none )
|
2020-03-24 03:25:24 +03:00
|
|
|
|
|
|
|
OnUrlRequest request ->
|
|
|
|
case request of
|
|
|
|
Internal loc ->
|
|
|
|
( model, Browser.Navigation.pushUrl model.navigationKey (Url.toString loc) )
|
|
|
|
|
|
|
|
External loc ->
|
|
|
|
( model, Browser.Navigation.load loc )
|
|
|
|
|
|
|
|
OnUrlChange route ->
|
2021-11-06 01:04:14 +03:00
|
|
|
( { model
|
|
|
|
| route = Routes.fromLocation route
|
|
|
|
, previousRoute = Just model.route
|
|
|
|
}
|
|
|
|
, Cmd.none
|
|
|
|
)
|
2020-03-24 03:25:24 +03:00
|
|
|
|
2021-11-06 01:04:14 +03:00
|
|
|
ChangeRoute route ->
|
2021-11-06 01:16:54 +03:00
|
|
|
( model
|
|
|
|
, Browser.Navigation.pushUrl model.navigationKey
|
|
|
|
(Routes.toString route)
|
|
|
|
)
|
2021-11-05 21:13:28 +03:00
|
|
|
|
2020-03-24 22:26:41 +03:00
|
|
|
SkipToMainContent ->
|
|
|
|
( model
|
|
|
|
, Task.attempt (\_ -> NoOp) (Browser.Dom.focus "maincontent")
|
|
|
|
)
|
|
|
|
|
2020-03-24 03:25:24 +03:00
|
|
|
NoOp ->
|
|
|
|
( model, Cmd.none )
|
|
|
|
|
|
|
|
|
|
|
|
subscriptions : Model -> Sub Msg
|
|
|
|
subscriptions model =
|
2020-04-01 02:09:09 +03:00
|
|
|
Dict.values model.moduleStates
|
|
|
|
|> List.map (\example -> Sub.map (UpdateModuleStates example.name) (example.subscriptions example.state))
|
|
|
|
|> Sub.batch
|
2020-03-24 03:25:24 +03:00
|
|
|
|
|
|
|
|
|
|
|
view : Model -> Document Msg
|
|
|
|
view model =
|
|
|
|
{ title = "Style Guide"
|
2022-01-18 21:36:20 +03:00
|
|
|
, body =
|
|
|
|
[ view_ model |> Html.toUnstyled
|
|
|
|
, Sprite.attach |> Html.map never |> Html.toUnstyled
|
|
|
|
]
|
2020-03-24 03:25:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
view_ : Model -> Html Msg
|
|
|
|
view_ model =
|
2020-06-19 23:52:02 +03:00
|
|
|
let
|
|
|
|
examples filterBy =
|
2021-05-28 04:23:07 +03:00
|
|
|
List.filter (\m -> filterBy m) (Dict.values model.moduleStates)
|
2021-11-06 01:16:54 +03:00
|
|
|
in
|
|
|
|
case model.route of
|
|
|
|
Routes.Doodad doodad ->
|
|
|
|
case List.head (examples (\m -> m.name == doodad)) of
|
|
|
|
Just example ->
|
2021-12-03 22:40:57 +03:00
|
|
|
Html.main_
|
|
|
|
[ css
|
|
|
|
[ maxWidth (Css.px 1400)
|
|
|
|
, margin auto
|
|
|
|
]
|
|
|
|
]
|
2021-11-06 01:16:54 +03:00
|
|
|
[ Example.view model.previousRoute example
|
|
|
|
|> Html.map (UpdateModuleStates example.name)
|
|
|
|
]
|
2020-09-02 22:39:35 +03:00
|
|
|
|
2021-11-06 01:16:54 +03:00
|
|
|
Nothing ->
|
|
|
|
Page.notFound
|
|
|
|
{ link = ChangeRoute Routes.All
|
|
|
|
, recoveryText = Page.ReturnTo "Component Library"
|
|
|
|
}
|
|
|
|
|
|
|
|
Routes.Category category ->
|
|
|
|
withSideNav model.route
|
|
|
|
[ mainContentHeader (Category.forDisplay category)
|
|
|
|
, examples
|
|
|
|
(\doodad ->
|
|
|
|
Set.memberOf
|
|
|
|
(Set.fromList Category.sorter doodad.categories)
|
|
|
|
category
|
|
|
|
)
|
|
|
|
|> viewPreviews (Category.forId category)
|
2020-09-02 22:39:35 +03:00
|
|
|
]
|
2021-11-06 01:16:54 +03:00
|
|
|
|
|
|
|
Routes.All ->
|
|
|
|
withSideNav model.route
|
|
|
|
[ mainContentHeader "All"
|
|
|
|
, viewPreviews "all" (examples (\_ -> True))
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
withSideNav : Route -> List (Html Msg) -> Html Msg
|
|
|
|
withSideNav currentRoute content =
|
2020-06-20 00:12:53 +03:00
|
|
|
Html.div
|
|
|
|
[ css
|
|
|
|
[ displayFlex
|
2021-10-05 01:40:18 +03:00
|
|
|
, withMedia [ mobile ] [ flexDirection column, alignItems stretch ]
|
2020-06-20 00:12:53 +03:00
|
|
|
, alignItems flexStart
|
2021-12-03 22:40:57 +03:00
|
|
|
, maxWidth (Css.px 1400)
|
|
|
|
, margin auto
|
2020-06-20 00:12:53 +03:00
|
|
|
]
|
2020-03-24 03:25:24 +03:00
|
|
|
]
|
2021-11-06 01:16:54 +03:00
|
|
|
[ navigation currentRoute
|
2021-11-05 21:26:43 +03:00
|
|
|
, Html.main_
|
|
|
|
[ css
|
|
|
|
[ flexGrow (int 1)
|
|
|
|
, margin2 (px 40) zero
|
|
|
|
, Css.minHeight (Css.vh 100)
|
|
|
|
]
|
|
|
|
]
|
2021-11-06 01:16:54 +03:00
|
|
|
content
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
mainContentHeader : String -> Html msg
|
|
|
|
mainContentHeader heading =
|
|
|
|
Heading.h1
|
|
|
|
[ Heading.customAttr (id "maincontent")
|
|
|
|
, Heading.customAttr (tabindex -1)
|
|
|
|
, Heading.css [ marginBottom (px 30) ]
|
2020-03-24 03:25:24 +03:00
|
|
|
]
|
2021-11-06 01:16:54 +03:00
|
|
|
[ Html.text heading ]
|
2020-03-24 03:25:24 +03:00
|
|
|
|
|
|
|
|
2021-11-05 21:13:28 +03:00
|
|
|
viewPreviews : String -> List (Example state msg) -> Html Msg
|
2021-11-05 21:05:08 +03:00
|
|
|
viewPreviews containerId examples =
|
|
|
|
examples
|
2021-11-06 01:04:14 +03:00
|
|
|
|> List.map (\example -> Example.preview ChangeRoute example)
|
2021-11-05 21:05:08 +03:00
|
|
|
|> Html.div
|
|
|
|
[ id containerId
|
|
|
|
, css
|
|
|
|
[ Css.displayFlex
|
|
|
|
, Css.flexWrap Css.wrap
|
|
|
|
, Css.property "gap" "10px"
|
|
|
|
]
|
|
|
|
]
|
|
|
|
|
|
|
|
|
2021-05-28 04:23:07 +03:00
|
|
|
navigation : Route -> Html Msg
|
2021-12-03 04:42:23 +03:00
|
|
|
navigation currentRoute =
|
2020-03-24 03:25:24 +03:00
|
|
|
let
|
2021-12-04 00:34:32 +03:00
|
|
|
categoryNavLinks : List (SideNav.Entry Route Msg)
|
|
|
|
categoryNavLinks =
|
|
|
|
List.map
|
|
|
|
(\category ->
|
|
|
|
SideNav.entry (Category.forDisplay category)
|
|
|
|
[ SideNav.href (Routes.Category category) ]
|
|
|
|
)
|
|
|
|
Category.all
|
2020-03-24 03:25:24 +03:00
|
|
|
in
|
2021-12-03 19:45:06 +03:00
|
|
|
SideNav.view
|
2022-03-07 23:26:56 +03:00
|
|
|
{ isCurrentRoute = (==) currentRoute
|
2021-12-03 22:10:15 +03:00
|
|
|
, routeToString = Routes.toString
|
2021-12-03 19:45:06 +03:00
|
|
|
, onSkipNav = SkipToMainContent
|
2021-12-03 20:12:32 +03:00
|
|
|
, css =
|
|
|
|
[ withMedia [ notMobile ]
|
|
|
|
[ VendorPrefixed.value "position" "sticky"
|
|
|
|
, top (px 55)
|
|
|
|
]
|
|
|
|
]
|
2021-12-03 19:45:06 +03:00
|
|
|
}
|
2021-12-04 00:34:32 +03:00
|
|
|
(SideNav.entry "All" [ SideNav.href Routes.All ]
|
|
|
|
:: categoryNavLinks
|
|
|
|
)
|