mirror of
https://github.com/NoRedInk/noredink-ui.git
synced 2024-12-20 04:01:40 +03:00
84 lines
2.6 KiB
Elm
84 lines
2.6 KiB
Elm
module Examples.Container exposing (Msg, State, example)
|
|
|
|
{-|
|
|
|
|
@docs Msg, State, example
|
|
|
|
-}
|
|
|
|
import Category exposing (Category(..))
|
|
import Css
|
|
import Example exposing (Example)
|
|
import Html.Styled as Html
|
|
import Html.Styled.Attributes exposing (css)
|
|
import Html.Styled.Events exposing (onClick)
|
|
import KeyboardSupport exposing (Direction(..), Key(..))
|
|
import Nri.Ui.Button.V10 as Button
|
|
import Nri.Ui.Colors.V1 as Colors
|
|
import Nri.Ui.Container.V1 as Container
|
|
import Nri.Ui.Heading.V2 as Heading
|
|
import Nri.Ui.Text.V5 as Text
|
|
|
|
|
|
{-| -}
|
|
example : Example State Msg
|
|
example =
|
|
{ name = "Container"
|
|
, version = 1
|
|
, categories = [ Layout ]
|
|
, keyboardSupport = []
|
|
, state = init
|
|
, update = update
|
|
, subscriptions = \_ -> Sub.none
|
|
, view =
|
|
\state ->
|
|
[ Heading.h3 [ Heading.css [ Css.marginTop (Css.px 8) ] ]
|
|
[ Html.text "General Container" ]
|
|
, Html.text "Used for the general container case."
|
|
, Container.general [] (Html.text "Content, content...")
|
|
, Heading.h3 [ Heading.css [ Css.marginTop (Css.px 8) ] ]
|
|
[ Html.text "Alternate Container" ]
|
|
, Html.text "Used when there are a lot of containers."
|
|
, Container.alternate [] (Html.text "Content, content...")
|
|
, Heading.h3 [ Heading.css [ Css.marginTop (Css.px 8) ] ]
|
|
[ Html.text "Interactable Container" ]
|
|
, Html.text "Usually used for larger containers with many elements inside."
|
|
, Container.interactable [] (Html.text "Content, content...")
|
|
, Heading.h3 [ Heading.css [ Css.marginTop (Css.px 8) ] ]
|
|
[ Html.text "Disabled Container" ]
|
|
, Html.text "Used to indicate content is locked/inaccessible"
|
|
, Container.disabled [] (Html.text "Content, content...")
|
|
, Heading.h3 [ Heading.css [ Css.marginTop (Css.px 8) ] ]
|
|
[ Html.text "Invalid Container" ]
|
|
, Html.text "Used to indicate content is invalid"
|
|
, Container.invalid [] (Html.text "Content, content...")
|
|
, Heading.h3 [ Heading.css [ Css.marginTop (Css.px 8) ] ]
|
|
[ Html.text "Interactable container with a label" ]
|
|
, Html.text "Used for helpful tidbits."
|
|
, Container.interactableWithLabel "The label" <|
|
|
Html.text "Content, content..."
|
|
]
|
|
}
|
|
|
|
|
|
{-| -}
|
|
init : State
|
|
init =
|
|
{}
|
|
|
|
|
|
{-| -}
|
|
type alias State =
|
|
{}
|
|
|
|
|
|
{-| -}
|
|
type alias Msg =
|
|
()
|
|
|
|
|
|
{-| -}
|
|
update : Msg -> State -> ( State, Cmd Msg )
|
|
update msg state =
|
|
( state, Cmd.none )
|