-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgraphs.js
46 lines (41 loc) · 1.24 KB
/
graphs.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import { _config } from '@ecomplus/utils'
import { IS_BROWSER, API_GRAPHS } from './../lib/constants'
import request from './../lib/request'
// returns axios request promise
const graphs = ({
url,
storeId = _config.get('store_id'),
axiosConfig
}) => request({
// set 5s default timeout for graphs requests on browser
timeout: IS_BROWSER ? 5000 : 30000,
...axiosConfig,
url,
baseURL: API_GRAPHS,
headers: {
'X-Store-ID': storeId
}
})
/**
* @method
* @memberof ecomClient
* @name graphs
* @description Send HTTP GET request to
* [E-Com Plus Graphs REST API]{@link https://developers.e-com.plus/docs/api/#/graphs/}.
*
* @param {object} cfg - Request config options
* @param {string} cfg.url - API endpoint to request or absolute URI
* @param {number} [cfg.storeId=_config.get('store_id')] - E-Com Plus Store ID number
* @param {object} [cfg.axiosConfig] - Additional
* [axios config]{@link https://github.com/axios/axios#request-config} settings
*
* @returns {Promise<response|error>}
* Axios request promise resolved with
* [response]{@link https://github.com/axios/axios#response-schema}
* or rejected with
* [error]{@link https://github.com/axios/axios#handling-errors}.
*
* @example
// TODO
*/
export default graphs