| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- <template>
- <base-dialog @cancel="cancelDialog">
- <div slot="header">{{params.title}}</div>
- <div slot="body">
- <a-form
- :form="form.fc">
- <a-form-item :label="$t('network.text_291')" v-bind="formItemLayout" v-if="params.type === 'create'">
- <a-input v-decorator="decorators.name" :placeholder="$t('network.text_44')" />
- </a-form-item>
- <a-form-item v-bind="formItemLayout">
- <span slot="label">{{$t('network.text_292')}}<a-tooltip>
- <div slot="title">{{$t('network.text_293')}}<br />{{$t('network.text_294')}}<br />{{$t('network.text_295')}}<br />{{$t('network.text_296')}}<br />{{$t('network.text_297')}}</div>
- <a-icon type="info-circle" />
- </a-tooltip>
- </span>
- <a-textarea v-decorator="decorators.acl_entries"
- :placeholder="$t('network.text_298')"
- rows="8" />
- </a-form-item>
- </a-form>
- </div>
- <div slot="footer">
- <a-button type="primary" @click="handleConfirm" :loading="loading">{{ $t('dialog.ok') }}</a-button>
- <a-button @click="cancelDialog">{{ $t('dialog.cancel') }}</a-button>
- </div>
- </base-dialog>
- </template>
- <script>
- import { REGEXP } from '@/utils/validate'
- import DialogMixin from '@/mixins/dialog'
- import WindowsMixin from '@/mixins/windows'
- const ipsValidate = (rule, value, cb) => {
- const pureIps = value.split(/[\s\n]/).filter(v => !!v).map(str => str.trim())
- const noRepeatIps = Array.from(new Set(pureIps))
- const isRepeat = noRepeatIps.length !== pureIps.length
- let descValid = true
- const valid = pureIps.every(ipComment => {
- const [ip, comment = ''] = ipComment.split('|').filter(v => !!v && v !== '|')
- if (comment.length > 16) descValid = false
- if (ip.includes('/')) {
- let [ipStr, max] = ip.split('/')
- max = Number(max)
- if (REGEXP.IPv4.regexp.test(ipStr) && max < 256) {
- const ipStrArr = ipStr.split('.')
- const ipStrLast = ipStrArr[ipStrArr.length - 1]
- if (+ipStrLast >= 0 && +ipStrLast < max) {
- return true
- }
- return false
- }
- } else {
- if (REGEXP.IPv4.regexp.test(ip)) {
- return true
- }
- return false
- }
- })
- if (valid) {
- if (isRepeat) {
- cb(new Error(this.$t('network.text_299')))
- } else {
- if (!descValid) cb(new Error(this.$t('network.text_300')))
- cb()
- }
- } else {
- cb(new Error(this.$t('network.text_301')))
- }
- }
- export default {
- name: 'LbaclsCreateDialog',
- mixins: [DialogMixin, WindowsMixin],
- data () {
- return {
- loading: false,
- form: {
- fc: this.$form.createForm(this, {
- onValuesChange: (props, values) => {
- if (values.acl_entries) {
- const str = values.acl_entries
- const cidrs = str.split(/[\s\n]/).filter(v => !!v)
- this.aclEntries = cidrs.map(str => {
- const [cidr, comment = ''] = str.split('|')
- return {
- cidr,
- comment,
- }
- })
- }
- },
- }),
- },
- decorators: {
- name: [
- 'name',
- {
- validateFirst: true,
- validateTrigger: ['blur'],
- rules: [
- { required: true, message: this.$t('network.text_116') },
- { validator: this.$validate('serverName') },
- ],
- },
- ],
- acl_entries: [
- 'acl_entries',
- {
- validateFirst: true,
- validateTrigger: ['blur'],
- rules: [
- { required: true, message: this.$t('network.text_302') },
- { validator: ipsValidate },
- ],
- },
- ],
- },
- formItemLayout: {
- wrapperCol: {
- span: 20,
- },
- labelCol: {
- span: 4,
- },
- },
- aclEntries: [],
- }
- },
- created () {
- if (this.params.type === 'update') {
- const initialValue = this.params.data[0].acl_entries.map(v => {
- if (v.comment) {
- return `${v.cidr}|${v.comment}`
- }
- return v.cidr
- }).join(`
- `)
- this.form.fc.getFieldDecorator('acl_entries', { preserve: true, initialValue })
- }
- },
- methods: {
- doCreate (data) {
- return this.params.onManager('create', {
- managerArgs: {
- data: {
- name: data.name,
- acl_entries: this.aclEntries,
- },
- },
- })
- },
- doUpdate (data) {
- return this.params.onManager('update', {
- id: this.params.data[0].id,
- managerArgs: {
- data: {
- name: data.name,
- acl_entries: this.aclEntries,
- },
- },
- })
- },
- async handleConfirm () {
- this.loading = true
- try {
- const values = await this.form.fc.validateFields()
- if (this.params.type === 'create') {
- await this.doCreate(values)
- } else {
- await this.doUpdate(values)
- }
- this.loading = false
- this.cancelDialog()
- } catch (error) {
- this.loading = false
- }
- },
- },
- }
- </script>
|