-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.js
396 lines (367 loc) · 10.4 KB
/
index.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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
const app = Vue.createApp({
data() {
return {
basePath: '',
visible: false,
formInline: {
url: '',
module: '',
old: false,
new: true,
vueFunc: true,
oldHost: 'api'
},
module: [],
apiData: {},
apiGenerate: '',
oldApiGenerate: '',
vueFuncGenerate: '',
loading: false,
activeNames: '1',
tableDataRow: [],
tableGenerateData: '',
definitions: {},
platform: 'Apifox',
}
},
mounted() {
var clipboard = new ClipboardJS('.copyBtn')
console.log(clipboard);
clipboard.on('success', (e) => {
this.$message({
message: '复制成功',
type: 'success'
})
e.clearSelection()
})
clipboard.on('error', (e) => {
console.error('Action:', e.action)
console.error('Trigger:', e.trigger)
this.$message({
type: "error",
message: '复制失败'
})
})
const form = JSON.parse(localStorage.getItem('form'))
if (form) {
delete form.module
this.formInline = form
this.urlInput(this.formInline.url)
}
},
beforeMount () {
console.log(23424);
},
methods: {
/**
* @description: 用户输入的url
* @param {*} value
* @return {*}
*/
urlInput(value) {
if (/http/.test(value)) {
if (!/openapi/.test(value)) {
// value = value + '/v2/api-docs'
this.platform = 'swagger'
}
this.$notify({
type: "success",
title: '提示',
position: "bottom-right",
message: `当前api文档平台为 (${this.platform}) `
})
this.loading = true
axios
.get(value)
.then(({ data }) => {
this.loading = false
const { tags, basePath, definitions } = data
this.basePath = basePath || ''
this.module = tags
this.apiData = data.paths
// 收集生成表格的原生数据
var reg = /^[\u4e00-\u9fa5]\S*[\u4e00-\u9fa5]$/
for (const key in definitions) {
if (reg.test(key)) {
this.tableDataRow.push(definitions[key])
}
}
this.definitions = definitions
})
.catch(() => {
this.loading = false
this.$notify({
type: "error",
title: '提示',
position: "bottom-right",
message: `文档数据加载失败了!!! `
})
})
}
},
/**
* @description: 选择需要生成代码的模块
* @param {*}
* @return {*}
*/
selectModule() {
localStorage.setItem('form', JSON.stringify(this.formInline))
this.apiGenerate = ''
this.oldApiGenerate = ''
this.vueFuncGenerate = ''
this.tableGenerateData = ''
for (const key in this.apiData) {
const target = this.apiData[key]
let method = 'get'
let tag
if (target['get']) {
tag = target['get'].tags
method = 'get'
} else {
tag = target['post'].tags
method = 'post'
}
if (tag.includes(this.formInline.module)) {
let parameters
parameters = target[method].parameters
const tableRow = target[method]['responses'][200]['schema']?.$ref
console.log('tableRow===>', tableRow)
this.tableDataRow.find(item => {
const reg = new RegExp(`${item.title}`, 'g')
if (reg.test(tableRow)) {
this.tableGenerateData += this.generateTable(item)
}
})
summary = target[method].summary
const annotation = this.generateAnnotation(parameters, summary)
if (this.formInline.new) {
this.apiGenerate += this.generateFuction(
target,
key,
method,
annotation
)
}
if (this.formInline.old) {
this.oldApiGenerate += this.generateOldFunction(
key,
method,
annotation,
interface,
interfaceName
)
}
const vueannotation = `
/**
* @description: ${summary}
* @return {*}
*/ `
if (this.formInline.vueFunc) {
this.vueFuncGenerate += this.generateVueFunc(
key,
method,
vueannotation
)
}
}
}
},
/**
* @description: 生成函数注释
* @param {*} parameters
* @return {*}
*/
generateAnnotation(parameters = [], summary) {
let paramStr = ``
// if (this.platform !== 'Apifox') {
// const schema = parameters[0]
// if (parameters.length === 1 && schema) {
// const key = schema.schema.$ref.split('/').at(-1)
// parameters = this.definitions[key].properties
// for (const [key, value] of Object.entries(parameters)) {
// if (!/key/g.test(paramStr)) {
// paramStr +=
// `
// * @param {${value.type}} ${key} ${value.description}`
// }
// }
// } else {
// parameters.forEach(item => {
// if (!/item.name/g.test(paramStr)) {
// paramStr += `
// * @param {*} ${item.name}
// `
// }
// })
// }
// }
// 判断是否生成了参数
if (paramStr) {
return `
/**
* @description: ${summary}
${paramStr}
* @return {*}
*/ `
} else {
return `
/**
* @description: ${summary}
* @return {*}
*/ `
}
},
/**
* @description: 生成函数
* @param {*} target
* @param {*} key
* @param {*} method
* @param {*} annotation
* @return {*}
*/
generateFuction(target, key, method, annotation) {
let paramsType = 'data'
if (method === 'get') {
paramsType = 'params'
}
const paths = key.split('/')
const isUrlParams = /{\S+}/.test(paths)
let url = `${this.basePath}${key}`
let methodPart = paths.at(-1)
const urlParams = paths.at(-1).replace(/\{|\}/g, '')
if (isUrlParams) {
methodPart = paths.at(-2)
key = key.replace(/\{\S+\}/g, '')
url = `"${this.basePath}${key}"` + '+' + urlParams
}
const funcStr = `
${annotation}
export function ${method}${methodPart.replace(/^\S/, s =>
s.toUpperCase()
)}(${isUrlParams ? urlParams + ',' : ''} ${paramsType}, other = {}) {
return request({
url:'${url}',
method: '${method}',
${paramsType},
...other
})
}`
return funcStr
},
/**
* @description: 生成旧版 api
* @param {*}
* @return {*}
*/
generateOldFunction(key, method, summary, interface, interfaceName) {
const interfaceNameRes = interface ? ':' + interfaceName : ''
const paths = key.split('/')
const methodPart = paths.at(-1)
const url = `${this.formInline.oldHost}|${this.basePath}${key}|${method.toUpperCase()}`
return `
${interface}
${summary}
export const ${method}${methodPart.replace(/^\S/, s =>
s.toUpperCase()
)} = (data${interfaceNameRes} ) => request('${url}',data)`
},
async getAppReservationPage() {
try {
this.tableLoading = true
const { code, data } = await getAppReservationPage(this.listQuery)
if (code === 0) {
this.total = data.total
this.tabelData = data.records
}
} catch (error) {
console.log(error)
} finally {
this.tableLoading = false
}
},
/**
* @description: 生成 vue 内部调用函数
* @param {*} key
* @param {*} method
* @param {*} annotation
* @return {*}
*/
generateVueFunc(key, method, annotation) {
const paths = key.split('/')
const methodPart = paths.at(-1)
const funcName = ` ${method}${methodPart.replace(/^\S/, s =>
s.toUpperCase()
)}`
const funcStr = `
${annotation}
async ${funcName}() {
try {
const { code, result } = await ${funcName}()
if (code === 200 && result) {
}else{
this.tableData = []
}
} catch (error) {
console.log(error)
}
},`
return funcStr
},
generateTable(row) {
const properties = row.properties
let keyArr = `
[`
let titleArr = `
[`
// const propertiesLength = Object.keys(row.properties).length-1
// let index = 0
function generateAccuracyStr(key, title) {
if (/[准确率|正确率]/g.test(title)) {
return `
<template slot-scope="{row}">
<div>
{{((row['${key}']||0)*100).toFixed(2)}}%
</div>
</template>
`
}
return ``
}
let str = `
// ${row.title}
<el-table :data="tableData"
style="width: 100%"
height="100%"
v-loading="tableLoading"
:header-row-style="aheaderRowStyle"
:row-class-name="tableRowClassName">`
for (const [key, value] of Object.entries(properties)) {
keyArr += `"${key}",
`
titleArr += `"${value.description}",
`
str += `
<el-table-column prop="${key}"
label="${value.description}"
sortable=''
min-width='160px'
align='center'>
${generateAccuracyStr(key, value.description)}
</el-table-column> `
}
str += `
</el-table>
${keyArr}]
${titleArr}]
`
return str
},
getInterfaceName(key, method) {
const paths = key.split('/')
const methodPart = paths.at(-1)
return `${method.replace(/^\S/, s => s.toUpperCase())}${methodPart.replace(/^\S/, s => s.toUpperCase())}`
}
}
})
app.use(ElementPlus)
app.mount('#app')