0d1f38cf85
* Refactor all JS API calls #360 * Remove unused imports * Lint JS * Fix doubled api key * Formatting * Added extra logging to distance lookup * Remove the .editorconfig file in distrib * shell check fixes * Remove the .editorconfig file in distrib
30 lines
623 B
JavaScript
30 lines
623 B
JavaScript
|
|
import config from './config';
|
|
|
|
const axios = require('axios');
|
|
|
|
/**
|
|
* Run an API request, with some common options
|
|
*
|
|
* @param {Object|String} _opts Axios request options, or pass a URL
|
|
* @param {String} _opts.url
|
|
*/
|
|
export default async (_opts) => {
|
|
if (typeof _opts === 'string' || _opts instanceof String) {
|
|
// eslint-disable-next-line no-param-reassign
|
|
_opts = {
|
|
url: _opts,
|
|
};
|
|
}
|
|
|
|
const opts = Object.assign({}, {
|
|
baseURL: config.base_url,
|
|
headers: {
|
|
'X-API-KEY': config.api_key,
|
|
'X-CSRF-TOKEN': config.csrf_token,
|
|
},
|
|
}, _opts);
|
|
|
|
return axios.request(opts);
|
|
};
|