533 lines
20 KiB
Vue
533 lines
20 KiB
Vue
<template>
|
||
<div>
|
||
<page-header-wrapper content="通知配置" @back="() => $router.go(-1)" style="margin: -24px -1px 0">
|
||
<div></div>
|
||
</page-header-wrapper>
|
||
<a-card :body-style="{padding: '24px 32px'}" :bordered="false" :loading="loading">
|
||
<a-form @submit="handleSubmit" :form="form" class="form-row" layout="vertical" style="width: 40%;margin: auto;">
|
||
<a-row class="form-row" :gutter="16">
|
||
<a-col :lg="18" :md="12" :sm="24">
|
||
<a-form-item>
|
||
<a-input
|
||
hidden
|
||
v-decorator="['id']" />
|
||
</a-form-item>
|
||
<a-form-item>
|
||
<span slot="label">通知场景 <a :href="officialWebsite + '/pages/038b42/' +''" target="_blank"> <a-icon type="question-circle-o" /></a></span>
|
||
<a-select
|
||
placeholder="通知场景"
|
||
style="width: 100%;"
|
||
@change="changeNotifyScene"
|
||
v-decorator="[
|
||
'notifyScene',
|
||
{
|
||
initialValue: '1',
|
||
rules: [{ required: true, message: '请选通知场景'}]
|
||
}
|
||
]"
|
||
>
|
||
<a-select-option :value="index" v-for="(item, index) in notifySceneList" :key="index">{{ item.name }}</a-select-option>
|
||
</a-select>
|
||
</a-form-item>
|
||
</a-col>
|
||
<a-col :lg="6" :md="12" :sm="24">
|
||
<a-form-item>
|
||
<a-input
|
||
hidden />
|
||
</a-form-item>
|
||
<a-form-item label="通知阈值">
|
||
<a-input
|
||
v-if="notifyThresholdDisabled.includes(this.notifySceneValue)"
|
||
disabled />
|
||
<a-input-number
|
||
v-else
|
||
id="inputNumber"
|
||
:min="1"
|
||
:max="maxNotifyThreshold"
|
||
style="width: -webkit-fill-available"
|
||
v-decorator="[
|
||
'notifyThreshold',
|
||
{
|
||
initialValue: '16',
|
||
rules: [{ required: !notifyThresholdDisabled.includes(this.notifySceneValue), message: '请输入通知阈值'}]
|
||
}
|
||
]" />
|
||
</a-form-item>
|
||
</a-col>
|
||
</a-row>
|
||
<a-row class="form-row" :gutter="16">
|
||
<a-col :lg="18" :md="12" :sm="24">
|
||
<a-form-item label="组">
|
||
<a-select placeholder="请选择组" v-decorator="['groupName', { rules: [{ required: true, message: '请选择组' }] }]" @change="value => changeGroup(value)">
|
||
<a-select-option v-for="item in groupNameList" :value="item" :key="item">{{ item }}</a-select-option>
|
||
</a-select>
|
||
</a-form-item>
|
||
</a-col>
|
||
<a-col :lg="6" :md="12" :sm="24">
|
||
<a-form-item label="场景">
|
||
<a-select :disabled="sceneNameDisabled.includes(this.notifySceneValue)" placeholder="请选择场景" v-decorator="['sceneName', { rules: [{ required: !sceneNameDisabled.includes(this.notifySceneValue), message: '请选择场景' }] }]" @select="changeSceneName">
|
||
<a-select-option v-for="item in sceneList" :value="item.sceneName" :maxRetryCount="item.maxRetryCount" :key="item.sceneName">{{ item.sceneName }}</a-select-option>
|
||
</a-select>
|
||
</a-form-item>
|
||
</a-col>
|
||
</a-row>
|
||
<a-row class="form-row" :gutter="16">
|
||
<a-col :lg="8" :md="12" :sm="12">
|
||
<a-form-item>
|
||
<span slot="label">通知类型 <a :href="officialWebsite + '/pages/6dbf43/' +''" target="_blank"> <a-icon type="question-circle-o" /></a></span>
|
||
<a-select
|
||
@change="handleChange"
|
||
placeholder="通知类型"
|
||
style="width: 100%;"
|
||
v-decorator="[
|
||
'notifyType',
|
||
{
|
||
initialValue: '1',
|
||
rules: [{ required: true, message: '请选择通知类型'}]
|
||
}
|
||
]"
|
||
>
|
||
<a-select-option :value="index" v-for="(item, index) in notifyTypeList" :key="index">{{ item.name }}</a-select-option>
|
||
</a-select>
|
||
</a-form-item>
|
||
</a-col>
|
||
<a-col :lg="16" :md="12" :sm="12">
|
||
<a-form-item label="配置属性">
|
||
<a-input
|
||
placeholder="请输入配置属性"
|
||
@click="handleBlur"
|
||
v-decorator="[
|
||
'notifyAttribute',
|
||
{rules: [{ required: true, message: '请输入配置属性', whitespace: true}]}
|
||
]" />
|
||
</a-form-item>
|
||
</a-col>
|
||
</a-row>
|
||
<a-row class="form-row" :gutter="16">
|
||
<a-col :lg="8" :md="12" :sm="24">
|
||
<a-form-item label="限流状态">
|
||
<a-select :disabled="rateLimiterStatusDisabled.includes(this.notifySceneValue)" placeholder="请选择限流状态" @change="changeRateLimiterStatus" v-decorator="['rateLimiterStatus',{initialValue: '0', rules: [{ required: true, message: '请选择限流状态'}]}]" >
|
||
<a-select-option :value="index" v-for="(item, index) in rateLimiterStatusList" :key="index">{{ item.name }}</a-select-option>
|
||
</a-select>
|
||
</a-form-item>
|
||
</a-col>
|
||
<a-col :lg="8" :md="12" :sm="24">
|
||
<a-form-item label="每秒限流阈值">
|
||
<a-input-number :disabled="rateLimiterThresholdDisabled.includes(this.rateLimiterStatusValue)" id="inputNumber" :min="1" style="width: -webkit-fill-available" v-decorator="['rateLimiterThreshold',{initialValue: '100',rules: [{ required: !rateLimiterThresholdDisabled.includes(this.rateLimiterStatusValue), message: '请输入通知阈值' }]}]" />
|
||
</a-form-item>
|
||
</a-col>
|
||
<a-col :lg="8" :md="12" :sm="24">
|
||
<a-form-item label="状态">
|
||
<a-select
|
||
placeholder="请选择状态"
|
||
v-decorator="[
|
||
'notifyStatus',
|
||
{
|
||
initialValue: '1',
|
||
rules: [{ required: true, message: '请选择状态'}]
|
||
}
|
||
]" >
|
||
<a-select-option :value="index" v-for="(item, index) in notifyStatusList" :key="index">{{ item.name }}</a-select-option>
|
||
</a-select>
|
||
</a-form-item>
|
||
</a-col>
|
||
</a-row>
|
||
<a-row class="form-row" :gutter="16">
|
||
<a-col :lg="24" :md="24" :sm="24">
|
||
<a-form-item label="描述">
|
||
<a-input
|
||
placeholder="请输入描述"
|
||
type="textarea"
|
||
v-decorator="[
|
||
'description',
|
||
{rules: [{required: false, max: 256, message: '最多支持256个字符!'}]}
|
||
]" />
|
||
</a-form-item>
|
||
</a-col>
|
||
</a-row>
|
||
<a-form-item
|
||
:wrapperCol="{ span: 24 }"
|
||
style="text-align: center"
|
||
>
|
||
<a-button htmlType="submit" type="primary">提交</a-button>
|
||
</a-form-item>
|
||
</a-form>
|
||
</a-card>
|
||
<a-modal :visible="visible" title="添加配置" @ok="handleOk" @cancel="handlerCancel" width="1000px">
|
||
<a-form :form="notifyAttributeForm" @submit="handleSubmit" :body-style="{padding: '0px 0px'}" v-bind="formItemLayout" >
|
||
<a-form-item
|
||
v-if="this.tempNotifyTypeValue === '1'"
|
||
label="钉钉URL">
|
||
<a-input
|
||
placeholder="请输入钉钉URL"
|
||
v-decorator="[
|
||
'webhookUrl',
|
||
{rules: [{ required: true, message: '请输入钉钉URL', whitespace: true}]}
|
||
]" />
|
||
</a-form-item>
|
||
<a-form-item
|
||
v-if="this.tempNotifyTypeValue === '1'">
|
||
<span slot="label">被@人手机号或钉钉号 </span>
|
||
<a-input
|
||
placeholder="请输入被@人手机号或钉钉号"
|
||
type="textarea"
|
||
v-if="this.tempNotifyTypeValue === '1'"
|
||
v-decorator="[
|
||
'ats',
|
||
{rules: [{ required: false, message: '请输入被@人手机号或钉钉号', whitespace: true}]}
|
||
]" />
|
||
</a-form-item>
|
||
<a-form-item
|
||
v-if="this.tempNotifyTypeValue === '3'"
|
||
label="企业微信URL">
|
||
<a-input
|
||
placeholder="请输入企业微信URL"
|
||
v-decorator="[
|
||
'webhookUrl',
|
||
{rules: [{ required: true, message: '请输入企业微信URL', whitespace: true}]}
|
||
]" />
|
||
</a-form-item>
|
||
<a-form-item
|
||
v-if="this.tempNotifyTypeValue === '3'">
|
||
<span slot="label">被@人企业微信用户id </span>
|
||
<a-input
|
||
placeholder="请输入被@人企业微信用户id"
|
||
type="textarea"
|
||
v-if="this.tempNotifyTypeValue === '3'"
|
||
v-decorator="[
|
||
'ats',
|
||
{rules: [{ required: false, message: '请输入被@人企业微信用户id', whitespace: true}]}
|
||
]" />
|
||
</a-form-item>
|
||
<a-form-item
|
||
v-if="this.tempNotifyTypeValue === '4'"
|
||
label="飞书URL">
|
||
<a-input
|
||
placeholder="请输入飞书URL"
|
||
v-decorator="[
|
||
'webhookUrl',
|
||
{rules: [{ required: true, message: '请输入飞书URL', whitespace: true}]}
|
||
]" />
|
||
</a-form-item>
|
||
<a-form-item
|
||
v-if="this.tempNotifyTypeValue === '4'">
|
||
<span slot="label">被@人用户id </span>
|
||
<a-input
|
||
placeholder="请输入被@人open_id"
|
||
type="textarea"
|
||
v-if="this.tempNotifyTypeValue === '4'"
|
||
v-decorator="[
|
||
'ats',
|
||
{rules: [{ required: false, message: '请输入被@人open_id', whitespace: true}]}
|
||
]" />
|
||
</a-form-item>
|
||
<a-form-item
|
||
v-if="this.tempNotifyTypeValue === '2'"
|
||
label="用户名">
|
||
<a-input
|
||
placeholder="请输入用户名"
|
||
v-if="this.tempNotifyTypeValue === '2'"
|
||
v-decorator="[
|
||
'user',
|
||
{rules: [{ required: true, message: '请输入用户名', whitespace: true}]}
|
||
]" />
|
||
</a-form-item>
|
||
<a-form-item
|
||
v-if="this.tempNotifyTypeValue === '2'"
|
||
label="密码">
|
||
<a-input
|
||
placeholder="请输入密码"
|
||
type="password"
|
||
v-if="this.tempNotifyTypeValue === '2'"
|
||
v-decorator="[
|
||
'pass',
|
||
{rules: [{ required: true, message: '请输入密码', whitespace: true}]}
|
||
]"/>
|
||
</a-form-item>
|
||
<a-form-item
|
||
v-if="this.tempNotifyTypeValue === '2'"
|
||
label="SMTP地址">
|
||
<a-input
|
||
placeholder="请输入邮件服务器的SMTP地址"
|
||
v-if="this.tempNotifyTypeValue === '2'"
|
||
v-decorator="[
|
||
'host',
|
||
{rules: [{ required: true, message: '请输入邮件服务器的SMTP地址', whitespace: true}]}
|
||
]"/>
|
||
</a-form-item>
|
||
<a-form-item
|
||
v-if="this.tempNotifyTypeValue === '2'"
|
||
label="SMTP端口">
|
||
<a-input
|
||
v-if="this.tempNotifyTypeValue === '2'"
|
||
placeholder="请输入邮件服务器的SMTP端口"
|
||
v-decorator="[
|
||
'port',
|
||
{rules: [{ required: true, message: '请输入邮件服务器的SMTP端口', whitespace: true}]}
|
||
]"/>
|
||
</a-form-item>
|
||
<a-form-item
|
||
v-if="this.tempNotifyTypeValue === '2'"
|
||
label="发件人">
|
||
<a-input
|
||
v-if="this.tempNotifyTypeValue === '2'"
|
||
placeholder="请输入发件人"
|
||
v-decorator="[
|
||
'from',
|
||
{rules: [{ required: true, message: '请输入发件人', whitespace: true}]}
|
||
]"/>
|
||
</a-form-item>
|
||
<a-form-item
|
||
v-if="this.tempNotifyTypeValue === '2'"
|
||
label="收件人">
|
||
<a-input
|
||
v-if="this.tempNotifyTypeValue === '2'"
|
||
placeholder="请输入收件人"
|
||
v-decorator="[
|
||
'tos',
|
||
{rules: [{ required: true, message: '请输入收件人', whitespace: true}]}
|
||
]"/>
|
||
</a-form-item>
|
||
<a-form-item
|
||
:wrapper-col="{
|
||
xs: { span: 24, offset: 0 },
|
||
sm: { span: 16, offset: 8 },
|
||
lg: { span: 7 }
|
||
}">
|
||
</a-form-item>
|
||
</a-form>
|
||
</a-modal>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import { getAllGroupNameList, getSceneList } from '@/api/manage'
|
||
import { getNotifyConfigDetail, saveNotify, updateNotify } from '@/api/retryApi'
|
||
import pick from 'lodash.pick'
|
||
import CronModal from '@/views/job/form/CronModal'
|
||
import { officialWebsite } from '@/utils/util'
|
||
const enums = require('@/utils/retryEnum')
|
||
export default {
|
||
name: 'NotifyFrom',
|
||
props: {},
|
||
comments: {
|
||
CronModal
|
||
},
|
||
data () {
|
||
return {
|
||
form: this.$form.createForm(this),
|
||
formItemLayout: {
|
||
labelCol: { lg: { span: 7 }, sm: { span: 7 } },
|
||
wrapperCol: { lg: { span: 10 }, sm: { span: 17 } }
|
||
},
|
||
officialWebsite: officialWebsite(),
|
||
formItemLayoutWithOutLabel: {
|
||
wrapperCol: {
|
||
xs: { span: 24, offset: 0 },
|
||
sm: { span: 20, offset: 4 }
|
||
}
|
||
},
|
||
formType: 'create',
|
||
groupNameList: [],
|
||
sceneList: [],
|
||
notifySceneList: enums.notifyScene,
|
||
notifyTypeList: enums.notifyType,
|
||
notifyStatusList: enums.notifyStatus,
|
||
rateLimiterStatusList: enums.rateLimiterStatus,
|
||
loading: false,
|
||
visible: false,
|
||
count: 0,
|
||
notifyTypeValue: '1',
|
||
tempNotifyTypeValue: '1',
|
||
notifyAttribute: '',
|
||
notifyThresholdDisabled: ['3', '4', '6'],
|
||
sceneNameDisabled: ['3', '4'],
|
||
rateLimiterStatusDisabled: ['1', '2', '3', '4'],
|
||
rateLimiterThresholdDisabled: ['0'],
|
||
notifySceneValue: '1',
|
||
rateLimiterStatusValue: '0',
|
||
defaultRateLimiterStatusValue: '0',
|
||
defaultRateLimiterThreshold: '100',
|
||
maxNotifyThreshold: 999
|
||
}
|
||
},
|
||
beforeCreate () {
|
||
this.notifyAttributeForm = this.$form.createForm(this, { name: 'notify_attribute_form_item' })
|
||
},
|
||
mounted () {
|
||
getAllGroupNameList().then((res) => {
|
||
this.groupNameList = res.data
|
||
})
|
||
|
||
this.$nextTick(() => {
|
||
const id = this.$route.query.id
|
||
console.log(id)
|
||
if (id) {
|
||
this.loading = true
|
||
getNotifyConfigDetail(id).then(res => {
|
||
this.loadEditInfo(res.data)
|
||
this.loading = false
|
||
})
|
||
}
|
||
})
|
||
},
|
||
methods: {
|
||
resetFiled () {
|
||
this.form.resetFields()
|
||
},
|
||
buildNotifyAttribute (formData) {
|
||
if (formData.ats) {
|
||
formData.ats = formData.ats && formData.ats.replace(/\s+/g, '').split(',')
|
||
}
|
||
return JSON.stringify(formData)
|
||
},
|
||
handleChange (notifyType) {
|
||
this.tempNotifyTypeValue = notifyType
|
||
this.form.setFieldsValue({
|
||
notifyAttribute: ''
|
||
})
|
||
},
|
||
changeGroup (value) {
|
||
getSceneList({ groupName: value }).then((res) => {
|
||
this.sceneList = res.data
|
||
})
|
||
},
|
||
changeSceneName (value, option) {
|
||
this.maxNotifyThreshold = option.data.attrs.maxRetryCount
|
||
},
|
||
changeRateLimiterStatus (rateLimiterStatus) {
|
||
this.rateLimiterStatusValue = rateLimiterStatus
|
||
},
|
||
changeNotifyScene (notifyScene) {
|
||
this.notifySceneValue = notifyScene
|
||
const { form } = this
|
||
if (this.sceneNameDisabled.includes(notifyScene)) {
|
||
form.setFieldsValue({
|
||
sceneName: ''
|
||
})
|
||
}
|
||
if (this.rateLimiterStatusDisabled.includes(notifyScene)) {
|
||
form.setFieldsValue({
|
||
rateLimiterStatus: this.defaultRateLimiterStatusValue,
|
||
rateLimiterThreshold: this.defaultRateLimiterThreshold
|
||
})
|
||
this.changeRateLimiterStatus(this.defaultRateLimiterStatusValue)
|
||
}
|
||
},
|
||
handleBlur () {
|
||
new Promise((resolve) => {
|
||
setTimeout(resolve, 100)
|
||
}).then(() => {
|
||
if (this.formType === 'edit' && this.tempNotifyTypeValue === this.notifyTypeValue) {
|
||
const formData = pick(JSON.parse(this.notifyAttribute), ['webhookUrl', 'ats', 'user', 'pass', 'host', 'port', 'from', 'tos'])
|
||
this.notifyAttributeForm.getFieldDecorator(`webhookUrl`, { initialValue: formData.webhookUrl, preserve: true })
|
||
if (formData.ats) {
|
||
this.notifyAttributeForm.getFieldDecorator(`ats`, { initialValue: formData.ats.join(','), preserve: true })
|
||
}
|
||
this.notifyAttributeForm.getFieldDecorator(`user`, { initialValue: formData.user, preserve: true })
|
||
this.notifyAttributeForm.getFieldDecorator(`pass`, { initialValue: formData.pass, preserve: true })
|
||
this.notifyAttributeForm.getFieldDecorator(`host`, { initialValue: formData.host, preserve: true })
|
||
this.notifyAttributeForm.getFieldDecorator(`port`, { initialValue: formData.port, preserve: true })
|
||
this.notifyAttributeForm.getFieldDecorator(`from`, { initialValue: formData.from, preserve: true })
|
||
this.notifyAttributeForm.getFieldDecorator(`tos`, { initialValue: formData.tos, preserve: true })
|
||
}
|
||
this.visible = !this.visible
|
||
})
|
||
},
|
||
handlerCancel () {
|
||
this.visible = false
|
||
},
|
||
handleOk () {
|
||
this.notifyAttributeForm.validateFields((err, values) => {
|
||
if (!err) {
|
||
const { form } = this
|
||
const formData = pick(values, ['webhookUrl', 'ats', 'user', 'pass', 'host', 'port', 'from', 'tos'])
|
||
this.notifyAttribute = this.buildNotifyAttribute(formData)
|
||
form.setFieldsValue({
|
||
notifyAttribute: this.parseJson(formData)
|
||
})
|
||
this.notifyTypeValue = this.tempNotifyTypeValue
|
||
this.visible = false
|
||
}
|
||
})
|
||
},
|
||
handleSubmit (e) {
|
||
e.preventDefault()
|
||
this.form.validateFields((err, values) => {
|
||
if (!err) {
|
||
values['notifyAttribute'] = this.notifyAttribute
|
||
if (this.formType === 'create') {
|
||
saveNotify(values).then(res => {
|
||
this.$message.success('任务新增完成')
|
||
this.form.resetFields()
|
||
this.$router.go(-1)
|
||
})
|
||
} else {
|
||
updateNotify(values).then(res => {
|
||
this.$message.success('任务更新完成')
|
||
this.form.resetFields()
|
||
this.$router.go(-1)
|
||
})
|
||
}
|
||
}
|
||
})
|
||
},
|
||
loadEditInfo (data) {
|
||
this.formType = 'edit'
|
||
const { form } = this
|
||
// ajax
|
||
new Promise((resolve) => {
|
||
setTimeout(async () => {
|
||
await this.changeGroup(data.groupName)
|
||
resolve()
|
||
}, 100)
|
||
}).then(() => {
|
||
const formData = pick(data, [
|
||
'id', 'notifyAttribute', 'groupName', 'sceneName', 'notifyStatus', 'notifyScene', 'notifyThreshold', 'notifyType', 'description', 'rateLimiterStatus', 'rateLimiterThreshold'])
|
||
formData.notifyStatus = formData.notifyStatus.toString()
|
||
formData.notifyScene = formData.notifyScene.toString()
|
||
formData.notifyType = formData.notifyType.toString()
|
||
formData.notifyThreshold = formData.notifyThreshold.toString()
|
||
formData.rateLimiterStatus = formData.rateLimiterStatus.toString()
|
||
formData.rateLimiterThreshold = formData.rateLimiterThreshold.toString()
|
||
this.notifyTypeValue = formData.notifyType
|
||
this.tempNotifyTypeValue = formData.notifyType
|
||
this.notifyAttribute = formData.notifyAttribute
|
||
this.notifySceneValue = formData.notifyScene
|
||
this.rateLimiterStatusValue = formData.rateLimiterStatus
|
||
formData.notifyAttribute = this.parseJson(JSON.parse(formData.notifyAttribute))
|
||
form.setFieldsValue(formData)
|
||
})
|
||
},
|
||
parseJson (json) {
|
||
if (!json) {
|
||
return null
|
||
}
|
||
|
||
let s =
|
||
'用户名:' + json['user'] + ';' +
|
||
'密码:' + json['pass'] + ';' +
|
||
'SMTP地址:' + json['host'] + ';' +
|
||
'SMTP端口:' + json['port'] + ';' +
|
||
'发件人:' + json['from'] + ';' +
|
||
'收件人:' + json['tos'] + ';'
|
||
|
||
if (this.notifyTypeValue === '1') {
|
||
s =
|
||
'钉钉Url:' + json['webhookUrl'] + ';' +
|
||
'被@人手机号或钉钉号:' + json['ats'] + ';'
|
||
} else if (this.notifyTypeValue === '3') {
|
||
s =
|
||
'企业微信Url:' + json['webhookUrl'] + ';' +
|
||
'被@人企业微信用户id:' + json['ats'] + ';'
|
||
} else if (this.notifyTypeValue === '4') {
|
||
s =
|
||
'飞书Url:' + json['webhookUrl'] + ';' +
|
||
'被@人openid:' + json['ats'] + ';'
|
||
}
|
||
return s
|
||
}
|
||
}
|
||
}
|
||
</script>
|