- Linting... Prettier...

This commit is contained in:
2019-08-07 01:59:10 -04:00
parent 3dc8589fb4
commit 847c9b192a
102 changed files with 2161 additions and 2109 deletions

View File

@@ -1,21 +1,23 @@
import { API_URL } from '../constants/constants.js';
export const constructUrl = (path, params, host = API_URL) => {
if (!(/^\//g).test(path)) {
throw new Error(`Invalid path! Expecting a valid relative path (path needs to start with /)(${path})`);
}
if (!/^\//g.test(path)) {
throw new Error(
`Invalid path! Expecting a valid relative path (path needs to start with /)(${path})`,
);
}
let url = path;
let url = path;
if (host) {
url = `${host}${url}`;
}
if (host) {
url = `${host}${url}`;
}
if (params) {
url = `${url}?${params}`;
}
if (params) {
url = `${url}?${params}`;
}
return url;
return url;
};
/**
@@ -26,59 +28,57 @@ export const constructUrl = (path, params, host = API_URL) => {
* this serializes data in a way that helps support legacy endpoints
*/
export const formatPostData = (body) => {
const postData = new FormData();
Object.keys(body).forEach(key => postData.append(key, body[key]));
return postData;
const postData = new FormData();
Object.keys(body).forEach((key) => postData.append(key, body[key]));
return postData;
};
const parseQueryParamsString = (queryParams) => {
if (typeof queryParams !== 'string') {
return null;
}
if (typeof queryParams !== 'string') {
return null;
}
return queryParams;
return queryParams;
};
const parseQueryParamsObject = (queryParams) => {
if (queryParams === null || typeof queryParams !== 'object' || Array.isArray(queryParams)) {
return null;
}
if (queryParams === null || typeof queryParams !== 'object' || Array.isArray(queryParams)) {
return null;
}
return Object
.keys(queryParams)
.map((key) => {
const value = queryParams[key];
return `${encodeURIComponent(key)}=${encodeURIComponent(value)}`;
})
.join('&');
return Object.keys(queryParams)
.map((key) => {
const value = queryParams[key];
return `${encodeURIComponent(key)}=${encodeURIComponent(value)}`;
})
.join('&');
};
const parseQueryParamsArray = (queryParams) => {
if (!Array.isArray(queryParams)) {
return null;
}
if (!Array.isArray(queryParams)) {
return null;
}
return queryParams
.map((param) => {
const [key, value] = param.split('=');
return `${encodeURIComponent(key)}=${encodeURIComponent(value)}`;
})
.join('&');
return queryParams
.map((param) => {
const [key, value] = param.split('=');
return `${encodeURIComponent(key)}=${encodeURIComponent(value)}`;
})
.join('&');
};
export const parseQueryParams = queryParams => (
parseQueryParamsString(queryParams) ||
parseQueryParamsObject(queryParams) ||
parseQueryParamsArray(queryParams) ||
''
);
export const parseQueryParams = (queryParams) =>
parseQueryParamsString(queryParams) ||
parseQueryParamsObject(queryParams) ||
parseQueryParamsArray(queryParams) ||
'';
export const request = (url, options) => {
try {
return fetch(url, options).catch((err) => console.error(err));
} catch (error) {
return Promise.reject(error);
}
try {
return fetch(url, options).catch((err) => console.error(err));
} catch (error) {
return Promise.reject(error);
}
};
export const unwrapJson = (response) => response.json();