mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-30 09:42:48 +00:00
232 lines
6.3 KiB
Vue
232 lines
6.3 KiB
Vue
<template>
|
|
<el-dialog
|
|
v-model="dialogVisible"
|
|
width="1000"
|
|
append-to-body
|
|
class="addTool-dialog"
|
|
align-center
|
|
:close-on-click-modal="false"
|
|
:close-on-press-escape="false"
|
|
>
|
|
<template #header="{ titleId, titleClass }">
|
|
<div class="flex-between mb-8">
|
|
<div class="flex">
|
|
<h4 :id="titleId" :class="titleClass" class="mr-8">
|
|
{{ $t('views.tool.settingTool') }}
|
|
</h4>
|
|
</div>
|
|
|
|
<el-button link class="mr-24" @click="refresh">
|
|
<el-icon :size="18"><Refresh /></el-icon>
|
|
</el-button>
|
|
</div>
|
|
</template>
|
|
<LayoutContainer class="application-manage">
|
|
<template #left>
|
|
<div class="p-8">
|
|
<folder-tree
|
|
:data="folderList"
|
|
:currentNodeKey="currentFolder?.id"
|
|
@handleNodeClick="folderClickHandle"
|
|
v-loading="folderLoading"
|
|
:canOperation="false"
|
|
showShared
|
|
:shareTitle="$t('views.shared.shared_tool')"
|
|
:treeStyle="{ height: 'calc(100vh - 240px)' }"
|
|
/>
|
|
</div>
|
|
</template>
|
|
<div class="layout-bg">
|
|
<div class="flex-between p-16 ml-8">
|
|
<h4>{{ currentFolder?.name }}</h4>
|
|
<el-input
|
|
v-model="searchValue"
|
|
:placeholder="$t('common.search')"
|
|
prefix-icon="Search"
|
|
class="w-240 mr-8"
|
|
clearable
|
|
/>
|
|
</div>
|
|
|
|
<el-scrollbar>
|
|
<div class="p-16-24 pt-0" style="height: calc(100vh - 200px)">
|
|
<el-row :gutter="12" v-loading="apiLoading" v-if="searchData.length">
|
|
<el-col :span="12" v-for="(item, index) in searchData" :key="index" class="mb-16">
|
|
<CardCheckbox
|
|
value-field="id"
|
|
:data="item"
|
|
v-model="checkList"
|
|
@change="changeHandle"
|
|
>
|
|
<template #icon>
|
|
<el-avatar
|
|
v-if="item?.icon"
|
|
shape="square"
|
|
:size="32"
|
|
style="background: none"
|
|
class="mr-8"
|
|
>
|
|
<img :src="resetUrl(item?.icon)" alt="" />
|
|
</el-avatar>
|
|
<ToolIcon v-else :size="32" :type="item?.tool_type" />
|
|
</template>
|
|
<span class="ellipsis cursor ml-12" :title="item.name"> {{ item.name }}</span>
|
|
</CardCheckbox>
|
|
</el-col>
|
|
</el-row>
|
|
<el-empty :description="$t('common.noData')" v-else />
|
|
</div>
|
|
</el-scrollbar>
|
|
</div>
|
|
</LayoutContainer>
|
|
|
|
<template #footer>
|
|
<div class="flex-between">
|
|
<div class="flex">
|
|
<el-text type="info" class="color-secondary mr-8" v-if="checkList.length > 0">
|
|
{{ $t('common.selected') }} {{ checkList.length }}
|
|
</el-text>
|
|
<el-button link type="primary" v-if="checkList.length > 0" @click="clearCheck">
|
|
{{ $t('common.clear') }}
|
|
</el-button>
|
|
</div>
|
|
<span>
|
|
<el-button @click.prevent="dialogVisible = false">
|
|
{{ $t('common.cancel') }}
|
|
</el-button>
|
|
<el-button type="primary" @click="submitHandle">
|
|
{{ $t('common.add') }}
|
|
</el-button>
|
|
</span>
|
|
</div>
|
|
</template>
|
|
</el-dialog>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import { computed, ref, watch } from 'vue'
|
|
import { useRoute } from 'vue-router'
|
|
import useStore from '@/stores'
|
|
import { loadSharedApi } from '@/utils/dynamics-api/shared-api'
|
|
import { uniqueArray } from '@/utils/array'
|
|
import { resetUrl } from '@/utils/common'
|
|
const route = useRoute()
|
|
|
|
const emit = defineEmits(['refresh'])
|
|
const { folder, user } = useStore()
|
|
const apiType = computed(() => {
|
|
if (route.path.includes('shared')) {
|
|
return 'systemShare'
|
|
} else if (route.path.includes('resource-management')) {
|
|
return 'systemManage'
|
|
} else {
|
|
return 'workspace'
|
|
}
|
|
})
|
|
|
|
const dialogVisible = ref<boolean>(false)
|
|
const checkList = ref<Array<string>>([])
|
|
const searchValue = ref('')
|
|
const searchData = ref<Array<any>>([])
|
|
const toolList = ref<Array<any>>([])
|
|
const apiLoading = ref(false)
|
|
|
|
watch(dialogVisible, (bool) => {
|
|
if (!bool) {
|
|
checkList.value = []
|
|
searchValue.value = ''
|
|
searchData.value = []
|
|
toolList.value = []
|
|
}
|
|
})
|
|
|
|
watch(searchValue, (val) => {
|
|
if (val) {
|
|
searchData.value = toolList.value.filter((v) => v.name.includes(val))
|
|
} else {
|
|
searchData.value = toolList.value
|
|
}
|
|
})
|
|
|
|
function changeHandle() {}
|
|
function clearCheck() {
|
|
checkList.value = []
|
|
}
|
|
|
|
const open = (checked: any) => {
|
|
checkList.value = checked || []
|
|
getFolder()
|
|
dialogVisible.value = true
|
|
}
|
|
|
|
const submitHandle = () => {
|
|
emit('refresh', {
|
|
tool_ids: checkList.value,
|
|
})
|
|
dialogVisible.value = false
|
|
}
|
|
|
|
const refresh = () => {
|
|
searchValue.value = ''
|
|
toolList.value = []
|
|
getList()
|
|
}
|
|
|
|
const folderList = ref<any[]>([])
|
|
const currentFolder = ref<any>({})
|
|
const folderLoading = ref(false)
|
|
// 文件
|
|
function folderClickHandle(row: any) {
|
|
if (row.id === currentFolder.value?.id) {
|
|
return
|
|
}
|
|
currentFolder.value = row
|
|
getList()
|
|
}
|
|
|
|
function getFolder() {
|
|
const params = {}
|
|
folder.asyncGetFolder('TOOL', params, folderLoading).then((res: any) => {
|
|
folderList.value = res.data
|
|
currentFolder.value = res.data?.[0] || {}
|
|
getList()
|
|
})
|
|
}
|
|
|
|
function getList() {
|
|
const folder_id = currentFolder.value?.id || user.getWorkspaceId()
|
|
loadSharedApi({
|
|
type: 'tool',
|
|
isShared: folder_id === 'share',
|
|
systemType: 'workspace',
|
|
}).getToolList({
|
|
folder_id: folder_id,
|
|
tool_type: 'CUSTOM'
|
|
}).then((res: any) => {
|
|
toolList.value = res.data?.tools || res.data || []
|
|
toolList.value = toolList.value?.filter((item: any) => item.is_active)
|
|
searchData.value = res.data.tools || res.data
|
|
searchData.value = searchData.value?.filter((item: any) => item.is_active)
|
|
})
|
|
}
|
|
|
|
defineExpose({ open })
|
|
</script>
|
|
<style lang="scss">
|
|
.addTool-dialog {
|
|
padding: 0;
|
|
.el-dialog__header {
|
|
padding: 12px 20px 4px 24px;
|
|
border-bottom: 1px solid var(--el-border-color-light);
|
|
}
|
|
.el-dialog__footer {
|
|
padding: 12px 24px 12px 24px;
|
|
border-top: 1px solid var(--el-border-color-light);
|
|
}
|
|
|
|
.el-dialog__headerbtn {
|
|
top: 2px;
|
|
right: 6px;
|
|
}
|
|
}
|
|
</style>
|