generated from tpl/purs
feat: Response.clone
This commit is contained in:
parent
00ec9cf08c
commit
d74d343165
src/HTTP
@ -1,5 +1,8 @@
|
|||||||
/// <reference lib="dom" />
|
/// <reference lib="dom" />
|
||||||
|
|
||||||
|
/** @type {(_: Response) => () => Response} */
|
||||||
|
export const cloneImpl = rep => () => rep.clone()
|
||||||
|
|
||||||
/** @type {(_: Response) => () => Promise<unknown>} */
|
/** @type {(_: Response) => () => Promise<unknown>} */
|
||||||
export const jsonImpl = rep => () => rep.json()
|
export const jsonImpl = rep => () => rep.json()
|
||||||
|
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
module HTTP.Response
|
module HTTP.Response
|
||||||
( Response(..)
|
( Response(..)
|
||||||
|
, clone
|
||||||
, json
|
, json
|
||||||
, text
|
, text
|
||||||
, blob
|
, blob
|
||||||
@ -36,6 +37,7 @@ import Web.File.Blob (Blob)
|
|||||||
|
|
||||||
foreign import data Response :: Type
|
foreign import data Response :: Type
|
||||||
|
|
||||||
|
foreign import cloneImpl :: Response -> Effect Response
|
||||||
foreign import statusImpl :: Response -> Effect Int
|
foreign import statusImpl :: Response -> Effect Int
|
||||||
foreign import statusTextImpl :: Response -> Effect String
|
foreign import statusTextImpl :: Response -> Effect String
|
||||||
foreign import headersImpl :: Response -> Effect (Object String)
|
foreign import headersImpl :: Response -> Effect (Object String)
|
||||||
@ -54,6 +56,9 @@ guardStatusOk rep = do
|
|||||||
else
|
else
|
||||||
pure unit
|
pure unit
|
||||||
|
|
||||||
|
clone :: forall m. MonadEffect m => Response -> m Response
|
||||||
|
clone = liftEffect <<< cloneImpl
|
||||||
|
|
||||||
json :: forall m @a. MonadAff m => ReadForeign a => Response -> m a
|
json :: forall m @a. MonadAff m => ReadForeign a => Response -> m a
|
||||||
json = liftAff <<< flip bind (liftEither <<< lmap (error <<< show) <<< runExcept <<< readImpl) <<< Promise.toAffE <<< jsonImpl
|
json = liftAff <<< flip bind (liftEither <<< lmap (error <<< show) <<< runExcept <<< readImpl) <<< Promise.toAffE <<< jsonImpl
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user