mirror of
https://github.com/NoRedInk/noredink-ui.git
synced 2024-12-01 09:12:33 +03:00
26608637e5
* add table v4 with builtin keyframes * get things looking good in the styleguide * remove log
95 lines
2.6 KiB
Elm
95 lines
2.6 KiB
Elm
module Examples.Table exposing (Msg, State, example, init, update)
|
|
|
|
{- \
|
|
@docs Msg, State, example, init, update
|
|
-}
|
|
|
|
import Css exposing (..)
|
|
import Headings
|
|
import Html.Styled as Html
|
|
import ModuleExample as ModuleExample exposing (Category(..), ModuleExample)
|
|
import Nri.Ui.Button.V5 as Button
|
|
import Nri.Ui.Table.V4 as Table
|
|
|
|
|
|
{-| -}
|
|
type Msg
|
|
= NoOp
|
|
|
|
|
|
{-| -}
|
|
type alias State =
|
|
()
|
|
|
|
|
|
{-| -}
|
|
example : (Msg -> msg) -> State -> ModuleExample msg
|
|
example parentMessage state =
|
|
{ filename = "Nri.Ui.Table.V4"
|
|
, category = Layout
|
|
, content =
|
|
let
|
|
columns =
|
|
[ Table.string
|
|
{ header = "First Name"
|
|
, value = .firstName
|
|
, width = calc (pct 50) minus (px 125)
|
|
}
|
|
, Table.string
|
|
{ header = "Last Name"
|
|
, value = .lastName
|
|
, width = calc (pct 50) minus (px 125)
|
|
}
|
|
, 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
|
|
}
|
|
}
|
|
]
|
|
|
|
data =
|
|
[ { firstName = "First1", lastName = "Last1" }
|
|
, { firstName = "First2", lastName = "Last2" }
|
|
, { firstName = "First3", lastName = "Last3" }
|
|
, { firstName = "First4", lastName = "Last4" }
|
|
, { firstName = "First5", lastName = "Last5" }
|
|
]
|
|
in
|
|
[ Headings.h4 [ Html.text "With header" ]
|
|
, Table.view columns data
|
|
, Headings.h4 [ Html.text "Without header" ]
|
|
, Table.viewWithoutHeader columns data
|
|
, Headings.h4 [ Html.text "Loading" ]
|
|
, Table.viewLoading columns
|
|
, Headings.h4 [ Html.text "Loading without header" ]
|
|
, 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 )
|