forked from Kong/httpsnippet
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathclient.ts
107 lines (85 loc) · 2.65 KB
/
client.ts
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/**
* @description
* HTTP code snippet generator for Javascript & Node.js using Axios.
*
* @author
* @rohit-gohri
*
* for any questions or issues regarding the generated code snippet, please open an issue mentioning the author.
*/
import type { Client } from '../../index.js';
import stringifyObject from 'stringify-object';
import { CodeBuilder } from '../../../helpers/code-builder.js';
export const axios: Client = {
info: {
key: 'axios',
title: 'Axios',
link: 'https://github.com/axios/axios',
description: 'Promise based HTTP client for the browser and node.js',
extname: '.js',
installation: 'npm install axios --save',
},
convert: ({ allHeaders, method, url, queryObj, postData }, options) => {
const opts = {
indent: ' ',
...options,
};
const { blank, push, join, addPostProcessor } = new CodeBuilder({ indent: opts.indent });
push("import axios from 'axios';");
blank();
const requestOptions: Record<string, any> = {
method,
url,
};
if (Object.keys(queryObj).length) {
requestOptions.params = queryObj;
}
if (Object.keys(allHeaders).length) {
requestOptions.headers = allHeaders;
}
switch (postData.mimeType) {
case 'application/x-www-form-urlencoded':
if (postData.params) {
push('const encodedParams = new URLSearchParams();');
postData.params.forEach(param => {
push(`encodedParams.set('${param.name}', '${param.value}');`);
});
blank();
requestOptions.data = 'encodedParams,';
addPostProcessor(code => code.replace(/'encodedParams,'/, 'encodedParams,'));
}
break;
case 'application/json':
if (postData.jsonObj) {
requestOptions.data = postData.jsonObj;
}
break;
case 'multipart/form-data':
if (!postData.params) {
break;
}
push('const form = new FormData();');
postData.params.forEach(param => {
push(`form.append('${param.name}', '${param.value || param.fileName || ''}');`);
});
blank();
requestOptions.data = '[form]';
break;
default:
if (postData.text) {
requestOptions.data = postData.text;
}
}
const optionString = stringifyObject(requestOptions, {
indent: ' ',
inlineCharacterLimit: 80,
}).replace('"[form]"', 'form');
push(`const options = ${optionString};`);
blank();
push('axios');
push('.request(options)', 1);
push('.then(res => console.log(res.data))', 1);
push('.catch(err => console.error(err));', 1);
return join();
},
};