Skip to content

Commit

Permalink
fix: append search params (#673)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonkuhrt committed Feb 15, 2024
1 parent 8c91cfb commit 4af7cb4
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 14 deletions.
35 changes: 22 additions & 13 deletions src/legacy/helpers/runRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ const parseResultFromResponse = async (response: Response, jsonSerializer: JsonS

const createFetcher = (method: 'GET' | 'POST') => async (params: Input) => {
const headers = new Headers(params.headers)
let queryParams = ``
let searchParams: URLSearchParams | null = null
let body = undefined

if (!headers.has(ACCEPT_HEADER)) {
Expand All @@ -162,13 +162,14 @@ const createFetcher = (method: 'GET' | 'POST') => async (params: Input) => {
headers.set(CONTENT_TYPE_HEADER, CONTENT_TYPE_JSON)
}
} else {
queryParams = buildQueryParams(params)
searchParams = buildQueryParams(params)
}

const init: RequestInit = { method, headers, body, ...params.fetchOptions }

let urlResolved = params.url
let url = new URL(params.url)
let initResolved = init

if (params.middleware) {
const result = await Promise.resolve(
params.middleware({
Expand All @@ -179,14 +180,18 @@ const createFetcher = (method: 'GET' | 'POST') => async (params: Input) => {
}),
)
const { url: urlNew, ...initNew } = result
urlResolved = urlNew
url = new URL(urlNew)
initResolved = initNew
}
if (queryParams) {
urlResolved = `${urlResolved}?${queryParams}`

if (searchParams) {
searchParams.forEach((value, name) => {
url.searchParams.append(name, value)
})
}

const $fetch = params.fetch ?? fetch
return await $fetch(urlResolved, initResolved)
return await $fetch(url, initResolved)
}

const buildBody = (params: Input) => {
Expand All @@ -206,26 +211,30 @@ const buildBody = (params: Input) => {
}
}

const buildQueryParams = (params: Input): string => {
const buildQueryParams = (params: Input): URLSearchParams => {
const $jsonSerializer = params.fetchOptions.jsonSerializer ?? defaultJsonSerializer
const searchParams = new URLSearchParams()

if (params.request._tag === `Single`) {
const search: string[] = [`query=${encodeURIComponent(cleanQuery(params.request.document.expression))}`]
searchParams.append(`query`, cleanQuery(params.request.document.expression))
if (params.request.variables) {
search.push(`variables=${encodeURIComponent($jsonSerializer.stringify(params.request.variables))}`)
searchParams.append(`variables`, $jsonSerializer.stringify(params.request.variables))
}
if (params.request.document.operationName) {
search.push(`operationName=${encodeURIComponent(params.request.document.operationName)}`)
searchParams.append(`operationName`, params.request.document.operationName)
}
return search.join(`&`)
return searchParams
} else if (params.request._tag === `Batch`) {
const variablesSerialized = params.request.variables?.map((v) => $jsonSerializer.stringify(v)) ?? []
const queriesCleaned = params.request.query.map(cleanQuery)
const payload = zip(queriesCleaned, variablesSerialized).map(([query, variables]) => ({
query,
variables,
}))
return `query=${encodeURIComponent($jsonSerializer.stringify(payload))}`
searchParams.append(`query`, $jsonSerializer.stringify(payload))
} else {
throw casesExhausted(params.request)
}

return searchParams
}
2 changes: 1 addition & 1 deletion tests/fetch.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ test(`custom fetch configuration is passed through`, async () => {
await client.request(gql`foo`).catch(() => {
/* ignore */
})
expect(fetch.mock.calls).toMatchObject([[expect.stringMatching(`.*`), { next: { revalidate: 1 } }]])
expect(fetch.mock.calls).toMatchObject([[new URL(`https://foobar`), { next: { revalidate: 1 } }]])
})

0 comments on commit 4af7cb4

Please sign in to comment.