noredink-ui/styleguide-app/Examples/Table.elm

115 lines
3.5 KiB
Elm
Raw Normal View History

module Examples.Table exposing (Msg, State, example, init, update)
{- \
@docs Msg, State, example, init, update
-}
import Css exposing (..)
import Html.Styled as Html
import ModuleExample as ModuleExample exposing (Category(..), ModuleExample)
import Nri.Ui.Button.V5 as Button
2019-08-05 21:48:02 +03:00
import Nri.Ui.Colors.V1 as Colors
import Nri.Ui.Heading.V2 as Heading
2019-08-05 21:48:02 +03:00
import Nri.Ui.Table.V5 as Table
{-| -}
type Msg
= NoOp
{-| -}
type alias State =
()
{-| -}
example : (Msg -> msg) -> State -> ModuleExample msg
example parentMessage state =
2019-08-05 22:38:34 +03:00
{ name = "Nri.Ui.Table.V5"
2019-05-03 19:08:23 +03:00
, category = Tables
, content =
let
columns =
[ Table.string
{ header = "First Name"
, value = .firstName
2019-08-05 21:48:02 +03:00
, width = calc (pct 50) minus (px 250)
, cellStyles = always []
}
, Table.string
{ header = "Last Name"
, value = .lastName
2019-08-05 21:48:02 +03:00
, width = calc (pct 50) minus (px 250)
, cellStyles = always []
}
, Table.string
{ header = "# Submitted"
, value = .submitted >> String.fromInt
, width = px 125
, cellStyles =
\value ->
if value.submitted < 5 then
[ backgroundColor Colors.redLight
, textAlign center
]
else
[ textAlign center ]
}
, Table.custom
{ header =
Html.text "Actions"
, width = px 250
, view =
\_ ->
Button.button
{ size = Button.Small
, style = Button.Primary
, onClick = NoOp
, width = Button.WidthUnbounded
}
{ label = "Action"
, state = Button.Enabled
, icon = Nothing
}
2019-08-05 21:48:02 +03:00
, cellStyles = always []
}
]
data =
2019-08-05 21:48:02 +03:00
[ { firstName = "First1", lastName = "Last1", submitted = 10 }
, { firstName = "First2", lastName = "Last2", submitted = 0 }
, { firstName = "First3", lastName = "Last3", submitted = 3 }
, { firstName = "First4", lastName = "Last4", submitted = 15 }
, { firstName = "First5", lastName = "Last5", submitted = 8 }
]
in
[ Heading.h3 [] [ Html.text "With header" ]
2018-04-25 20:29:22 +03:00
, Table.view columns data
, Heading.h3 [] [ Html.text "Without header" ]
2018-04-25 20:29:22 +03:00
, Table.viewWithoutHeader columns data
, Heading.h3 [] [ Html.text "With additional cell styles" ]
2019-08-05 21:48:02 +03:00
, Table.view columns data
, Heading.h3 [] [ Html.text "Loading" ]
2018-04-25 20:29:22 +03:00
, Table.viewLoading columns
, Heading.h3 [] [ Html.text "Loading without header" ]
2018-04-25 20:29:22 +03:00
, Table.viewLoadingWithoutHeader columns
]
|> List.map (Html.map parentMessage)
}
{-| -}
init : State
init =
()
{-| -}
update : Msg -> State -> ( State, Cmd Msg )
update msg state =
case msg of
NoOp ->
( state, Cmd.none )