| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773 |
- <template>
- <el-container class="data-source-container">
- <el-aside width="300px" class="data-source-aside">
- <el-container>
- <el-header height="42px">
- <el-button link type="primary" size="default" @click="handleAdd">
- <i class="fm-iconfont icon-plus" style="font-size: 12px; margin: 5px;"></i>
- {{$t('fm.datasource.config.add')}}
- </el-button>
- </el-header>
- <el-main>
- <el-scrollbar>
- <el-menu class="data-source-aside-menu" :default-active="selectKey" >
- <el-menu-item
- :class="{
- 'is-disabled': isFormChange || !saved,
- 'is-active2': selectKey == item.key
- }"
- :index="item.key" v-for="(item, index) in list" :key="item.key" @click="handleSelect(item.key)">
- <template #title>
- <div>
- <el-badge is-dot style="position: absolute; top: 2px; left: 2px;" v-if="(isFormChange || !saved) && selectKey == item.key"></el-badge>
- <span class="data-source-menu-i" :class="item.method">{{item.method}}</span>
- <div class="data-source-menu-label">{{item.name}}</div>
- <div class="data-source-menu-action">
- <i class="fm-iconfont icon-icon_clone" @click.stop="handleClone(index)" :title="$t('fm.tooltip.clone')"></i>
- <i class="fm-iconfont icon-trash" @click.stop="handleRemove(index)" :title="$t('fm.tooltip.trash')"></i>
- </div>
- </div>
- </template>
- </el-menu-item>
- </el-menu>
- </el-scrollbar>
- </el-main>
- </el-container>
- </el-aside>
- <el-main class="data-source-main">
- <el-container v-if="selectIndex >= 0">
- <el-header height="42px">
- <div class="data-source-action">
- <el-button type="primary" size="default" @click="handleSave">{{$t('fm.datasource.config.save')}}</el-button>
- <el-button size="default" @click="handleTest">{{$t('fm.datasource.config.test')}}</el-button>
- <el-button size="default" @click="handleCancal">{{$t('fm.datasource.config.cancel')}}</el-button>
- </div>
- </el-header>
- <el-main>
- <el-form ref="dataForm" :model="formData" :rules="formRules" :label-width="$i18n.locale == 'zh-cn' ? '80px' : '119px'" size="default" label-position="right" :key="selectKey" @submit.prevent>
- <el-form-item :label="$t('fm.datasource.edit.name')" prop="name">
- <el-input v-model="formData.name"></el-input>
- </el-form-item>
- <el-form-item :label="$t('fm.datasource.edit.url')" prop="url">
- <el-input type="textarea" :rows="1" v-model="formData.url" autosize></el-input>
- </el-form-item>
- <el-form-item :label="$t('fm.datasource.edit.method')" prop="method">
- <el-radio-group v-model="formData.method">
- <el-radio-button label="GET" value="GET" ></el-radio-button>
- <el-radio-button label="POST" value="POST"></el-radio-button>
- <el-radio-button label="PUT" value="PUT"></el-radio-button>
- <el-radio-button label="DELETE" value="DELETE"></el-radio-button>
- </el-radio-group>
- </el-form-item>
- <el-form-item :label="$t('fm.datasource.edit.headers')">
- <array-dynamic v-model="formData.headers" :show-arguments="false" is-args></array-dynamic>
- </el-form-item>
- <el-form-item :label="$t('fm.datasource.edit.params')">
- <array-dynamic v-model="formData.params" :show-arguments="false" is-args></array-dynamic>
- </el-form-item>
- <el-form-item :label="$t('fm.datasource.edit.auto')" :label-width="$i18n.locale == 'zh-cn' ? '175px' : '340px'">
- <el-switch
- v-model="formData.auto">
- </el-switch>
- </el-form-item>
- <el-form-item :label="$t('fm.datasource.edit.response')">
- <el-collapse :modelValue="collapseAppend">
- <el-collapse-item name="1" :title="$t('fm.datasource.edit.willRequest')">
- <div class="code-desc" v-if="$i18n.locale == 'zh-cn'">// config: 发出请求的可用配置选项;</div>
- <div class="code-desc" v-if="$i18n.locale == 'zh-cn'">// 通过 config.url 可以更改请求地址,通过 config.headers 可以更改请求头部</div>
- <div class="code-desc" v-if="$i18n.locale == 'zh-cn'">// 通过 config.data 可以更改发送的数据,(GET 请求不适用,需要更改 config.params)</div>
- <div class="code-line">(config, args) => {</div>
- <code-editor v-model="formData.requestFunc" mode="javascript" height="150px"></code-editor>
- <div class="code-line">}</div>
- </el-collapse-item>
- <el-collapse-item :title="$t('fm.datasource.edit.responseSuccess')" name="2">
- <div class="code-desc" v-if="$i18n.locale == 'zh-cn'">// {{$t('fm.datasource.edit.annotation')}}</div>
- <div class="code-line">(res, args) => {</div>
-
- <code-editor v-model="formData.responseFunc" mode="javascript" height="150px"></code-editor>
- <div class="code-line">}</div>
- </el-collapse-item>
- <el-collapse-item :title="$t('fm.datasource.edit.requestError')" name="3">
- <div class="code-line">(error) => {</div>
-
- <code-editor v-model="formData.errorFunc" mode="javascript" height="150px"></code-editor>
- <div class="code-line">}</div>
- </el-collapse-item>
- </el-collapse>
- </el-form-item>
- </el-form>
- </el-main>
- </el-container>
- </el-main>
- </el-container>
- </template>
- <script>
- import ArrayDynamic from './arrayDynamic.vue'
- import CodeEditor from '../CodeEditor/index.vue'
- import axios from 'axios'
- import { ElMessage } from '../../util/message'
- import { h } from 'vue'
- import { isExpression, extractExpression, executeExpression } from '../../util/expression'
- import _ from 'lodash'
- export default {
- components: {
- ArrayDynamic,
- CodeEditor
- },
- props: {
- modelValue: {
- type: Array,
- default: () => []
- }
- },
- emits: ['update:modelValue'],
- data () {
- return {
- formData: {
- key: '',
- name: '',
- url: '',
- method: 'GET',
- auto: true,
- params: [],
- headers: [],
- responseFunc: `return res;`,
- requestFunc: `return config;`,
- errorFunc: ``
- },
- formRules: {
- name: [
- {required: true, message: ' '},
- { validator: (rule, value, callback) => {
- let currentItem = this.historyList.find(item => item.name ==value)
- if (currentItem && currentItem.key != this.selectKey) {
- callback(new Error(this.$t('fm.datasource.message.repeat')))
- } else {
- callback()
- }
- }}
- ],
- url: [
- {required: true, message: ' '}
- ]
- },
- list: [...this.modelValue],
- selectIndex: -1,
- selectKey: '',
- historyList: [...this.modelValue],
- saved: true,
- requestError: false,
- collapseAppend: [],
- tempFormData: {
- key: '',
- name: '',
- url: '',
- method: 'GET',
- auto: true,
- params: [],
- headers: [],
- responseFunc: `return res;`,
- requestFunc: `return config;`,
- errorFunc: ``
- }
- }
- },
- computed: {
- isFormChange () {
- return !_.isEqual(this.formData, this.tempFormData)
- }
- },
- methods: {
- _getAttributeFunction (funcStrs) {
- let matchReg1 = new RegExp("(?<=args.)\\w*(?=[\\s|,|;]|$)", "g") // 匹配 args.a 形式的参数
- let matchReg2 = new RegExp("(?<=args\\[\\s*['|\"])\\w*(?=['|\"]\\s*\\])", "g") // 匹配 args[] 形式的参数
- let matchReg3 = new RegExp("(?<=\{)[\\s+\\w*\\s+,{0|1}]+(?=\}\\s+=\\s+args)", "g") // 匹配 {} = args 形式的参数
- let args = new Set()
- funcStrs.forEach(funcStr => {
- funcStr?.match(matchReg1)?.forEach(item => item && args.add(item.trim()))
- funcStr?.match(matchReg2)?.forEach(item => item && args.add(item.trim()))
- funcStr?.match(matchReg3)?.forEach(item => item && item.split(',').forEach(sitem => sitem && args.add(sitem.trim())))
- })
- return args
- },
- _getArgsObject (argSet) {
- const args = {}
- for (let arg of argSet) {
- args[arg] = ''
- }
- return args
- },
- handleTest () {
- this.$refs.dataForm.validate((valid) => {
- if (valid) {
- const argSet = this._getAttributeFunction([this.formData.requestFunc, this.formData.responseFunc,
- ...this.formData.params.filter(item => item.fx).map(item => item.value),
- ...this.formData.headers.filter(item => item.fx).map(item => item.value)
- ])
- if (argSet.size > 0) {
- let argsModel = this._getArgsObject(argSet)
- this.$msgbox({
- title: 'Data source arguments',
- customStyle: 'z-index: 3000',
- customClass: 'fm-messagebox',
- class: 'aaa',
- draggable: true,
- key: new Date().getTime(),
- message: h ('div', null, [
- h(
- CodeEditor,{
- modelValue: argsModel,
- mode: (typeof data == 'object' ? 'javascript' : 'xml'),
- height: '200px',
- key: new Date().getTime(),
- 'onUpdate:modelValue' : (value) => {
- argsModel = value
- }
- }
- )
- ]
- ),
- callback: (action) => {
- if (action == 'confirm') {
- let args = {}
- if (typeof argsModel == 'string') {
- args = Function('"use strict";return (' + argsModel + ')')()
- } else {
- args = argsModel
- }
- this.requestTest(args)
- }
- }
- })
- } else {
- this.requestTest()
- }
-
- } else {
- ElMessage({
- message: this.$t('fm.datasource.message.settingError'),
- type: 'warning'
- }, this)
- }
- })
- },
- requestTest (args = {}) {
- let options = {
- method: this.formData.method,
- url: this.formData.url,
- headers: (() => {
- let headObj = {}
- this.formData.headers.forEach(item => {
- if (item.key) {
- headObj[item.key] = item.fx ? executeExpression(item.value, args) : item.value
- }
- })
- return headObj
- })()
- }
- if (this.formData.method === 'POST' || this.formData.method === 'PUT') {
- options.data = (() => {
- let paramsObj = {}
- this.formData.params.forEach(item => {
- if (item.key) {
- paramsObj[item.key] = item.fx ? executeExpression(item.value, args) : item.value
- }
- })
- return paramsObj
- })()
- } else {
- options.params = (() => {
- let paramsObj = {}
- this.formData.params.forEach(item => {
- if (item.key) {
- paramsObj[item.key] = item.fx ? executeExpression(item.value, args) : item.value
- }
- })
- return paramsObj
- })()
- }
- this.requestError = false
- if (this.formData.requestFunc) {
- const requestDynamicFunc = new Function('config', 'args', this.formData.requestFunc)
- try {
- options = requestDynamicFunc(options, args)
- } catch(error) {
- this.requestError = true
- }
- }
- axios(options).then(res => {
- try {
- let data = new Function('res', 'args', this.formData.responseFunc)(res.data, args)
- this.$msgbox({
- title: 'Response',
- customStyle: 'z-index: 3000',
- customClass: 'fm-messagebox',
- class: 'aaa',
- draggable: true,
- key: new Date().getTime(),
- message: h ('div', null, [
- h('div', {style: this.requestError ? 'margin: 10px 0; ' : 'display: none;'}, [
- 'The request test does not support ',
- h('b', {style: 'color: red;'}, 'this'),
- ', has been ignored.'
- ]),
- h(
- CodeEditor,{
- modelValue: data,
- mode: (typeof data == 'object' ? 'javascript' : 'xml'),
- height: '300px',
- key: new Date().getTime()
- }
- )
- ]
- ),
- })
- } catch (error) {
- this.$msgbox({
- title: 'Response',
- customStyle: 'z-index: 3000',
- customClass: 'fm-messagebox',
- class: 'aaa',
- draggable: true,
- key: new Date().getTime(),
- message: h ('div', null, [
- h('div', {style: this.requestError ? 'margin: 10px 0; ' : 'display: none;'}, [
- 'The request test does not support ',
- h('b', {style: 'color: red;'}, 'this'),
- ', has been ignored.'
- ]),
- h(
- CodeEditor,{
- modelValue: res.data,
- mode: (typeof res.data == 'object' ? 'javascript' : 'xml'),
- height: '300px',
- key: new Date().getTime()
- }
- )
- ]
- ),
- })
- }
- }).catch(err => {
- this.$msgbox.alert(err.message)
- })
- },
- handleSave () {
- return new Promise((resolve, reject) => {
- this.$refs.dataForm.validate((valid) => {
- if (valid) {
- const argSet = this._getAttributeFunction([this.formData.requestFunc, this.formData.responseFunc,
- ...this.formData.params.filter(item => item.fx).map(item => item.value),
- ...this.formData.headers.filter(item => item.fx).map(item => item.value)
- ])
- let options = {
- ...this.formData,
- params: (() => {
- let paramsObj = {}
- this.formData.params.forEach(item => {
- if (item.key) {
- paramsObj[item.key] = item.fx ? `{{${item.value}}}` : item.value
- }
- })
- return paramsObj
- })(),
- headers: (() => {
- let headersObj = {}
- this.formData.headers.forEach(item => {
- if (item.key) {
- headersObj[item.key] = item.fx ? `{{${item.value}}}` : item.value
- }
- })
- return headersObj
- })(),
- args: [...argSet]
- }
- this.list[this.list.findIndex(item => item.key === this.selectKey)] = options
- this.historyList = [...this.list]
- this.saved = true
- this.$emit('update:modelValue', this.historyList)
- ElMessage({
- message: this.$t('fm.datasource.message.saveSuccess'),
- type: 'success'
- }, this)
- this.tempFormData = _.cloneDeep(this.formData)
- setTimeout(() => {
- resolve()
- }, 300)
- } else {
- ElMessage({
- message: this.$t('fm.datasource.message.settingError'),
- type: 'warning'
- }, this)
- reject()
- }
- })
- })
- },
- handleAdd () {
- if (!this.saved || this.isFormChange) {
- ElMessage({
- message: this.$t('fm.datasource.message.saveError'),
- type: 'warning'
- }, this)
- return;
- }
- let key = Math.random().toString(36).slice(-8)
- this.list.push({
- key: key,
- name: 'DataSource_'+key,
- url: '',
- method: 'GET',
- auto: false,
- params: {},
- headers: {},
- responseFunc: 'return res;',
- requestFunc: `return config;`,
- errorFunc: ``
- })
- this.selectKey = key
- this.saved = false
- },
- loadForm () {
- let currentData = this.list[this.selectIndex]
- this.formData = {
- ...currentData,
- params: currentData.params && Object.keys(currentData.params).map(item => ({
- key: item,
- fx: isExpression(currentData.params[item]),
- value: isExpression(currentData.params[item]) ? extractExpression(currentData.params[item]) : currentData.params[item]
- })) || [],
- headers: currentData.headers && Object.keys(currentData.headers).map(item => ({
- key: item,
- fx: isExpression(currentData.headers[item]),
- value: isExpression(currentData.headers[item]) ? extractExpression(currentData.headers[item]) : currentData.headers[item]
- })) || [],
- requestFunc: currentData.requestFunc || `return config;`
- }
- this.tempFormData = _.cloneDeep(this.formData)
- let append = []
- this.formData.requestFunc != 'return config;' && append.push('1')
- this.formData.responseFunc != 'return res;' && append.push('2')
- this.formData.errorFunc && append.push('3')
- this.collapseAppend = append
- },
- handleSelect (key) {
- if (key === this.selectKey) {
- return
- }
- if (this.selectKey && (!this.saved || this.isFormChange)) {
- ElMessage({
- message: this.$t('fm.datasource.message.saveError'),
- type: 'warning'
- }, this)
- return;
- }
- this.selectKey = key
- },
- handleCancal () {
- this.beforeClose(() => {
- this.selectKey = ''
- this.list = [...this.historyList]
- this.saved = true
- })
- },
- handleClone (index) {
- if (!this.saved) {
- ElMessage({
- message: this.$t('fm.datasource.message.saveError'),
- type: 'warning'
- }, this)
- return;
- }
- let currentData = this.list[index]
- let key = Math.random().toString(36).slice(-8)
- let cloneData = {
- ...currentData,
- key,
- name: currentData.name + '_copy'
- }
- this.list.push(cloneData)
- this.selectKey = key
- this.saved = false
- },
- handleRemove (index) {
- let currentData = this.list[index]
- this.$msgbox.confirm(`${this.$t('fm.datasource.message.confirmRemove')} [${currentData.name}] ?`, '', {
- type: 'warning'
- }).then(() => {
- if (currentData.key === this.selectKey) {
- this.selectKey = ''
- this.saved = true
- }
- this.list.splice(index, 1)
- if (index < this.historyList.length) {
- this.historyList.splice(index, 1)
- }
- this.$emit('update:modelValue', this.historyList)
- }).catch(() => {})
- },
- beforeClose (done) {
- if (!_.isEqual(this.formData, this.tempFormData) || !this.saved) {
- this.$msgbox.confirm(
- this.$t('fm.eventscript.message.saveConfirm'),
- 'Confirm',
- {
- distinguishCancelAndClose: true,
- confirmButtonText: this.$t('fm.eventscript.config.save'),
- cancelButtonText: this.$t('fm.eventscript.config.notSave'),
- type: 'warning'
- }
- )
- .then(() => {
- this.handleSave().then(() => {
- done()
- })
-
- })
- .catch((action) => {
- if (action === 'cancel') {
- done()
- }
- })
- } else {
- done()
- }
- }
- },
- watch: {
- selectKey (val) {
- if (val) {
- this.selectIndex = this.list.findIndex(item => item.key === val)
- this.loadForm()
- } else {
- this.selectIndex = -1
- }
- }
- }
- }
- </script>
- <style lang="scss">
- .data-source-container{
- .data-source-main{
- padding: 0;
- .el-form-item .el-form-item__content{
- display: block;
- }
- >.el-container{
- display: flex;
- height: 100%;
- >.el-header{
- padding: 5px;
- border-bottom: 1px solid var(--el-border-color-lighter);
- background: var(--el-border-color-extra-light);
- }
- }
-
- .data-source-action{
- text-align: right;
- }
- .code-line{
- font-size: 14px;
- color: var(--el-color-primary);
- font-weight: 500;
- }
- .code-desc{
- margin-left: 2px;
- font-size: 12px;
- color: var(--el-text-color-secondary);
- }
- .el-collapse{
- width: 100%;
- }
- .el-collapse-item{
- border: 1px solid var(--el-border-color-lighter);
- &+.el-collapse-item{
- margin-top: 5px;
- }
- }
- .el-collapse-item__header{
- background: var(--el-border-color-lighter);
- // border: 0;
- height: 36px;
- line-height: 36px;
- padding: 5px;
- }
- .el-collapse-item__wrap{
- border: 0;
- .el-collapse-item__content{
- padding: 5px;
- }
- }
- }
- .data-source-aside{
- border-right: 1px solid var(--el-border-color-lighter);
- >.el-container{
- display: flex;
- height: 100%;
- >.el-main{
- margin: 0;
- padding: 0;
- }
- >.el-header{
- padding: 5px;
- border-bottom: 1px solid var(--el-border-color-lighter);
- background: var(--el-border-color-extra-light);
- }
- }
- .data-source-aside-menu{
- margin: 10px;
- border-right: 0;
- .el-menu-item{
- border: 1px solid var(--el-border-color);
- background: var(--el-bg-color);
- border-radius: 3px;
- padding: 10px !important;
- height: auto;
- line-height: 1;
- cursor: default;
- position: relative;
- &.is-disabled{
- opacity: 1;
- cursor: default;
- background: var(--el-bg-color);
- }
- &.is-active2{
- background: var(--el-border-color-light) !important;
- color: var(--el-text-color-primary);
- }
- &.is-active.is-disabled{
- color: var(--el-menu-text-color);
- }
- +.el-menu-item{
- margin-top: 6px;
- }
- }
- .data-source-menu-label{
- overflow:hidden;
- text-overflow:ellipsis;
- white-space:nowrap;
- display: inline-block;
- width: 180px;
- margin-left: 40px;
- }
- .data-source-menu-i{
- position: absolute;
- font-size: 12px;
- left: 2px;
- top: 13px;
- width: 45px;
- text-align: center;
- &.GET{
- color: #67C23A;
- }
- &.POST{
- color: #E6A23C;
- }
- &.PUT{
- color: #409EFF;
- }
- &.DELETE{
- color: #F56C6C;
- }
- }
- .data-source-menu-action{
- display: inline-block;
- padding-right: 10px;
- color: var(--el-text-color-regular);
- font-weight: 600;
- >i{
- cursor: pointer;
- margin-left: 5px;
- }
- }
- }
- }
- }
- </style>
|