mirror of
https://github.com/bigchaindb/js-bigchaindb-driver.git
synced 2024-11-25 20:00:19 +01:00
Matthias Kretschmann
81ef5978b8
* new command: npm run doc, for generating the API.md file * new command: npm run dev, for live watching webpack * JSdoc: make all methods public by default, selectively make some private * JSdoc: organize all methods under their class * linting fixes * package updates
44 lines
1.4 KiB
JavaScript
44 lines
1.4 KiB
JavaScript
import coreObjectEntries from 'core-js/library/fn/object/entries'
|
|
import decamelize from 'decamelize'
|
|
import queryString from 'query-string'
|
|
|
|
|
|
/**
|
|
* @private
|
|
* imported from https://github.com/bigchaindb/js-utility-belt/
|
|
*
|
|
* Takes a key-value dictionary (ie. object) and converts it to a query-parameter string that you
|
|
* can directly append into a URL.
|
|
*
|
|
* Extends queryString.stringify by allowing you to specify a `transform` function that will be
|
|
* invoked on each of the dictionary's keys before being stringified into the query-parameter
|
|
* string.
|
|
*
|
|
* By default `transform` is `decamelize`, so a dictionary of the form:
|
|
*
|
|
* {
|
|
* page: 1,
|
|
* pageSize: 10
|
|
* }
|
|
*
|
|
* will be converted to a string like:
|
|
*
|
|
* ?page=1&page_size=10
|
|
*
|
|
* @param {Object} obj Query params dictionary
|
|
* @param {function} [transform=decamelize] Transform function for each of the param keys
|
|
* @return {string} Query param string
|
|
*/
|
|
export default function stringifyAsQueryParam(obj, transform = decamelize) {
|
|
if (!obj || typeof obj !== 'object' || !Object.keys(obj).length) {
|
|
return ''
|
|
}
|
|
|
|
const transformedKeysObj = coreObjectEntries(obj).reduce((paramsObj, [key, value]) => {
|
|
paramsObj[transform(key)] = value
|
|
return paramsObj
|
|
}, {})
|
|
|
|
return `?${queryString.stringify(transformedKeysObj)}`
|
|
}
|