Add support for enums in Elm operations (#2982)

This commit is contained in:
Erik Timmers
2019-05-28 17:00:04 +02:00
committed by William Cheng
parent d748312818
commit 38b1fe2d36
3 changed files with 91 additions and 37 deletions

View File

@@ -10,7 +10,7 @@
-}
module Request.Pet exposing (addPet, deletePet, findPetsByStatus, findPetsByTags, getPetById, updatePet, updatePetWithForm, uploadFile)
module Request.Pet exposing (Status(..), addPet, deletePet, findPetsByStatus, findPetsByTags, getPetById, updatePet, updatePetWithForm, uploadFile)
import Data.ApiResponse as ApiResponse exposing (ApiResponse)
import Data.Pet as Pet exposing (Pet)
@@ -20,6 +20,25 @@ import Json.Decode as Decode
import Url.Builder as Url
type Status
= Available
| Pending
| Sold
statusToString : Status -> String
statusToString value =
case value of
Available ->
"available"
Pending ->
"pending"
Sold ->
"sold"
basePath : String
basePath =
"http://petstore.swagger.io/v2"
@@ -72,7 +91,7 @@ deletePet headers params =
-}
findPetsByStatus :
{ onSend : Result Http.Error (List Pet) -> msg
, status : List String
, status : List Status
}
-> Cmd msg
findPetsByStatus params =
@@ -82,7 +101,7 @@ findPetsByStatus params =
, url =
Url.crossOrigin basePath
[ "pet", "findByStatus" ]
(List.filterMap identity [ Just (Url.string "status" <| String.join "," params.status) ])
(List.filterMap identity [ Just (Url.string "status" <| (String.join "," << List.map statusToString) params.status) ])
, body = Http.emptyBody
, expect = Http.expectJson params.onSend (Decode.list Pet.decoder)
, timeout = Just 30000