123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- <template>
- <div class="my-layout">
- <el-card class="mt8" shadow="never" :body-style="{ paddingBottom: '0' }">
- <el-form :inline="true" @submit.stop.prevent>
- <el-form-item label="接口名称">
- <el-input v-model="state.filter.name" placeholder="接口名称" @keyup.enter="onQuery" />
- </el-form-item>
- <el-form-item>
- <el-button type="primary" icon="ele-Search" @click="onQuery"> 查询 </el-button>
- <el-button v-auth="'api:admin:api:add'" type="primary" icon="ele-Plus" @click="onAdd"> 新增 </el-button>
- <el-popconfirm title="确定要同步接口" hide-icon width="180" hide-after="0" @confirm="onSync">
- <template #reference>
- <el-button v-auth="'api:admin:api:sync'" :loading="state.syncLoading" type="primary" icon="ele-Refresh"> 同步 </el-button>
- </template>
- </el-popconfirm>
- </el-form-item>
- </el-form>
- </el-card>
- <el-card class="my-fill mt8" shadow="never">
- <el-table
- :data="state.apiTreeData"
- style="width: 100%"
- v-loading="state.loading"
- row-key="id"
- :tree-props="{ children: 'children', hasChildren: 'hasChildren' }"
- :expand-row-keys="state.expandRowKeys"
- >
- <el-table-column prop="label" label="接口名称" min-width="120" show-overflow-tooltip />
- <el-table-column prop="path" label="接口地址" min-width="120" show-overflow-tooltip />
- <el-table-column prop="description" label="接口描述" min-width="120" show-overflow-tooltip />
- <el-table-column prop="sort" label="排序" width="80" align="center" show-overflow-tooltip />
- <el-table-column label="状态" width="80" align="center" show-overflow-tooltip>
- <template #default="{ row }">
- <el-tag type="success" v-if="row.enabled">启用</el-tag>
- <el-tag type="danger" v-else>禁用</el-tag>
- </template>
- </el-table-column>
- <el-table-column label="操作" width="160" fixed="right" header-align="center" align="center">
- <template #default="{ row }">
- <el-button v-auth="'api:admin:api:update'" icon="ele-EditPen" size="small" text type="primary" @click="onEdit(row)">编辑</el-button>
- <el-button v-auth="'api:admin:api:delete'" icon="ele-Delete" size="small" text type="danger" @click="onDelete(row)">删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- </el-card>
- <api-form ref="apiFormRef" :title="state.apiFormTitle" :api-tree-data="state.formApiTreeData"></api-form>
- </div>
- </template>
- <script lang="ts" setup name="admin/api">
- import { ref, reactive, onMounted, getCurrentInstance, onBeforeMount, defineAsyncComponent } from 'vue'
- import { ApiListOutput } from '/@/api/admin/data-contracts'
- import { ApiApi } from '/@/api/admin/Api'
- import { ApiApi as ApiExtApi } from '/@/api/admin.extend/Api'
- import { listToTree, treeToList, filterTree } from '/@/utils/tree'
- import { cloneDeep, isArray } from 'lodash-es'
- import eventBus from '/@/utils/mitt'
- // 引入组件
- const ApiForm = defineAsyncComponent(() => import('./components/api-form.vue'))
- const { proxy } = getCurrentInstance() as any
- const apiFormRef = ref()
- const state = reactive({
- loading: false,
- syncLoading: false,
- apiFormTitle: '',
- filter: {
- name: '',
- },
- apiTreeData: [] as Array<ApiListOutput>,
- formApiTreeData: [] as Array<ApiListOutput>,
- expandRowKeys: [] as string[],
- })
- onMounted(async () => {
- await onQuery()
- state.expandRowKeys = treeToList(cloneDeep(state.apiTreeData))
- .filter((a: ApiListOutput) => a.parentId === 0)
- .map((a: ApiListOutput) => a.id + '') as string[]
- eventBus.off('refreshApi')
- eventBus.on('refreshApi', async () => {
- onQuery()
- })
- })
- onBeforeMount(() => {
- eventBus.off('refreshApi')
- })
- const onQuery = async () => {
- state.loading = true
- const res = await new ApiApi().getList().catch(() => {
- state.loading = false
- })
- if (res && res.data && res.data.length > 0) {
- state.apiTreeData = filterTree(listToTree(cloneDeep(res.data)), state.filter.name, {
- filterWhere: (item: any, keyword: string) => {
- return item.label?.toLocaleLowerCase().indexOf(keyword) > -1 || item.path?.toLocaleLowerCase().indexOf(keyword) > -1
- },
- })
- state.formApiTreeData = listToTree(res.data.filter((a) => a.parentId === 0))
- } else {
- state.apiTreeData = []
- state.formApiTreeData = []
- }
- state.loading = false
- }
- const onAdd = () => {
- state.apiFormTitle = '新增接口'
- apiFormRef.value.open()
- }
- const onEdit = (row: ApiListOutput) => {
- state.apiFormTitle = '编辑接口'
- apiFormRef.value.open(row)
- }
- const onDelete = (row: ApiListOutput) => {
- proxy.$modal
- .confirmDelete(`确定要删除接口【${row.label}】?`, { type: 'info' })
- .then(async () => {
- await new ApiApi().delete({ id: row.id }, { loading: true })
- onQuery()
- })
- .catch(() => {})
- }
- const syncApi = async (swaggerResource: any) => {
- const res = await new ApiExtApi().getSwaggerJson(swaggerResource.url, { showErrorMessage: false })
- if (!res) {
- return
- }
- const tags = res.tags
- const paths = res.paths
- const apis = []
- const urls = swaggerResource.url.split('/')
- const code = urls.length >= 2 ? urls[urls.length - 2] : ''
- if (code === '') {
- return
- }
- apis[apis.length] = {
- label: swaggerResource.name,
- path: code,
- }
- // tags
- if (tags && tags.length > 0) {
- tags.forEach((t: any) => {
- apis[apis.length] = {
- label: t.description,
- path: t.name,
- parentPath: code,
- }
- })
- }
- // paths
- if (paths) {
- for (const [key, value] of Object.entries(paths)) {
- const keys = Object.keys(value as any)
- const values = Object.values(value as any)
- const v = values && values.length > 0 ? values[0] : ({} as any)
- const parentPath = v.tags && v.tags.length > 0 ? v.tags[0] : ''
- apis[apis.length] = {
- label: v.summary,
- path: key,
- parentPath,
- httpMethods: keys.join(','),
- }
- }
- }
- return await new ApiApi().sync({ apis })
- }
- const onSync = () => {
- state.syncLoading = true
- const swaggerResources = ['/admin/swagger-resources']
- const lastSwaggerResourcesIndex = swaggerResources.length - 1
- swaggerResources.forEach(async (swaggerResource, swaggerResourcesIndex) => {
- const resSwaggerResources = await new ApiExtApi().getSwaggerResources(swaggerResource, { showErrorMessage: false }).catch(() => {
- state.syncLoading = false
- })
- if (isArray(resSwaggerResources) && (resSwaggerResources?.length as number) > 0) {
- for (let index = 0, len = resSwaggerResources.length; index < len; index++) {
- const swaggerResource = resSwaggerResources[index]
- await syncApi(swaggerResource).catch(() => {
- proxy.$modal.msgSuccess(`同步${swaggerResource.name}失败`)
- })
- }
- }
- if (swaggerResourcesIndex === lastSwaggerResourcesIndex) {
- state.syncLoading = false
- proxy.$modal.msgSuccess(`同步完成`)
- onQuery()
- }
- })
- }
- </script>
- <style scoped lang="scss"></style>
|