mirror of
https://gitee.com/dromara/go-view.git
synced 2025-02-24 08:12:49 +08:00
feat: 控件与组件交互
This commit is contained in:
parent
26116685e1
commit
495d93a835
23
src/hooks/events.hook.ts
Normal file
23
src/hooks/events.hook.ts
Normal file
@ -0,0 +1,23 @@
|
||||
import { computed, toRefs } from 'vue'
|
||||
import { CreateComponentType } from '@/packages/index.d'
|
||||
import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore'
|
||||
|
||||
// 获取类型
|
||||
type ChartEditStoreType = typeof useChartEditStore
|
||||
|
||||
// Params 参数修改触发api更新图表请求
|
||||
export const eventsCreate = (chartConfig: CreateComponentType, useChartEditStore: ChartEditStoreType, param: { [name: string]: string }, onEvevnt: string) => {
|
||||
const chartEditStore = useChartEditStore()
|
||||
const { eventsFn } = chartConfig.events
|
||||
const fnOnEvevnt = eventsFn.filter((item) => {
|
||||
return item.on === onEvevnt
|
||||
}) || []
|
||||
if (fnOnEvevnt.length === 0) return
|
||||
fnOnEvevnt.forEach((item) => {
|
||||
const index = chartEditStore.fetchTargetIndex(item.components)
|
||||
const { Params } = toRefs(chartEditStore.componentList[index].request.requestParams)
|
||||
Object.keys(item.fn).forEach((key) => {
|
||||
Params.value[key] = param[item.fn[key]]
|
||||
})
|
||||
})
|
||||
}
|
@ -4,4 +4,5 @@ export * from '@/hooks/useCode.hook'
|
||||
export * from '@/hooks/useChartDataFetch.hook'
|
||||
export * from '@/hooks/useChartDataPondFetch.hook'
|
||||
export * from '@/hooks/useLifeHandler.hook'
|
||||
export * from '@/hooks/useLang.hook'
|
||||
export * from '@/hooks/useLang.hook'
|
||||
export * from '@/hooks/events.hook'
|
@ -1,4 +1,4 @@
|
||||
import { ref, toRefs, toRaw } from 'vue'
|
||||
import { ref, toRefs, toRaw, watch } from 'vue'
|
||||
import type VChart from 'vue-echarts'
|
||||
import { customizeHttp } from '@/api/http'
|
||||
import { useChartDataPondFetch } from '@/hooks/'
|
||||
@ -89,6 +89,13 @@ export const useChartDataFetch = (
|
||||
|
||||
// 立即调用
|
||||
fetchFn()
|
||||
|
||||
|
||||
watch(() => targetComponent.request, () => {
|
||||
fetchFn()
|
||||
}, {
|
||||
deep: true
|
||||
})
|
||||
// 定时时间
|
||||
const time = targetInterval && targetInterval.value ? targetInterval.value : globalRequestInterval.value
|
||||
// 单位
|
||||
|
@ -0,0 +1,3 @@
|
||||
import ChartEvebtInteraction from './index.vue'
|
||||
|
||||
export { ChartEvebtInteraction }
|
@ -0,0 +1,159 @@
|
||||
<template>
|
||||
<n-card v-for="(item, indexs) in targetData.events.eventsFn" :key="indexs" class="n-card-shallow">
|
||||
<RowDeleteIcon class="edit-text" @click="evDeleteEventsFn(indexs)" />
|
||||
<setting-item-box name="触发事件" :alone="true">
|
||||
<n-input-group v-if="option.eventsApi">
|
||||
<n-select class="select-type-options" v-model:value="item.on" :options="option.eventsApi" />
|
||||
</n-input-group>
|
||||
</setting-item-box>
|
||||
|
||||
<n-table striped>
|
||||
<thead>
|
||||
<tr>
|
||||
<th v-for="item in ['参数', '说明']" :key="item">{{ item }}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr v-for="(cItem, index) in fnDimensionsAndSource(item.on)" :key="index">
|
||||
<td>{{ cItem.value }}</td>
|
||||
<td>{{ cItem.label }}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</n-table>
|
||||
|
||||
<setting-item-box name="绑定组件" :alone="true">
|
||||
<n-input-group>
|
||||
<n-select
|
||||
class="select-type-options"
|
||||
value-field="id"
|
||||
label-field="key"
|
||||
v-model:value="item.components"
|
||||
:render-label="renderLabel"
|
||||
:options="fnEventsOptions()"
|
||||
/>
|
||||
</n-input-group>
|
||||
</setting-item-box>
|
||||
|
||||
<CollapseItem name="请求数据绑定" :expanded="false">
|
||||
<SettingItemBox name="Params">
|
||||
<SettingItem
|
||||
v-for="(ovlValue, ovlKey, index) in fnGetRequest(item.components)"
|
||||
:key="ovlKey"
|
||||
:name="`${ovlKey}`"
|
||||
>
|
||||
<n-select size="small" v-model:value="item.fn[ovlKey]" :options="fnDimensionsAndSource(item.on)"></n-select>
|
||||
</SettingItem>
|
||||
</SettingItemBox>
|
||||
</CollapseItem>
|
||||
</n-card>
|
||||
<n-button v-if="option.eventsApi" class="add-events" ghost @click="ev_addEventsFn"> 添加交互 </n-button>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import { ref, VNodeChild, h, computed, watch, toRefs, toRaw, onMounted } from 'vue'
|
||||
import { SelectOption, SelectGroupOption } from 'naive-ui'
|
||||
import { SettingItemBox, SettingItem, CollapseItem } from '@/components/Pages/ChartItemSetting'
|
||||
|
||||
import { useDesignStore } from '@/store/modules/designStore/designStore'
|
||||
import { useTargetData } from '../../../hooks/useTargetData.hook'
|
||||
import { CreateComponentType, CreateComponentGroupType } from '@/packages/index.d'
|
||||
|
||||
import { icon } from '@/plugins'
|
||||
const { RowDeleteIcon } = icon.carbon
|
||||
|
||||
const designStore = useDesignStore()
|
||||
const { targetData, chartEditStore } = useTargetData()
|
||||
const { componentList } = toRefs(chartEditStore)
|
||||
|
||||
//computed: 获取组件eventsApi
|
||||
const option = computed(() => {
|
||||
return chartEditStore.componentList[chartEditStore.fetchTargetIndex()].option
|
||||
})
|
||||
// 绑定组件数据request
|
||||
const fnGetRequest = (id: string | undefined) => {
|
||||
if (!id) return {}
|
||||
return chartEditStore.componentList[chartEditStore.fetchTargetIndex(id)]?.request.requestParams.Params
|
||||
}
|
||||
|
||||
const fnDimensionsAndSource = (on: any) => {
|
||||
if (!on || !option.value.eventsApi) return []
|
||||
const tableData = option.value.eventsApi.find((item: { value: string }) => {
|
||||
return item.value === on
|
||||
})
|
||||
|
||||
return tableData[option.value.dataset.type]
|
||||
}
|
||||
|
||||
const renderLabel = (option: CreateComponentType | CreateComponentGroupType): VNodeChild => {
|
||||
return option.chartConfig.title
|
||||
}
|
||||
|
||||
const fnEventsOptions = (): Array<SelectOption | SelectGroupOption> => {
|
||||
return chartEditStore.componentList.filter(item => {
|
||||
return item.id !== targetData.value.id
|
||||
})
|
||||
}
|
||||
|
||||
const ev_addEventsFn = () => {
|
||||
targetData.value.events.eventsFn.push({
|
||||
on: undefined,
|
||||
components: undefined,
|
||||
fn: {}
|
||||
})
|
||||
}
|
||||
|
||||
const evDeleteEventsFn = (index: number) => {
|
||||
targetData.value.events.eventsFn.splice(index, 1)
|
||||
}
|
||||
|
||||
// 颜色
|
||||
const themeColor = computed(() => {
|
||||
return designStore.getAppTheme
|
||||
})
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.n-card-shallow {
|
||||
margin-top: 1rem;
|
||||
.edit-text {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
position: absolute;
|
||||
top: 5px;
|
||||
right: 5px;
|
||||
&:hover {
|
||||
cursor: pointer;
|
||||
color: v-bind('themeColor');
|
||||
}
|
||||
}
|
||||
&.n-card {
|
||||
// .mill-background-filter();
|
||||
:deep(.n-card__content) {
|
||||
padding: 10px;
|
||||
}
|
||||
}
|
||||
&:hover {
|
||||
border-color: v-bind('themeColor');
|
||||
.edit-text {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
.mill-chart-target-data {
|
||||
:deep(pre) {
|
||||
white-space: pre-wrap;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
}
|
||||
.add-events {
|
||||
width: 100%;
|
||||
height: 32px;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
.n-input-group {
|
||||
height: 30px;
|
||||
}
|
||||
:deep(.n-base-selection .n-base-selection-label) {
|
||||
height: 32px;
|
||||
}
|
||||
</style>
|
Loading…
Reference in New Issue
Block a user