-
-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support serialization of url query parameters #182
Support serialization of url query parameters #182
Conversation
src/utils/fetch.js
Outdated
// /* | ||
// * Creates URL request path | ||
// */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove duplicate comment characters :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oops! sorry for that.
src/utils/fetch.js
Outdated
// */ | ||
export const encodeQueryData = (data) => { | ||
const replacer = (k, v)=>(v === undefined ? null : v); | ||
const pairs = Object.entries(data).map(([key, val]) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Might be better to just filter out any null-ish values before doing the encoding. The backend doesn't really take null
or undefined
values anyway.
This way you can just do the following:
const pairs = Object.entries(data)
.filter(([, val]) => val !== null && val !== undefined)
.map(([key, val]) => {
const value = typeof val === 'object' ? JSON.stringify(val) : val;
return `${encodeURIComponent(key)}=${encodeURIComponent(value)}`;
});
@andersevenrud changes are done. As I said here, there were some issues about filtering client options passed. Do you want those to consider in this pull request? |
I'm not I sure I fully understand the issue. Edit: Let's split out everything into single PRs. It's much easier to manage this way :) |
No description provided.