noredink-ui/styleguide-app/View.elm

207 lines
6.4 KiB
Elm
Raw Normal View History

2018-02-13 00:32:38 +03:00
module View exposing (view)
import Browser exposing (Document)
2018-02-13 00:32:38 +03:00
import Css exposing (..)
import Css.Global exposing (Snippet)
import Headings
2019-03-28 20:23:37 +03:00
import Html as RootHtml
import Html.Attributes
import Html.Styled as Html exposing (Html, img)
import Html.Styled.Attributes as Attributes exposing (..)
2018-02-13 00:32:38 +03:00
import Model exposing (..)
import ModuleExample as ModuleExample exposing (Category(..), ModuleExample, categoryForDisplay)
2018-03-17 03:16:16 +03:00
import Nri.Ui.Colors.V1 as Colors
2018-02-13 00:32:38 +03:00
import Nri.Ui.Css.VendorPrefixed as VendorPrefixed
2018-03-17 03:15:03 +03:00
import Nri.Ui.Fonts.V1 as Fonts
2018-02-13 00:32:38 +03:00
import NriModules as NriModules exposing (nriThemedModules)
import Routes as Routes exposing (Route)
import Update exposing (..)
view : Model -> Document Msg
2018-02-13 00:32:38 +03:00
view model =
2019-03-28 20:23:37 +03:00
{ title = "Style Guide"
2019-04-01 21:05:15 +03:00
, body = [ view_ model |> Html.toUnstyled ]
2019-03-28 20:23:37 +03:00
}
view_ : Model -> Html Msg
view_ model =
2018-02-13 00:32:38 +03:00
Html.div []
[ Css.Global.global layoutFixer
, Html.styled Html.div
[ displayFlex
, alignItems flexStart
]
[]
2018-02-13 00:32:38 +03:00
[ navigation model.route
, Html.styled Html.div
[ flexGrow (int 1) ]
[]
2018-02-13 00:32:38 +03:00
(case model.route of
Routes.Doodad doodad ->
[ Headings.h2
[ Html.a [ Attributes.href "#" ] [ Html.text "(see all)" ] ]
2018-02-13 00:32:38 +03:00
, nriThemedModules model.moduleStates
2018-12-08 01:16:00 +03:00
|> List.filter (\m -> m.filename == doodad)
2018-02-13 00:32:38 +03:00
|> List.map (ModuleExample.view True)
|> Html.div []
|> Html.map UpdateModuleStates
]
Routes.Category category ->
[ Html.styled Html.section
[ sectionStyles ]
[]
2018-02-13 00:32:38 +03:00
[ newComponentsLink
, Headings.h2 [ Html.text (Debug.toString category) ]
2018-02-13 00:32:38 +03:00
, nriThemedModules model.moduleStates
|> List.filter (\doodad -> category == doodad.category)
|> List.map (ModuleExample.view True)
|> Html.div []
|> Html.map UpdateModuleStates
]
]
Routes.All ->
[ Html.styled Html.section
[ sectionStyles ]
[]
2018-02-13 00:32:38 +03:00
[ newComponentsLink
, Headings.h2 [ Html.text "NRI-Themed Modules" ]
, Headings.h3 [ Html.text "All Categories" ]
2018-02-13 00:32:38 +03:00
, nriThemedModules model.moduleStates
|> List.map (ModuleExample.view True)
|> Html.div []
|> Html.map UpdateModuleStates
]
]
)
]
]
newComponentsLink : Html Msg
newComponentsLink =
Html.div []
[ Headings.h2 [ Html.text "New Styleguide Components" ]
2018-02-13 00:32:38 +03:00
, Html.div []
[ Html.text "Future styleguide components can be found in "
, Html.a [ href "https://app.zeplin.io/project/5973fb495395bdc871ebb055" ] [ Html.text "this Zepplin" ]
, Html.text "."
]
]
navigation : Route -> Html Msg
navigation route =
let
isActive category =
case route of
Routes.Category routeCategory ->
category == routeCategory
_ ->
False
navLink category =
Html.li []
[ Html.styled Html.a
[ backgroundColor transparent
, borderStyle none
, if isActive category then
color Colors.navy
else
color Colors.azure
2018-02-13 00:32:38 +03:00
]
[ Attributes.href <| "#category/" ++ Debug.toString category ]
2018-02-13 00:32:38 +03:00
[ Html.text (categoryForDisplay category) ]
]
in
Html.styled Html.div
[ flexBasis (px 300)
, backgroundColor Colors.gray92
, marginRight (px 40)
, padding (px 25)
, VendorPrefixed.value "position" "sticky"
, top (px 150)
, flexShrink zero
]
[]
[ Headings.h4
2018-02-13 00:32:38 +03:00
[ Html.text "Categories" ]
, Html.styled Html.ul
[ margin4 zero zero (px 40) zero
, Css.Global.children
[ Css.Global.selector "li"
[ margin2 (px 10) zero
]
]
]
[]
<|
2018-02-13 00:32:38 +03:00
Html.li []
[ Html.styled Html.a
[ backgroundColor transparent
, borderStyle none
, if route == Routes.All then
color Colors.navy
else
color Colors.azure
2018-02-13 00:32:38 +03:00
]
[ Attributes.href "#" ]
2018-02-13 00:32:38 +03:00
[ Html.text "All" ]
]
:: List.map
navLink
[ Text
2018-03-02 00:34:44 +03:00
, TextWriting
2018-03-17 01:33:42 +03:00
, Fonts
2018-02-13 00:32:38 +03:00
, Colors
, Layout
, Inputs
, Buttons
, Icons
, Behaviors
, Messaging
, Modals
, Writing
, DynamicSymbols
, Pages
, QuestionTypes
]
]
sectionStyles : Css.Style
sectionStyles =
Css.batch [ margin2 (px 40) zero ]
layoutFixer : List Snippet
2018-02-13 00:32:38 +03:00
layoutFixer =
-- TODO: remove when universal header seizes power
[ Css.Global.selector "#header-menu"
2018-02-13 00:32:38 +03:00
[ Css.property "float" "none"
]
, Css.Global.selector "#page-container"
2018-02-13 00:32:38 +03:00
[ maxWidth (px 1400)
]
, Css.Global.selector ".anonymous .log-in-button"
2018-02-13 00:32:38 +03:00
[ Css.property "float" "none"
, right zero
, top zero
]
, Css.Global.selector ".l-inline-blocks"
2018-02-13 00:32:38 +03:00
[ textAlign right
]
, Css.Global.everything
[ fontFamily inherit
]
, Css.Global.body
2018-02-13 00:32:38 +03:00
[ Fonts.baseFont
]
]