mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 19:09:32 +00:00
The styling is broken if th elements are outside a tr. The notification form had the same problem as the scan-mailbox form reported in #382
77 lines
1.5 KiB
Elm
77 lines
1.5 KiB
Elm
module Comp.ImapSettingsTable exposing
|
|
( Model
|
|
, Msg
|
|
, emptyModel
|
|
, init
|
|
, update
|
|
, view
|
|
)
|
|
|
|
import Api.Model.ImapSettings exposing (ImapSettings)
|
|
import Html exposing (..)
|
|
import Html.Attributes exposing (..)
|
|
import Html.Events exposing (onClick)
|
|
|
|
|
|
type alias Model =
|
|
{ emailSettings : List ImapSettings
|
|
, selected : Maybe ImapSettings
|
|
}
|
|
|
|
|
|
emptyModel : Model
|
|
emptyModel =
|
|
init []
|
|
|
|
|
|
init : List ImapSettings -> Model
|
|
init ems =
|
|
{ emailSettings = ems
|
|
, selected = Nothing
|
|
}
|
|
|
|
|
|
type Msg
|
|
= Select ImapSettings
|
|
|
|
|
|
update : Msg -> Model -> ( Model, Cmd Msg )
|
|
update msg model =
|
|
case msg of
|
|
Select ems ->
|
|
( { model | selected = Just ems }, Cmd.none )
|
|
|
|
|
|
view : Model -> Html Msg
|
|
view model =
|
|
table [ class "ui selectable pointer table" ]
|
|
[ thead []
|
|
[ tr []
|
|
[ th [ class "collapsible" ] [ text "Name" ]
|
|
, th [] [ text "Host/Port" ]
|
|
]
|
|
]
|
|
, tbody []
|
|
(List.map (renderLine model) model.emailSettings)
|
|
]
|
|
|
|
|
|
renderLine : Model -> ImapSettings -> Html Msg
|
|
renderLine model ems =
|
|
let
|
|
hostport =
|
|
case ems.imapPort of
|
|
Just p ->
|
|
ems.imapHost ++ ":" ++ String.fromInt p
|
|
|
|
Nothing ->
|
|
ems.imapHost
|
|
in
|
|
tr
|
|
[ classList [ ( "active", model.selected == Just ems ) ]
|
|
, onClick (Select ems)
|
|
]
|
|
[ td [ class "collapsible" ] [ text ems.name ]
|
|
, td [] [ text hostport ]
|
|
]
|