2015-07-27 16:29:08 +02:00
|
|
|
module Servant.JS.Axios where
|
|
|
|
|
|
|
|
import Servant.JS.Internal
|
|
|
|
import Control.Lens
|
|
|
|
import Data.Char (toLower)
|
|
|
|
import Data.List
|
|
|
|
import Data.Monoid
|
|
|
|
|
|
|
|
-- | Generate regular javacript functions that use
|
|
|
|
-- the axios library, using default values for 'CommonGeneratorOptions'.
|
|
|
|
axios :: JavaScriptGenerator
|
|
|
|
axios = axiosWith defCommonGeneratorOptions
|
|
|
|
|
|
|
|
-- | Generate regular javascript functions that use the axios library.
|
|
|
|
axiosWith :: CommonGeneratorOptions -> JavaScriptGenerator
|
|
|
|
axiosWith opts = intercalate "\n\n" . map (generateAxiosJSWith opts)
|
|
|
|
|
|
|
|
-- | js codegen using axios library using default options
|
|
|
|
generateAxiosJS :: AjaxReq -> String
|
|
|
|
generateAxiosJS = generateAxiosJSWith defCommonGeneratorOptions
|
|
|
|
|
|
|
|
-- | js codegen using axios library
|
|
|
|
generateAxiosJSWith :: CommonGeneratorOptions -> AjaxReq -> String
|
|
|
|
generateAxiosJSWith opts req = "\n" <>
|
|
|
|
fname <> " = function(" <> argsStr <> ")\n"
|
|
|
|
<> "{\n"
|
2015-07-28 01:25:00 +02:00
|
|
|
<> " return axios({ url: " <> url <> "\n"
|
|
|
|
<> " , method: '" <> method <> "'\n"
|
2015-07-27 16:29:08 +02:00
|
|
|
<> dataBody
|
|
|
|
<> reqheaders
|
|
|
|
<> " });\n"
|
|
|
|
<> "}\n"
|
|
|
|
|
|
|
|
where argsStr = intercalate ", " args
|
|
|
|
args = captures
|
|
|
|
++ map (view argName) queryparams
|
|
|
|
++ body
|
|
|
|
++ map (toValidFunctionName . (<>) "header" . headerArgName) hs
|
|
|
|
|
|
|
|
captures = map captureArg
|
|
|
|
. filter isCapture
|
|
|
|
$ req ^. reqUrl.path
|
|
|
|
|
|
|
|
hs = req ^. reqHeaders
|
|
|
|
|
|
|
|
queryparams = req ^.. reqUrl.queryStr.traverse
|
|
|
|
|
|
|
|
body = if req ^. reqBody
|
|
|
|
then [requestBody opts]
|
|
|
|
else []
|
|
|
|
|
|
|
|
dataBody =
|
|
|
|
if req ^. reqBody
|
2015-07-28 11:33:36 +02:00
|
|
|
then " , data: body\n" <>
|
2015-07-27 16:29:08 +02:00
|
|
|
" , responseType: 'json'\n"
|
|
|
|
else ""
|
|
|
|
|
|
|
|
reqheaders =
|
|
|
|
if null hs
|
|
|
|
then ""
|
|
|
|
else " , headers: { " ++ headersStr ++ " }\n"
|
|
|
|
|
|
|
|
where headersStr = intercalate ", " $ map headerStr hs
|
|
|
|
headerStr header = "\"" ++
|
|
|
|
headerArgName header ++
|
|
|
|
"\": " ++ show header
|
|
|
|
|
|
|
|
namespace =
|
|
|
|
if hasNoModule
|
|
|
|
then "var "
|
|
|
|
else (moduleName opts) <> "."
|
|
|
|
where
|
|
|
|
hasNoModule = null (moduleName opts)
|
|
|
|
|
|
|
|
fname = namespace <> (functionRenamer opts $ req ^. funcName)
|
|
|
|
|
|
|
|
method = map toLower $ req ^. reqMethod
|
|
|
|
url = if url' == "'" then "'/'" else url'
|
|
|
|
url' = "'"
|
2015-07-27 16:49:52 +02:00
|
|
|
-- ++ urlPrefix opts
|
2015-07-27 16:29:08 +02:00
|
|
|
++ urlArgs
|
|
|
|
++ queryArgs
|
|
|
|
|
|
|
|
urlArgs = jsSegments
|
|
|
|
$ req ^.. reqUrl.path.traverse
|
|
|
|
|
|
|
|
queryArgs = if null queryparams
|
|
|
|
then ""
|
|
|
|
else " + '?" ++ jsParams queryparams
|