mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 10:59:33 +00:00
Merge pull request #1268 from eikek/bug/delete-periodic-query
Fix deleting periodic query tasks
This commit is contained in:
commit
ad8f4b9a2e
@ -238,7 +238,7 @@ view2 texts settings model =
|
|||||||
div [ class "flex flex-col" ]
|
div [ class "flex flex-col" ]
|
||||||
(div
|
(div
|
||||||
[ classList
|
[ classList
|
||||||
[ ( S.errorMessage, model.formState /= FormStateInitial )
|
[ ( S.errorMessage, not (isSuccess model.formState) )
|
||||||
, ( S.successMessage, isSuccess model.formState )
|
, ( S.successMessage, isSuccess model.formState )
|
||||||
, ( "hidden", model.formState == FormStateInitial )
|
, ( "hidden", model.formState == FormStateInitial )
|
||||||
]
|
]
|
||||||
|
@ -277,7 +277,7 @@ viewState : Texts -> Model -> Html Msg
|
|||||||
viewState texts model =
|
viewState texts model =
|
||||||
div
|
div
|
||||||
[ classList
|
[ classList
|
||||||
[ ( S.errorMessage, model.formState /= FormStateInitial )
|
[ ( S.errorMessage, not (isSuccess model.formState) )
|
||||||
, ( S.successMessage, isSuccess model.formState )
|
, ( S.successMessage, isSuccess model.formState )
|
||||||
, ( "hidden", model.formState == FormStateInitial )
|
, ( "hidden", model.formState == FormStateInitial )
|
||||||
]
|
]
|
||||||
|
@ -30,7 +30,7 @@ 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 (..)
|
||||||
import Html.Events exposing (onInput)
|
import Html.Events exposing (onClick, onInput)
|
||||||
import Http
|
import Http
|
||||||
import Messages.Comp.PeriodicQueryTaskForm exposing (Texts)
|
import Messages.Comp.PeriodicQueryTaskForm exposing (Texts)
|
||||||
import Styles as S
|
import Styles as S
|
||||||
@ -48,6 +48,7 @@ type alias Model =
|
|||||||
, bookmarkDropdown : Comp.BookmarkDropdown.Model
|
, bookmarkDropdown : Comp.BookmarkDropdown.Model
|
||||||
, formState : FormState
|
, formState : FormState
|
||||||
, loading : Int
|
, loading : Int
|
||||||
|
, deleteRequested : Bool
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -82,6 +83,8 @@ type Msg
|
|||||||
| Cancel
|
| Cancel
|
||||||
| RequestDelete
|
| RequestDelete
|
||||||
| SetSummary String
|
| SetSummary String
|
||||||
|
| DeleteTaskNow String
|
||||||
|
| CancelDelete
|
||||||
|
|
||||||
|
|
||||||
initWith : Flags -> PeriodicQuerySettings -> ( Model, Cmd Msg )
|
initWith : Flags -> PeriodicQuerySettings -> ( Model, Cmd Msg )
|
||||||
@ -115,6 +118,7 @@ initWith flags s =
|
|||||||
, formState = FormStateInitial
|
, formState = FormStateInitial
|
||||||
, loading = 0
|
, loading = 0
|
||||||
, summary = s.summary
|
, summary = s.summary
|
||||||
|
, deleteRequested = False
|
||||||
}
|
}
|
||||||
, Cmd.batch
|
, Cmd.batch
|
||||||
[ Cmd.map CalEventMsg sc
|
[ Cmd.map CalEventMsg sc
|
||||||
@ -150,6 +154,7 @@ init flags ct =
|
|||||||
, formState = FormStateInitial
|
, formState = FormStateInitial
|
||||||
, loading = 0
|
, loading = 0
|
||||||
, summary = Nothing
|
, summary = Nothing
|
||||||
|
, deleteRequested = False
|
||||||
}
|
}
|
||||||
, Cmd.batch
|
, Cmd.batch
|
||||||
[ Cmd.map CalEventMsg scmd
|
[ Cmd.map CalEventMsg scmd
|
||||||
@ -194,18 +199,12 @@ makeSettings model =
|
|||||||
Comp.BookmarkDropdown.getSelectedId model.bookmarkDropdown
|
Comp.BookmarkDropdown.getSelectedId model.bookmarkDropdown
|
||||||
in
|
in
|
||||||
case ( qstr, bm ) of
|
case ( qstr, bm ) of
|
||||||
( Just _, Just _ ) ->
|
|
||||||
Result.Ok ( qstr, bm )
|
|
||||||
|
|
||||||
( Just _, Nothing ) ->
|
|
||||||
Result.Ok ( qstr, bm )
|
|
||||||
|
|
||||||
( Nothing, Just _ ) ->
|
|
||||||
Result.Ok ( qstr, bm )
|
|
||||||
|
|
||||||
( Nothing, Nothing ) ->
|
( Nothing, Nothing ) ->
|
||||||
Result.Err ValidateQueryStringRequired
|
Result.Err ValidateQueryStringRequired
|
||||||
|
|
||||||
|
( _, _ ) ->
|
||||||
|
Result.Ok ( qstr, bm )
|
||||||
|
|
||||||
channelM =
|
channelM =
|
||||||
Result.fromMaybe
|
Result.fromMaybe
|
||||||
ValidateChannelRequired
|
ValidateChannelRequired
|
||||||
@ -329,7 +328,21 @@ update flags msg model =
|
|||||||
}
|
}
|
||||||
|
|
||||||
RequestDelete ->
|
RequestDelete ->
|
||||||
{ model = model
|
{ model = { model | deleteRequested = True }
|
||||||
|
, action = NoAction
|
||||||
|
, cmd = Cmd.none
|
||||||
|
, sub = Sub.none
|
||||||
|
}
|
||||||
|
|
||||||
|
DeleteTaskNow id ->
|
||||||
|
{ model = { model | deleteRequested = False }
|
||||||
|
, action = DeleteAction id
|
||||||
|
, cmd = Cmd.none
|
||||||
|
, sub = Sub.none
|
||||||
|
}
|
||||||
|
|
||||||
|
CancelDelete ->
|
||||||
|
{ model = { model | deleteRequested = False }
|
||||||
, action = NoAction
|
, action = NoAction
|
||||||
, cmd = Cmd.none
|
, cmd = Cmd.none
|
||||||
, sub = Sub.none
|
, sub = Sub.none
|
||||||
@ -405,6 +418,31 @@ view texts extraClasses settings model =
|
|||||||
{ active = model.loading > 0
|
{ active = model.loading > 0
|
||||||
, label = texts.basics.loading
|
, label = texts.basics.loading
|
||||||
}
|
}
|
||||||
|
, B.contentDimmer
|
||||||
|
model.deleteRequested
|
||||||
|
(div [ class "flex flex-col" ]
|
||||||
|
[ div [ class "text-lg" ]
|
||||||
|
[ i [ class "fa fa-info-circle mr-2" ] []
|
||||||
|
, text texts.reallyDeleteTask
|
||||||
|
]
|
||||||
|
, div [ class "mt-4 flex flex-row items-center" ]
|
||||||
|
[ B.deleteButton
|
||||||
|
{ label = texts.basics.yes
|
||||||
|
, icon = "fa fa-check"
|
||||||
|
, disabled = False
|
||||||
|
, handler = onClick (DeleteTaskNow model.settings.id)
|
||||||
|
, attrs = [ href "#" ]
|
||||||
|
}
|
||||||
|
, B.secondaryButton
|
||||||
|
{ label = texts.basics.no
|
||||||
|
, icon = "fa fa-times"
|
||||||
|
, disabled = False
|
||||||
|
, handler = onClick CancelDelete
|
||||||
|
, attrs = [ href "#", class "ml-2" ]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
]
|
||||||
|
)
|
||||||
, MB.view
|
, MB.view
|
||||||
{ start =
|
{ start =
|
||||||
[ MB.PrimaryButton
|
[ MB.PrimaryButton
|
||||||
|
@ -244,7 +244,7 @@ view texts settings model =
|
|||||||
div [ class "flex flex-col" ]
|
div [ class "flex flex-col" ]
|
||||||
(div
|
(div
|
||||||
[ classList
|
[ classList
|
||||||
[ ( S.errorMessage, model.formState /= FormStateInitial )
|
[ ( S.errorMessage, not <| isSuccess model.formState )
|
||||||
, ( S.successMessage, isSuccess model.formState )
|
, ( S.successMessage, isSuccess model.formState )
|
||||||
, ( "hidden", model.formState == FormStateInitial )
|
, ( "hidden", model.formState == FormStateInitial )
|
||||||
]
|
]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user