mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 10:59:33 +00:00
Merge pull request #199 from eikek/fix-form-init
Fixes a race condition when initializing the calendar-event field
This commit is contained in:
commit
228d2d3385
@ -2,6 +2,7 @@ module Comp.CalEventInput exposing
|
|||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
, init
|
, init
|
||||||
|
, initDefault
|
||||||
, update
|
, update
|
||||||
, view
|
, view
|
||||||
)
|
)
|
||||||
@ -36,6 +37,11 @@ type Msg
|
|||||||
| CheckInputMsg CalEvent (Result Http.Error CalEventCheckResult)
|
| CheckInputMsg CalEvent (Result Http.Error CalEventCheckResult)
|
||||||
|
|
||||||
|
|
||||||
|
initDefault : Model
|
||||||
|
initDefault =
|
||||||
|
Model Nothing
|
||||||
|
|
||||||
|
|
||||||
init : Flags -> CalEvent -> ( Model, Cmd Msg )
|
init : Flags -> CalEvent -> ( Model, Cmd Msg )
|
||||||
init flags ev =
|
init flags ev =
|
||||||
( Model Nothing, checkInput flags ev )
|
( Model Nothing, checkInput flags ev )
|
||||||
|
@ -133,8 +133,8 @@ init flags =
|
|||||||
initialSchedule =
|
initialSchedule =
|
||||||
Data.Validated.Unknown Data.CalEvent.everyMonth
|
Data.Validated.Unknown Data.CalEvent.everyMonth
|
||||||
|
|
||||||
( sm, sc ) =
|
sm =
|
||||||
Comp.CalEventInput.init flags Data.CalEvent.everyMonth
|
Comp.CalEventInput.initDefault
|
||||||
in
|
in
|
||||||
( { settings = Api.Model.NotificationSettings.empty
|
( { settings = Api.Model.NotificationSettings.empty
|
||||||
, connectionModel =
|
, connectionModel =
|
||||||
@ -159,7 +159,6 @@ init flags =
|
|||||||
, Cmd.batch
|
, Cmd.batch
|
||||||
[ Api.getMailSettings flags "" ConnResp
|
[ Api.getMailSettings flags "" ConnResp
|
||||||
, Api.getTags flags "" GetTagsResp
|
, Api.getTags flags "" GetTagsResp
|
||||||
, Cmd.map CalEventMsg sc
|
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -136,8 +136,8 @@ init flags =
|
|||||||
initialSchedule =
|
initialSchedule =
|
||||||
Data.Validated.Unknown Data.CalEvent.everyMonth
|
Data.Validated.Unknown Data.CalEvent.everyMonth
|
||||||
|
|
||||||
( sm, sc ) =
|
sm =
|
||||||
Comp.CalEventInput.init flags Data.CalEvent.everyMonth
|
Comp.CalEventInput.initDefault
|
||||||
in
|
in
|
||||||
( { settings = Api.Model.ScanMailboxSettings.empty
|
( { settings = Api.Model.ScanMailboxSettings.empty
|
||||||
, connectionModel =
|
, connectionModel =
|
||||||
@ -168,7 +168,6 @@ init flags =
|
|||||||
}
|
}
|
||||||
, Cmd.batch
|
, Cmd.batch
|
||||||
[ Api.getImapSettings flags "" ConnResp
|
[ Api.getImapSettings flags "" ConnResp
|
||||||
, Cmd.map CalEventMsg sc
|
|
||||||
, Api.getFolders flags "" False GetFolderResp
|
, Api.getFolders flags "" False GetFolderResp
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user