Add File
This commit is contained in:
170
frontend/src/views/chat/chat-block/ChartPopover.vue
Normal file
170
frontend/src/views/chat/chat-block/ChartPopover.vue
Normal file
@@ -0,0 +1,170 @@
|
|||||||
|
<script lang="ts" setup>
|
||||||
|
import icon_done_outlined from '@/assets/svg/icon_done_outlined.svg'
|
||||||
|
import { computed, ref } from 'vue'
|
||||||
|
import icon_expand_down_filled from '@/assets/svg/icon_down_outlined.svg'
|
||||||
|
const props = defineProps({
|
||||||
|
chartTypeList: {
|
||||||
|
type: Array<any>,
|
||||||
|
default: () => [],
|
||||||
|
},
|
||||||
|
chartType: {
|
||||||
|
type: String,
|
||||||
|
default: 'table',
|
||||||
|
},
|
||||||
|
title: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
})
|
||||||
|
const currentIcon = computed(() => {
|
||||||
|
if (props.chartType === 'table') {
|
||||||
|
const [ele] = props.chartTypeList || []
|
||||||
|
if (ele.icon) {
|
||||||
|
return ele.icon
|
||||||
|
}
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
return props.chartTypeList.find((ele) => ele.value === props.chartType).icon
|
||||||
|
})
|
||||||
|
|
||||||
|
const firstItem = () => {
|
||||||
|
if (props.chartType === 'table') {
|
||||||
|
const [ele] = props.chartTypeList || []
|
||||||
|
handleDefaultChatChange(ele || {})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
const emits = defineEmits(['typeChange'])
|
||||||
|
const selectRef = ref()
|
||||||
|
const handleDefaultChatChange = (val: any) => {
|
||||||
|
emits('typeChange', val.value)
|
||||||
|
selectRef.value?.hide()
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<el-popover ref="selectRef" trigger="click" popper-class="chat-type_select" placement="bottom">
|
||||||
|
<template #reference>
|
||||||
|
<div
|
||||||
|
class="chat-select_type"
|
||||||
|
:class="chartType && chartType !== 'table' && 'active'"
|
||||||
|
@click="firstItem"
|
||||||
|
>
|
||||||
|
<component :is="currentIcon" />
|
||||||
|
<el-icon style="color: #646a73" class="expand" size="12">
|
||||||
|
<icon_expand_down_filled></icon_expand_down_filled>
|
||||||
|
</el-icon>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<div class="popover">
|
||||||
|
<div class="popover-content">
|
||||||
|
<div v-if="!!title" class="title">{{ title }}</div>
|
||||||
|
<div
|
||||||
|
v-for="ele in chartTypeList"
|
||||||
|
:key="ele.name"
|
||||||
|
class="popover-item"
|
||||||
|
:class="chartType === ele.value && 'isActive'"
|
||||||
|
@click="handleDefaultChatChange(ele)"
|
||||||
|
>
|
||||||
|
<el-icon style="color: #646a73" size="16">
|
||||||
|
<component :is="ele.icon" :class="chartType === ele.value && 'icon-primary'" />
|
||||||
|
</el-icon>
|
||||||
|
<div class="model-name">{{ ele.name }}</div>
|
||||||
|
<el-icon size="16" class="done">
|
||||||
|
<icon_done_outlined></icon_done_outlined>
|
||||||
|
</el-icon>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</el-popover>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="less">
|
||||||
|
.chat-type_select.chat-type_select {
|
||||||
|
padding: 4px 0;
|
||||||
|
width: 120px !important;
|
||||||
|
min-width: 120px !important;
|
||||||
|
box-shadow: 0px 4px 8px 0px #1f23291a;
|
||||||
|
border: 1px solid #dee0e3;
|
||||||
|
|
||||||
|
.popover {
|
||||||
|
.popover-content {
|
||||||
|
padding: 0 4px;
|
||||||
|
max-height: 300px;
|
||||||
|
overflow-y: auto;
|
||||||
|
|
||||||
|
.title {
|
||||||
|
width: 100%;
|
||||||
|
height: 32px;
|
||||||
|
margin-bottom: 2px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
padding-left: 8px;
|
||||||
|
color: #8f959e;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.popover-item {
|
||||||
|
height: 32px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
padding-left: 12px;
|
||||||
|
padding-right: 8px;
|
||||||
|
margin-bottom: 2px;
|
||||||
|
position: relative;
|
||||||
|
border-radius: 4px;
|
||||||
|
cursor: pointer;
|
||||||
|
&:last-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
&:hover {
|
||||||
|
background: #1f23291a;
|
||||||
|
}
|
||||||
|
|
||||||
|
.model-name {
|
||||||
|
margin-left: 8px;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 22px;
|
||||||
|
max-width: 220px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.done {
|
||||||
|
margin-left: auto;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.isActive {
|
||||||
|
color: var(--ed-color-primary);
|
||||||
|
|
||||||
|
.done {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style lang="less" scoped>
|
||||||
|
.chat-select_type {
|
||||||
|
width: 40px;
|
||||||
|
height: 24px;
|
||||||
|
border-radius: 4px;
|
||||||
|
padding-left: 4px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
.expand {
|
||||||
|
margin-left: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background: #1f23291a;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.active {
|
||||||
|
background: var(--ed-color-primary-1a, rgba(28, 186, 144, 0.1));
|
||||||
|
color: var(--ed-color-primary, rgba(28, 186, 144, 1));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
Reference in New Issue
Block a user