2024-05-17 16:00:33 +00:00
|
|
|
module Internal.Api.Task exposing (Task, run)
|
|
|
|
{-| # Task module
|
|
|
|
|
|
|
|
This module is used to define how API calls are made. These completed API tasks
|
|
|
|
can be directly converted to Cmd types that the end user of the SDK can access.
|
|
|
|
|
|
|
|
These tasks do not affect the `Vault` directly, but instead, return a
|
|
|
|
`VaultUpdate` type that the user can apply to keep their `Vault` type
|
|
|
|
up-to-date.
|
|
|
|
|
|
|
|
## Use
|
|
|
|
|
|
|
|
@docs Task, run
|
|
|
|
-}
|
2024-05-17 12:28:06 +00:00
|
|
|
|
|
|
|
import Internal.Api.Chain as C
|
|
|
|
import Internal.Api.Request as Request
|
|
|
|
import Internal.Config.Log exposing (Log)
|
|
|
|
import Internal.Values.Context exposing (APIContext)
|
|
|
|
import Internal.Values.Envelope exposing (EnvelopeUpdate(..))
|
|
|
|
import Internal.Values.Room exposing (RoomUpdate(..))
|
|
|
|
import Internal.Values.Vault exposing (VaultUpdate(..))
|
|
|
|
import Task
|
|
|
|
|
|
|
|
|
|
|
|
{-| A Backpack is the ultimate message type that gets sent back by the Elm
|
|
|
|
runtime, which can be accessed, viewed and inspected.
|
|
|
|
-}
|
|
|
|
type alias Backpack =
|
|
|
|
{ messages : List (EnvelopeUpdate VaultUpdate), logs : List Log }
|
|
|
|
|
|
|
|
|
|
|
|
{-| A Task is a task that is ready to be sent to the outside world.
|
|
|
|
-}
|
|
|
|
type alias Task =
|
|
|
|
C.TaskChain Never (EnvelopeUpdate VaultUpdate) {} {}
|
|
|
|
|
|
|
|
|
|
|
|
{-| An UnFinished Task that is used somewhere else in this module to write a
|
|
|
|
complete Task type.
|
|
|
|
-}
|
|
|
|
type alias UFTask a b =
|
|
|
|
C.TaskChain Request.Error (EnvelopeUpdate VaultUpdate) a b
|
|
|
|
|
|
|
|
|
|
|
|
{-| Transform a completed task into a Cmd.
|
|
|
|
-}
|
|
|
|
run : (Backpack -> msg) -> Task -> APIContext {} -> Cmd msg
|
|
|
|
run toMsg task context =
|
|
|
|
context
|
|
|
|
|> C.toTask task
|
|
|
|
|> Task.perform toMsg
|