mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 10:59:33 +00:00
86 lines
1.8 KiB
Elm
86 lines
1.8 KiB
Elm
module Comp.EmailSettingsTable exposing
|
|
( Model
|
|
, Msg
|
|
, emptyModel
|
|
, init
|
|
, update
|
|
, view2
|
|
)
|
|
|
|
import Api.Model.EmailSettings exposing (EmailSettings)
|
|
import Comp.Basic as B
|
|
import Html exposing (..)
|
|
import Html.Attributes exposing (..)
|
|
import Styles as S
|
|
|
|
|
|
type alias Model =
|
|
{ emailSettings : List EmailSettings
|
|
, selected : Maybe EmailSettings
|
|
}
|
|
|
|
|
|
emptyModel : Model
|
|
emptyModel =
|
|
init []
|
|
|
|
|
|
init : List EmailSettings -> Model
|
|
init ems =
|
|
{ emailSettings = ems
|
|
, selected = Nothing
|
|
}
|
|
|
|
|
|
type Msg
|
|
= Select EmailSettings
|
|
|
|
|
|
update : Msg -> Model -> ( Model, Cmd Msg )
|
|
update msg model =
|
|
case msg of
|
|
Select ems ->
|
|
( { model | selected = Just ems }, Cmd.none )
|
|
|
|
|
|
|
|
--- View2
|
|
|
|
|
|
view2 : Model -> Html Msg
|
|
view2 model =
|
|
table [ class S.tableMain ]
|
|
[ thead []
|
|
[ tr []
|
|
[ th [ class "" ] []
|
|
, th [ class "text-left mr-2" ] [ text "Name" ]
|
|
, th [ class "text-left mr-2" ] [ text "Host/Port" ]
|
|
, th [ class "text-left mr-2 hidden sm:table-cell" ] [ text "From" ]
|
|
]
|
|
]
|
|
, tbody []
|
|
(List.map (renderLine2 model) model.emailSettings)
|
|
]
|
|
|
|
|
|
renderLine2 : Model -> EmailSettings -> Html Msg
|
|
renderLine2 _ ems =
|
|
let
|
|
hostport =
|
|
case ems.smtpPort of
|
|
Just p ->
|
|
ems.smtpHost ++ ":" ++ String.fromInt p
|
|
|
|
Nothing ->
|
|
ems.smtpHost
|
|
in
|
|
tr
|
|
[ class S.tableRow ]
|
|
[ B.editLinkTableCell (Select ems)
|
|
, td [ class "text-left mr-2" ]
|
|
[ text ems.name
|
|
]
|
|
, td [ class "text-left mr-2" ] [ text hostport ]
|
|
, td [ class "text-left" ] [ text ems.from ]
|
|
]
|