Skip to content

Commit d5a7a9c

Browse files
authored
Merge pull request #140 from slamdata/type-unsafe-coercions
Type unsafe coercions
2 parents e286329 + 474818b commit d5a7a9c

File tree

3 files changed

+19
-17
lines changed

3 files changed

+19
-17
lines changed

package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
"test": "eslint src && pulp test"
77
},
88
"devDependencies": {
9-
"eslint": "^3.10.1",
10-
"body-parser": "^1.15.2",
11-
"express": "^4.14.0",
12-
"pulp": "^11.0.0",
13-
"purescript-psa": "^0.5.0",
14-
"purescript": "^0.12.0",
15-
"rimraf": "^2.5.4",
16-
"xhr2": "^0.1.3"
9+
"eslint": "^6.3.0",
10+
"body-parser": "^1.19.0",
11+
"express": "^4.17.1",
12+
"pulp": "^13.0.0",
13+
"purescript-psa": "^0.7.3",
14+
"purescript": "^0.13.3",
15+
"rimraf": "^3.0.0",
16+
"xhr2": "^0.2.0"
1717
}
1818
}

src/Affjax.js

-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
/* global exports */
21
/* global XMLHttpRequest */
3-
/* global module */
42
/* global process */
53
"use strict";
64

src/Affjax.purs

+11-7
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ import Data.Argonaut.Core (Json)
3030
import Data.Argonaut.Core as J
3131
import Data.Argonaut.Parser (jsonParser)
3232
import Data.Array as Arr
33+
import Data.ArrayBuffer.Types (ArrayView)
3334
import Data.Either (Either(..), either)
3435
import Data.Foldable (any)
3536
import Data.FormURLEncoded as FormURLEncoded
@@ -49,6 +50,9 @@ import Effect.Exception (Error, error)
4950
import Effect.Ref as Ref
5051
import Foreign (F, Foreign, ForeignError(..), fail, unsafeReadTagged, unsafeToForeign)
5152
import Math as Math
53+
import Web.DOM (Document)
54+
import Web.File.Blob (Blob)
55+
import Web.XHR.FormData (FormData)
5256

5357
-- | A record that contains all the information to perform an HTTP request.
5458
-- | Instead of constructing the record from scratch it is often easier to build
@@ -266,13 +270,13 @@ request req = do
266270

267271
extractContent :: RequestBody.RequestBody -> Foreign
268272
extractContent = case _ of
269-
RequestBody.ArrayView f → f unsafeToForeign
270-
RequestBody.Blob x → unsafeToForeign x
271-
RequestBody.Document x → unsafeToForeign x
272-
RequestBody.String x → unsafeToForeign x
273-
RequestBody.FormData x → unsafeToForeign x
274-
RequestBody.FormURLEncoded x → unsafeToForeign (FormURLEncoded.encode x)
275-
RequestBody.Json x → unsafeToForeign (J.stringify x)
273+
RequestBody.ArrayView f → f (unsafeToForeign :: forall a. ArrayView a -> Foreign)
274+
RequestBody.Blob x → (unsafeToForeign :: Blob -> Foreign) x
275+
RequestBody.Document x → (unsafeToForeign :: Document -> Foreign) x
276+
RequestBody.String x → (unsafeToForeign :: String -> Foreign) x
277+
RequestBody.FormData x → (unsafeToForeign :: FormData -> Foreign) x
278+
RequestBody.FormURLEncoded x → (unsafeToForeign :: String -> Foreign) (FormURLEncoded.encode x)
279+
RequestBody.Json x → (unsafeToForeign :: String -> Foreign) (J.stringify x)
276280

277281
headers :: Maybe RequestBody.RequestBody -> Array RequestHeader
278282
headers reqContent =

0 commit comments

Comments
 (0)