ny
昨天 282fbc6488f4e8ceb5fda759f963ee88fbf7b999
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
<script lang="ts" setup>
import { onMounted, reactive } from 'vue';
 
import { useModal } from '@jnpf/ui/modal';
 
import { useDebounceFn } from '@vueuse/core';
import draggable from 'vuedraggable';
 
import { getDataInterfaceInfo } from '#/api/systemData/dataInterface';
import { InterfaceModal } from '#/components/CommonModal';
import { SelectInterfaceBtn } from '#/components/Interface';
 
import JsonModal from './RJsonModal.vue';
import Refresh from './RRefresh.vue';
 
interface State {
  allOptions: any[];
  options: any[];
}
const props = defineProps(['activeData', 'showType']);
const state = reactive<State>({
  allOptions: [],
  options: [],
});
const [registerJson, { openModal: openJsonModal }] = useModal();
const debounceOnSearch = useDebounceFn(onSearch, 300);
const barTypeList = [
  { fullName: '柱体', id: 'bar' },
  { fullName: '折线', id: 'line' },
];
const dataTypeOptions = [
  { id: 'static', fullName: '静态数据' },
  { id: 'dynamic', fullName: '数据接口' },
];
const columns = [
  { title: '系列', key: 'title', ellipsis: true },
  { title: '类型', key: 'type' },
];
const mappingColumns = [
  { title: '字段', dataIndex: 'field', key: 'field', width: 50 },
  { title: '映射', dataIndex: 'value', key: 'value', width: 120, align: 'center' },
];
const mappingList = [
  { id: 1, field: '系列', value: '' },
  { id: 2, field: '维度', value: '' },
  { id: 3, field: '数值', value: '' },
  { id: 4, field: '最大值', value: '' },
  { id: 5, field: '时间戳', value: '' },
  { id: 6, field: '经度', value: '' },
  { id: 7, field: '纬度', value: '' },
];
 
function onDataTypeChange() {
  props.activeData.propsApi = '';
  props.activeData.propsName = '';
  props.activeData.templateJson = [];
}
function showData(val) {
  openJsonModal(true, { value: JSON.stringify(val) });
}
function onPropsApiChange(val, item) {
  if (val) {
    props.activeData.propsApi = val;
    props.activeData.propsName = item.fullName;
    props.activeData.refresh.autoRefresh = false;
    props.activeData.templateJson = item.parameterJson ? JSON.parse(item.parameterJson).map((o) => ({ ...o, relationField: '', sourceType: 2 })) : [];
    state.allOptions = item.fieldJson ? JSON.parse(item.fieldJson).map((o) => ({ ...o, value: o.defaultValue })) : [];
  } else {
    props.activeData.propsApi = '';
    props.activeData.propsName = '';
    props.activeData.templateJson = [];
    state.allOptions = [];
  }
}
function addSelectItem() {
  props.activeData.option.columnOptions.push({ value: '', label: '' });
}
function handleDel(index) {
  if (props.activeData.option.columnOptions.length > 1) props.activeData.option.columnOptions.splice(index, 1);
}
function handleRefreshData(data) {
  props.activeData.option.defaultValue = data ? JSON.parse(data) : [];
}
function onSearch(searchText: string) {
  state.options = state.allOptions.filter((o) => o.value.toLowerCase().includes(searchText.toLowerCase()));
}
function onFocus(searchText) {
  onSearch(searchText);
}
function initFieldData() {
  if (!props.activeData.propsApi || props.activeData.dataType === 'static') return (state.allOptions = []);
  getDataInterfaceInfo(props.activeData.propsApi).then((res) => {
    const data = res.data;
    const list = data.fieldJson ? JSON.parse(data.fieldJson) : [];
    state.allOptions = list.map((o) => ({ ...o, value: o.defaultValue }));
  });
}
function initMappingConfig() {
  if (props.activeData?.mappingConfig && props.activeData?.mappingConfig?.length) return props.activeData.mappingConfig;
  if (['barChart', 'lineChart', 'pieChart'].includes(props.activeData.jnpfKey)) return mappingList.filter((o) => [1, 2, 3].includes(o.id));
  if (['radarChart'].includes(props.activeData.jnpfKey)) return mappingList.filter((o) => [1, 2, 3, 4].includes(o.id));
  if (['timeAxis'].includes(props.activeData.jnpfKey)) return mappingList.filter((o) => [2, 5].includes(o.id));
  if (['mapChart'].includes(props.activeData.jnpfKey)) return mappingList.filter((o) => [2, 3, 6, 7].includes(o.id));
}
 
