mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 02:49:32 +00:00
commit
f2c5135ef4
@ -44,33 +44,40 @@ type alias Model =
|
|||||||
, itemDetailModel : Page.ItemDetail.Data.Model
|
, itemDetailModel : Page.ItemDetail.Data.Model
|
||||||
, navMenuOpen : Bool
|
, navMenuOpen : Bool
|
||||||
, subs : Sub Msg
|
, subs : Sub Msg
|
||||||
|
, uiSettings : UiSettings
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
init : Key -> Url -> Flags -> Model
|
init : Key -> Url -> Flags -> UiSettings -> ( Model, Cmd Msg )
|
||||||
init key url flags =
|
init key url flags settings =
|
||||||
let
|
let
|
||||||
page =
|
page =
|
||||||
Page.fromUrl url
|
Page.fromUrl url
|
||||||
|> Maybe.withDefault (defaultPage flags)
|
|> Maybe.withDefault (defaultPage flags)
|
||||||
|
|
||||||
|
( um, uc ) =
|
||||||
|
Page.UserSettings.Data.init flags settings
|
||||||
in
|
in
|
||||||
{ flags = flags
|
( { flags = flags
|
||||||
, key = key
|
, key = key
|
||||||
, page = page
|
, page = page
|
||||||
, version = Api.Model.VersionInfo.empty
|
, version = Api.Model.VersionInfo.empty
|
||||||
, homeModel = Page.Home.Data.init flags
|
, homeModel = Page.Home.Data.init flags
|
||||||
, loginModel = Page.Login.Data.emptyModel
|
, loginModel = Page.Login.Data.emptyModel
|
||||||
, manageDataModel = Page.ManageData.Data.emptyModel
|
, manageDataModel = Page.ManageData.Data.emptyModel
|
||||||
, collSettingsModel = Page.CollectiveSettings.Data.emptyModel
|
, collSettingsModel = Page.CollectiveSettings.Data.emptyModel
|
||||||
, userSettingsModel = Page.UserSettings.Data.emptyModel flags
|
, userSettingsModel = um
|
||||||
, queueModel = Page.Queue.Data.emptyModel
|
, queueModel = Page.Queue.Data.emptyModel
|
||||||
, registerModel = Page.Register.Data.emptyModel
|
, registerModel = Page.Register.Data.emptyModel
|
||||||
, uploadModel = Page.Upload.Data.emptyModel
|
, uploadModel = Page.Upload.Data.emptyModel
|
||||||
, newInviteModel = Page.NewInvite.Data.emptyModel
|
, newInviteModel = Page.NewInvite.Data.emptyModel
|
||||||
, itemDetailModel = Page.ItemDetail.Data.emptyModel
|
, itemDetailModel = Page.ItemDetail.Data.emptyModel
|
||||||
, navMenuOpen = False
|
, navMenuOpen = False
|
||||||
, subs = Sub.none
|
, subs = Sub.none
|
||||||
}
|
, uiSettings = settings
|
||||||
|
}
|
||||||
|
, Cmd.map UserSettingsMsg uc
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
type Msg
|
type Msg
|
||||||
|
@ -176,10 +176,10 @@ updateWithSub msg model =
|
|||||||
|
|
||||||
GetUiSettings settings ->
|
GetUiSettings settings ->
|
||||||
Util.Update.andThen1
|
Util.Update.andThen1
|
||||||
[ updateUserSettings (Page.UserSettings.Data.GetUiSettings settings)
|
[ updateUserSettings Page.UserSettings.Data.UpdateSettings
|
||||||
, updateHome (Page.Home.Data.GetUiSettings settings)
|
, updateHome Page.Home.Data.DoSearch
|
||||||
]
|
]
|
||||||
model
|
{ model | uiSettings = settings }
|
||||||
|> noSub
|
|> noSub
|
||||||
|
|
||||||
|
|
||||||
@ -253,7 +253,7 @@ updateUserSettings : Page.UserSettings.Data.Msg -> Model -> ( Model, Cmd Msg )
|
|||||||
updateUserSettings lmsg model =
|
updateUserSettings lmsg model =
|
||||||
let
|
let
|
||||||
( lm, lc, ls ) =
|
( lm, lc, ls ) =
|
||||||
Page.UserSettings.Update.update model.flags lmsg model.userSettingsModel
|
Page.UserSettings.Update.update model.flags model.uiSettings lmsg model.userSettingsModel
|
||||||
in
|
in
|
||||||
( { model
|
( { model
|
||||||
| userSettingsModel = lm
|
| userSettingsModel = lm
|
||||||
@ -302,7 +302,7 @@ updateHome : Page.Home.Data.Msg -> Model -> ( Model, Cmd Msg )
|
|||||||
updateHome lmsg model =
|
updateHome lmsg model =
|
||||||
let
|
let
|
||||||
( lm, lc ) =
|
( lm, lc ) =
|
||||||
Page.Home.Update.update model.key model.flags lmsg model.homeModel
|
Page.Home.Update.update model.key model.flags model.uiSettings lmsg model.homeModel
|
||||||
in
|
in
|
||||||
( { model | homeModel = lm }
|
( { model | homeModel = lm }
|
||||||
, Cmd.map HomeMsg lc
|
, Cmd.map HomeMsg lc
|
||||||
|
@ -121,7 +121,7 @@ viewItemDetail id model =
|
|||||||
inav =
|
inav =
|
||||||
Page.Home.Data.itemNav id model.homeModel
|
Page.Home.Data.itemNav id model.homeModel
|
||||||
in
|
in
|
||||||
Html.map ItemDetailMsg (Page.ItemDetail.View.view inav model.itemDetailModel)
|
Html.map ItemDetailMsg (Page.ItemDetail.View.view inav model.uiSettings model.itemDetailModel)
|
||||||
|
|
||||||
|
|
||||||
viewNewInvite : Model -> Html Msg
|
viewNewInvite : Model -> Html Msg
|
||||||
@ -146,17 +146,21 @@ viewQueue model =
|
|||||||
|
|
||||||
viewUserSettings : Model -> Html Msg
|
viewUserSettings : Model -> Html Msg
|
||||||
viewUserSettings model =
|
viewUserSettings model =
|
||||||
Html.map UserSettingsMsg (Page.UserSettings.View.view model.userSettingsModel)
|
Html.map UserSettingsMsg (Page.UserSettings.View.view model.uiSettings model.userSettingsModel)
|
||||||
|
|
||||||
|
|
||||||
viewCollectiveSettings : Model -> Html Msg
|
viewCollectiveSettings : Model -> Html Msg
|
||||||
viewCollectiveSettings model =
|
viewCollectiveSettings model =
|
||||||
Html.map CollSettingsMsg (Page.CollectiveSettings.View.view model.flags model.collSettingsModel)
|
Html.map CollSettingsMsg
|
||||||
|
(Page.CollectiveSettings.View.view model.flags
|
||||||
|
model.uiSettings
|
||||||
|
model.collSettingsModel
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
viewManageData : Model -> Html Msg
|
viewManageData : Model -> Html Msg
|
||||||
viewManageData model =
|
viewManageData model =
|
||||||
Html.map ManageDataMsg (Page.ManageData.View.view model.manageDataModel)
|
Html.map ManageDataMsg (Page.ManageData.View.view model.uiSettings model.manageDataModel)
|
||||||
|
|
||||||
|
|
||||||
viewLogin : Model -> Html Msg
|
viewLogin : Model -> Html Msg
|
||||||
@ -166,7 +170,7 @@ viewLogin model =
|
|||||||
|
|
||||||
viewHome : Model -> Html Msg
|
viewHome : Model -> Html Msg
|
||||||
viewHome model =
|
viewHome model =
|
||||||
Html.map HomeMsg (Page.Home.View.view model.homeModel)
|
Html.map HomeMsg (Page.Home.View.view model.uiSettings model.homeModel)
|
||||||
|
|
||||||
|
|
||||||
menuEntry : Model -> Page -> List (Html Msg) -> Html Msg
|
menuEntry : Model -> Page -> List (Html Msg) -> Html Msg
|
||||||
|
@ -9,6 +9,7 @@ module Comp.AddressForm exposing
|
|||||||
|
|
||||||
import Api.Model.Address exposing (Address)
|
import Api.Model.Address exposing (Address)
|
||||||
import Comp.Dropdown
|
import Comp.Dropdown
|
||||||
|
import Data.UiSettings exposing (UiSettings)
|
||||||
import Html exposing (..)
|
import Html exposing (..)
|
||||||
import Html.Attributes exposing (..)
|
import Html.Attributes exposing (..)
|
||||||
import Html.Events exposing (onInput)
|
import Html.Events exposing (onInput)
|
||||||
@ -105,8 +106,8 @@ update msg model =
|
|||||||
( { model | country = m1 }, Cmd.map CountryMsg c1 )
|
( { model | country = m1 }, Cmd.map CountryMsg c1 )
|
||||||
|
|
||||||
|
|
||||||
view : Model -> Html Msg
|
view : UiSettings -> Model -> Html Msg
|
||||||
view model =
|
view settings model =
|
||||||
div [ class "ui form" ]
|
div [ class "ui form" ]
|
||||||
[ div
|
[ div
|
||||||
[ class "field"
|
[ class "field"
|
||||||
@ -146,6 +147,6 @@ view model =
|
|||||||
]
|
]
|
||||||
, div [ class "field" ]
|
, div [ class "field" ]
|
||||||
[ label [] [ text "Country" ]
|
[ label [] [ text "Country" ]
|
||||||
, Html.map CountryMsg (Comp.Dropdown.view model.country)
|
, Html.map CountryMsg (Comp.Dropdown.view settings model.country)
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
|
@ -11,6 +11,7 @@ import Api.Model.CollectiveSettings exposing (CollectiveSettings)
|
|||||||
import Comp.Dropdown
|
import Comp.Dropdown
|
||||||
import Data.Flags exposing (Flags)
|
import Data.Flags exposing (Flags)
|
||||||
import Data.Language exposing (Language)
|
import Data.Language exposing (Language)
|
||||||
|
import Data.UiSettings exposing (UiSettings)
|
||||||
import Html exposing (..)
|
import Html exposing (..)
|
||||||
import Html.Attributes exposing (..)
|
import Html.Attributes exposing (..)
|
||||||
import Html.Events exposing (onCheck)
|
import Html.Events exposing (onCheck)
|
||||||
@ -90,12 +91,12 @@ update _ msg model =
|
|||||||
( nextModel, Cmd.none, Just (getSettings nextModel) )
|
( nextModel, Cmd.none, Just (getSettings nextModel) )
|
||||||
|
|
||||||
|
|
||||||
view : Flags -> Model -> Html Msg
|
view : Flags -> UiSettings -> Model -> Html Msg
|
||||||
view flags model =
|
view flags settings model =
|
||||||
div [ class "ui form" ]
|
div [ class "ui form" ]
|
||||||
[ div [ class "field" ]
|
[ div [ class "field" ]
|
||||||
[ label [] [ text "Document Language" ]
|
[ label [] [ text "Document Language" ]
|
||||||
, Html.map LangDropdownMsg (Comp.Dropdown.view model.langModel)
|
, Html.map LangDropdownMsg (Comp.Dropdown.view settings model.langModel)
|
||||||
, span [ class "small-info" ]
|
, span [ class "small-info" ]
|
||||||
[ text "The language of your documents. This helps text recognition (OCR) and text analysis."
|
[ text "The language of your documents. This helps text recognition (OCR) and text analysis."
|
||||||
]
|
]
|
||||||
|
171
modules/webapp/src/main/elm/Comp/ColorTagger.elm
Normal file
171
modules/webapp/src/main/elm/Comp/ColorTagger.elm
Normal file
@ -0,0 +1,171 @@
|
|||||||
|
module Comp.ColorTagger exposing
|
||||||
|
( Model
|
||||||
|
, Msg
|
||||||
|
, ViewOpts
|
||||||
|
, init
|
||||||
|
, update
|
||||||
|
, view
|
||||||
|
)
|
||||||
|
|
||||||
|
import Comp.FixedDropdown
|
||||||
|
import Data.Color exposing (Color)
|
||||||
|
import Dict exposing (Dict)
|
||||||
|
import Html exposing (..)
|
||||||
|
import Html.Attributes exposing (..)
|
||||||
|
import Html.Events exposing (onClick)
|
||||||
|
import Util.Maybe
|
||||||
|
|
||||||
|
|
||||||
|
type alias FormData =
|
||||||
|
Dict String Color
|
||||||
|
|
||||||
|
|
||||||
|
type alias Model =
|
||||||
|
{ leftDropdown : Comp.FixedDropdown.Model String
|
||||||
|
, colors : List Color
|
||||||
|
, leftSelect : Maybe String
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
type Msg
|
||||||
|
= AddPair FormData Color
|
||||||
|
| DeleteItem FormData String
|
||||||
|
| EditItem String Color
|
||||||
|
| LeftMsg (Comp.FixedDropdown.Msg String)
|
||||||
|
|
||||||
|
|
||||||
|
init : List String -> List Color -> Model
|
||||||
|
init leftSel colors =
|
||||||
|
{ leftDropdown = Comp.FixedDropdown.initString leftSel
|
||||||
|
, colors = colors
|
||||||
|
, leftSelect = Nothing
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
--- Update
|
||||||
|
|
||||||
|
|
||||||
|
update : Msg -> Model -> ( Model, Maybe FormData )
|
||||||
|
update msg model =
|
||||||
|
case msg of
|
||||||
|
AddPair data color ->
|
||||||
|
case model.leftSelect of
|
||||||
|
Just l ->
|
||||||
|
( model
|
||||||
|
, Just (Dict.insert l color data)
|
||||||
|
)
|
||||||
|
|
||||||
|
_ ->
|
||||||
|
( model, Nothing )
|
||||||
|
|
||||||
|
DeleteItem data k ->
|
||||||
|
( model, Just (Dict.remove k data) )
|
||||||
|
|
||||||
|
EditItem k _ ->
|
||||||
|
( { model
|
||||||
|
| leftSelect = Just k
|
||||||
|
}
|
||||||
|
, Nothing
|
||||||
|
)
|
||||||
|
|
||||||
|
LeftMsg lm ->
|
||||||
|
let
|
||||||
|
( m_, la ) =
|
||||||
|
Comp.FixedDropdown.update lm model.leftDropdown
|
||||||
|
in
|
||||||
|
( { model
|
||||||
|
| leftDropdown = m_
|
||||||
|
, leftSelect = Util.Maybe.withDefault model.leftSelect la
|
||||||
|
}
|
||||||
|
, Nothing
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
--- View
|
||||||
|
|
||||||
|
|
||||||
|
type alias ViewOpts =
|
||||||
|
{ renderItem : ( String, Color ) -> Html Msg
|
||||||
|
, label : String
|
||||||
|
, description : Maybe String
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
view : FormData -> ViewOpts -> Model -> Html Msg
|
||||||
|
view data opts model =
|
||||||
|
div [ class "field" ]
|
||||||
|
[ label [] [ text opts.label ]
|
||||||
|
, div [ class "inline field" ]
|
||||||
|
[ Html.map LeftMsg
|
||||||
|
(Comp.FixedDropdown.viewString
|
||||||
|
model.leftSelect
|
||||||
|
model.leftDropdown
|
||||||
|
)
|
||||||
|
]
|
||||||
|
, div [ class "field" ]
|
||||||
|
[ chooseColor
|
||||||
|
(AddPair data)
|
||||||
|
Data.Color.all
|
||||||
|
Nothing
|
||||||
|
]
|
||||||
|
, renderFormData opts data
|
||||||
|
, span
|
||||||
|
[ classList
|
||||||
|
[ ( "small-info", True )
|
||||||
|
, ( "invisible hidden", opts.description == Nothing )
|
||||||
|
]
|
||||||
|
]
|
||||||
|
[ Maybe.withDefault "" opts.description
|
||||||
|
|> text
|
||||||
|
]
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
renderFormData : ViewOpts -> FormData -> Html Msg
|
||||||
|
renderFormData opts data =
|
||||||
|
let
|
||||||
|
values =
|
||||||
|
Dict.toList data
|
||||||
|
|
||||||
|
renderItem ( k, v ) =
|
||||||
|
div [ class "item" ]
|
||||||
|
[ a
|
||||||
|
[ class "link icon"
|
||||||
|
, href "#"
|
||||||
|
, onClick (DeleteItem data k)
|
||||||
|
]
|
||||||
|
[ i [ class "trash icon" ] []
|
||||||
|
]
|
||||||
|
, a
|
||||||
|
[ class "link icon"
|
||||||
|
, href "#"
|
||||||
|
, onClick (EditItem k v)
|
||||||
|
]
|
||||||
|
[ i [ class "edit icon" ] []
|
||||||
|
]
|
||||||
|
, opts.renderItem ( k, v )
|
||||||
|
]
|
||||||
|
in
|
||||||
|
div [ class "ui list" ]
|
||||||
|
(List.map renderItem values)
|
||||||
|
|
||||||
|
|
||||||
|
chooseColor : (Color -> msg) -> List Color -> Maybe String -> Html msg
|
||||||
|
chooseColor tagger colors mtext =
|
||||||
|
let
|
||||||
|
renderLabel color =
|
||||||
|
a
|
||||||
|
[ class ("ui large label " ++ Data.Color.toString color)
|
||||||
|
, href "#"
|
||||||
|
, onClick (tagger color)
|
||||||
|
]
|
||||||
|
[ Maybe.withDefault
|
||||||
|
(Data.Color.toString color)
|
||||||
|
mtext
|
||||||
|
|> text
|
||||||
|
]
|
||||||
|
in
|
||||||
|
div [ class "ui labels" ] <|
|
||||||
|
List.map renderLabel colors
|
@ -10,6 +10,7 @@ module Comp.ContactField exposing
|
|||||||
import Api.Model.Contact exposing (Contact)
|
import Api.Model.Contact exposing (Contact)
|
||||||
import Comp.Dropdown
|
import Comp.Dropdown
|
||||||
import Data.ContactType exposing (ContactType)
|
import Data.ContactType exposing (ContactType)
|
||||||
|
import Data.UiSettings exposing (UiSettings)
|
||||||
import Html exposing (..)
|
import Html exposing (..)
|
||||||
import Html.Attributes exposing (..)
|
import Html.Attributes exposing (..)
|
||||||
import Html.Events exposing (onClick, onInput)
|
import Html.Events exposing (onClick, onInput)
|
||||||
@ -96,12 +97,12 @@ update msg model =
|
|||||||
( { m1 | value = contact.value, items = newItems }, c1 )
|
( { m1 | value = contact.value, items = newItems }, c1 )
|
||||||
|
|
||||||
|
|
||||||
view : Model -> Html Msg
|
view : UiSettings -> Model -> Html Msg
|
||||||
view model =
|
view settings model =
|
||||||
div []
|
div []
|
||||||
[ div [ class "fields" ]
|
[ div [ class "fields" ]
|
||||||
[ div [ class "four wide field" ]
|
[ div [ class "four wide field" ]
|
||||||
[ Html.map TypeMsg (Comp.Dropdown.view model.kind)
|
[ Html.map TypeMsg (Comp.Dropdown.view settings model.kind)
|
||||||
]
|
]
|
||||||
, div [ class "twelve wide field" ]
|
, div [ class "twelve wide field" ]
|
||||||
[ div [ class "ui action input" ]
|
[ div [ class "ui action input" ]
|
||||||
|
@ -12,6 +12,7 @@ module Comp.Dropdown exposing
|
|||||||
, view
|
, view
|
||||||
)
|
)
|
||||||
|
|
||||||
|
import Data.UiSettings exposing (UiSettings)
|
||||||
import Html exposing (..)
|
import Html exposing (..)
|
||||||
import Html.Attributes exposing (..)
|
import Html.Attributes exposing (..)
|
||||||
import Html.Events exposing (onClick, onInput)
|
import Html.Events exposing (onClick, onInput)
|
||||||
@ -52,7 +53,7 @@ type alias Model a =
|
|||||||
, makeOption : a -> Option
|
, makeOption : a -> Option
|
||||||
, menuOpen : Bool
|
, menuOpen : Bool
|
||||||
, filterString : String
|
, filterString : String
|
||||||
, labelColor : a -> String
|
, labelColor : a -> UiSettings -> String
|
||||||
, searchable : Int -> Bool
|
, searchable : Int -> Bool
|
||||||
, placeholder : String
|
, placeholder : String
|
||||||
}
|
}
|
||||||
@ -62,7 +63,7 @@ makeModel :
|
|||||||
{ multiple : Bool
|
{ multiple : Bool
|
||||||
, searchable : Int -> Bool
|
, searchable : Int -> Bool
|
||||||
, makeOption : a -> Option
|
, makeOption : a -> Option
|
||||||
, labelColor : a -> String
|
, labelColor : a -> UiSettings -> String
|
||||||
, placeholder : String
|
, placeholder : String
|
||||||
}
|
}
|
||||||
-> Model a
|
-> Model a
|
||||||
@ -89,7 +90,7 @@ makeSingle opts =
|
|||||||
{ multiple = False
|
{ multiple = False
|
||||||
, searchable = \n -> n > 8
|
, searchable = \n -> n > 8
|
||||||
, makeOption = opts.makeOption
|
, makeOption = opts.makeOption
|
||||||
, labelColor = \_ -> ""
|
, labelColor = \_ -> \_ -> ""
|
||||||
, placeholder = opts.placeholder
|
, placeholder = opts.placeholder
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -119,7 +120,7 @@ makeSingleList opts =
|
|||||||
|
|
||||||
makeMultiple :
|
makeMultiple :
|
||||||
{ makeOption : a -> Option
|
{ makeOption : a -> Option
|
||||||
, labelColor : a -> String
|
, labelColor : a -> UiSettings -> String
|
||||||
}
|
}
|
||||||
-> Model a
|
-> Model a
|
||||||
makeMultiple opts =
|
makeMultiple opts =
|
||||||
@ -363,10 +364,10 @@ update msg model =
|
|||||||
-- View
|
-- View
|
||||||
|
|
||||||
|
|
||||||
view : Model a -> Html (Msg a)
|
view : UiSettings -> Model a -> Html (Msg a)
|
||||||
view model =
|
view settings model =
|
||||||
if model.multiple then
|
if model.multiple then
|
||||||
viewMultiple model
|
viewMultiple settings model
|
||||||
|
|
||||||
else
|
else
|
||||||
viewSingle model
|
viewSingle model
|
||||||
@ -422,15 +423,15 @@ viewSingle model =
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
viewMultiple : Model a -> Html (Msg a)
|
viewMultiple : UiSettings -> Model a -> Html (Msg a)
|
||||||
viewMultiple model =
|
viewMultiple settings model =
|
||||||
let
|
let
|
||||||
renderSelectMultiple : Item a -> Html (Msg a)
|
renderSelectMultiple : Item a -> Html (Msg a)
|
||||||
renderSelectMultiple item =
|
renderSelectMultiple item =
|
||||||
div
|
div
|
||||||
[ classList
|
[ classList
|
||||||
[ ( "ui label", True )
|
[ ( "ui label", True )
|
||||||
, ( model.labelColor item.value, True )
|
, ( model.labelColor item.value settings, True )
|
||||||
]
|
]
|
||||||
, style "display" "inline-block !important"
|
, style "display" "inline-block !important"
|
||||||
, onClick (RemoveItem item)
|
, onClick (RemoveItem item)
|
||||||
|
@ -14,6 +14,7 @@ import Comp.Dropdown
|
|||||||
import Comp.IntField
|
import Comp.IntField
|
||||||
import Comp.PasswordInput
|
import Comp.PasswordInput
|
||||||
import Data.SSLType exposing (SSLType)
|
import Data.SSLType exposing (SSLType)
|
||||||
|
import Data.UiSettings exposing (UiSettings)
|
||||||
import Html exposing (..)
|
import Html exposing (..)
|
||||||
import Html.Attributes exposing (..)
|
import Html.Attributes exposing (..)
|
||||||
import Html.Events exposing (onCheck, onInput)
|
import Html.Events exposing (onCheck, onInput)
|
||||||
@ -165,8 +166,8 @@ update msg model =
|
|||||||
( { model | ignoreCertificates = not model.ignoreCertificates }, Cmd.none )
|
( { model | ignoreCertificates = not model.ignoreCertificates }, Cmd.none )
|
||||||
|
|
||||||
|
|
||||||
view : Model -> Html Msg
|
view : UiSettings -> Model -> Html Msg
|
||||||
view model =
|
view settings model =
|
||||||
div
|
div
|
||||||
[ classList
|
[ classList
|
||||||
[ ( "ui form", True )
|
[ ( "ui form", True )
|
||||||
@ -258,7 +259,7 @@ view model =
|
|||||||
, div [ class "two fields" ]
|
, div [ class "two fields" ]
|
||||||
[ div [ class "field" ]
|
[ div [ class "field" ]
|
||||||
[ label [] [ text "SSL" ]
|
[ label [] [ text "SSL" ]
|
||||||
, Html.map SSLTypeMsg (Comp.Dropdown.view model.sslType)
|
, Html.map SSLTypeMsg (Comp.Dropdown.view settings model.sslType)
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
|
@ -15,6 +15,7 @@ import Comp.EmailSettingsForm
|
|||||||
import Comp.EmailSettingsTable
|
import Comp.EmailSettingsTable
|
||||||
import Comp.YesNoDimmer
|
import Comp.YesNoDimmer
|
||||||
import Data.Flags exposing (Flags)
|
import Data.Flags exposing (Flags)
|
||||||
|
import Data.UiSettings exposing (UiSettings)
|
||||||
import Html exposing (..)
|
import Html exposing (..)
|
||||||
import Html.Attributes exposing (..)
|
import Html.Attributes exposing (..)
|
||||||
import Html.Events exposing (onClick, onInput)
|
import Html.Events exposing (onClick, onInput)
|
||||||
@ -199,14 +200,14 @@ update flags msg model =
|
|||||||
( { model | loading = False }, Cmd.none )
|
( { model | loading = False }, Cmd.none )
|
||||||
|
|
||||||
|
|
||||||
view : Model -> Html Msg
|
view : UiSettings -> Model -> Html Msg
|
||||||
view model =
|
view settings model =
|
||||||
case model.viewMode of
|
case model.viewMode of
|
||||||
Table ->
|
Table ->
|
||||||
viewTable model
|
viewTable model
|
||||||
|
|
||||||
Form ->
|
Form ->
|
||||||
viewForm model
|
viewForm settings model
|
||||||
|
|
||||||
|
|
||||||
viewTable : Model -> Html Msg
|
viewTable : Model -> Html Msg
|
||||||
@ -243,11 +244,11 @@ viewTable model =
|
|||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
viewForm : Model -> Html Msg
|
viewForm : UiSettings -> Model -> Html Msg
|
||||||
viewForm model =
|
viewForm settings model =
|
||||||
div [ class "ui segment" ]
|
div [ class "ui segment" ]
|
||||||
[ Html.map YesNoMsg (Comp.YesNoDimmer.view model.deleteConfirm)
|
[ Html.map YesNoMsg (Comp.YesNoDimmer.view model.deleteConfirm)
|
||||||
, Html.map FormMsg (Comp.EmailSettingsForm.view model.formModel)
|
, Html.map FormMsg (Comp.EmailSettingsForm.view settings model.formModel)
|
||||||
, div
|
, div
|
||||||
[ classList
|
[ classList
|
||||||
[ ( "ui error message", True )
|
[ ( "ui error message", True )
|
||||||
|
@ -8,6 +8,7 @@ module Comp.FixedDropdown exposing
|
|||||||
, initTuple
|
, initTuple
|
||||||
, update
|
, update
|
||||||
, view
|
, view
|
||||||
|
, viewString
|
||||||
)
|
)
|
||||||
|
|
||||||
import Html exposing (..)
|
import Html exposing (..)
|
||||||
@ -101,6 +102,11 @@ view selected model =
|
|||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
viewString : Maybe String -> Model String -> Html (Msg String)
|
||||||
|
viewString selected model =
|
||||||
|
view (Maybe.map (\s -> Item s s) selected) model
|
||||||
|
|
||||||
|
|
||||||
renderItems : Item a -> Html (Msg a)
|
renderItems : Item a -> Html (Msg a)
|
||||||
renderItems item =
|
renderItems item =
|
||||||
div [ class "item", onClick (SelectItem item) ]
|
div [ class "item", onClick (SelectItem item) ]
|
||||||
|
@ -14,6 +14,7 @@ import Comp.Dropdown
|
|||||||
import Comp.IntField
|
import Comp.IntField
|
||||||
import Comp.PasswordInput
|
import Comp.PasswordInput
|
||||||
import Data.SSLType exposing (SSLType)
|
import Data.SSLType exposing (SSLType)
|
||||||
|
import Data.UiSettings exposing (UiSettings)
|
||||||
import Html exposing (..)
|
import Html exposing (..)
|
||||||
import Html.Attributes exposing (..)
|
import Html.Attributes exposing (..)
|
||||||
import Html.Events exposing (onCheck, onInput)
|
import Html.Events exposing (onCheck, onInput)
|
||||||
@ -149,8 +150,8 @@ update msg model =
|
|||||||
( { model | ignoreCertificates = not model.ignoreCertificates }, Cmd.none )
|
( { model | ignoreCertificates = not model.ignoreCertificates }, Cmd.none )
|
||||||
|
|
||||||
|
|
||||||
view : Model -> Html Msg
|
view : UiSettings -> Model -> Html Msg
|
||||||
view model =
|
view settings model =
|
||||||
div
|
div
|
||||||
[ classList
|
[ classList
|
||||||
[ ( "ui form", True )
|
[ ( "ui form", True )
|
||||||
@ -220,7 +221,7 @@ view model =
|
|||||||
, div [ class "two fields" ]
|
, div [ class "two fields" ]
|
||||||
[ div [ class "field" ]
|
[ div [ class "field" ]
|
||||||
[ label [] [ text "SSL" ]
|
[ label [] [ text "SSL" ]
|
||||||
, Html.map SSLTypeMsg (Comp.Dropdown.view model.sslType)
|
, Html.map SSLTypeMsg (Comp.Dropdown.view settings model.sslType)
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
|
@ -15,6 +15,7 @@ import Comp.ImapSettingsForm
|
|||||||
import Comp.ImapSettingsTable
|
import Comp.ImapSettingsTable
|
||||||
import Comp.YesNoDimmer
|
import Comp.YesNoDimmer
|
||||||
import Data.Flags exposing (Flags)
|
import Data.Flags exposing (Flags)
|
||||||
|
import Data.UiSettings exposing (UiSettings)
|
||||||
import Html exposing (..)
|
import Html exposing (..)
|
||||||
import Html.Attributes exposing (..)
|
import Html.Attributes exposing (..)
|
||||||
import Html.Events exposing (onClick, onInput)
|
import Html.Events exposing (onClick, onInput)
|
||||||
@ -199,14 +200,14 @@ update flags msg model =
|
|||||||
( { model | loading = False }, Cmd.none )
|
( { model | loading = False }, Cmd.none )
|
||||||
|
|
||||||
|
|
||||||
view : Model -> Html Msg
|
view : UiSettings -> Model -> Html Msg
|
||||||
view model =
|
view settings model =
|
||||||
case model.viewMode of
|
case model.viewMode of
|
||||||
Table ->
|
Table ->
|
||||||
viewTable model
|
viewTable model
|
||||||
|
|
||||||
Form ->
|
Form ->
|
||||||
viewForm model
|
viewForm settings model
|
||||||
|
|
||||||
|
|
||||||
viewTable : Model -> Html Msg
|
viewTable : Model -> Html Msg
|
||||||
@ -243,11 +244,11 @@ viewTable model =
|
|||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
viewForm : Model -> Html Msg
|
viewForm : UiSettings -> Model -> Html Msg
|
||||||
viewForm model =
|
viewForm settings model =
|
||||||
div [ class "ui segment" ]
|
div [ class "ui segment" ]
|
||||||
[ Html.map YesNoMsg (Comp.YesNoDimmer.view model.deleteConfirm)
|
[ Html.map YesNoMsg (Comp.YesNoDimmer.view model.deleteConfirm)
|
||||||
, Html.map FormMsg (Comp.ImapSettingsForm.view model.formModel)
|
, Html.map FormMsg (Comp.ImapSettingsForm.view settings model.formModel)
|
||||||
, div
|
, div
|
||||||
[ classList
|
[ classList
|
||||||
[ ( "ui error message", True )
|
[ ( "ui error message", True )
|
||||||
|
@ -15,6 +15,7 @@ import Data.Direction
|
|||||||
import Data.Flags exposing (Flags)
|
import Data.Flags exposing (Flags)
|
||||||
import Data.Icons as Icons
|
import Data.Icons as Icons
|
||||||
import Data.Items
|
import Data.Items
|
||||||
|
import Data.UiSettings exposing (UiSettings)
|
||||||
import Html exposing (..)
|
import Html exposing (..)
|
||||||
import Html.Attributes exposing (..)
|
import Html.Attributes exposing (..)
|
||||||
import Html.Events exposing (onClick)
|
import Html.Events exposing (onClick)
|
||||||
@ -97,26 +98,26 @@ update _ msg model =
|
|||||||
--- View
|
--- View
|
||||||
|
|
||||||
|
|
||||||
view : Model -> Html Msg
|
view : UiSettings -> Model -> Html Msg
|
||||||
view model =
|
view settings model =
|
||||||
div [ class "ui container" ]
|
div [ class "ui container" ]
|
||||||
(List.map viewGroup model.results.groups)
|
(List.map (viewGroup settings) model.results.groups)
|
||||||
|
|
||||||
|
|
||||||
viewGroup : ItemLightGroup -> Html Msg
|
viewGroup : UiSettings -> ItemLightGroup -> Html Msg
|
||||||
viewGroup group =
|
viewGroup settings group =
|
||||||
div [ class "item-group" ]
|
div [ class "item-group" ]
|
||||||
[ div [ class "ui horizontal divider header item-list" ]
|
[ div [ class "ui horizontal divider header item-list" ]
|
||||||
[ i [ class "calendar alternate outline icon" ] []
|
[ i [ class "calendar alternate outline icon" ] []
|
||||||
, text group.name
|
, text group.name
|
||||||
]
|
]
|
||||||
, div [ class "ui stackable three cards" ]
|
, div [ class "ui stackable three cards" ]
|
||||||
(List.map viewItem group.items)
|
(List.map (viewItem settings) group.items)
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
viewItem : ItemLight -> Html Msg
|
viewItem : UiSettings -> ItemLight -> Html Msg
|
||||||
viewItem item =
|
viewItem settings item =
|
||||||
let
|
let
|
||||||
dirIcon =
|
dirIcon =
|
||||||
i [ class (Data.Direction.iconFromMaybe item.direction) ] []
|
i [ class (Data.Direction.iconFromMaybe item.direction) ] []
|
||||||
@ -193,7 +194,7 @@ viewItem item =
|
|||||||
div
|
div
|
||||||
[ classList
|
[ classList
|
||||||
[ ( "ui basic label", True )
|
[ ( "ui basic label", True )
|
||||||
, ( "blue", tag.category /= Nothing )
|
, ( Data.UiSettings.tagColorString tag settings, True )
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
[ text tag.name ]
|
[ text tag.name ]
|
||||||
|
@ -34,6 +34,7 @@ import Comp.YesNoDimmer
|
|||||||
import Data.Direction exposing (Direction)
|
import Data.Direction exposing (Direction)
|
||||||
import Data.Flags exposing (Flags)
|
import Data.Flags exposing (Flags)
|
||||||
import Data.Icons as Icons
|
import Data.Icons as Icons
|
||||||
|
import Data.UiSettings exposing (UiSettings)
|
||||||
import DatePicker exposing (DatePicker)
|
import DatePicker exposing (DatePicker)
|
||||||
import Dict exposing (Dict)
|
import Dict exposing (Dict)
|
||||||
import File exposing (File)
|
import File exposing (File)
|
||||||
@ -52,6 +53,7 @@ import Util.List
|
|||||||
import Util.Maybe
|
import Util.Maybe
|
||||||
import Util.Size
|
import Util.Size
|
||||||
import Util.String
|
import Util.String
|
||||||
|
import Util.Tag
|
||||||
import Util.Time
|
import Util.Time
|
||||||
|
|
||||||
|
|
||||||
@ -82,7 +84,7 @@ type alias Model =
|
|||||||
, sentMailsOpen : Bool
|
, sentMailsOpen : Bool
|
||||||
, attachMeta : Dict String Comp.AttachmentMeta.Model
|
, attachMeta : Dict String Comp.AttachmentMeta.Model
|
||||||
, attachMetaOpen : Bool
|
, attachMetaOpen : Bool
|
||||||
, pdfNativeView : Bool
|
, pdfNativeView : Maybe Bool
|
||||||
, deleteAttachConfirm : Comp.YesNoDimmer.Model
|
, deleteAttachConfirm : Comp.YesNoDimmer.Model
|
||||||
, addFilesOpen : Bool
|
, addFilesOpen : Bool
|
||||||
, addFilesModel : Comp.Dropzone.Model
|
, addFilesModel : Comp.Dropzone.Model
|
||||||
@ -119,16 +121,7 @@ emptyModel =
|
|||||||
, visibleAttach = 0
|
, visibleAttach = 0
|
||||||
, menuOpen = False
|
, menuOpen = False
|
||||||
, tagModel =
|
, tagModel =
|
||||||
Comp.Dropdown.makeMultiple
|
Util.Tag.makeDropdownModel
|
||||||
{ makeOption = \tag -> { value = tag.id, text = tag.name }
|
|
||||||
, labelColor =
|
|
||||||
\tag ->
|
|
||||||
if Util.Maybe.nonEmpty tag.category then
|
|
||||||
"basic blue"
|
|
||||||
|
|
||||||
else
|
|
||||||
""
|
|
||||||
}
|
|
||||||
, directionModel =
|
, directionModel =
|
||||||
Comp.Dropdown.makeSingleList
|
Comp.Dropdown.makeSingleList
|
||||||
{ makeOption =
|
{ makeOption =
|
||||||
@ -177,7 +170,7 @@ emptyModel =
|
|||||||
, sentMailsOpen = False
|
, sentMailsOpen = False
|
||||||
, attachMeta = Dict.empty
|
, attachMeta = Dict.empty
|
||||||
, attachMetaOpen = False
|
, attachMetaOpen = False
|
||||||
, pdfNativeView = False
|
, pdfNativeView = Nothing
|
||||||
, deleteAttachConfirm = Comp.YesNoDimmer.emptyModel
|
, deleteAttachConfirm = Comp.YesNoDimmer.emptyModel
|
||||||
, addFilesOpen = False
|
, addFilesOpen = False
|
||||||
, addFilesModel = Comp.Dropzone.init Comp.Dropzone.defaultSettings
|
, addFilesModel = Comp.Dropzone.init Comp.Dropzone.defaultSettings
|
||||||
@ -238,7 +231,7 @@ type Msg
|
|||||||
| SentMailsResp (Result Http.Error SentMails)
|
| SentMailsResp (Result Http.Error SentMails)
|
||||||
| AttachMetaClick String
|
| AttachMetaClick String
|
||||||
| AttachMetaMsg String Comp.AttachmentMeta.Msg
|
| AttachMetaMsg String Comp.AttachmentMeta.Msg
|
||||||
| TogglePdfNativeView
|
| TogglePdfNativeView Bool
|
||||||
| RequestDeleteAttachment String
|
| RequestDeleteAttachment String
|
||||||
| DeleteAttachConfirm String Comp.YesNoDimmer.Msg
|
| DeleteAttachConfirm String Comp.YesNoDimmer.Msg
|
||||||
| DeleteAttachResp (Result Http.Error BasicResult)
|
| DeleteAttachResp (Result Http.Error BasicResult)
|
||||||
@ -1034,9 +1027,17 @@ update key flags next msg model =
|
|||||||
Nothing ->
|
Nothing ->
|
||||||
noSub ( model, Cmd.none )
|
noSub ( model, Cmd.none )
|
||||||
|
|
||||||
TogglePdfNativeView ->
|
TogglePdfNativeView default ->
|
||||||
noSub
|
noSub
|
||||||
( { model | pdfNativeView = not model.pdfNativeView }
|
( { model
|
||||||
|
| pdfNativeView =
|
||||||
|
case model.pdfNativeView of
|
||||||
|
Just flag ->
|
||||||
|
Just (not flag)
|
||||||
|
|
||||||
|
Nothing ->
|
||||||
|
Just (not default)
|
||||||
|
}
|
||||||
, Cmd.none
|
, Cmd.none
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -1215,10 +1216,10 @@ actionInputDatePicker =
|
|||||||
{ ds | containerClassList = [ ( "ui action input", True ) ] }
|
{ ds | containerClassList = [ ( "ui action input", True ) ] }
|
||||||
|
|
||||||
|
|
||||||
view : { prev : Maybe String, next : Maybe String } -> Model -> Html Msg
|
view : { prev : Maybe String, next : Maybe String } -> UiSettings -> Model -> Html Msg
|
||||||
view inav model =
|
view inav settings model =
|
||||||
div []
|
div []
|
||||||
[ renderItemInfo model
|
[ renderItemInfo settings model
|
||||||
, div
|
, div
|
||||||
[ classList
|
[ classList
|
||||||
[ ( "ui ablue-comp menu", True )
|
[ ( "ui ablue-comp menu", True )
|
||||||
@ -1307,7 +1308,7 @@ view inav model =
|
|||||||
[ Icons.addFilesIcon
|
[ Icons.addFilesIcon
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
, renderMailForm model
|
, renderMailForm settings model
|
||||||
, renderAddFilesForm model
|
, renderAddFilesForm model
|
||||||
, renderNotes model
|
, renderNotes model
|
||||||
, div [ class "ui grid" ]
|
, div [ class "ui grid" ]
|
||||||
@ -1319,7 +1320,7 @@ view inav model =
|
|||||||
]
|
]
|
||||||
]
|
]
|
||||||
(if model.menuOpen then
|
(if model.menuOpen then
|
||||||
renderEditMenu model
|
renderEditMenu settings model
|
||||||
|
|
||||||
else
|
else
|
||||||
[]
|
[]
|
||||||
@ -1335,7 +1336,7 @@ view inav model =
|
|||||||
List.concat
|
List.concat
|
||||||
[ [ renderAttachmentsTabMenu model
|
[ [ renderAttachmentsTabMenu model
|
||||||
]
|
]
|
||||||
, renderAttachmentsTabBody model
|
, renderAttachmentsTabBody settings model
|
||||||
, renderIdInfo model
|
, renderIdInfo model
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
@ -1488,8 +1489,8 @@ renderAttachmentsTabMenu model =
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
renderAttachmentView : Model -> Int -> Attachment -> Html Msg
|
renderAttachmentView : UiSettings -> Model -> Int -> Attachment -> Html Msg
|
||||||
renderAttachmentView model pos attach =
|
renderAttachmentView settings model pos attach =
|
||||||
let
|
let
|
||||||
fileUrl =
|
fileUrl =
|
||||||
"/api/v1/sec/attachment/" ++ attach.id
|
"/api/v1/sec/attachment/" ++ attach.id
|
||||||
@ -1520,8 +1521,8 @@ renderAttachmentView model pos attach =
|
|||||||
[ div [ class "ui slider checkbox" ]
|
[ div [ class "ui slider checkbox" ]
|
||||||
[ input
|
[ input
|
||||||
[ type_ "checkbox"
|
[ type_ "checkbox"
|
||||||
, onCheck (\_ -> TogglePdfNativeView)
|
, onCheck (\_ -> TogglePdfNativeView settings.nativePdfPreview)
|
||||||
, checked model.pdfNativeView
|
, checked (Maybe.withDefault settings.nativePdfPreview model.pdfNativeView)
|
||||||
]
|
]
|
||||||
[]
|
[]
|
||||||
, label [] [ text "Native view" ]
|
, label [] [ text "Native view" ]
|
||||||
@ -1600,7 +1601,7 @@ renderAttachmentView model pos attach =
|
|||||||
]
|
]
|
||||||
]
|
]
|
||||||
[ iframe
|
[ iframe
|
||||||
[ if model.pdfNativeView then
|
[ if Maybe.withDefault settings.nativePdfPreview model.pdfNativeView then
|
||||||
src fileUrl
|
src fileUrl
|
||||||
|
|
||||||
else
|
else
|
||||||
@ -1630,8 +1631,8 @@ isAttachMetaOpen model id =
|
|||||||
model.attachMetaOpen && (Dict.get id model.attachMeta /= Nothing)
|
model.attachMetaOpen && (Dict.get id model.attachMeta /= Nothing)
|
||||||
|
|
||||||
|
|
||||||
renderAttachmentsTabBody : Model -> List (Html Msg)
|
renderAttachmentsTabBody : UiSettings -> Model -> List (Html Msg)
|
||||||
renderAttachmentsTabBody model =
|
renderAttachmentsTabBody settings model =
|
||||||
let
|
let
|
||||||
mailTab =
|
mailTab =
|
||||||
if Comp.SentMails.isEmpty model.sentMails then
|
if Comp.SentMails.isEmpty model.sentMails then
|
||||||
@ -1651,12 +1652,12 @@ renderAttachmentsTabBody model =
|
|||||||
]
|
]
|
||||||
]
|
]
|
||||||
in
|
in
|
||||||
List.indexedMap (renderAttachmentView model) model.item.attachments
|
List.indexedMap (renderAttachmentView settings model) model.item.attachments
|
||||||
++ mailTab
|
++ mailTab
|
||||||
|
|
||||||
|
|
||||||
renderItemInfo : Model -> Html Msg
|
renderItemInfo : UiSettings -> Model -> Html Msg
|
||||||
renderItemInfo model =
|
renderItemInfo settings model =
|
||||||
let
|
let
|
||||||
date =
|
date =
|
||||||
div
|
div
|
||||||
@ -1749,12 +1750,12 @@ renderItemInfo model =
|
|||||||
]
|
]
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
:: renderTags model
|
:: renderTags settings model
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
renderTags : Model -> List (Html Msg)
|
renderTags : UiSettings -> Model -> List (Html Msg)
|
||||||
renderTags model =
|
renderTags settings model =
|
||||||
case model.item.tags of
|
case model.item.tags of
|
||||||
[] ->
|
[] ->
|
||||||
[]
|
[]
|
||||||
@ -1766,7 +1767,7 @@ renderTags model =
|
|||||||
div
|
div
|
||||||
[ classList
|
[ classList
|
||||||
[ ( "ui tag label", True )
|
[ ( "ui tag label", True )
|
||||||
, ( "blue", Util.Maybe.nonEmpty t.category )
|
, ( Data.UiSettings.tagColorString t settings, True )
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
[ text t.name
|
[ text t.name
|
||||||
@ -1776,10 +1777,10 @@ renderTags model =
|
|||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
renderEditMenu : Model -> List (Html Msg)
|
renderEditMenu : UiSettings -> Model -> List (Html Msg)
|
||||||
renderEditMenu model =
|
renderEditMenu settings model =
|
||||||
[ renderEditButtons model
|
[ renderEditButtons model
|
||||||
, renderEditForm model
|
, renderEditForm settings model
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
@ -1813,8 +1814,8 @@ renderEditButtons model =
|
|||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
renderEditForm : Model -> Html Msg
|
renderEditForm : UiSettings -> Model -> Html Msg
|
||||||
renderEditForm model =
|
renderEditForm settings model =
|
||||||
div [ class "ui attached segment" ]
|
div [ class "ui attached segment" ]
|
||||||
[ div [ class "ui form" ]
|
[ div [ class "ui form" ]
|
||||||
[ div [ class "field" ]
|
[ div [ class "field" ]
|
||||||
@ -1822,7 +1823,7 @@ renderEditForm model =
|
|||||||
[ i [ class "tags icon" ] []
|
[ i [ class "tags icon" ] []
|
||||||
, text "Tags"
|
, text "Tags"
|
||||||
]
|
]
|
||||||
, Html.map TagDropdownMsg (Comp.Dropdown.view model.tagModel)
|
, Html.map TagDropdownMsg (Comp.Dropdown.view settings model.tagModel)
|
||||||
]
|
]
|
||||||
, div [ class " field" ]
|
, div [ class " field" ]
|
||||||
[ label [] [ text "Name" ]
|
[ label [] [ text "Name" ]
|
||||||
@ -1838,7 +1839,7 @@ renderEditForm model =
|
|||||||
]
|
]
|
||||||
, div [ class "field" ]
|
, div [ class "field" ]
|
||||||
[ label [] [ text "Direction" ]
|
[ label [] [ text "Direction" ]
|
||||||
, Html.map DirDropdownMsg (Comp.Dropdown.view model.directionModel)
|
, Html.map DirDropdownMsg (Comp.Dropdown.view settings model.directionModel)
|
||||||
]
|
]
|
||||||
, div [ class " field" ]
|
, div [ class " field" ]
|
||||||
[ label [] [ text "Date" ]
|
[ label [] [ text "Date" ]
|
||||||
@ -1875,12 +1876,12 @@ renderEditForm model =
|
|||||||
]
|
]
|
||||||
, div [ class "field" ]
|
, div [ class "field" ]
|
||||||
[ label [] [ text "Organization" ]
|
[ label [] [ text "Organization" ]
|
||||||
, Html.map OrgDropdownMsg (Comp.Dropdown.view model.corrOrgModel)
|
, Html.map OrgDropdownMsg (Comp.Dropdown.view settings model.corrOrgModel)
|
||||||
, renderOrgSuggestions model
|
, renderOrgSuggestions model
|
||||||
]
|
]
|
||||||
, div [ class "field" ]
|
, div [ class "field" ]
|
||||||
[ label [] [ text "Person" ]
|
[ label [] [ text "Person" ]
|
||||||
, Html.map CorrPersonMsg (Comp.Dropdown.view model.corrPersonModel)
|
, Html.map CorrPersonMsg (Comp.Dropdown.view settings model.corrPersonModel)
|
||||||
, renderCorrPersonSuggestions model
|
, renderCorrPersonSuggestions model
|
||||||
]
|
]
|
||||||
, h4 [ class "ui dividing header" ]
|
, h4 [ class "ui dividing header" ]
|
||||||
@ -1889,12 +1890,12 @@ renderEditForm model =
|
|||||||
]
|
]
|
||||||
, div [ class "field" ]
|
, div [ class "field" ]
|
||||||
[ label [] [ text "Person" ]
|
[ label [] [ text "Person" ]
|
||||||
, Html.map ConcPersonMsg (Comp.Dropdown.view model.concPersonModel)
|
, Html.map ConcPersonMsg (Comp.Dropdown.view settings model.concPersonModel)
|
||||||
, renderConcPersonSuggestions model
|
, renderConcPersonSuggestions model
|
||||||
]
|
]
|
||||||
, div [ class "field" ]
|
, div [ class "field" ]
|
||||||
[ label [] [ text "Equipment" ]
|
[ label [] [ text "Equipment" ]
|
||||||
, Html.map ConcEquipMsg (Comp.Dropdown.view model.concEquipModel)
|
, Html.map ConcEquipMsg (Comp.Dropdown.view settings model.concEquipModel)
|
||||||
, renderConcEquipSuggestions model
|
, renderConcEquipSuggestions model
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
@ -1970,8 +1971,8 @@ renderDueDateSuggestions model =
|
|||||||
SetDueDateSuggestion
|
SetDueDateSuggestion
|
||||||
|
|
||||||
|
|
||||||
renderMailForm : Model -> Html Msg
|
renderMailForm : UiSettings -> Model -> Html Msg
|
||||||
renderMailForm model =
|
renderMailForm settings model =
|
||||||
div
|
div
|
||||||
[ classList
|
[ classList
|
||||||
[ ( "ui bottom attached segment", True )
|
[ ( "ui bottom attached segment", True )
|
||||||
@ -1991,7 +1992,7 @@ renderMailForm model =
|
|||||||
[ text "Sending …"
|
[ text "Sending …"
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
, Html.map ItemMailMsg (Comp.ItemMail.view model.itemMail)
|
, Html.map ItemMailMsg (Comp.ItemMail.view settings model.itemMail)
|
||||||
, div
|
, div
|
||||||
[ classList
|
[ classList
|
||||||
[ ( "ui message", True )
|
[ ( "ui message", True )
|
||||||
|
@ -15,6 +15,7 @@ import Api.Model.SimpleMail exposing (SimpleMail)
|
|||||||
import Comp.Dropdown
|
import Comp.Dropdown
|
||||||
import Comp.EmailInput
|
import Comp.EmailInput
|
||||||
import Data.Flags exposing (Flags)
|
import Data.Flags exposing (Flags)
|
||||||
|
import Data.UiSettings exposing (UiSettings)
|
||||||
import Html exposing (..)
|
import Html exposing (..)
|
||||||
import Html.Attributes exposing (..)
|
import Html.Attributes exposing (..)
|
||||||
import Html.Events exposing (onCheck, onClick, onInput)
|
import Html.Events exposing (onCheck, onClick, onInput)
|
||||||
@ -173,8 +174,8 @@ isValid model =
|
|||||||
== Nothing
|
== Nothing
|
||||||
|
|
||||||
|
|
||||||
view : Model -> Html Msg
|
view : UiSettings -> Model -> Html Msg
|
||||||
view model =
|
view settings model =
|
||||||
div
|
div
|
||||||
[ classList
|
[ classList
|
||||||
[ ( "ui form", True )
|
[ ( "ui form", True )
|
||||||
@ -183,7 +184,7 @@ view model =
|
|||||||
]
|
]
|
||||||
[ div [ class "field" ]
|
[ div [ class "field" ]
|
||||||
[ label [] [ text "Send via" ]
|
[ label [] [ text "Send via" ]
|
||||||
, Html.map ConnMsg (Comp.Dropdown.view model.connectionModel)
|
, Html.map ConnMsg (Comp.Dropdown.view settings model.connectionModel)
|
||||||
]
|
]
|
||||||
, div [ class "ui error message" ]
|
, div [ class "ui error message" ]
|
||||||
[ Maybe.withDefault "" model.formError |> text
|
[ Maybe.withDefault "" model.formError |> text
|
||||||
|
181
modules/webapp/src/main/elm/Comp/MappingForm.elm
Normal file
181
modules/webapp/src/main/elm/Comp/MappingForm.elm
Normal file
@ -0,0 +1,181 @@
|
|||||||
|
module Comp.MappingForm exposing
|
||||||
|
( FormData
|
||||||
|
, Model
|
||||||
|
, Msg
|
||||||
|
, ViewOpts
|
||||||
|
, init
|
||||||
|
, update
|
||||||
|
, view
|
||||||
|
)
|
||||||
|
|
||||||
|
import Comp.FixedDropdown
|
||||||
|
import Dict exposing (Dict)
|
||||||
|
import Html exposing (..)
|
||||||
|
import Html.Attributes exposing (..)
|
||||||
|
import Html.Events exposing (onClick)
|
||||||
|
import Util.Maybe
|
||||||
|
|
||||||
|
|
||||||
|
type alias FormData =
|
||||||
|
Dict String String
|
||||||
|
|
||||||
|
|
||||||
|
type alias Model =
|
||||||
|
{ leftDropdown : Comp.FixedDropdown.Model String
|
||||||
|
, rightDropdown : Comp.FixedDropdown.Model String
|
||||||
|
, leftSelect : Maybe String
|
||||||
|
, rightSelect : Maybe String
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
type Msg
|
||||||
|
= AddPair FormData
|
||||||
|
| DeleteItem FormData String
|
||||||
|
| EditItem String String
|
||||||
|
| LeftMsg (Comp.FixedDropdown.Msg String)
|
||||||
|
| RightMsg (Comp.FixedDropdown.Msg String)
|
||||||
|
|
||||||
|
|
||||||
|
init : List String -> List String -> Model
|
||||||
|
init leftSel rightSel =
|
||||||
|
{ leftDropdown = Comp.FixedDropdown.initString leftSel
|
||||||
|
, rightDropdown = Comp.FixedDropdown.initString rightSel
|
||||||
|
, leftSelect = Nothing
|
||||||
|
, rightSelect = Nothing
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
--- Update
|
||||||
|
|
||||||
|
|
||||||
|
update : Msg -> Model -> ( Model, Maybe FormData )
|
||||||
|
update msg model =
|
||||||
|
case msg of
|
||||||
|
AddPair data ->
|
||||||
|
case ( model.leftSelect, model.rightSelect ) of
|
||||||
|
( Just l, Just r ) ->
|
||||||
|
( { model
|
||||||
|
| leftSelect = Nothing
|
||||||
|
, rightSelect = Nothing
|
||||||
|
}
|
||||||
|
, Just (Dict.insert l r data)
|
||||||
|
)
|
||||||
|
|
||||||
|
_ ->
|
||||||
|
( model, Nothing )
|
||||||
|
|
||||||
|
DeleteItem data k ->
|
||||||
|
( model, Just (Dict.remove k data) )
|
||||||
|
|
||||||
|
EditItem k v ->
|
||||||
|
( { model
|
||||||
|
| leftSelect = Just k
|
||||||
|
, rightSelect = Just v
|
||||||
|
}
|
||||||
|
, Nothing
|
||||||
|
)
|
||||||
|
|
||||||
|
LeftMsg lm ->
|
||||||
|
let
|
||||||
|
( m_, la ) =
|
||||||
|
Comp.FixedDropdown.update lm model.leftDropdown
|
||||||
|
in
|
||||||
|
( { model
|
||||||
|
| leftDropdown = m_
|
||||||
|
, leftSelect = Util.Maybe.withDefault model.leftSelect la
|
||||||
|
}
|
||||||
|
, Nothing
|
||||||
|
)
|
||||||
|
|
||||||
|
RightMsg lm ->
|
||||||
|
let
|
||||||
|
( m_, la ) =
|
||||||
|
Comp.FixedDropdown.update lm model.rightDropdown
|
||||||
|
in
|
||||||
|
( { model
|
||||||
|
| rightDropdown = m_
|
||||||
|
, rightSelect = Util.Maybe.withDefault model.rightSelect la
|
||||||
|
}
|
||||||
|
, Nothing
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
--- View
|
||||||
|
|
||||||
|
|
||||||
|
type alias ViewOpts =
|
||||||
|
{ renderItem : ( String, String ) -> Html Msg
|
||||||
|
, label : String
|
||||||
|
, description : Maybe String
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
view : FormData -> ViewOpts -> Model -> Html Msg
|
||||||
|
view data opts model =
|
||||||
|
div [ class "field" ]
|
||||||
|
[ label [] [ text opts.label ]
|
||||||
|
, div [ class "fields" ]
|
||||||
|
[ div [ class "inline field" ]
|
||||||
|
[ Html.map LeftMsg
|
||||||
|
(Comp.FixedDropdown.viewString
|
||||||
|
model.leftSelect
|
||||||
|
model.leftDropdown
|
||||||
|
)
|
||||||
|
]
|
||||||
|
, div [ class "inline field" ]
|
||||||
|
[ Html.map RightMsg
|
||||||
|
(Comp.FixedDropdown.viewString
|
||||||
|
model.rightSelect
|
||||||
|
model.rightDropdown
|
||||||
|
)
|
||||||
|
]
|
||||||
|
, button
|
||||||
|
[ class "ui icon button"
|
||||||
|
, onClick (AddPair data)
|
||||||
|
, href "#"
|
||||||
|
]
|
||||||
|
[ i [ class "add icon" ] []
|
||||||
|
]
|
||||||
|
]
|
||||||
|
, renderFormData opts data
|
||||||
|
, span
|
||||||
|
[ classList
|
||||||
|
[ ( "small-info", True )
|
||||||
|
, ( "invisible hidden", opts.description == Nothing )
|
||||||
|
]
|
||||||
|
]
|
||||||
|
[ Maybe.withDefault "" opts.description
|
||||||
|
|> text
|
||||||
|
]
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
renderFormData : ViewOpts -> FormData -> Html Msg
|
||||||
|
renderFormData opts data =
|
||||||
|
let
|
||||||
|
values =
|
||||||
|
Dict.toList data
|
||||||
|
|
||||||
|
renderItem ( k, v ) =
|
||||||
|
div [ class "item" ]
|
||||||
|
[ a
|
||||||
|
[ class "link icon"
|
||||||
|
, href "#"
|
||||||
|
, onClick (DeleteItem data k)
|
||||||
|
]
|
||||||
|
[ i [ class "trash icon" ] []
|
||||||
|
]
|
||||||
|
, a
|
||||||
|
[ class "link icon"
|
||||||
|
, href "#"
|
||||||
|
, onClick (EditItem k v)
|
||||||
|
]
|
||||||
|
[ i [ class "edit icon" ] []
|
||||||
|
]
|
||||||
|
, opts.renderItem ( k, v )
|
||||||
|
]
|
||||||
|
in
|
||||||
|
div [ class "ui list" ]
|
||||||
|
(List.map renderItem values)
|
@ -18,6 +18,7 @@ import Comp.EmailInput
|
|||||||
import Comp.IntField
|
import Comp.IntField
|
||||||
import Data.CalEvent exposing (CalEvent)
|
import Data.CalEvent exposing (CalEvent)
|
||||||
import Data.Flags exposing (Flags)
|
import Data.Flags exposing (Flags)
|
||||||
|
import Data.UiSettings exposing (UiSettings)
|
||||||
import Data.Validated exposing (Validated(..))
|
import Data.Validated exposing (Validated(..))
|
||||||
import Html exposing (..)
|
import Html exposing (..)
|
||||||
import Html.Attributes exposing (..)
|
import Html.Attributes exposing (..)
|
||||||
@ -73,8 +74,8 @@ initCmd flags =
|
|||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
init : Flags -> ( Model, Cmd Msg )
|
init : Flags -> UiSettings -> ( Model, Cmd Msg )
|
||||||
init flags =
|
init flags settings =
|
||||||
let
|
let
|
||||||
initialSchedule =
|
initialSchedule =
|
||||||
Data.Validated.Unknown Data.CalEvent.everyMonth
|
Data.Validated.Unknown Data.CalEvent.everyMonth
|
||||||
@ -415,8 +416,8 @@ isFormSuccess model =
|
|||||||
|> Maybe.withDefault False
|
|> Maybe.withDefault False
|
||||||
|
|
||||||
|
|
||||||
view : String -> Model -> Html Msg
|
view : String -> UiSettings -> Model -> Html Msg
|
||||||
view extraClasses model =
|
view extraClasses settings model =
|
||||||
div
|
div
|
||||||
[ classList
|
[ classList
|
||||||
[ ( "ui form", True )
|
[ ( "ui form", True )
|
||||||
@ -451,7 +452,7 @@ view extraClasses model =
|
|||||||
]
|
]
|
||||||
, div [ class "required field" ]
|
, div [ class "required field" ]
|
||||||
[ label [] [ text "Send via" ]
|
[ label [] [ text "Send via" ]
|
||||||
, Html.map ConnMsg (Comp.Dropdown.view model.connectionModel)
|
, Html.map ConnMsg (Comp.Dropdown.view settings model.connectionModel)
|
||||||
, span [ class "small-info" ]
|
, span [ class "small-info" ]
|
||||||
[ text "The SMTP connection to use when sending notification mails."
|
[ text "The SMTP connection to use when sending notification mails."
|
||||||
]
|
]
|
||||||
@ -468,14 +469,14 @@ view extraClasses model =
|
|||||||
]
|
]
|
||||||
, div [ class "field" ]
|
, div [ class "field" ]
|
||||||
[ label [] [ text "Tags Include (and)" ]
|
[ label [] [ text "Tags Include (and)" ]
|
||||||
, Html.map TagIncMsg (Comp.Dropdown.view model.tagInclModel)
|
, Html.map TagIncMsg (Comp.Dropdown.view settings model.tagInclModel)
|
||||||
, span [ class "small-info" ]
|
, span [ class "small-info" ]
|
||||||
[ text "Items must have all the tags specified here."
|
[ text "Items must have all the tags specified here."
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
, div [ class "field" ]
|
, div [ class "field" ]
|
||||||
[ label [] [ text "Tags Exclude (or)" ]
|
[ label [] [ text "Tags Exclude (or)" ]
|
||||||
, Html.map TagExcMsg (Comp.Dropdown.view model.tagExclModel)
|
, Html.map TagExcMsg (Comp.Dropdown.view settings model.tagExclModel)
|
||||||
, span [ class "small-info" ]
|
, span [ class "small-info" ]
|
||||||
[ text "Items must not have any tag specified here."
|
[ text "Items must not have any tag specified here."
|
||||||
]
|
]
|
||||||
|
@ -12,6 +12,7 @@ import Api.Model.Organization exposing (Organization)
|
|||||||
import Comp.AddressForm
|
import Comp.AddressForm
|
||||||
import Comp.ContactField
|
import Comp.ContactField
|
||||||
import Data.Flags exposing (Flags)
|
import Data.Flags exposing (Flags)
|
||||||
|
import Data.UiSettings exposing (UiSettings)
|
||||||
import Html exposing (..)
|
import Html exposing (..)
|
||||||
import Html.Attributes exposing (..)
|
import Html.Attributes exposing (..)
|
||||||
import Html.Events exposing (onInput)
|
import Html.Events exposing (onInput)
|
||||||
@ -106,8 +107,8 @@ update flags msg model =
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
view : Model -> Html Msg
|
view : UiSettings -> Model -> Html Msg
|
||||||
view model =
|
view settings model =
|
||||||
div [ class "ui form" ]
|
div [ class "ui form" ]
|
||||||
[ div
|
[ div
|
||||||
[ classList
|
[ classList
|
||||||
@ -127,11 +128,11 @@ view model =
|
|||||||
, h3 [ class "ui dividing header" ]
|
, h3 [ class "ui dividing header" ]
|
||||||
[ text "Address"
|
[ text "Address"
|
||||||
]
|
]
|
||||||
, Html.map AddressMsg (Comp.AddressForm.view model.addressModel)
|
, Html.map AddressMsg (Comp.AddressForm.view settings model.addressModel)
|
||||||
, h3 [ class "ui dividing header" ]
|
, h3 [ class "ui dividing header" ]
|
||||||
[ text "Contacts"
|
[ text "Contacts"
|
||||||
]
|
]
|
||||||
, Html.map ContactMsg (Comp.ContactField.view model.contactModel)
|
, Html.map ContactMsg (Comp.ContactField.view settings model.contactModel)
|
||||||
, h3 [ class "ui dividing header" ]
|
, h3 [ class "ui dividing header" ]
|
||||||
[ text "Notes"
|
[ text "Notes"
|
||||||
]
|
]
|
||||||
|
@ -14,6 +14,7 @@ import Comp.OrgForm
|
|||||||
import Comp.OrgTable
|
import Comp.OrgTable
|
||||||
import Comp.YesNoDimmer
|
import Comp.YesNoDimmer
|
||||||
import Data.Flags exposing (Flags)
|
import Data.Flags exposing (Flags)
|
||||||
|
import Data.UiSettings exposing (UiSettings)
|
||||||
import Html exposing (..)
|
import Html exposing (..)
|
||||||
import Html.Attributes exposing (..)
|
import Html.Attributes exposing (..)
|
||||||
import Html.Events exposing (onClick, onInput, onSubmit)
|
import Html.Events exposing (onClick, onInput, onSubmit)
|
||||||
@ -197,13 +198,13 @@ update flags msg model =
|
|||||||
( m, Api.getOrganizations flags str OrgResp )
|
( m, Api.getOrganizations flags str OrgResp )
|
||||||
|
|
||||||
|
|
||||||
view : Model -> Html Msg
|
view : UiSettings -> Model -> Html Msg
|
||||||
view model =
|
view settings model =
|
||||||
if model.viewMode == Table then
|
if model.viewMode == Table then
|
||||||
viewTable model
|
viewTable model
|
||||||
|
|
||||||
else
|
else
|
||||||
viewForm model
|
viewForm settings model
|
||||||
|
|
||||||
|
|
||||||
viewTable : Model -> Html Msg
|
viewTable : Model -> Html Msg
|
||||||
@ -248,8 +249,8 @@ viewTable model =
|
|||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
viewForm : Model -> Html Msg
|
viewForm : UiSettings -> Model -> Html Msg
|
||||||
viewForm model =
|
viewForm settings model =
|
||||||
let
|
let
|
||||||
newOrg =
|
newOrg =
|
||||||
model.formModel.org.id == ""
|
model.formModel.org.id == ""
|
||||||
@ -269,7 +270,7 @@ viewForm model =
|
|||||||
, text model.formModel.org.id
|
, text model.formModel.org.id
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
, Html.map FormMsg (Comp.OrgForm.view model.formModel)
|
, Html.map FormMsg (Comp.OrgForm.view settings model.formModel)
|
||||||
, div
|
, div
|
||||||
[ classList
|
[ classList
|
||||||
[ ( "ui error message", True )
|
[ ( "ui error message", True )
|
||||||
|
@ -12,6 +12,7 @@ import Api.Model.Person exposing (Person)
|
|||||||
import Comp.AddressForm
|
import Comp.AddressForm
|
||||||
import Comp.ContactField
|
import Comp.ContactField
|
||||||
import Data.Flags exposing (Flags)
|
import Data.Flags exposing (Flags)
|
||||||
|
import Data.UiSettings exposing (UiSettings)
|
||||||
import Html exposing (..)
|
import Html exposing (..)
|
||||||
import Html.Attributes exposing (..)
|
import Html.Attributes exposing (..)
|
||||||
import Html.Events exposing (onCheck, onInput)
|
import Html.Events exposing (onCheck, onInput)
|
||||||
@ -120,8 +121,8 @@ update flags msg model =
|
|||||||
( { model | concerning = not model.concerning }, Cmd.none )
|
( { model | concerning = not model.concerning }, Cmd.none )
|
||||||
|
|
||||||
|
|
||||||
view : Model -> Html Msg
|
view : UiSettings -> Model -> Html Msg
|
||||||
view model =
|
view settings model =
|
||||||
div [ class "ui form" ]
|
div [ class "ui form" ]
|
||||||
[ div
|
[ div
|
||||||
[ classList
|
[ classList
|
||||||
@ -152,11 +153,11 @@ view model =
|
|||||||
, h3 [ class "ui dividing header" ]
|
, h3 [ class "ui dividing header" ]
|
||||||
[ text "Address"
|
[ text "Address"
|
||||||
]
|
]
|
||||||
, Html.map AddressMsg (Comp.AddressForm.view model.addressModel)
|
, Html.map AddressMsg (Comp.AddressForm.view settings model.addressModel)
|
||||||
, h3 [ class "ui dividing header" ]
|
, h3 [ class "ui dividing header" ]
|
||||||
[ text "Contacts"
|
[ text "Contacts"
|
||||||
]
|
]
|
||||||
, Html.map ContactMsg (Comp.ContactField.view model.contactModel)
|
, Html.map ContactMsg (Comp.ContactField.view settings model.contactModel)
|
||||||
, h3 [ class "ui dividing header" ]
|
, h3 [ class "ui dividing header" ]
|
||||||
[ text "Notes"
|
[ text "Notes"
|
||||||
]
|
]
|
||||||
|
@ -14,6 +14,7 @@ import Comp.PersonForm
|
|||||||
import Comp.PersonTable
|
import Comp.PersonTable
|
||||||
import Comp.YesNoDimmer
|
import Comp.YesNoDimmer
|
||||||
import Data.Flags exposing (Flags)
|
import Data.Flags exposing (Flags)
|
||||||
|
import Data.UiSettings exposing (UiSettings)
|
||||||
import Html exposing (..)
|
import Html exposing (..)
|
||||||
import Html.Attributes exposing (..)
|
import Html.Attributes exposing (..)
|
||||||
import Html.Events exposing (onClick, onInput, onSubmit)
|
import Html.Events exposing (onClick, onInput, onSubmit)
|
||||||
@ -197,13 +198,13 @@ update flags msg model =
|
|||||||
( m, Api.getPersons flags str PersonResp )
|
( m, Api.getPersons flags str PersonResp )
|
||||||
|
|
||||||
|
|
||||||
view : Model -> Html Msg
|
view : UiSettings -> Model -> Html Msg
|
||||||
view model =
|
view settings model =
|
||||||
if model.viewMode == Table then
|
if model.viewMode == Table then
|
||||||
viewTable model
|
viewTable model
|
||||||
|
|
||||||
else
|
else
|
||||||
viewForm model
|
viewForm settings model
|
||||||
|
|
||||||
|
|
||||||
viewTable : Model -> Html Msg
|
viewTable : Model -> Html Msg
|
||||||
@ -248,8 +249,8 @@ viewTable model =
|
|||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
viewForm : Model -> Html Msg
|
viewForm : UiSettings -> Model -> Html Msg
|
||||||
viewForm model =
|
viewForm settings model =
|
||||||
let
|
let
|
||||||
newPerson =
|
newPerson =
|
||||||
model.formModel.org.id == ""
|
model.formModel.org.id == ""
|
||||||
@ -263,13 +264,13 @@ viewForm model =
|
|||||||
|
|
||||||
else
|
else
|
||||||
h3 [ class "ui dividing header" ]
|
h3 [ class "ui dividing header" ]
|
||||||
[ text ("Edit org: " ++ model.formModel.org.name)
|
[ text ("Edit person: " ++ model.formModel.org.name)
|
||||||
, div [ class "sub header" ]
|
, div [ class "sub header" ]
|
||||||
[ text "Id: "
|
[ text "Id: "
|
||||||
, text model.formModel.org.id
|
, text model.formModel.org.id
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
, Html.map FormMsg (Comp.PersonForm.view model.formModel)
|
, Html.map FormMsg (Comp.PersonForm.view settings model.formModel)
|
||||||
, div
|
, div
|
||||||
[ classList
|
[ classList
|
||||||
[ ( "ui error message", True )
|
[ ( "ui error message", True )
|
||||||
|
@ -20,6 +20,7 @@ import Comp.YesNoDimmer
|
|||||||
import Data.CalEvent exposing (CalEvent)
|
import Data.CalEvent exposing (CalEvent)
|
||||||
import Data.Direction exposing (Direction(..))
|
import Data.Direction exposing (Direction(..))
|
||||||
import Data.Flags exposing (Flags)
|
import Data.Flags exposing (Flags)
|
||||||
|
import Data.UiSettings exposing (UiSettings)
|
||||||
import Data.Validated exposing (Validated(..))
|
import Data.Validated exposing (Validated(..))
|
||||||
import Html exposing (..)
|
import Html exposing (..)
|
||||||
import Html.Attributes exposing (..)
|
import Html.Attributes exposing (..)
|
||||||
@ -419,8 +420,8 @@ isFormSuccess model =
|
|||||||
|> Maybe.withDefault False
|
|> Maybe.withDefault False
|
||||||
|
|
||||||
|
|
||||||
view : String -> Model -> Html Msg
|
view : String -> UiSettings -> Model -> Html Msg
|
||||||
view extraClasses model =
|
view extraClasses settings model =
|
||||||
div
|
div
|
||||||
[ classList
|
[ classList
|
||||||
[ ( "ui form", True )
|
[ ( "ui form", True )
|
||||||
@ -456,7 +457,7 @@ view extraClasses model =
|
|||||||
]
|
]
|
||||||
, div [ class "required field" ]
|
, div [ class "required field" ]
|
||||||
[ label [] [ text "Mailbox" ]
|
[ label [] [ text "Mailbox" ]
|
||||||
, Html.map ConnMsg (Comp.Dropdown.view model.connectionModel)
|
, Html.map ConnMsg (Comp.Dropdown.view settings model.connectionModel)
|
||||||
, span [ class "small-info" ]
|
, span [ class "small-info" ]
|
||||||
[ text "The IMAP connection to use when sending notification mails."
|
[ text "The IMAP connection to use when sending notification mails."
|
||||||
]
|
]
|
||||||
|
@ -13,6 +13,7 @@ import Api.Model.ScanMailboxSettingsList exposing (ScanMailboxSettingsList)
|
|||||||
import Comp.ScanMailboxForm
|
import Comp.ScanMailboxForm
|
||||||
import Comp.ScanMailboxList
|
import Comp.ScanMailboxList
|
||||||
import Data.Flags exposing (Flags)
|
import Data.Flags exposing (Flags)
|
||||||
|
import Data.UiSettings exposing (UiSettings)
|
||||||
import Html exposing (..)
|
import Html exposing (..)
|
||||||
import Html.Attributes exposing (..)
|
import Html.Attributes exposing (..)
|
||||||
import Html.Events exposing (onClick)
|
import Html.Events exposing (onClick)
|
||||||
@ -198,8 +199,8 @@ update flags msg model =
|
|||||||
--- View
|
--- View
|
||||||
|
|
||||||
|
|
||||||
view : Model -> Html Msg
|
view : UiSettings -> Model -> Html Msg
|
||||||
view model =
|
view settings model =
|
||||||
div []
|
div []
|
||||||
[ div [ class "ui menu" ]
|
[ div [ class "ui menu" ]
|
||||||
[ a
|
[ a
|
||||||
@ -224,17 +225,17 @@ view model =
|
|||||||
|> text
|
|> text
|
||||||
]
|
]
|
||||||
, case model.detailModel of
|
, case model.detailModel of
|
||||||
Just settings ->
|
Just msett ->
|
||||||
viewForm settings
|
viewForm settings msett
|
||||||
|
|
||||||
Nothing ->
|
Nothing ->
|
||||||
viewList model
|
viewList model
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
viewForm : Comp.ScanMailboxForm.Model -> Html Msg
|
viewForm : UiSettings -> Comp.ScanMailboxForm.Model -> Html Msg
|
||||||
viewForm model =
|
viewForm settings model =
|
||||||
Html.map DetailMsg (Comp.ScanMailboxForm.view "segment" model)
|
Html.map DetailMsg (Comp.ScanMailboxForm.view "segment" settings model)
|
||||||
|
|
||||||
|
|
||||||
viewList : Model -> Html Msg
|
viewList : Model -> Html Msg
|
||||||
|
@ -2,8 +2,8 @@ module Comp.SearchMenu exposing
|
|||||||
( Model
|
( Model
|
||||||
, Msg(..)
|
, Msg(..)
|
||||||
, NextState
|
, NextState
|
||||||
, emptyModel
|
|
||||||
, getItemSearch
|
, getItemSearch
|
||||||
|
, init
|
||||||
, update
|
, update
|
||||||
, view
|
, view
|
||||||
)
|
)
|
||||||
@ -20,6 +20,7 @@ import Comp.DatePicker
|
|||||||
import Comp.Dropdown exposing (isDropdownChangeMsg)
|
import Comp.Dropdown exposing (isDropdownChangeMsg)
|
||||||
import Data.Direction exposing (Direction)
|
import Data.Direction exposing (Direction)
|
||||||
import Data.Flags exposing (Flags)
|
import Data.Flags exposing (Flags)
|
||||||
|
import Data.UiSettings exposing (UiSettings)
|
||||||
import DatePicker exposing (DatePicker)
|
import DatePicker exposing (DatePicker)
|
||||||
import Html exposing (..)
|
import Html exposing (..)
|
||||||
import Html.Attributes exposing (..)
|
import Html.Attributes exposing (..)
|
||||||
@ -55,8 +56,8 @@ type alias Model =
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
emptyModel : Model
|
init : Model
|
||||||
emptyModel =
|
init =
|
||||||
{ tagInclModel = Util.Tag.makeDropdownModel
|
{ tagInclModel = Util.Tag.makeDropdownModel
|
||||||
, tagExclModel = Util.Tag.makeDropdownModel
|
, tagExclModel = Util.Tag.makeDropdownModel
|
||||||
, directionModel =
|
, directionModel =
|
||||||
@ -75,7 +76,7 @@ emptyModel =
|
|||||||
{ multiple = False
|
{ multiple = False
|
||||||
, searchable = \n -> n > 5
|
, searchable = \n -> n > 5
|
||||||
, makeOption = \e -> { value = e.id, text = e.name }
|
, makeOption = \e -> { value = e.id, text = e.name }
|
||||||
, labelColor = \_ -> ""
|
, labelColor = \_ -> \_ -> ""
|
||||||
, placeholder = "Choose an organization"
|
, placeholder = "Choose an organization"
|
||||||
}
|
}
|
||||||
, corrPersonModel =
|
, corrPersonModel =
|
||||||
@ -93,7 +94,7 @@ emptyModel =
|
|||||||
{ multiple = False
|
{ multiple = False
|
||||||
, searchable = \n -> n > 5
|
, searchable = \n -> n > 5
|
||||||
, makeOption = \e -> { value = e.id, text = e.name }
|
, makeOption = \e -> { value = e.id, text = e.name }
|
||||||
, labelColor = \_ -> ""
|
, labelColor = \_ -> \_ -> ""
|
||||||
, placeholder = "Choose an equipment"
|
, placeholder = "Choose an equipment"
|
||||||
}
|
}
|
||||||
, inboxCheckbox = False
|
, inboxCheckbox = False
|
||||||
@ -184,8 +185,8 @@ noChange p =
|
|||||||
NextState p False
|
NextState p False
|
||||||
|
|
||||||
|
|
||||||
update : Flags -> Msg -> Model -> NextState
|
update : Flags -> UiSettings -> Msg -> Model -> NextState
|
||||||
update flags msg model =
|
update flags settings msg model =
|
||||||
case msg of
|
case msg of
|
||||||
Init ->
|
Init ->
|
||||||
let
|
let
|
||||||
@ -193,25 +194,24 @@ update flags msg model =
|
|||||||
Comp.DatePicker.init
|
Comp.DatePicker.init
|
||||||
|
|
||||||
( mdp, cdp ) =
|
( mdp, cdp ) =
|
||||||
case model.datePickerInitialized of
|
if model.datePickerInitialized then
|
||||||
True ->
|
( model, Cmd.none )
|
||||||
( model, Cmd.none )
|
|
||||||
|
|
||||||
False ->
|
else
|
||||||
( { model
|
( { model
|
||||||
| untilDateModel = dp
|
| untilDateModel = dp
|
||||||
, fromDateModel = dp
|
, fromDateModel = dp
|
||||||
, untilDueDateModel = dp
|
, untilDueDateModel = dp
|
||||||
, fromDueDateModel = dp
|
, fromDueDateModel = dp
|
||||||
, datePickerInitialized = True
|
, datePickerInitialized = True
|
||||||
}
|
}
|
||||||
, Cmd.batch
|
, Cmd.batch
|
||||||
[ Cmd.map UntilDateMsg dpc
|
[ Cmd.map UntilDateMsg dpc
|
||||||
, Cmd.map FromDateMsg dpc
|
, Cmd.map FromDateMsg dpc
|
||||||
, Cmd.map UntilDueDateMsg dpc
|
, Cmd.map UntilDueDateMsg dpc
|
||||||
, Cmd.map FromDueDateMsg dpc
|
, Cmd.map FromDueDateMsg dpc
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
in
|
in
|
||||||
noChange
|
noChange
|
||||||
( mdp
|
( mdp
|
||||||
@ -227,7 +227,7 @@ update flags msg model =
|
|||||||
ResetForm ->
|
ResetForm ->
|
||||||
let
|
let
|
||||||
next =
|
next =
|
||||||
update flags Init emptyModel
|
update flags settings Init init
|
||||||
in
|
in
|
||||||
{ next | stateChange = True }
|
{ next | stateChange = True }
|
||||||
|
|
||||||
@ -238,8 +238,8 @@ update flags msg model =
|
|||||||
in
|
in
|
||||||
noChange <|
|
noChange <|
|
||||||
Util.Update.andThen1
|
Util.Update.andThen1
|
||||||
[ update flags (TagIncMsg tagList) >> .modelCmd
|
[ update flags settings (TagIncMsg tagList) >> .modelCmd
|
||||||
, update flags (TagExcMsg tagList) >> .modelCmd
|
, update flags settings (TagExcMsg tagList) >> .modelCmd
|
||||||
]
|
]
|
||||||
model
|
model
|
||||||
|
|
||||||
@ -251,7 +251,7 @@ update flags msg model =
|
|||||||
opts =
|
opts =
|
||||||
Comp.Dropdown.SetOptions equips.items
|
Comp.Dropdown.SetOptions equips.items
|
||||||
in
|
in
|
||||||
update flags (ConcEquipmentMsg opts) model
|
update flags settings (ConcEquipmentMsg opts) model
|
||||||
|
|
||||||
GetEquipResp (Err _) ->
|
GetEquipResp (Err _) ->
|
||||||
noChange ( model, Cmd.none )
|
noChange ( model, Cmd.none )
|
||||||
@ -261,7 +261,7 @@ update flags msg model =
|
|||||||
opts =
|
opts =
|
||||||
Comp.Dropdown.SetOptions orgs.items
|
Comp.Dropdown.SetOptions orgs.items
|
||||||
in
|
in
|
||||||
update flags (OrgMsg opts) model
|
update flags settings (OrgMsg opts) model
|
||||||
|
|
||||||
GetOrgResp (Err _) ->
|
GetOrgResp (Err _) ->
|
||||||
noChange ( model, Cmd.none )
|
noChange ( model, Cmd.none )
|
||||||
@ -273,8 +273,8 @@ update flags msg model =
|
|||||||
in
|
in
|
||||||
noChange <|
|
noChange <|
|
||||||
Util.Update.andThen1
|
Util.Update.andThen1
|
||||||
[ update flags (CorrPersonMsg opts) >> .modelCmd
|
[ update flags settings (CorrPersonMsg opts) >> .modelCmd
|
||||||
, update flags (ConcPersonMsg opts) >> .modelCmd
|
, update flags settings (ConcPersonMsg opts) >> .modelCmd
|
||||||
]
|
]
|
||||||
model
|
model
|
||||||
|
|
||||||
@ -461,8 +461,8 @@ update flags msg model =
|
|||||||
-- View
|
-- View
|
||||||
|
|
||||||
|
|
||||||
view : Model -> Html Msg
|
view : UiSettings -> Model -> Html Msg
|
||||||
view model =
|
view settings model =
|
||||||
div [ class "ui form" ]
|
div [ class "ui form" ]
|
||||||
[ div [ class "inline field" ]
|
[ div [ class "inline field" ]
|
||||||
[ div [ class "ui checkbox" ]
|
[ div [ class "ui checkbox" ]
|
||||||
@ -493,18 +493,18 @@ view model =
|
|||||||
]
|
]
|
||||||
, div [ class "field" ]
|
, div [ class "field" ]
|
||||||
[ label [] [ text "Direction" ]
|
[ label [] [ text "Direction" ]
|
||||||
, Html.map DirectionMsg (Comp.Dropdown.view model.directionModel)
|
, Html.map DirectionMsg (Comp.Dropdown.view settings model.directionModel)
|
||||||
]
|
]
|
||||||
, h3 [ class "ui header" ]
|
, h3 [ class "ui header" ]
|
||||||
[ text "Tags"
|
[ text "Tags"
|
||||||
]
|
]
|
||||||
, div [ class "field" ]
|
, div [ class "field" ]
|
||||||
[ label [] [ text "Include (and)" ]
|
[ label [] [ text "Include (and)" ]
|
||||||
, Html.map TagIncMsg (Comp.Dropdown.view model.tagInclModel)
|
, Html.map TagIncMsg (Comp.Dropdown.view settings model.tagInclModel)
|
||||||
]
|
]
|
||||||
, div [ class "field" ]
|
, div [ class "field" ]
|
||||||
[ label [] [ text "Exclude (or)" ]
|
[ label [] [ text "Exclude (or)" ]
|
||||||
, Html.map TagExcMsg (Comp.Dropdown.view model.tagExclModel)
|
, Html.map TagExcMsg (Comp.Dropdown.view settings model.tagExclModel)
|
||||||
]
|
]
|
||||||
, h3 [ class "ui header" ]
|
, h3 [ class "ui header" ]
|
||||||
[ case getDirection model of
|
[ case getDirection model of
|
||||||
@ -519,22 +519,22 @@ view model =
|
|||||||
]
|
]
|
||||||
, div [ class "field" ]
|
, div [ class "field" ]
|
||||||
[ label [] [ text "Organization" ]
|
[ label [] [ text "Organization" ]
|
||||||
, Html.map OrgMsg (Comp.Dropdown.view model.orgModel)
|
, Html.map OrgMsg (Comp.Dropdown.view settings model.orgModel)
|
||||||
]
|
]
|
||||||
, div [ class "field" ]
|
, div [ class "field" ]
|
||||||
[ label [] [ text "Person" ]
|
[ label [] [ text "Person" ]
|
||||||
, Html.map CorrPersonMsg (Comp.Dropdown.view model.corrPersonModel)
|
, Html.map CorrPersonMsg (Comp.Dropdown.view settings model.corrPersonModel)
|
||||||
]
|
]
|
||||||
, h3 [ class "ui header" ]
|
, h3 [ class "ui header" ]
|
||||||
[ text "Concerned"
|
[ text "Concerned"
|
||||||
]
|
]
|
||||||
, div [ class "field" ]
|
, div [ class "field" ]
|
||||||
[ label [] [ text "Person" ]
|
[ label [] [ text "Person" ]
|
||||||
, Html.map ConcPersonMsg (Comp.Dropdown.view model.concPersonModel)
|
, Html.map ConcPersonMsg (Comp.Dropdown.view settings model.concPersonModel)
|
||||||
]
|
]
|
||||||
, div [ class "field" ]
|
, div [ class "field" ]
|
||||||
[ label [] [ text "Equipment" ]
|
[ label [] [ text "Equipment" ]
|
||||||
, Html.map ConcEquipmentMsg (Comp.Dropdown.view model.concEquipmentModel)
|
, Html.map ConcEquipmentMsg (Comp.Dropdown.view settings model.concEquipmentModel)
|
||||||
]
|
]
|
||||||
, h3 [ class "ui header" ]
|
, h3 [ class "ui header" ]
|
||||||
[ text "Date"
|
[ text "Date"
|
||||||
|
@ -2,92 +2,179 @@ module Comp.UiSettingsForm exposing
|
|||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
, init
|
, init
|
||||||
, initWith
|
|
||||||
, update
|
, update
|
||||||
, view
|
, view
|
||||||
)
|
)
|
||||||
|
|
||||||
|
import Api
|
||||||
|
import Api.Model.TagList exposing (TagList)
|
||||||
|
import Comp.ColorTagger
|
||||||
import Comp.IntField
|
import Comp.IntField
|
||||||
|
import Data.Color exposing (Color)
|
||||||
|
import Data.Flags exposing (Flags)
|
||||||
import Data.UiSettings exposing (StoredUiSettings, UiSettings)
|
import Data.UiSettings exposing (StoredUiSettings, UiSettings)
|
||||||
|
import Dict exposing (Dict)
|
||||||
import Html exposing (..)
|
import Html exposing (..)
|
||||||
import Html.Attributes exposing (..)
|
import Html.Attributes exposing (..)
|
||||||
|
import Html.Events exposing (onCheck)
|
||||||
|
import Http
|
||||||
|
import Util.List
|
||||||
|
|
||||||
|
|
||||||
type alias Model =
|
type alias Model =
|
||||||
{ defaults : UiSettings
|
{ itemSearchPageSize : Maybe Int
|
||||||
, input : StoredUiSettings
|
|
||||||
, searchPageSizeModel : Comp.IntField.Model
|
, searchPageSizeModel : Comp.IntField.Model
|
||||||
|
, tagColors : Dict String Color
|
||||||
|
, tagColorModel : Comp.ColorTagger.Model
|
||||||
|
, nativePdfPreview : Bool
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
initWith : UiSettings -> Model
|
init : Flags -> UiSettings -> ( Model, Cmd Msg )
|
||||||
initWith defaults =
|
init flags settings =
|
||||||
{ defaults = defaults
|
( { itemSearchPageSize = Just settings.itemSearchPageSize
|
||||||
, input = Data.UiSettings.toStoredUiSettings defaults
|
, searchPageSizeModel =
|
||||||
, searchPageSizeModel =
|
Comp.IntField.init
|
||||||
Comp.IntField.init
|
(Just 10)
|
||||||
(Just 10)
|
(Just 500)
|
||||||
(Just 500)
|
False
|
||||||
False
|
"Page size"
|
||||||
"Item search page"
|
, tagColors = settings.tagCategoryColors
|
||||||
}
|
, tagColorModel =
|
||||||
|
Comp.ColorTagger.init
|
||||||
|
[]
|
||||||
init : Model
|
Data.Color.all
|
||||||
init =
|
, nativePdfPreview = settings.nativePdfPreview
|
||||||
initWith Data.UiSettings.defaults
|
}
|
||||||
|
, Api.getTags flags "" GetTagsResp
|
||||||
|
)
|
||||||
changeInput : (StoredUiSettings -> StoredUiSettings) -> Model -> StoredUiSettings
|
|
||||||
changeInput change model =
|
|
||||||
change model.input
|
|
||||||
|
|
||||||
|
|
||||||
type Msg
|
type Msg
|
||||||
= SearchPageSizeMsg Comp.IntField.Msg
|
= SearchPageSizeMsg Comp.IntField.Msg
|
||||||
|
| TagColorMsg Comp.ColorTagger.Msg
|
||||||
|
| GetTagsResp (Result Http.Error TagList)
|
||||||
getSettings : Model -> UiSettings
|
| TogglePdfPreview
|
||||||
getSettings model =
|
|
||||||
Data.UiSettings.merge model.input model.defaults
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
--- Update
|
--- Update
|
||||||
|
|
||||||
|
|
||||||
update : Msg -> Model -> ( Model, Maybe UiSettings )
|
update : UiSettings -> Msg -> Model -> ( Model, Maybe UiSettings )
|
||||||
update msg model =
|
update sett msg model =
|
||||||
case msg of
|
case msg of
|
||||||
SearchPageSizeMsg lm ->
|
SearchPageSizeMsg lm ->
|
||||||
let
|
let
|
||||||
( m, n ) =
|
( m, n ) =
|
||||||
Comp.IntField.update lm model.searchPageSizeModel
|
Comp.IntField.update lm model.searchPageSizeModel
|
||||||
|
|
||||||
|
nextSettings =
|
||||||
|
Maybe.map (\sz -> { sett | itemSearchPageSize = sz }) n
|
||||||
|
|
||||||
model_ =
|
model_ =
|
||||||
{ model
|
{ model
|
||||||
| searchPageSizeModel = m
|
| searchPageSizeModel = m
|
||||||
, input = changeInput (\s -> { s | itemSearchPageSize = n }) model
|
, itemSearchPageSize = n
|
||||||
}
|
}
|
||||||
|
|
||||||
nextSettings =
|
|
||||||
Maybe.map (\_ -> getSettings model_) n
|
|
||||||
in
|
in
|
||||||
( model_, nextSettings )
|
( model_, nextSettings )
|
||||||
|
|
||||||
|
TagColorMsg lm ->
|
||||||
|
let
|
||||||
|
( m_, d_ ) =
|
||||||
|
Comp.ColorTagger.update lm model.tagColorModel
|
||||||
|
|
||||||
|
nextSettings =
|
||||||
|
Maybe.map (\tc -> { sett | tagCategoryColors = tc }) d_
|
||||||
|
|
||||||
|
model_ =
|
||||||
|
{ model
|
||||||
|
| tagColorModel = m_
|
||||||
|
, tagColors = Maybe.withDefault model.tagColors d_
|
||||||
|
}
|
||||||
|
in
|
||||||
|
( model_, nextSettings )
|
||||||
|
|
||||||
|
TogglePdfPreview ->
|
||||||
|
let
|
||||||
|
flag =
|
||||||
|
not model.nativePdfPreview
|
||||||
|
in
|
||||||
|
( { model | nativePdfPreview = flag }
|
||||||
|
, Just { sett | nativePdfPreview = flag }
|
||||||
|
)
|
||||||
|
|
||||||
|
GetTagsResp (Ok tl) ->
|
||||||
|
let
|
||||||
|
categories =
|
||||||
|
List.filterMap .category tl.items
|
||||||
|
|> Util.List.distinct
|
||||||
|
in
|
||||||
|
( { model
|
||||||
|
| tagColorModel =
|
||||||
|
Comp.ColorTagger.init
|
||||||
|
categories
|
||||||
|
Data.Color.all
|
||||||
|
}
|
||||||
|
, Nothing
|
||||||
|
)
|
||||||
|
|
||||||
|
GetTagsResp (Err _) ->
|
||||||
|
( model, Nothing )
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
--- View
|
--- View
|
||||||
|
|
||||||
|
|
||||||
view : Model -> Html Msg
|
tagColorViewOpts : Comp.ColorTagger.ViewOpts
|
||||||
view model =
|
tagColorViewOpts =
|
||||||
|
{ renderItem =
|
||||||
|
\( k, v ) ->
|
||||||
|
span [ class ("ui label " ++ Data.Color.toString v) ]
|
||||||
|
[ text k ]
|
||||||
|
, label = "Choose color for tag categories"
|
||||||
|
, description = Just "Tags can be represented differently based on their category."
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
view : UiSettings -> Model -> Html Msg
|
||||||
|
view _ model =
|
||||||
div [ class "ui form" ]
|
div [ class "ui form" ]
|
||||||
[ Html.map SearchPageSizeMsg
|
[ div [ class "ui dividing header" ]
|
||||||
|
[ text "Item Search"
|
||||||
|
]
|
||||||
|
, Html.map SearchPageSizeMsg
|
||||||
(Comp.IntField.viewWithInfo
|
(Comp.IntField.viewWithInfo
|
||||||
"Maximum results in one page when searching items."
|
"Maximum results in one page when searching items."
|
||||||
model.input.itemSearchPageSize
|
model.itemSearchPageSize
|
||||||
""
|
"field"
|
||||||
model.searchPageSizeModel
|
model.searchPageSizeModel
|
||||||
)
|
)
|
||||||
|
, div [ class "ui dividing header" ]
|
||||||
|
[ text "Item Detail"
|
||||||
|
]
|
||||||
|
, div [ class "field" ]
|
||||||
|
[ div [ class "ui checkbox" ]
|
||||||
|
[ input
|
||||||
|
[ type_ "checkbox"
|
||||||
|
, onCheck (\_ -> TogglePdfPreview)
|
||||||
|
, checked model.nativePdfPreview
|
||||||
|
]
|
||||||
|
[]
|
||||||
|
, label []
|
||||||
|
[ text "Browser-native PDF preview"
|
||||||
|
]
|
||||||
|
]
|
||||||
|
]
|
||||||
|
, div [ class "ui dividing header" ]
|
||||||
|
[ text "Tag Category Colors"
|
||||||
|
]
|
||||||
|
, Html.map TagColorMsg
|
||||||
|
(Comp.ColorTagger.view
|
||||||
|
model.tagColors
|
||||||
|
tagColorViewOpts
|
||||||
|
model.tagColorModel
|
||||||
|
)
|
||||||
]
|
]
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
module Comp.UiSettingsManage exposing
|
module Comp.UiSettingsManage exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg(..)
|
||||||
, init
|
, init
|
||||||
, update
|
, update
|
||||||
, view
|
, view
|
||||||
@ -27,32 +27,44 @@ type Msg
|
|||||||
= UiSettingsFormMsg Comp.UiSettingsForm.Msg
|
= UiSettingsFormMsg Comp.UiSettingsForm.Msg
|
||||||
| Submit
|
| Submit
|
||||||
| SettingsSaved
|
| SettingsSaved
|
||||||
|
| UpdateSettings
|
||||||
|
|
||||||
|
|
||||||
init : UiSettings -> Model
|
init : Flags -> UiSettings -> ( Model, Cmd Msg )
|
||||||
init defaults =
|
init flags settings =
|
||||||
{ formModel = Comp.UiSettingsForm.initWith defaults
|
let
|
||||||
, settings = Nothing
|
( fm, fc ) =
|
||||||
, message = Nothing
|
Comp.UiSettingsForm.init flags settings
|
||||||
}
|
in
|
||||||
|
( { formModel = fm
|
||||||
|
, settings = Nothing
|
||||||
|
, message = Nothing
|
||||||
|
}
|
||||||
|
, Cmd.map UiSettingsFormMsg fc
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
--- update
|
--- update
|
||||||
|
|
||||||
|
|
||||||
update : Flags -> Msg -> Model -> ( Model, Cmd Msg, Sub Msg )
|
update : Flags -> UiSettings -> Msg -> Model -> ( Model, Cmd Msg, Sub Msg )
|
||||||
update flags msg model =
|
update flags settings msg model =
|
||||||
case msg of
|
case msg of
|
||||||
UiSettingsFormMsg lm ->
|
UiSettingsFormMsg lm ->
|
||||||
let
|
let
|
||||||
( m_, sett ) =
|
( m_, sett ) =
|
||||||
Comp.UiSettingsForm.update lm model.formModel
|
Comp.UiSettingsForm.update settings lm model.formModel
|
||||||
in
|
in
|
||||||
( { model
|
( { model
|
||||||
| formModel = m_
|
| formModel = m_
|
||||||
, settings = sett
|
, settings = sett
|
||||||
, message = Nothing
|
, message =
|
||||||
|
if sett /= Nothing then
|
||||||
|
Nothing
|
||||||
|
|
||||||
|
else
|
||||||
|
model.message
|
||||||
}
|
}
|
||||||
, Cmd.none
|
, Cmd.none
|
||||||
, Sub.none
|
, Sub.none
|
||||||
@ -78,6 +90,16 @@ update flags msg model =
|
|||||||
, Sub.none
|
, Sub.none
|
||||||
)
|
)
|
||||||
|
|
||||||
|
UpdateSettings ->
|
||||||
|
let
|
||||||
|
( fm, fc ) =
|
||||||
|
Comp.UiSettingsForm.init flags settings
|
||||||
|
in
|
||||||
|
( { model | formModel = fm }
|
||||||
|
, Cmd.map UiSettingsFormMsg fc
|
||||||
|
, Sub.none
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
--- View
|
--- View
|
||||||
@ -93,10 +115,10 @@ isSuccess model =
|
|||||||
Maybe.map .success model.message == Just True
|
Maybe.map .success model.message == Just True
|
||||||
|
|
||||||
|
|
||||||
view : String -> Model -> Html Msg
|
view : UiSettings -> String -> Model -> Html Msg
|
||||||
view classes model =
|
view settings classes model =
|
||||||
div [ class classes ]
|
div [ class classes ]
|
||||||
[ Html.map UiSettingsFormMsg (Comp.UiSettingsForm.view model.formModel)
|
[ Html.map UiSettingsFormMsg (Comp.UiSettingsForm.view settings model.formModel)
|
||||||
, div [ class "ui divider" ] []
|
, div [ class "ui divider" ] []
|
||||||
, button
|
, button
|
||||||
[ class "ui primary button"
|
[ class "ui primary button"
|
||||||
|
@ -12,6 +12,7 @@ module Comp.UserForm exposing
|
|||||||
import Api.Model.User exposing (User)
|
import Api.Model.User exposing (User)
|
||||||
import Comp.Dropdown
|
import Comp.Dropdown
|
||||||
import Data.Flags exposing (Flags)
|
import Data.Flags exposing (Flags)
|
||||||
|
import Data.UiSettings exposing (UiSettings)
|
||||||
import Data.UserState exposing (UserState)
|
import Data.UserState exposing (UserState)
|
||||||
import Html exposing (..)
|
import Html exposing (..)
|
||||||
import Html.Attributes exposing (..)
|
import Html.Attributes exposing (..)
|
||||||
@ -152,8 +153,8 @@ update _ msg model =
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
view : Model -> Html Msg
|
view : UiSettings -> Model -> Html Msg
|
||||||
view model =
|
view settings model =
|
||||||
div [ class "ui form" ]
|
div [ class "ui form" ]
|
||||||
[ div
|
[ div
|
||||||
[ classList
|
[ classList
|
||||||
@ -182,7 +183,7 @@ view model =
|
|||||||
]
|
]
|
||||||
, div [ class "field" ]
|
, div [ class "field" ]
|
||||||
[ label [] [ text "State" ]
|
[ label [] [ text "State" ]
|
||||||
, Html.map StateMsg (Comp.Dropdown.view model.state)
|
, Html.map StateMsg (Comp.Dropdown.view settings model.state)
|
||||||
]
|
]
|
||||||
, div
|
, div
|
||||||
[ classList
|
[ classList
|
||||||
|
@ -14,6 +14,7 @@ import Comp.UserForm
|
|||||||
import Comp.UserTable
|
import Comp.UserTable
|
||||||
import Comp.YesNoDimmer
|
import Comp.YesNoDimmer
|
||||||
import Data.Flags exposing (Flags)
|
import Data.Flags exposing (Flags)
|
||||||
|
import Data.UiSettings exposing (UiSettings)
|
||||||
import Html exposing (..)
|
import Html exposing (..)
|
||||||
import Html.Attributes exposing (..)
|
import Html.Attributes exposing (..)
|
||||||
import Html.Events exposing (onClick, onSubmit)
|
import Html.Events exposing (onClick, onSubmit)
|
||||||
@ -194,13 +195,13 @@ update flags msg model =
|
|||||||
( { model | deleteConfirm = cm }, cmd )
|
( { model | deleteConfirm = cm }, cmd )
|
||||||
|
|
||||||
|
|
||||||
view : Model -> Html Msg
|
view : UiSettings -> Model -> Html Msg
|
||||||
view model =
|
view settings model =
|
||||||
if model.viewMode == Table then
|
if model.viewMode == Table then
|
||||||
viewTable model
|
viewTable model
|
||||||
|
|
||||||
else
|
else
|
||||||
viewForm model
|
viewForm settings model
|
||||||
|
|
||||||
|
|
||||||
viewTable : Model -> Html Msg
|
viewTable : Model -> Html Msg
|
||||||
@ -222,8 +223,8 @@ viewTable model =
|
|||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
viewForm : Model -> Html Msg
|
viewForm : UiSettings -> Model -> Html Msg
|
||||||
viewForm model =
|
viewForm settings model =
|
||||||
let
|
let
|
||||||
newUser =
|
newUser =
|
||||||
Comp.UserForm.isNewUser model.formModel
|
Comp.UserForm.isNewUser model.formModel
|
||||||
@ -239,7 +240,7 @@ viewForm model =
|
|||||||
h3 [ class "ui dividing header" ]
|
h3 [ class "ui dividing header" ]
|
||||||
[ text ("Edit user: " ++ model.formModel.user.login)
|
[ text ("Edit user: " ++ model.formModel.user.login)
|
||||||
]
|
]
|
||||||
, Html.map FormMsg (Comp.UserForm.view model.formModel)
|
, Html.map FormMsg (Comp.UserForm.view settings model.formModel)
|
||||||
, div
|
, div
|
||||||
[ classList
|
[ classList
|
||||||
[ ( "ui error message", True )
|
[ ( "ui error message", True )
|
||||||
|
135
modules/webapp/src/main/elm/Data/Color.elm
Normal file
135
modules/webapp/src/main/elm/Data/Color.elm
Normal file
@ -0,0 +1,135 @@
|
|||||||
|
module Data.Color exposing
|
||||||
|
( Color(..)
|
||||||
|
, all
|
||||||
|
, allString
|
||||||
|
, fromString
|
||||||
|
, toString
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
type Color
|
||||||
|
= Red
|
||||||
|
| Orange
|
||||||
|
| Yellow
|
||||||
|
| Olive
|
||||||
|
| Green
|
||||||
|
| Teal
|
||||||
|
| Blue
|
||||||
|
| Violet
|
||||||
|
| Purple
|
||||||
|
| Pink
|
||||||
|
| Brown
|
||||||
|
| Grey
|
||||||
|
| Black
|
||||||
|
|
||||||
|
|
||||||
|
all : List Color
|
||||||
|
all =
|
||||||
|
[ Red
|
||||||
|
, Orange
|
||||||
|
, Yellow
|
||||||
|
, Olive
|
||||||
|
, Green
|
||||||
|
, Teal
|
||||||
|
, Blue
|
||||||
|
, Violet
|
||||||
|
, Purple
|
||||||
|
, Pink
|
||||||
|
, Brown
|
||||||
|
, Grey
|
||||||
|
, Black
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
allString : List String
|
||||||
|
allString =
|
||||||
|
List.map toString all
|
||||||
|
|
||||||
|
|
||||||
|
fromString : String -> Maybe Color
|
||||||
|
fromString str =
|
||||||
|
case String.toLower str of
|
||||||
|
"red" ->
|
||||||
|
Just Red
|
||||||
|
|
||||||
|
"orange" ->
|
||||||
|
Just Orange
|
||||||
|
|
||||||
|
"yellow" ->
|
||||||
|
Just Yellow
|
||||||
|
|
||||||
|
"olive" ->
|
||||||
|
Just Olive
|
||||||
|
|
||||||
|
"green" ->
|
||||||
|
Just Green
|
||||||
|
|
||||||
|
"teal" ->
|
||||||
|
Just Teal
|
||||||
|
|
||||||
|
"blue" ->
|
||||||
|
Just Blue
|
||||||
|
|
||||||
|
"violet" ->
|
||||||
|
Just Violet
|
||||||
|
|
||||||
|
"purple" ->
|
||||||
|
Just Purple
|
||||||
|
|
||||||
|
"pink" ->
|
||||||
|
Just Pink
|
||||||
|
|
||||||
|
"brown" ->
|
||||||
|
Just Brown
|
||||||
|
|
||||||
|
"grey" ->
|
||||||
|
Just Grey
|
||||||
|
|
||||||
|
"black" ->
|
||||||
|
Just Black
|
||||||
|
|
||||||
|
_ ->
|
||||||
|
Nothing
|
||||||
|
|
||||||
|
|
||||||
|
toString : Color -> String
|
||||||
|
toString color =
|
||||||
|
case color of
|
||||||
|
Red ->
|
||||||
|
"red"
|
||||||
|
|
||||||
|
Orange ->
|
||||||
|
"orange"
|
||||||
|
|
||||||
|
Yellow ->
|
||||||
|
"yellow"
|
||||||
|
|
||||||
|
Olive ->
|
||||||
|
"olive"
|
||||||
|
|
||||||
|
Green ->
|
||||||
|
"green"
|
||||||
|
|
||||||
|
Teal ->
|
||||||
|
"teal"
|
||||||
|
|
||||||
|
Blue ->
|
||||||
|
"blue"
|
||||||
|
|
||||||
|
Violet ->
|
||||||
|
"violet"
|
||||||
|
|
||||||
|
Purple ->
|
||||||
|
"purple"
|
||||||
|
|
||||||
|
Pink ->
|
||||||
|
"pink"
|
||||||
|
|
||||||
|
Brown ->
|
||||||
|
"brown"
|
||||||
|
|
||||||
|
Grey ->
|
||||||
|
"grey"
|
||||||
|
|
||||||
|
Black ->
|
||||||
|
"black"
|
@ -4,9 +4,16 @@ module Data.UiSettings exposing
|
|||||||
, defaults
|
, defaults
|
||||||
, merge
|
, merge
|
||||||
, mergeDefaults
|
, mergeDefaults
|
||||||
|
, tagColor
|
||||||
|
, tagColorString
|
||||||
, toStoredUiSettings
|
, toStoredUiSettings
|
||||||
)
|
)
|
||||||
|
|
||||||
|
import Api.Model.Tag exposing (Tag)
|
||||||
|
import Data.Color exposing (Color)
|
||||||
|
import Dict exposing (Dict)
|
||||||
|
|
||||||
|
|
||||||
{-| Settings for the web ui. All fields should be optional, since it
|
{-| Settings for the web ui. All fields should be optional, since it
|
||||||
is loaded from local storage.
|
is loaded from local storage.
|
||||||
|
|
||||||
@ -15,10 +22,10 @@ versions. Also if a user is logged out, an empty object is send to
|
|||||||
force default settings.
|
force default settings.
|
||||||
|
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
type alias StoredUiSettings =
|
type alias StoredUiSettings =
|
||||||
{ itemSearchPageSize : Maybe Int
|
{ itemSearchPageSize : Maybe Int
|
||||||
|
, tagCategoryColors : List ( String, String )
|
||||||
|
, nativePdfPreview : Bool
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -31,12 +38,16 @@ default value, converting the StoredUiSettings into a UiSettings.
|
|||||||
-}
|
-}
|
||||||
type alias UiSettings =
|
type alias UiSettings =
|
||||||
{ itemSearchPageSize : Int
|
{ itemSearchPageSize : Int
|
||||||
|
, tagCategoryColors : Dict String Color
|
||||||
|
, nativePdfPreview : Bool
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
defaults : UiSettings
|
defaults : UiSettings
|
||||||
defaults =
|
defaults =
|
||||||
{ itemSearchPageSize = 60
|
{ itemSearchPageSize = 60
|
||||||
|
, tagCategoryColors = Dict.empty
|
||||||
|
, nativePdfPreview = False
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -44,6 +55,15 @@ merge : StoredUiSettings -> UiSettings -> UiSettings
|
|||||||
merge given fallback =
|
merge given fallback =
|
||||||
{ itemSearchPageSize =
|
{ itemSearchPageSize =
|
||||||
choose given.itemSearchPageSize fallback.itemSearchPageSize
|
choose given.itemSearchPageSize fallback.itemSearchPageSize
|
||||||
|
, tagCategoryColors =
|
||||||
|
Dict.union
|
||||||
|
(Dict.fromList given.tagCategoryColors
|
||||||
|
|> Dict.map (\_ -> Data.Color.fromString)
|
||||||
|
|> Dict.filter (\_ -> \mc -> mc /= Nothing)
|
||||||
|
|> Dict.map (\_ -> Maybe.withDefault Data.Color.Grey)
|
||||||
|
)
|
||||||
|
fallback.tagCategoryColors
|
||||||
|
, nativePdfPreview = given.nativePdfPreview
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -55,9 +75,33 @@ mergeDefaults given =
|
|||||||
toStoredUiSettings : UiSettings -> StoredUiSettings
|
toStoredUiSettings : UiSettings -> StoredUiSettings
|
||||||
toStoredUiSettings settings =
|
toStoredUiSettings settings =
|
||||||
{ itemSearchPageSize = Just settings.itemSearchPageSize
|
{ itemSearchPageSize = Just settings.itemSearchPageSize
|
||||||
|
, tagCategoryColors =
|
||||||
|
Dict.map (\_ -> Data.Color.toString) settings.tagCategoryColors
|
||||||
|
|> Dict.toList
|
||||||
|
, nativePdfPreview = settings.nativePdfPreview
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
tagColor : Tag -> UiSettings -> Maybe Color
|
||||||
|
tagColor tag settings =
|
||||||
|
let
|
||||||
|
readColor c =
|
||||||
|
Dict.get c settings.tagCategoryColors
|
||||||
|
in
|
||||||
|
Maybe.andThen readColor tag.category
|
||||||
|
|
||||||
|
|
||||||
|
tagColorString : Tag -> UiSettings -> String
|
||||||
|
tagColorString tag settings =
|
||||||
|
tagColor tag settings
|
||||||
|
|> Maybe.map Data.Color.toString
|
||||||
|
|> Maybe.withDefault ""
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
--- Helpers
|
||||||
|
|
||||||
|
|
||||||
choose : Maybe a -> a -> a
|
choose : Maybe a -> a -> a
|
||||||
choose m1 m2 =
|
choose m1 m2 =
|
||||||
Maybe.withDefault m2 m1
|
Maybe.withDefault m2 m1
|
||||||
|
@ -7,6 +7,7 @@ import App.View exposing (..)
|
|||||||
import Browser exposing (Document)
|
import Browser exposing (Document)
|
||||||
import Browser.Navigation exposing (Key)
|
import Browser.Navigation exposing (Key)
|
||||||
import Data.Flags exposing (Flags)
|
import Data.Flags exposing (Flags)
|
||||||
|
import Data.UiSettings
|
||||||
import Html exposing (..)
|
import Html exposing (..)
|
||||||
import Html.Attributes exposing (..)
|
import Html.Attributes exposing (..)
|
||||||
import Html.Events exposing (..)
|
import Html.Events exposing (..)
|
||||||
@ -38,8 +39,8 @@ main =
|
|||||||
init : Flags -> Url -> Key -> ( Model, Cmd Msg )
|
init : Flags -> Url -> Key -> ( Model, Cmd Msg )
|
||||||
init flags url key =
|
init flags url key =
|
||||||
let
|
let
|
||||||
im =
|
( im, ic ) =
|
||||||
App.Data.init key url flags
|
App.Data.init key url flags Data.UiSettings.defaults
|
||||||
|
|
||||||
page =
|
page =
|
||||||
checkPage flags im.page
|
checkPage flags im.page
|
||||||
@ -62,6 +63,7 @@ init flags url key =
|
|||||||
( m
|
( m
|
||||||
, Cmd.batch
|
, Cmd.batch
|
||||||
[ cmd
|
[ cmd
|
||||||
|
, ic
|
||||||
, Api.versionInfo flags VersionResp
|
, Api.versionInfo flags VersionResp
|
||||||
, sessionCheck
|
, sessionCheck
|
||||||
, Ports.getUiSettings flags
|
, Ports.getUiSettings flags
|
||||||
|
@ -5,6 +5,7 @@ import Comp.CollectiveSettingsForm
|
|||||||
import Comp.SourceManage
|
import Comp.SourceManage
|
||||||
import Comp.UserManage
|
import Comp.UserManage
|
||||||
import Data.Flags exposing (Flags)
|
import Data.Flags exposing (Flags)
|
||||||
|
import Data.UiSettings exposing (UiSettings)
|
||||||
import Html exposing (..)
|
import Html exposing (..)
|
||||||
import Html.Attributes exposing (..)
|
import Html.Attributes exposing (..)
|
||||||
import Html.Events exposing (onClick)
|
import Html.Events exposing (onClick)
|
||||||
@ -14,8 +15,8 @@ import Util.Maybe
|
|||||||
import Util.Size
|
import Util.Size
|
||||||
|
|
||||||
|
|
||||||
view : Flags -> Model -> Html Msg
|
view : Flags -> UiSettings -> Model -> Html Msg
|
||||||
view flags model =
|
view flags settings model =
|
||||||
div [ class "collectivesetting-page ui padded grid" ]
|
div [ class "collectivesetting-page ui padded grid" ]
|
||||||
[ div [ class "sixteen wide mobile four wide tablet four wide computer column" ]
|
[ div [ class "sixteen wide mobile four wide tablet four wide computer column" ]
|
||||||
[ h4 [ class "ui top attached ablue-comp header" ]
|
[ h4 [ class "ui top attached ablue-comp header" ]
|
||||||
@ -61,13 +62,13 @@ view flags model =
|
|||||||
viewSources flags model
|
viewSources flags model
|
||||||
|
|
||||||
Just UserTab ->
|
Just UserTab ->
|
||||||
viewUsers model
|
viewUsers settings model
|
||||||
|
|
||||||
Just InsightsTab ->
|
Just InsightsTab ->
|
||||||
viewInsights model
|
viewInsights model
|
||||||
|
|
||||||
Just SettingsTab ->
|
Just SettingsTab ->
|
||||||
viewSettings flags model
|
viewSettings flags settings model
|
||||||
|
|
||||||
Nothing ->
|
Nothing ->
|
||||||
[]
|
[]
|
||||||
@ -164,26 +165,26 @@ viewSources flags model =
|
|||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
viewUsers : Model -> List (Html Msg)
|
viewUsers : UiSettings -> Model -> List (Html Msg)
|
||||||
viewUsers model =
|
viewUsers settings model =
|
||||||
[ h2 [ class "ui header" ]
|
[ h2 [ class "ui header" ]
|
||||||
[ i [ class "ui user icon" ] []
|
[ i [ class "ui user icon" ] []
|
||||||
, div [ class "content" ]
|
, div [ class "content" ]
|
||||||
[ text "Users"
|
[ text "Users"
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
, Html.map UserMsg (Comp.UserManage.view model.userModel)
|
, Html.map UserMsg (Comp.UserManage.view settings model.userModel)
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
viewSettings : Flags -> Model -> List (Html Msg)
|
viewSettings : Flags -> UiSettings -> Model -> List (Html Msg)
|
||||||
viewSettings flags model =
|
viewSettings flags settings model =
|
||||||
[ h2 [ class "ui header" ]
|
[ h2 [ class "ui header" ]
|
||||||
[ i [ class "cog icon" ] []
|
[ i [ class "cog icon" ] []
|
||||||
, text "Settings"
|
, text "Settings"
|
||||||
]
|
]
|
||||||
, div [ class "ui segment" ]
|
, div [ class "ui segment" ]
|
||||||
[ Html.map SettingsFormMsg (Comp.CollectiveSettingsForm.view flags model.settingsModel)
|
[ Html.map SettingsFormMsg (Comp.CollectiveSettingsForm.view flags settings model.settingsModel)
|
||||||
]
|
]
|
||||||
, div
|
, div
|
||||||
[ classList
|
[ classList
|
||||||
|
@ -27,13 +27,12 @@ type alias Model =
|
|||||||
, searchOffset : Int
|
, searchOffset : Int
|
||||||
, moreAvailable : Bool
|
, moreAvailable : Bool
|
||||||
, moreInProgress : Bool
|
, moreInProgress : Bool
|
||||||
, uiSettings : UiSettings
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
init : Flags -> Model
|
init : Flags -> Model
|
||||||
init _ =
|
init _ =
|
||||||
{ searchMenuModel = Comp.SearchMenu.emptyModel
|
{ searchMenuModel = Comp.SearchMenu.init
|
||||||
, itemListModel = Comp.ItemCardList.init
|
, itemListModel = Comp.ItemCardList.init
|
||||||
, searchInProgress = False
|
, searchInProgress = False
|
||||||
, viewMode = Listing
|
, viewMode = Listing
|
||||||
@ -41,7 +40,6 @@ init _ =
|
|||||||
, searchOffset = 0
|
, searchOffset = 0
|
||||||
, moreAvailable = True
|
, moreAvailable = True
|
||||||
, moreInProgress = False
|
, moreInProgress = False
|
||||||
, uiSettings = Data.UiSettings.defaults
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -55,7 +53,6 @@ type Msg
|
|||||||
| DoSearch
|
| DoSearch
|
||||||
| ToggleSearchMenu
|
| ToggleSearchMenu
|
||||||
| LoadMore
|
| LoadMore
|
||||||
| GetUiSettings UiSettings
|
|
||||||
|
|
||||||
|
|
||||||
type ViewMode
|
type ViewMode
|
||||||
@ -77,15 +74,15 @@ itemNav id model =
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
doSearchCmd : Flags -> Int -> Model -> Cmd Msg
|
doSearchCmd : Flags -> UiSettings -> Int -> Model -> Cmd Msg
|
||||||
doSearchCmd flags offset model =
|
doSearchCmd flags settings offset model =
|
||||||
let
|
let
|
||||||
smask =
|
smask =
|
||||||
Comp.SearchMenu.getItemSearch model.searchMenuModel
|
Comp.SearchMenu.getItemSearch model.searchMenuModel
|
||||||
|
|
||||||
mask =
|
mask =
|
||||||
{ smask
|
{ smask
|
||||||
| limit = model.uiSettings.itemSearchPageSize
|
| limit = settings.itemSearchPageSize
|
||||||
, offset = offset
|
, offset = offset
|
||||||
}
|
}
|
||||||
in
|
in
|
||||||
@ -96,10 +93,10 @@ doSearchCmd flags offset model =
|
|||||||
Api.itemSearch flags mask ItemSearchAddResp
|
Api.itemSearch flags mask ItemSearchAddResp
|
||||||
|
|
||||||
|
|
||||||
resultsBelowLimit : Model -> Bool
|
resultsBelowLimit : UiSettings -> Model -> Bool
|
||||||
resultsBelowLimit model =
|
resultsBelowLimit settings model =
|
||||||
let
|
let
|
||||||
len =
|
len =
|
||||||
Data.Items.length model.itemListModel.results
|
Data.Items.length model.itemListModel.results
|
||||||
in
|
in
|
||||||
len < model.uiSettings.itemSearchPageSize
|
len < settings.itemSearchPageSize
|
||||||
|
@ -4,17 +4,18 @@ import Browser.Navigation as Nav
|
|||||||
import Comp.ItemCardList
|
import Comp.ItemCardList
|
||||||
import Comp.SearchMenu
|
import Comp.SearchMenu
|
||||||
import Data.Flags exposing (Flags)
|
import Data.Flags exposing (Flags)
|
||||||
|
import Data.UiSettings exposing (UiSettings)
|
||||||
import Page exposing (Page(..))
|
import Page exposing (Page(..))
|
||||||
import Page.Home.Data exposing (..)
|
import Page.Home.Data exposing (..)
|
||||||
import Util.Update
|
import Util.Update
|
||||||
|
|
||||||
|
|
||||||
update : Nav.Key -> Flags -> Msg -> Model -> ( Model, Cmd Msg )
|
update : Nav.Key -> Flags -> UiSettings -> Msg -> Model -> ( Model, Cmd Msg )
|
||||||
update key flags msg model =
|
update key flags settings msg model =
|
||||||
case msg of
|
case msg of
|
||||||
Init ->
|
Init ->
|
||||||
Util.Update.andThen1
|
Util.Update.andThen1
|
||||||
[ update key flags (SearchMenuMsg Comp.SearchMenu.Init)
|
[ update key flags settings (SearchMenuMsg Comp.SearchMenu.Init)
|
||||||
]
|
]
|
||||||
model
|
model
|
||||||
|
|
||||||
@ -23,19 +24,19 @@ update key flags msg model =
|
|||||||
nm =
|
nm =
|
||||||
{ model | searchOffset = 0 }
|
{ model | searchOffset = 0 }
|
||||||
in
|
in
|
||||||
update key flags (SearchMenuMsg Comp.SearchMenu.ResetForm) nm
|
update key flags settings (SearchMenuMsg Comp.SearchMenu.ResetForm) nm
|
||||||
|
|
||||||
SearchMenuMsg m ->
|
SearchMenuMsg m ->
|
||||||
let
|
let
|
||||||
nextState =
|
nextState =
|
||||||
Comp.SearchMenu.update flags m model.searchMenuModel
|
Comp.SearchMenu.update flags settings m model.searchMenuModel
|
||||||
|
|
||||||
newModel =
|
newModel =
|
||||||
{ model | searchMenuModel = Tuple.first nextState.modelCmd }
|
{ model | searchMenuModel = Tuple.first nextState.modelCmd }
|
||||||
|
|
||||||
( m2, c2 ) =
|
( m2, c2 ) =
|
||||||
if nextState.stateChange then
|
if nextState.stateChange then
|
||||||
doSearch flags newModel
|
doSearch flags settings newModel
|
||||||
|
|
||||||
else
|
else
|
||||||
( newModel, Cmd.none )
|
( newModel, Cmd.none )
|
||||||
@ -62,7 +63,7 @@ update key flags msg model =
|
|||||||
ItemSearchResp (Ok list) ->
|
ItemSearchResp (Ok list) ->
|
||||||
let
|
let
|
||||||
noff =
|
noff =
|
||||||
model.uiSettings.itemSearchPageSize
|
settings.itemSearchPageSize
|
||||||
|
|
||||||
m =
|
m =
|
||||||
{ model
|
{ model
|
||||||
@ -72,12 +73,12 @@ update key flags msg model =
|
|||||||
, moreAvailable = list.groups /= []
|
, moreAvailable = list.groups /= []
|
||||||
}
|
}
|
||||||
in
|
in
|
||||||
update key flags (ItemCardListMsg (Comp.ItemCardList.SetResults list)) m
|
update key flags settings (ItemCardListMsg (Comp.ItemCardList.SetResults list)) m
|
||||||
|
|
||||||
ItemSearchAddResp (Ok list) ->
|
ItemSearchAddResp (Ok list) ->
|
||||||
let
|
let
|
||||||
noff =
|
noff =
|
||||||
model.searchOffset + model.uiSettings.itemSearchPageSize
|
model.searchOffset + settings.itemSearchPageSize
|
||||||
|
|
||||||
m =
|
m =
|
||||||
{ model
|
{ model
|
||||||
@ -88,7 +89,7 @@ update key flags msg model =
|
|||||||
, moreAvailable = list.groups /= []
|
, moreAvailable = list.groups /= []
|
||||||
}
|
}
|
||||||
in
|
in
|
||||||
update key flags (ItemCardListMsg (Comp.ItemCardList.AddResults list)) m
|
update key flags settings (ItemCardListMsg (Comp.ItemCardList.AddResults list)) m
|
||||||
|
|
||||||
ItemSearchAddResp (Err _) ->
|
ItemSearchAddResp (Err _) ->
|
||||||
( { model
|
( { model
|
||||||
@ -109,7 +110,7 @@ update key flags msg model =
|
|||||||
nm =
|
nm =
|
||||||
{ model | searchOffset = 0 }
|
{ model | searchOffset = 0 }
|
||||||
in
|
in
|
||||||
doSearch flags nm
|
doSearch flags settings nm
|
||||||
|
|
||||||
ToggleSearchMenu ->
|
ToggleSearchMenu ->
|
||||||
( { model | menuCollapsed = not model.menuCollapsed }
|
( { model | menuCollapsed = not model.menuCollapsed }
|
||||||
@ -118,24 +119,17 @@ update key flags msg model =
|
|||||||
|
|
||||||
LoadMore ->
|
LoadMore ->
|
||||||
if model.moreAvailable then
|
if model.moreAvailable then
|
||||||
doSearchMore flags model
|
doSearchMore flags settings model
|
||||||
|
|
||||||
else
|
else
|
||||||
( model, Cmd.none )
|
( model, Cmd.none )
|
||||||
|
|
||||||
GetUiSettings settings ->
|
|
||||||
let
|
|
||||||
m_ =
|
|
||||||
{ model | uiSettings = settings }
|
|
||||||
in
|
|
||||||
doSearch flags m_
|
|
||||||
|
|
||||||
|
doSearch : Flags -> UiSettings -> Model -> ( Model, Cmd Msg )
|
||||||
doSearch : Flags -> Model -> ( Model, Cmd Msg )
|
doSearch flags settings model =
|
||||||
doSearch flags model =
|
|
||||||
let
|
let
|
||||||
cmd =
|
cmd =
|
||||||
doSearchCmd flags 0 model
|
doSearchCmd flags settings 0 model
|
||||||
in
|
in
|
||||||
( { model
|
( { model
|
||||||
| searchInProgress = True
|
| searchInProgress = True
|
||||||
@ -146,11 +140,11 @@ doSearch flags model =
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
doSearchMore : Flags -> Model -> ( Model, Cmd Msg )
|
doSearchMore : Flags -> UiSettings -> Model -> ( Model, Cmd Msg )
|
||||||
doSearchMore flags model =
|
doSearchMore flags settings model =
|
||||||
let
|
let
|
||||||
cmd =
|
cmd =
|
||||||
doSearchCmd flags model.searchOffset model
|
doSearchCmd flags settings model.searchOffset model
|
||||||
in
|
in
|
||||||
( { model | moreInProgress = True, viewMode = Listing }
|
( { model | moreInProgress = True, viewMode = Listing }
|
||||||
, cmd
|
, cmd
|
||||||
|
@ -2,6 +2,7 @@ module Page.Home.View exposing (view)
|
|||||||
|
|
||||||
import Comp.ItemCardList
|
import Comp.ItemCardList
|
||||||
import Comp.SearchMenu
|
import Comp.SearchMenu
|
||||||
|
import Data.UiSettings exposing (UiSettings)
|
||||||
import Html exposing (..)
|
import Html exposing (..)
|
||||||
import Html.Attributes exposing (..)
|
import Html.Attributes exposing (..)
|
||||||
import Html.Events exposing (onClick)
|
import Html.Events exposing (onClick)
|
||||||
@ -9,8 +10,8 @@ import Page exposing (Page(..))
|
|||||||
import Page.Home.Data exposing (..)
|
import Page.Home.Data exposing (..)
|
||||||
|
|
||||||
|
|
||||||
view : Model -> Html Msg
|
view : UiSettings -> Model -> Html Msg
|
||||||
view model =
|
view settings model =
|
||||||
div [ class "home-page ui padded grid" ]
|
div [ class "home-page ui padded grid" ]
|
||||||
[ div
|
[ div
|
||||||
[ classList
|
[ classList
|
||||||
@ -52,7 +53,7 @@ view model =
|
|||||||
]
|
]
|
||||||
]
|
]
|
||||||
, div [ class "ui attached fluid segment" ]
|
, div [ class "ui attached fluid segment" ]
|
||||||
[ Html.map SearchMenuMsg (Comp.SearchMenu.view model.searchMenuModel)
|
[ Html.map SearchMenuMsg (Comp.SearchMenu.view settings model.searchMenuModel)
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
, div
|
, div
|
||||||
@ -86,7 +87,7 @@ view model =
|
|||||||
|
|
||||||
else
|
else
|
||||||
Html.map ItemCardListMsg
|
Html.map ItemCardListMsg
|
||||||
(Comp.ItemCardList.view model.itemListModel)
|
(Comp.ItemCardList.view settings model.itemListModel)
|
||||||
|
|
||||||
Detail ->
|
Detail ->
|
||||||
div [] []
|
div [] []
|
||||||
@ -101,7 +102,7 @@ view model =
|
|||||||
[ classList
|
[ classList
|
||||||
[ ( "ui basic tiny button", True )
|
[ ( "ui basic tiny button", True )
|
||||||
, ( "disabled", not model.moreAvailable )
|
, ( "disabled", not model.moreAvailable )
|
||||||
, ( "hidden invisible", resultsBelowLimit model )
|
, ( "hidden invisible", resultsBelowLimit settings model )
|
||||||
]
|
]
|
||||||
, disabled (not model.moreAvailable || model.moreInProgress || model.searchInProgress)
|
, disabled (not model.moreAvailable || model.moreInProgress || model.searchInProgress)
|
||||||
, title "Load more items"
|
, title "Load more items"
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
module Page.ItemDetail.View exposing (view)
|
module Page.ItemDetail.View exposing (view)
|
||||||
|
|
||||||
import Comp.ItemDetail
|
import Comp.ItemDetail
|
||||||
|
import Data.UiSettings exposing (UiSettings)
|
||||||
import Html exposing (..)
|
import Html exposing (..)
|
||||||
import Html.Attributes exposing (..)
|
import Html.Attributes exposing (..)
|
||||||
import Page.ItemDetail.Data exposing (Model, Msg(..))
|
import Page.ItemDetail.Data exposing (Model, Msg(..))
|
||||||
@ -12,8 +13,8 @@ type alias ItemNav =
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
view : ItemNav -> Model -> Html Msg
|
view : ItemNav -> UiSettings -> Model -> Html Msg
|
||||||
view inav model =
|
view inav settings model =
|
||||||
div [ class "ui fluid container item-detail-page" ]
|
div [ class "ui fluid container item-detail-page" ]
|
||||||
[ Html.map ItemDetailMsg (Comp.ItemDetail.view inav model.detail)
|
[ Html.map ItemDetailMsg (Comp.ItemDetail.view inav settings model.detail)
|
||||||
]
|
]
|
||||||
|
@ -4,6 +4,7 @@ import Comp.EquipmentManage
|
|||||||
import Comp.OrgManage
|
import Comp.OrgManage
|
||||||
import Comp.PersonManage
|
import Comp.PersonManage
|
||||||
import Comp.TagManage
|
import Comp.TagManage
|
||||||
|
import Data.UiSettings exposing (UiSettings)
|
||||||
import Html exposing (..)
|
import Html exposing (..)
|
||||||
import Html.Attributes exposing (..)
|
import Html.Attributes exposing (..)
|
||||||
import Html.Events exposing (onClick)
|
import Html.Events exposing (onClick)
|
||||||
@ -11,8 +12,8 @@ import Page.ManageData.Data exposing (..)
|
|||||||
import Util.Html exposing (classActive)
|
import Util.Html exposing (classActive)
|
||||||
|
|
||||||
|
|
||||||
view : Model -> Html Msg
|
view : UiSettings -> Model -> Html Msg
|
||||||
view model =
|
view settings model =
|
||||||
div [ class "managedata-page ui padded grid" ]
|
div [ class "managedata-page ui padded grid" ]
|
||||||
[ div [ class "sixteen wide mobile four wide tablet four wide computer column" ]
|
[ div [ class "sixteen wide mobile four wide tablet four wide computer column" ]
|
||||||
[ h4 [ class "ui top attached ablue-comp header" ]
|
[ h4 [ class "ui top attached ablue-comp header" ]
|
||||||
@ -61,10 +62,10 @@ view model =
|
|||||||
viewEquip model
|
viewEquip model
|
||||||
|
|
||||||
Just OrgTab ->
|
Just OrgTab ->
|
||||||
viewOrg model
|
viewOrg settings model
|
||||||
|
|
||||||
Just PersonTab ->
|
Just PersonTab ->
|
||||||
viewPerson model
|
viewPerson settings model
|
||||||
|
|
||||||
Nothing ->
|
Nothing ->
|
||||||
[]
|
[]
|
||||||
@ -97,25 +98,25 @@ viewEquip model =
|
|||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
viewOrg : Model -> List (Html Msg)
|
viewOrg : UiSettings -> Model -> List (Html Msg)
|
||||||
viewOrg model =
|
viewOrg settings model =
|
||||||
[ h2 [ class "ui header" ]
|
[ h2 [ class "ui header" ]
|
||||||
[ i [ class "ui factory icon" ] []
|
[ i [ class "ui factory icon" ] []
|
||||||
, div [ class "content" ]
|
, div [ class "content" ]
|
||||||
[ text "Organizations"
|
[ text "Organizations"
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
, Html.map OrgManageMsg (Comp.OrgManage.view model.orgManageModel)
|
, Html.map OrgManageMsg (Comp.OrgManage.view settings model.orgManageModel)
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
viewPerson : Model -> List (Html Msg)
|
viewPerson : UiSettings -> Model -> List (Html Msg)
|
||||||
viewPerson model =
|
viewPerson settings model =
|
||||||
[ h2 [ class "ui header" ]
|
[ h2 [ class "ui header" ]
|
||||||
[ i [ class "ui user icon" ] []
|
[ i [ class "ui user icon" ] []
|
||||||
, div [ class "content" ]
|
, div [ class "content" ]
|
||||||
[ text "Person"
|
[ text "Person"
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
, Html.map PersonManageMsg (Comp.PersonManage.view model.personManageModel)
|
, Html.map PersonManageMsg (Comp.PersonManage.view settings model.personManageModel)
|
||||||
]
|
]
|
||||||
|
@ -2,7 +2,7 @@ module Page.UserSettings.Data exposing
|
|||||||
( Model
|
( Model
|
||||||
, Msg(..)
|
, Msg(..)
|
||||||
, Tab(..)
|
, Tab(..)
|
||||||
, emptyModel
|
, init
|
||||||
)
|
)
|
||||||
|
|
||||||
import Comp.ChangePasswordForm
|
import Comp.ChangePasswordForm
|
||||||
@ -26,16 +26,22 @@ type alias Model =
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
emptyModel : Flags -> Model
|
init : Flags -> UiSettings -> ( Model, Cmd Msg )
|
||||||
emptyModel flags =
|
init flags settings =
|
||||||
{ currentTab = Nothing
|
let
|
||||||
, changePassModel = Comp.ChangePasswordForm.emptyModel
|
( um, uc ) =
|
||||||
, emailSettingsModel = Comp.EmailSettingsManage.emptyModel
|
Comp.UiSettingsManage.init flags settings
|
||||||
, imapSettingsModel = Comp.ImapSettingsManage.emptyModel
|
in
|
||||||
, notificationModel = Tuple.first (Comp.NotificationForm.init flags)
|
( { currentTab = Nothing
|
||||||
, scanMailboxModel = Tuple.first (Comp.ScanMailboxManage.init flags)
|
, changePassModel = Comp.ChangePasswordForm.emptyModel
|
||||||
, uiSettingsModel = Comp.UiSettingsManage.init Data.UiSettings.defaults
|
, emailSettingsModel = Comp.EmailSettingsManage.emptyModel
|
||||||
}
|
, imapSettingsModel = Comp.ImapSettingsManage.emptyModel
|
||||||
|
, notificationModel = Tuple.first (Comp.NotificationForm.init flags settings)
|
||||||
|
, scanMailboxModel = Tuple.first (Comp.ScanMailboxManage.init flags)
|
||||||
|
, uiSettingsModel = um
|
||||||
|
}
|
||||||
|
, Cmd.map UiSettingsMsg uc
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
type Tab
|
type Tab
|
||||||
@ -54,5 +60,5 @@ type Msg
|
|||||||
| NotificationMsg Comp.NotificationForm.Msg
|
| NotificationMsg Comp.NotificationForm.Msg
|
||||||
| ImapSettingsMsg Comp.ImapSettingsManage.Msg
|
| ImapSettingsMsg Comp.ImapSettingsManage.Msg
|
||||||
| ScanMailboxMsg Comp.ScanMailboxManage.Msg
|
| ScanMailboxMsg Comp.ScanMailboxManage.Msg
|
||||||
| GetUiSettings UiSettings
|
|
||||||
| UiSettingsMsg Comp.UiSettingsManage.Msg
|
| UiSettingsMsg Comp.UiSettingsManage.Msg
|
||||||
|
| UpdateSettings
|
||||||
|
@ -7,11 +7,12 @@ import Comp.NotificationForm
|
|||||||
import Comp.ScanMailboxManage
|
import Comp.ScanMailboxManage
|
||||||
import Comp.UiSettingsManage
|
import Comp.UiSettingsManage
|
||||||
import Data.Flags exposing (Flags)
|
import Data.Flags exposing (Flags)
|
||||||
|
import Data.UiSettings exposing (UiSettings)
|
||||||
import Page.UserSettings.Data exposing (..)
|
import Page.UserSettings.Data exposing (..)
|
||||||
|
|
||||||
|
|
||||||
update : Flags -> Msg -> Model -> ( Model, Cmd Msg, Sub Msg )
|
update : Flags -> UiSettings -> Msg -> Model -> ( Model, Cmd Msg, Sub Msg )
|
||||||
update flags msg model =
|
update flags settings msg model =
|
||||||
case msg of
|
case msg of
|
||||||
SetTab t ->
|
SetTab t ->
|
||||||
let
|
let
|
||||||
@ -40,7 +41,7 @@ update flags msg model =
|
|||||||
let
|
let
|
||||||
initCmd =
|
initCmd =
|
||||||
Cmd.map NotificationMsg
|
Cmd.map NotificationMsg
|
||||||
(Tuple.second (Comp.NotificationForm.init flags))
|
(Tuple.second (Comp.NotificationForm.init flags settings))
|
||||||
in
|
in
|
||||||
( m, initCmd, Sub.none )
|
( m, initCmd, Sub.none )
|
||||||
|
|
||||||
@ -96,18 +97,18 @@ update flags msg model =
|
|||||||
, Sub.none
|
, Sub.none
|
||||||
)
|
)
|
||||||
|
|
||||||
GetUiSettings settings ->
|
|
||||||
( { model | uiSettingsModel = Comp.UiSettingsManage.init settings }
|
|
||||||
, Cmd.none
|
|
||||||
, Sub.none
|
|
||||||
)
|
|
||||||
|
|
||||||
UiSettingsMsg lm ->
|
UiSettingsMsg lm ->
|
||||||
let
|
let
|
||||||
( m2, c2, s2 ) =
|
( m2, c2, s2 ) =
|
||||||
Comp.UiSettingsManage.update flags lm model.uiSettingsModel
|
Comp.UiSettingsManage.update flags settings lm model.uiSettingsModel
|
||||||
in
|
in
|
||||||
( { model | uiSettingsModel = m2 }
|
( { model | uiSettingsModel = m2 }
|
||||||
, Cmd.map UiSettingsMsg c2
|
, Cmd.map UiSettingsMsg c2
|
||||||
, Sub.map UiSettingsMsg s2
|
, Sub.map UiSettingsMsg s2
|
||||||
)
|
)
|
||||||
|
|
||||||
|
UpdateSettings ->
|
||||||
|
update flags
|
||||||
|
settings
|
||||||
|
(UiSettingsMsg Comp.UiSettingsManage.UpdateSettings)
|
||||||
|
model
|
||||||
|
@ -6,6 +6,7 @@ import Comp.ImapSettingsManage
|
|||||||
import Comp.NotificationForm
|
import Comp.NotificationForm
|
||||||
import Comp.ScanMailboxManage
|
import Comp.ScanMailboxManage
|
||||||
import Comp.UiSettingsManage
|
import Comp.UiSettingsManage
|
||||||
|
import Data.UiSettings exposing (UiSettings)
|
||||||
import Html exposing (..)
|
import Html exposing (..)
|
||||||
import Html.Attributes exposing (..)
|
import Html.Attributes exposing (..)
|
||||||
import Html.Events exposing (onClick)
|
import Html.Events exposing (onClick)
|
||||||
@ -13,8 +14,8 @@ import Page.UserSettings.Data exposing (..)
|
|||||||
import Util.Html exposing (classActive)
|
import Util.Html exposing (classActive)
|
||||||
|
|
||||||
|
|
||||||
view : Model -> Html Msg
|
view : UiSettings -> Model -> Html Msg
|
||||||
view model =
|
view settings model =
|
||||||
div [ class "usersetting-page ui padded grid" ]
|
div [ class "usersetting-page ui padded grid" ]
|
||||||
[ div [ class "sixteen wide mobile four wide tablet four wide computer column" ]
|
[ div [ class "sixteen wide mobile four wide tablet four wide computer column" ]
|
||||||
[ h4 [ class "ui top attached ablue-comp header" ]
|
[ h4 [ class "ui top attached ablue-comp header" ]
|
||||||
@ -38,19 +39,19 @@ view model =
|
|||||||
viewChangePassword model
|
viewChangePassword model
|
||||||
|
|
||||||
Just EmailSettingsTab ->
|
Just EmailSettingsTab ->
|
||||||
viewEmailSettings model
|
viewEmailSettings settings model
|
||||||
|
|
||||||
Just NotificationTab ->
|
Just NotificationTab ->
|
||||||
viewNotificationForm model
|
viewNotificationForm settings model
|
||||||
|
|
||||||
Just ImapSettingsTab ->
|
Just ImapSettingsTab ->
|
||||||
viewImapSettings model
|
viewImapSettings settings model
|
||||||
|
|
||||||
Just ScanMailboxTab ->
|
Just ScanMailboxTab ->
|
||||||
viewScanMailboxManage model
|
viewScanMailboxManage settings model
|
||||||
|
|
||||||
Just UiSettingsTab ->
|
Just UiSettingsTab ->
|
||||||
viewUiSettings model
|
viewUiSettings settings model
|
||||||
|
|
||||||
Nothing ->
|
Nothing ->
|
||||||
[]
|
[]
|
||||||
@ -71,8 +72,8 @@ makeTab model tab header icon =
|
|||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
viewUiSettings : Model -> List (Html Msg)
|
viewUiSettings : UiSettings -> Model -> List (Html Msg)
|
||||||
viewUiSettings model =
|
viewUiSettings settings model =
|
||||||
[ h2 [ class "ui header" ]
|
[ h2 [ class "ui header" ]
|
||||||
[ i [ class "cog icon" ] []
|
[ i [ class "cog icon" ] []
|
||||||
, text "UI Settings"
|
, text "UI Settings"
|
||||||
@ -81,31 +82,36 @@ viewUiSettings model =
|
|||||||
[ text "These settings only affect the web ui. They are stored in the browser, "
|
[ text "These settings only affect the web ui. They are stored in the browser, "
|
||||||
, text "so they are separated between browsers and devices."
|
, text "so they are separated between browsers and devices."
|
||||||
]
|
]
|
||||||
, Html.map UiSettingsMsg (Comp.UiSettingsManage.view "ui segment" model.uiSettingsModel)
|
, Html.map UiSettingsMsg
|
||||||
|
(Comp.UiSettingsManage.view
|
||||||
|
settings
|
||||||
|
"ui segment"
|
||||||
|
model.uiSettingsModel
|
||||||
|
)
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
viewEmailSettings : Model -> List (Html Msg)
|
viewEmailSettings : UiSettings -> Model -> List (Html Msg)
|
||||||
viewEmailSettings model =
|
viewEmailSettings settings model =
|
||||||
[ h2 [ class "ui header" ]
|
[ h2 [ class "ui header" ]
|
||||||
[ i [ class "mail icon" ] []
|
[ i [ class "mail icon" ] []
|
||||||
, div [ class "content" ]
|
, div [ class "content" ]
|
||||||
[ text "E-Mail Settings (Smtp)"
|
[ text "E-Mail Settings (Smtp)"
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
, Html.map EmailSettingsMsg (Comp.EmailSettingsManage.view model.emailSettingsModel)
|
, Html.map EmailSettingsMsg (Comp.EmailSettingsManage.view settings model.emailSettingsModel)
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
viewImapSettings : Model -> List (Html Msg)
|
viewImapSettings : UiSettings -> Model -> List (Html Msg)
|
||||||
viewImapSettings model =
|
viewImapSettings settings model =
|
||||||
[ h2 [ class "ui header" ]
|
[ h2 [ class "ui header" ]
|
||||||
[ i [ class "mail icon" ] []
|
[ i [ class "mail icon" ] []
|
||||||
, div [ class "content" ]
|
, div [ class "content" ]
|
||||||
[ text "E-Mail Settings (Imap)"
|
[ text "E-Mail Settings (Imap)"
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
, Html.map ImapSettingsMsg (Comp.ImapSettingsManage.view model.imapSettingsModel)
|
, Html.map ImapSettingsMsg (Comp.ImapSettingsManage.view settings model.imapSettingsModel)
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
@ -121,8 +127,8 @@ viewChangePassword model =
|
|||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
viewNotificationForm : Model -> List (Html Msg)
|
viewNotificationForm : UiSettings -> Model -> List (Html Msg)
|
||||||
viewNotificationForm model =
|
viewNotificationForm settings model =
|
||||||
[ h2 [ class "ui header" ]
|
[ h2 [ class "ui header" ]
|
||||||
[ i [ class "ui bullhorn icon" ] []
|
[ i [ class "ui bullhorn icon" ] []
|
||||||
, div [ class "content" ]
|
, div [ class "content" ]
|
||||||
@ -141,12 +147,12 @@ viewNotificationForm model =
|
|||||||
, text " days and sends this list via e-mail."
|
, text " days and sends this list via e-mail."
|
||||||
]
|
]
|
||||||
, Html.map NotificationMsg
|
, Html.map NotificationMsg
|
||||||
(Comp.NotificationForm.view "segment" model.notificationModel)
|
(Comp.NotificationForm.view "segment" settings model.notificationModel)
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
viewScanMailboxManage : Model -> List (Html Msg)
|
viewScanMailboxManage : UiSettings -> Model -> List (Html Msg)
|
||||||
viewScanMailboxManage model =
|
viewScanMailboxManage settings model =
|
||||||
[ h2 [ class "ui header" ]
|
[ h2 [ class "ui header" ]
|
||||||
[ i [ class "ui envelope open outline icon" ] []
|
[ i [ class "ui envelope open outline icon" ] []
|
||||||
, div [ class "content" ]
|
, div [ class "content" ]
|
||||||
@ -171,6 +177,7 @@ viewScanMailboxManage model =
|
|||||||
]
|
]
|
||||||
, Html.map ScanMailboxMsg
|
, Html.map ScanMailboxMsg
|
||||||
(Comp.ScanMailboxManage.view
|
(Comp.ScanMailboxManage.view
|
||||||
|
settings
|
||||||
model.scanMailboxModel
|
model.scanMailboxModel
|
||||||
)
|
)
|
||||||
]
|
]
|
||||||
|
@ -32,13 +32,13 @@ port setAllProgress : ( String, Int ) -> Cmd msg
|
|||||||
port scrollToElem : String -> Cmd msg
|
port scrollToElem : String -> Cmd msg
|
||||||
|
|
||||||
|
|
||||||
port saveUiSettings : ( AuthResult, UiSettings ) -> Cmd msg
|
port saveUiSettings : ( AuthResult, StoredUiSettings ) -> Cmd msg
|
||||||
|
|
||||||
|
|
||||||
port receiveUiSettings : (StoredUiSettings -> msg) -> Sub msg
|
port receiveUiSettings : (StoredUiSettings -> msg) -> Sub msg
|
||||||
|
|
||||||
|
|
||||||
port requestUiSettings : ( AuthResult, UiSettings ) -> Cmd msg
|
port requestUiSettings : ( AuthResult, StoredUiSettings ) -> Cmd msg
|
||||||
|
|
||||||
|
|
||||||
port uiSettingsSaved : (() -> msg) -> Sub msg
|
port uiSettingsSaved : (() -> msg) -> Sub msg
|
||||||
@ -53,7 +53,10 @@ storeUiSettings : Flags -> UiSettings -> Cmd msg
|
|||||||
storeUiSettings flags settings =
|
storeUiSettings flags settings =
|
||||||
case flags.account of
|
case flags.account of
|
||||||
Just ar ->
|
Just ar ->
|
||||||
saveUiSettings ( ar, settings )
|
saveUiSettings
|
||||||
|
( ar
|
||||||
|
, Data.UiSettings.toStoredUiSettings settings
|
||||||
|
)
|
||||||
|
|
||||||
Nothing ->
|
Nothing ->
|
||||||
Cmd.none
|
Cmd.none
|
||||||
@ -68,7 +71,10 @@ getUiSettings : Flags -> Cmd msg
|
|||||||
getUiSettings flags =
|
getUiSettings flags =
|
||||||
case flags.account of
|
case flags.account of
|
||||||
Just ar ->
|
Just ar ->
|
||||||
requestUiSettings ( ar, Data.UiSettings.defaults )
|
requestUiSettings
|
||||||
|
( ar
|
||||||
|
, Data.UiSettings.toStoredUiSettings Data.UiSettings.defaults
|
||||||
|
)
|
||||||
|
|
||||||
Nothing ->
|
Nothing ->
|
||||||
Cmd.none
|
Cmd.none
|
||||||
|
@ -2,7 +2,7 @@ module Util.Tag exposing (makeDropdownModel)
|
|||||||
|
|
||||||
import Api.Model.Tag exposing (Tag)
|
import Api.Model.Tag exposing (Tag)
|
||||||
import Comp.Dropdown
|
import Comp.Dropdown
|
||||||
import Util.Maybe
|
import Data.UiSettings
|
||||||
|
|
||||||
|
|
||||||
makeDropdownModel : Comp.Dropdown.Model Tag
|
makeDropdownModel : Comp.Dropdown.Model Tag
|
||||||
@ -13,10 +13,7 @@ makeDropdownModel =
|
|||||||
, makeOption = \tag -> { value = tag.id, text = tag.name }
|
, makeOption = \tag -> { value = tag.id, text = tag.name }
|
||||||
, labelColor =
|
, labelColor =
|
||||||
\tag ->
|
\tag ->
|
||||||
if Util.Maybe.nonEmpty tag.category then
|
\settings ->
|
||||||
"basic blue"
|
"basic " ++ Data.UiSettings.tagColorString tag settings
|
||||||
|
|
||||||
else
|
|
||||||
""
|
|
||||||
, placeholder = "Choose a tag…"
|
, placeholder = "Choose a tag…"
|
||||||
}
|
}
|
||||||
|
@ -153,7 +153,7 @@ label span.muted {
|
|||||||
margin-left: 0.5em;
|
margin-left: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ui.search.dropdown.open {
|
.ui.search.dropdown.open, .ui.selection.dropdown.open {
|
||||||
z-index: 20;
|
z-index: 20;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user