2019-08-28 15:19:21 +03:00
|
|
|
module Hasura.GraphQL.Execute.LiveQuery.Options
|
|
|
|
( LiveQueriesOptions(..)
|
|
|
|
, BatchSize(..)
|
|
|
|
, RefetchInterval(..)
|
|
|
|
, mkLiveQueriesOptions
|
|
|
|
) where
|
|
|
|
|
|
|
|
import Hasura.Prelude
|
|
|
|
|
|
|
|
import qualified Data.Aeson as J
|
|
|
|
|
|
|
|
data LiveQueriesOptions
|
|
|
|
= LiveQueriesOptions
|
|
|
|
{ _lqoBatchSize :: !BatchSize
|
|
|
|
, _lqoRefetchInterval :: !RefetchInterval
|
|
|
|
} deriving (Show, Eq)
|
|
|
|
|
|
|
|
mkLiveQueriesOptions :: Maybe BatchSize -> Maybe RefetchInterval -> LiveQueriesOptions
|
|
|
|
mkLiveQueriesOptions batchSize refetchInterval = LiveQueriesOptions
|
|
|
|
{ _lqoBatchSize = fromMaybe (BatchSize 100) batchSize
|
2020-01-16 04:56:57 +03:00
|
|
|
, _lqoRefetchInterval = fromMaybe (RefetchInterval 1) refetchInterval
|
2019-08-28 15:19:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
instance J.ToJSON LiveQueriesOptions where
|
|
|
|
toJSON (LiveQueriesOptions batchSize refetchInterval) =
|
|
|
|
J.object [ "batch_size" J..= batchSize
|
|
|
|
, "refetch_delay" J..= refetchInterval
|
|
|
|
]
|
|
|
|
|
2020-06-03 02:31:50 +03:00
|
|
|
instance J.FromJSON LiveQueriesOptions where
|
|
|
|
parseJSON = J.withObject "live query options" \o ->
|
|
|
|
LiveQueriesOptions <$> o J..: "batch_size"
|
|
|
|
<*> o J..: "refetch_delay"
|
|
|
|
|
2019-08-28 15:19:21 +03:00
|
|
|
newtype BatchSize = BatchSize { unBatchSize :: Int }
|
2020-06-03 02:31:50 +03:00
|
|
|
deriving (Show, Eq, J.ToJSON, J.FromJSON)
|
2019-08-28 15:19:21 +03:00
|
|
|
|
2020-07-14 22:00:58 +03:00
|
|
|
-- TODO this is treated as milliseconds in fromEnv and as seconds in ToJSON.
|
2020-01-16 04:56:57 +03:00
|
|
|
-- ideally this would have e.g. ... unRefetchInterval :: Milliseconds
|
2019-08-28 15:19:21 +03:00
|
|
|
newtype RefetchInterval = RefetchInterval { unRefetchInterval :: DiffTime }
|
2020-06-03 02:31:50 +03:00
|
|
|
deriving (Show, Eq, J.ToJSON, J.FromJSON)
|