ConverScript.vue
7.92 KB
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
<template>
<div>
<a-form
ref="formRef"
:model="scriptForm"
name="basic"
:label-col="{ span: 4 }"
:wrapper-col="{ span: 16 }"
autocomplete="off"
>
<a-form-item
:label="ifAdd ? '名称' : '输入参数(params)'"
:name="ifAdd ? 'name' : 'params'"
:rules="[{ required: true, message: ifAdd ? '请输入脚本名称' : '请输入参数' }]"
>
<a-input
v-if="ifAdd"
:maxlength="36"
v-model:value="scriptForm.name"
placeholder="请输入脚本名称"
/>
<a-input
@change="handleInputChange"
v-else
v-model:value="scriptForm.params"
placeholder="请输入参数"
/>
</a-form-item>
<a-form-item
label="上报数据类型"
name="dataType"
:rules="[{ required: true, message: '请选择上报数据类型' }]"
>
<a-space direction="vertical">
<a-radio-group v-model:value="scriptForm.dataType" :options="typeOptions" />
</a-space>
</a-form-item>
<a-form-item
label="保存原始数据"
name="saveOriginalData"
:rules="[{ required: true, message: '请选择保存原始数据' }]"
>
<a-space direction="vertical">
<a-radio-group v-model:value="scriptForm.saveOriginalData" :options="originalOptions" />
</a-space>
</a-form-item>
<a-form-item label="脚本内容" :name="ifAdd ? 'convertJs' : 'script'">
<Card title="脚本内容" :bodyStyle="{ padding: 0, height: '280px' }">
<template #extra>
<a-button @click="handleFormat" size="small">格式化</a-button>
<Tooltip :title="defaultTitle" class="ml-2">
<QuestionCircleOutlined style="font-size: 1rem" />
</Tooltip>
</template>
<div ref="aceRef" class="overflow-hidden"></div>
</Card>
<Button @click="handleCopy" class="mt-4">
<template #icon>
<CopyOutlined />
</template>
copy
</Button>
</a-form-item>
<a-form-item
:label="ifAdd ? '备注' : '输出参数(output)'"
:name="ifAdd ? 'description' : 'output'"
>
<a-textarea
:rows="3"
v-if="ifAdd"
v-model:value="scriptForm.description"
placeholder="请输入备注"
:maxlength="255"
/>
<a-textarea
:rows="3"
v-else
v-model:value="scriptForm.output"
placeholder="输出参数为服务端返回的内容"
:maxlength="255"
/>
</a-form-item>
</a-form>
</div>
</template>
<script setup lang="ts">
import { ref, unref, reactive, onMounted, toRefs, nextTick } from 'vue';
import ace from 'ace-builds';
import { Card, Button, Tooltip } from 'ant-design-vue';
import 'ace-builds/src-noconflict/theme-chrome'; // 默认设置的主题
import 'ace-builds/src-noconflict/mode-javascript'; // 默认设置的语言模式
import { beautify } from 'ace-builds/src-noconflict/ext-beautify.js';
import { CopyOutlined } from '@ant-design/icons-vue';
import { useCopyToClipboard } from '/@/hooks/web/useCopyToClipboard';
import { useMessage } from '/@/hooks/web/useMessage';
import { findDictItemByCode } from '/@/api/system/dict';
import { QuestionCircleOutlined } from '@ant-design/icons-vue';
import { defaultTitle } from './config.data';
defineEmits(['register']);
const props = defineProps({
ifAdd: { type: Boolean, default: true },
});
const scriptForm = reactive({
name: '',
description: '',
convertJs: '',
script: '',
params: '',
output: '',
dataType: 'HEX',
saveOriginalData: 'true',
});
const reportTypeOptions = reactive({
typeOptions: [],
originalOptions: [],
});
const { originalOptions, typeOptions } = toRefs(reportTypeOptions);
const { createMessage } = useMessage();
const { clipboardRef, copiedRef } = useCopyToClipboard();
const aceEditor = ref();
const aceRef = ref();
const setDefaultRadio = (p1, p2) => {
scriptForm.dataType = p1;
scriptForm.saveOriginalData = p2;
};
onMounted(async () => {
const res: any = await findDictItemByCode({
dictCode: 'report_data_type',
});
const resOriginal: any = await findDictItemByCode({
dictCode: 'original_data',
});
reportTypeOptions.typeOptions = res.map((m) => {
return { label: m.itemText, value: m.itemValue };
});
reportTypeOptions.originalOptions = resOriginal.map((m) => {
return { label: m.itemText, value: m.itemValue };
});
});
// 初始化编辑器
const initEditor = () => {
aceEditor.value = ace.edit(aceRef.value, {
maxLines: 12, // 最大行数,超过会自动出现滚动条
minLines: 12, // 最小行数,还未到最大行数时,编辑器会自动伸缩大小
fontSize: 14, // 编辑器内字体大小
theme: 'ace/theme/chrome', // 默认设置的主题
mode: 'ace/mode/javascript', // 默认设置的语言模式
tabSize: 2, // 制表符设置为 4 个空格大小
});
aceEditor.value.setOptions({
enableBasicAutocompletion: true,
enableLiveAutocompletion: true,
});
// aceEditor.value.setValue();
beautify(aceEditor.value.session);
// scriptForm.convertJs = aceEditor.value.getValue();
};
const handleCopy = () => {
const valueRef = aceEditor.value.getValue();
const value = unref(valueRef);
if (!value) {
createMessage.warning('请输入要拷贝的内容!');
return;
}
clipboardRef.value = value;
if (unref(copiedRef)) {
createMessage.success('复制成功!');
}
};
const formRef = ref();
const getFormData = async () => {
const value = await formRef.value.validateFields();
if (props.ifAdd) {
scriptForm.convertJs = aceEditor.value.getValue();
if (scriptForm.convertJs == '') {
createMessage.error('请编写脚本内容');
throw '请编写脚本内容';
}
} else {
scriptForm.script = aceEditor.value.getValue();
if (scriptForm.script == '') {
createMessage.error('请编写脚本内容');
throw '请编写脚本内容';
}
}
if (!value) return;
if (scriptForm.params) {
const trimParams = scriptForm.params.replace(/\s*/g, '');
Reflect.set(value, 'params', trimParams);
}
if (scriptForm.convertJs.length > 1000) {
createMessage.error('脚本内容长度不能大于1000');
throw '脚本内容长度不能大于1000';
}
return {
...value,
...{ convertJs: props.ifAdd ? scriptForm.convertJs : null },
...{ script: !props.ifAdd ? scriptForm.script : null },
...{ saveOriginalData: scriptForm.saveOriginalData === 'false' ? false : true },
};
};
const handleInputChange = (e) => {
const trimParams = e.target.value.replace(/\s*/g, '');
Reflect.set(scriptForm, 'params', trimParams);
};
const setFormData = (v) => {
if (v) {
for (let i in scriptForm) {
Reflect.set(scriptForm, i, v[i]);
}
nextTick(() => {
setTimeout(() => {
scriptForm.saveOriginalData = v.saveOriginalData === false ? 'false' : 'true';
scriptForm.dataType = v.dataType;
}, 10);
});
aceEditor.value.setValue(v.convertJs);
handleFormat();
}
};
const setScriptContentData = (v) => {
aceEditor.value.setValue(v);
handleFormat();
};
const resetFormData = () => {
for (let i in scriptForm) {
Reflect.set(scriptForm, i, '');
}
};
const setScriptOutputData = (v) => {
scriptForm.output = v;
};
const handleFormat = () => beautify(aceEditor.value.session);
defineExpose({
initEditor,
getFormData,
resetFormData,
setFormData,
setScriptContentData,
setScriptOutputData,
setDefaultRadio,
});
</script>
<style lang="less" scoped>
@import url('./ConverScriptModal.less');
</style>