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

inclusion-numerique / coop-mediation-numerique / d4144e8b-1bbe-44c2-90e9-6d614bcf9fdc

09 Apr 2026 02:35PM UTC coverage: 10.603% (+3.1%) from 7.465%
d4144e8b-1bbe-44c2-90e9-6d614bcf9fdc

push

circleci

KGALLET
chore: remove quick access menu mobile

698 of 10550 branches covered (6.62%)

Branch coverage included in aggregate %.

2166 of 16460 relevant lines covered (13.16%)

1.99 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"]
22
    const keys = rawKey.match(/[^[\]]+/g) || []
×
23

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

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

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