mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-08-05 02:24:52 +00:00
236 lines
7.6 KiB
Elm
236 lines
7.6 KiB
Elm
module Comp.CollectiveSettingsForm exposing
|
|
( Model
|
|
, Msg
|
|
, getSettings
|
|
, init
|
|
, update
|
|
, view
|
|
)
|
|
|
|
import Api
|
|
import Api.Model.BasicResult exposing (BasicResult)
|
|
import Api.Model.CollectiveSettings exposing (CollectiveSettings)
|
|
import Comp.Dropdown
|
|
import Data.Flags exposing (Flags)
|
|
import Data.Language exposing (Language)
|
|
import Data.UiSettings exposing (UiSettings)
|
|
import Html exposing (..)
|
|
import Html.Attributes exposing (..)
|
|
import Html.Events exposing (onCheck, onClick, onInput)
|
|
import Http
|
|
import Util.Http
|
|
|
|
|
|
type alias Model =
|
|
{ langModel : Comp.Dropdown.Model Language
|
|
, intEnabled : Bool
|
|
, initSettings : CollectiveSettings
|
|
, fullTextConfirmText : String
|
|
, fullTextReIndexResult : Maybe BasicResult
|
|
}
|
|
|
|
|
|
init : CollectiveSettings -> Model
|
|
init settings =
|
|
let
|
|
lang =
|
|
Data.Language.fromString settings.language
|
|
|> Maybe.withDefault Data.Language.German
|
|
in
|
|
{ langModel =
|
|
Comp.Dropdown.makeSingleList
|
|
{ makeOption =
|
|
\l ->
|
|
{ value = Data.Language.toIso3 l
|
|
, text = Data.Language.toName l
|
|
, additional = ""
|
|
}
|
|
, placeholder = ""
|
|
, options = Data.Language.all
|
|
, selected = Just lang
|
|
}
|
|
, intEnabled = settings.integrationEnabled
|
|
, initSettings = settings
|
|
, fullTextConfirmText = ""
|
|
, fullTextReIndexResult = Nothing
|
|
}
|
|
|
|
|
|
getSettings : Model -> CollectiveSettings
|
|
getSettings model =
|
|
CollectiveSettings
|
|
(Comp.Dropdown.getSelected model.langModel
|
|
|> List.head
|
|
|> Maybe.map Data.Language.toIso3
|
|
|> Maybe.withDefault model.initSettings.language
|
|
)
|
|
model.intEnabled
|
|
|
|
|
|
type Msg
|
|
= LangDropdownMsg (Comp.Dropdown.Msg Language)
|
|
| ToggleIntegrationEndpoint
|
|
| SetFullTextConfirm String
|
|
| TriggerReIndex
|
|
| TriggerReIndexResult (Result Http.Error BasicResult)
|
|
|
|
|
|
update : Flags -> Msg -> Model -> ( Model, Cmd Msg, Maybe CollectiveSettings )
|
|
update flags msg model =
|
|
case msg of
|
|
LangDropdownMsg m ->
|
|
let
|
|
( m2, c2 ) =
|
|
Comp.Dropdown.update m model.langModel
|
|
|
|
nextModel =
|
|
{ model | langModel = m2 }
|
|
|
|
nextSettings =
|
|
if Comp.Dropdown.isDropdownChangeMsg m then
|
|
Just (getSettings nextModel)
|
|
|
|
else
|
|
Nothing
|
|
in
|
|
( nextModel, Cmd.map LangDropdownMsg c2, nextSettings )
|
|
|
|
ToggleIntegrationEndpoint ->
|
|
let
|
|
nextModel =
|
|
{ model | intEnabled = not model.intEnabled }
|
|
in
|
|
( nextModel, Cmd.none, Just (getSettings nextModel) )
|
|
|
|
SetFullTextConfirm str ->
|
|
( { model | fullTextConfirmText = str }, Cmd.none, Nothing )
|
|
|
|
TriggerReIndex ->
|
|
case String.toLower model.fullTextConfirmText of
|
|
"ok" ->
|
|
( { model | fullTextReIndexResult = Nothing }
|
|
, Api.startReIndex flags TriggerReIndexResult
|
|
, Nothing
|
|
)
|
|
|
|
_ ->
|
|
( { model
|
|
| fullTextReIndexResult =
|
|
Just
|
|
(BasicResult False <|
|
|
"Please type OK in the field if you really "
|
|
++ "want to start re-indexing your data."
|
|
)
|
|
}
|
|
, Cmd.none
|
|
, Nothing
|
|
)
|
|
|
|
TriggerReIndexResult (Ok br) ->
|
|
( { model | fullTextReIndexResult = Just br }, Cmd.none, Nothing )
|
|
|
|
TriggerReIndexResult (Err err) ->
|
|
( { model
|
|
| fullTextReIndexResult =
|
|
Just (BasicResult False (Util.Http.errorToString err))
|
|
}
|
|
, Cmd.none
|
|
, Nothing
|
|
)
|
|
|
|
|
|
view : Flags -> UiSettings -> Model -> Html Msg
|
|
view flags settings model =
|
|
div
|
|
[ classList
|
|
[ ( "ui form", True )
|
|
, ( "error", Maybe.map .success model.fullTextReIndexResult == Just False )
|
|
, ( "success", Maybe.map .success model.fullTextReIndexResult == Just True )
|
|
]
|
|
]
|
|
[ h3 [ class "ui dividing header" ]
|
|
[ text "Document Language"
|
|
]
|
|
, div [ class "field" ]
|
|
[ label [] [ text "Document Language" ]
|
|
, Html.map LangDropdownMsg (Comp.Dropdown.view settings model.langModel)
|
|
, span [ class "small-info" ]
|
|
[ text "The language of your documents. This helps text recognition (OCR) and text analysis."
|
|
]
|
|
]
|
|
, h3
|
|
[ classList
|
|
[ ( "ui dividing header", True )
|
|
, ( "invisible hidden", not flags.config.integrationEnabled )
|
|
]
|
|
]
|
|
[ text "Integration Endpoint"
|
|
]
|
|
, div
|
|
[ classList
|
|
[ ( "field", True )
|
|
, ( "invisible hidden", not flags.config.integrationEnabled )
|
|
]
|
|
]
|
|
[ div [ class "ui checkbox" ]
|
|
[ input
|
|
[ type_ "checkbox"
|
|
, onCheck (\_ -> ToggleIntegrationEndpoint)
|
|
, checked model.intEnabled
|
|
]
|
|
[]
|
|
, label [] [ text "Enable integration endpoint" ]
|
|
, span [ class "small-info" ]
|
|
[ text "The integration endpoint allows (local) applications to submit files. "
|
|
, text "You can choose to disable it for your collective."
|
|
]
|
|
]
|
|
]
|
|
, h3
|
|
[ classList
|
|
[ ( "ui dividing header", True )
|
|
, ( "invisible hidden", not flags.config.fullTextSearchEnabled )
|
|
]
|
|
]
|
|
[ text "Full-Text Search"
|
|
]
|
|
, div
|
|
[ classList
|
|
[ ( "inline field", True )
|
|
, ( "invisible hidden", not flags.config.fullTextSearchEnabled )
|
|
]
|
|
]
|
|
[ div [ class "ui action input" ]
|
|
[ input
|
|
[ type_ "text"
|
|
, value model.fullTextConfirmText
|
|
, onInput SetFullTextConfirm
|
|
]
|
|
[]
|
|
, button
|
|
[ class "ui primary right labeled icon button"
|
|
, onClick TriggerReIndex
|
|
]
|
|
[ i [ class "refresh icon" ] []
|
|
, text "Re-Index All Data"
|
|
]
|
|
]
|
|
, div [ class "small-info" ]
|
|
[ text "This starts a task that clears the full-text index and re-indexes all your data again."
|
|
, text "You must type OK before clicking the button to avoid accidental re-indexing."
|
|
]
|
|
, div
|
|
[ classList
|
|
[ ( "ui message", True )
|
|
, ( "error", Maybe.map .success model.fullTextReIndexResult == Just False )
|
|
, ( "success", Maybe.map .success model.fullTextReIndexResult == Just True )
|
|
, ( "hidden invisible", model.fullTextReIndexResult == Nothing )
|
|
]
|
|
]
|
|
[ Maybe.map .message model.fullTextReIndexResult
|
|
|> Maybe.withDefault ""
|
|
|> text
|
|
]
|
|
]
|
|
]
|