onMounted(() => {
  props.activeData.mappingConfig = initMappingConfig();
  initFieldData();
});
</script>
<template>
  <a-collapse-panel>
    <template #header>数据设置</template>
    <a-form-item label="数据类型">
      <jnpf-radio v-model:value="activeData.dataType" :options="dataTypeOptions" option-type="button" button-style="solid" @change="onDataTypeChange" />
    </a-form-item>
    <a-form-item label="数据设置" v-if="activeData.dataType === 'static'">
      <a-button @click="showData(activeData.option.defaultValue)">查看</a-button>
    </a-form-item>
    <a-form-item label="数据接口" v-if="activeData.dataType === 'dynamic'">
      <InterfaceModal :value="activeData.propsApi" :title="activeData.propsName" popup-title="数据接口" @change="onPropsApiChange" />
    </a-form-item>
    <a-form-item label="参数设置" v-if="activeData.dataType === 'dynamic' && activeData.templateJson?.length">
      <SelectInterfaceBtn :template-json="activeData.templateJson" :show-system-form-id="false" :type="2" />
    </a-form-item>
    <template v-if="activeData.dataType === 'dynamic' && activeData.propsApi && activeData.jnpfKey != 'rankList'">
      <a-form-item label="映射关系">
        <a-table :data-source="activeData.mappingConfig" :columns="mappingColumns" size="small" :pagination="false">
          <template #bodyCell="{ column, record }">
            <template v-if="column.key === 'field'"> {{ record[column.key] }} </template>
            <template v-if="column.key === 'value'">
              <a-auto-complete
                class="text-left"
                v-model:value="record[column.key]"
                placeholder="请输入"
                :options="state.options"
                allow-clear
                @focus="onFocus(record[column.key])"
                @search="debounceOnSearch(record[column.key])" />
            </template>
          </template>
        </a-table>
      </a-form-item>
    </template>
    <template v-if="activeData.jnpfKey == 'rankList'">
      <a-divider>列表字段</a-divider>
      <div class="options-list">
        <draggable v-model="activeData.option.columnOptions" :animation="300" group="selectItem" handle=".option-drag" item-key="id">
          <template #item="{ element, index }">
            <div class="select-item">
              <div class="select-line-icon option-drag">
                <i class="icon-ym icon-ym-darg"></i>
              </div>
              <jnpf-i18n-input v-model:value="element.label" v-model:i18n="element.labelI18nCode" placeholder="列名" />
              <a-auto-complete
                v-model:value="element.value"
                placeholder="字段"
                :options="state.options"
                allow-clear
                @focus="onFocus(element.value)"
                @search="debounceOnSearch(element.value)" />
              <div class="close-btn select-line-icon" :class="{ 'opacity-50': activeData.option.columnOptions.length == 1 }" @click="handleDel(index)">
                <i class="icon-ym icon-ym-btn-clearn"></i>
              </div>
            </div>
          </template>
        </draggable>
        <div class="add-btn">
          <a-button type="link" pre-icon="icon-ym icon-ym-btn-add" @click="addSelectItem">添加字段</a-button>
        </div>
      </div>
    </template>
    <div v-if="activeData.option.styleType == 7 && activeData.jnpfKey == 'barChart'" class="my-[20px]">
      <a-table :data-source="activeData.option.barType" :columns="columns" size="small" :pagination="false">
        <template #bodyCell="{ column, record }">
          <template v-if="column.key === 'title'"> {{ record[column.key] }} </template>
          <template v-if="column.key === 'type'">
            <jnpf-select v-model:value="record[column.key]" placeholder="请选择" :options="barTypeList" show-search />
          </template>
        </template>
      </a-table>
    </div>
    <Refresh v-if="activeData.dataType === 'dynamic' && activeData.propsApi" :refresh="activeData.refresh" />
    <JsonModal @register="registerJson" @change="handleRefreshData" />
  </a-collapse-panel>
</template>