Skip to content

Commit 6d220e6

Browse files
authoredJan 6, 2022
Add support for parameters with an explicit :list marker (#335)
1 parent b03e2e7 commit 6d220e6

File tree

5 files changed

+105
-2
lines changed

5 files changed

+105
-2
lines changed
 

‎index.d.ts

+20-2
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,15 @@ export interface ParseOptions {
6969
//=> {foo: ['1', '2', '3'], bar: 'fluffy', baz:['4']}
7070
```
7171
72+
- `colon-list-separator`: Parse arrays with parameter names that are explicitly marked with `:list`:
73+
74+
```
75+
import queryString = require('query-string');
76+
77+
queryString.parse('foo:list=one&foo:list=two', {arrayFormat: 'colon-list-separator'});
78+
//=> {foo: ['one', 'two']}
79+
```
80+
7281
- `none`: Parse arrays with elements using duplicate keys:
7382
7483
```
@@ -78,7 +87,7 @@ export interface ParseOptions {
7887
//=> {foo: ['1', '2', '3']}
7988
```
8089
*/
81-
readonly arrayFormat?: 'bracket' | 'index' | 'comma' | 'separator' | 'bracket-separator' | 'none';
90+
readonly arrayFormat?: 'bracket' | 'index' | 'comma' | 'separator' | 'bracket-separator' | 'colon-list-separator' | 'none';
8291

8392
/**
8493
The character used to separate array elements when using `{arrayFormat: 'separator'}`.
@@ -296,6 +305,15 @@ export interface StringifyOptions {
296305
//=> 'foo[]=1|2|3&bar=fluffy&baz[]=4'
297306
```
298307
308+
- `colon-list-separator`: Serialize arrays with parameter names that are explicitly marked with `:list`:
309+
310+
```js
311+
import queryString = require('query-string');
312+
313+
queryString.stringify({foo: ['one', 'two']}, {arrayFormat: 'colon-list-separator'});
314+
//=> 'foo:list=one&foo:list=two'
315+
```
316+
299317
- `none`: Serialize arrays by using duplicate keys:
300318
301319
```
@@ -305,7 +323,7 @@ export interface StringifyOptions {
305323
//=> 'foo=1&foo=2&foo=3'
306324
```
307325
*/
308-
readonly arrayFormat?: 'bracket' | 'index' | 'comma' | 'separator' | 'bracket-separator' | 'none';
326+
readonly arrayFormat?: 'bracket' | 'index' | 'comma' | 'separator' | 'bracket-separator' | 'colon-list-separator' | 'none';
309327

310328
/**
311329
The character used to separate array elements when using `{arrayFormat: 'separator'}`.

‎index.js

+35
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,23 @@ function encoderForArrayFormat(options) {
4949
return [...result, [encode(key, options), '[]=', encode(value, options)].join('')];
5050
};
5151

52+
case 'colon-list-separator':
53+
return key => (result, value) => {
54+
if (
55+
value === undefined ||
56+
(options.skipNull && value === null) ||
57+
(options.skipEmptyString && value === '')
58+
) {
59+
return result;
60+
}
61+
62+
if (value === null) {
63+
return [...result, [encode(key, options), ':list='].join('')];
64+
}
65+
66+
return [...result, [encode(key, options), ':list=', encode(value, options)].join('')];
67+
};
68+
5269
case 'comma':
5370
case 'separator':
5471
case 'bracket-separator': {
@@ -135,6 +152,24 @@ function parserForArrayFormat(options) {
135152
accumulator[key] = [].concat(accumulator[key], value);
136153
};
137154

155+
case 'colon-list-separator':
156+
return (key, value, accumulator) => {
157+
result = /(:list)$/.exec(key);
158+
key = key.replace(/:list$/, '');
159+
160+
if (!result) {
161+
accumulator[key] = value;
162+
return;
163+
}
164+
165+
if (accumulator[key] === undefined) {
166+
accumulator[key] = [value];
167+
return;
168+
}
169+
170+
accumulator[key] = [].concat(accumulator[key], value);
171+
};
172+
138173
case 'comma':
139174
case 'separator':
140175
return (key, value, accumulator) => {

‎readme.md

+18
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,15 @@ queryString.parse('foo[]=1|2|3&bar=fluffy&baz[]=4', {arrayFormat: 'bracket-separ
184184
//=> {foo: ['1', '2', '3'], bar: 'fluffy', baz:['4']}
185185
```
186186

187+
- `'colon-list-separator'`: Parse arrays with parameter names that are explicitly marked with `:list`:
188+
189+
```js
190+
const queryString = require('query-string');
191+
192+
queryString.parse('foo:list=one&foo:list=two', {arrayFormat: 'colon-list-separator'});
193+
//=> {foo: ['one', 'two']}
194+
```
195+
187196
- `'none'`: Parse arrays with elements using duplicate keys:
188197

189198
```js
@@ -330,6 +339,15 @@ queryString.stringify({foo: [1, 2, 3], bar: 'fluffy', baz: [4]}, {arrayFormat: '
330339
//=> 'foo[]=1|2|3&bar=fluffy&baz[]=4'
331340
```
332341

342+
- `'colon-list-separator'`: Serialize arrays with parameter names that are explicitly marked with `:list`:
343+
344+
```js
345+
const queryString = require('query-string');
346+
347+
queryString.stringify({foo: ['one', 'two']}, {arrayFormat: 'colon-list-separator'});
348+
//=> 'foo:list=one&foo:list=two'
349+
```
350+
333351
- `'none'`: Serialize arrays by using duplicate keys:
334352

335353
```js

‎test/parse.js

+8
Original file line numberDiff line numberDiff line change
@@ -390,3 +390,11 @@ test('value separated by encoded comma will not be parsed as array with `arrayFo
390390
id: [1, 2, 3]
391391
});
392392
});
393+
394+
test('query strings having (:list) colon-list-separator arrays', t => {
395+
t.deepEqual(queryString.parse('bar:list=one&bar:list=two', {arrayFormat: 'colon-list-separator'}), {bar: ['one', 'two']});
396+
});
397+
398+
test('query strings having (:list) colon-list-separator arrays including null values', t => {
399+
t.deepEqual(queryString.parse('bar:list=one&bar:list=two&foo', {arrayFormat: 'colon-list-separator'}), {bar: ['one', 'two'], foo: null});
400+
});

‎test/stringify.js

+24
Original file line numberDiff line numberDiff line change
@@ -400,3 +400,27 @@ test('stringify throws TypeError for invalid arrayFormatSeparator', t => {
400400
instanceOf: TypeError
401401
});
402402
});
403+
404+
test('array stringify representation with (:list) colon-list-separator', t => {
405+
t.is(queryString.stringify({
406+
foo: null,
407+
bar: ['one', 'two']
408+
}, {
409+
arrayFormat: 'colon-list-separator'
410+
}), 'bar:list=one&bar:list=two&foo');
411+
});
412+
413+
test('array stringify representation with (:list) colon-list-separator with null values', t => {
414+
t.is(queryString.stringify({
415+
foo: null,
416+
bar: ['one', '']
417+
}, {
418+
arrayFormat: 'colon-list-separator'
419+
}), 'bar:list=one&bar:list=&foo');
420+
t.is(queryString.stringify({
421+
foo: null,
422+
bar: ['one', null]
423+
}, {
424+
arrayFormat: 'colon-list-separator'
425+
}), 'bar:list=one&bar:list=&foo');
426+
});

0 commit comments

Comments
 (0)
Please sign in to comment.