• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

inclusion-numerique / coop-mediation-numerique / e282fa38-0705-450a-831c-3bd7f6543885

09 Feb 2026 11:21AM UTC coverage: 10.253% (+2.9%) from 7.371%
e282fa38-0705-450a-831c-3bd7f6543885

push

circleci

web-flow
Merge pull request #408 from inclusion-numerique/dev

release

615 of 9904 branches covered (6.21%)

Branch coverage included in aggregate %.

16 of 488 new or added lines in 52 files covered. (3.28%)

801 existing lines in 84 files now uncovered.

1977 of 15376 relevant lines covered (12.86%)

1.86 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

33.33
/apps/web/src/app/api/v1/transformJsonApiQueryParamsToObject.ts
1
import { set } from 'lodash-es'
1✔
2

3
/**
4
 * Json:api query params are given as string in brackets, e.g. "page[size]"
5
 * So the NextUrl SearchParams looks like { 'page[size]': '10' }
6
 * This function transforms them to object, e.g. { page: { size: 10 } }
7
 * To be able to be passed later to zod validation.
8
 *
9
 * A parameter with multiple values is given as a comma separated string, e.g. "sort=age,city"
10
 * and is transformed to an array, e.g. { sort: ['age', 'city'] }
11
 *
12
 * See https://jsonapi.org/format/#query-parameters-families
13
 */
14

15
export const transformJsonApiQueryParamsToObject = (
1✔
16
  params: URLSearchParams,
17
): Record<string, unknown> => {
18
  const result: Record<string, unknown> = {}
1✔
19

20
  for (const [rawKey, rawValue] of params.entries()) {
1✔
21
    // split rawKey into nested keys: e.g. "page[size]" -> ["page", "size"]
UNCOV
22
    const keys = rawKey.match(/[^[\]]+/g) || []
×
23

24
    // handle multiple values by splitting on comma
UNCOV
25
    const values = rawValue.includes(',') ? rawValue.split(',') : [rawValue]
×
26

UNCOV
27
    const finalValue = values.length === 1 ? values[0] : values
×
28

UNCOV
29
    set(result, keys, finalValue)
×
30
  }
31

32
  return result
1✔
33
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc