mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-19 23:59:32 +00:00
94 lines
2.0 KiB
Elm
94 lines
2.0 KiB
Elm
module Comp.FolderTable exposing
|
|
( Action(..)
|
|
, Model
|
|
, Msg
|
|
, init
|
|
, update
|
|
, view
|
|
)
|
|
|
|
import Api.Model.FolderItem exposing (FolderItem)
|
|
import Html exposing (..)
|
|
import Html.Attributes exposing (..)
|
|
import Html.Events exposing (onClick)
|
|
import Util.Html
|
|
import Util.Time
|
|
|
|
|
|
type alias Model =
|
|
{}
|
|
|
|
|
|
type Msg
|
|
= EditItem FolderItem
|
|
|
|
|
|
type Action
|
|
= NoAction
|
|
| EditAction FolderItem
|
|
|
|
|
|
init : Model
|
|
init =
|
|
{}
|
|
|
|
|
|
update : Msg -> Model -> ( Model, Action )
|
|
update msg model =
|
|
case msg of
|
|
EditItem item ->
|
|
( model, EditAction item )
|
|
|
|
|
|
view : Model -> List FolderItem -> Html Msg
|
|
view _ items =
|
|
div []
|
|
[ table [ class "ui very basic aligned table" ]
|
|
[ thead []
|
|
[ tr []
|
|
[ th [ class "collapsing" ] []
|
|
, th [] [ text "Name" ]
|
|
, th [] [ text "Owner" ]
|
|
, th [ class "collapsing" ] [ text "Owner or Member" ]
|
|
, th [ class "collapsing" ] [ text "#Member" ]
|
|
, th [ class "collapsing" ] [ text "Created" ]
|
|
]
|
|
]
|
|
, tbody []
|
|
(List.map viewItem items)
|
|
]
|
|
]
|
|
|
|
|
|
viewItem : FolderItem -> Html Msg
|
|
viewItem item =
|
|
tr []
|
|
[ td [ class "collapsing" ]
|
|
[ a
|
|
[ href "#"
|
|
, class "ui basic small blue label"
|
|
, onClick (EditItem item)
|
|
]
|
|
[ i [ class "edit icon" ] []
|
|
, text "Edit"
|
|
]
|
|
]
|
|
, td []
|
|
[ text item.name
|
|
]
|
|
, td []
|
|
[ text item.owner.name
|
|
]
|
|
, td [ class "center aligned" ]
|
|
[ Util.Html.checkbox item.isMember
|
|
]
|
|
, td [ class "center aligned" ]
|
|
[ String.fromInt item.memberCount
|
|
|> text
|
|
]
|
|
, td [ class "center aligned" ]
|
|
[ Util.Time.formatDateShort item.created
|
|
|> text
|
|
]
|
|
]
|