| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327 |
- <template>
- <base-dialog @cancel="cancelDialog">
- <div slot="header">{{ title }}</div>
- <div slot="body">
- <a-form
- class="mt-3"
- :form="form.fc"
- v-bind="formItemLayout"
- hideRequiredMark>
- <scope-radio
- :disabled="isUpdate"
- :decorators="decorators"
- :form="form"
- :label="$t('system.notify.topic.receiver.resource_scope')"
- @change="scopeChange" />
- <a-form-item :label="$t('system.text_48')">
- <a-radio-group v-decorator="decorators.type" @change="handleTypeChange" :disabled="isUpdate">
- <a-radio-button
- v-for="item in sub_types"
- :value="item.key"
- :key="item.key">{{ item.label }}</a-radio-button>
- </a-radio-group>
- </a-form-item>
- <a-form-item v-if="curType === 'receiver'" :label="$t('system.notify.subscriber.type.receiver')">
- <base-select
- v-decorator="decorators.receivers"
- class="w-100"
- :filterable="true"
- needParams
- resource="receivers"
- version="v1"
- option-label-prop="label"
- :isDefaultSelect="true"
- :params="recipientParams"
- :select-props="{ placeholder: $t('system.text_232', [$t('system.notify.subscriber.type.receiver')]), allowClear: false, mode: 'multiple' }">
- <template #optionLabelTemplate="{ item }">
- <a-row>
- <a-col span="9">{{ item.name }}</a-col>
- <a-col><p class="text-right text-color-secondary mr-2">{{ $t('common_624', [$t('dictionary.domain')]) }}: {{ item.project_domain }}</p></a-col>
- </a-row>
- </template>
- </base-select>
- </a-form-item>
- <a-form-item v-if="curType === 'role'" :label="$t('system.notify.subscriber.type.role')">
- <a-row type="flex">
- <a-col :flex="2" class="mr-2">
- <base-select
- v-decorator="decorators.role_scope"
- :options="roleScopeOptions"
- :select-props="{ placeholder: $t('system.text_232', [$t('common_235')]), allowClear: false }" />
- </a-col>
- <a-col :flex="3">
- <base-select
- v-decorator="decorators.role"
- :filterable="true"
- needParams
- resource="roles"
- version="v1"
- :isDefaultSelect="true"
- :applyOptionLabel="true"
- :params="recipientParams"
- :select-props="{ placeholder: $t('system.text_232', [$t('system.notify.subscriber.type.role')]), allowClear: false }" />
- </a-col>
- </a-row>
- </a-form-item>
- <a-form-item v-if="curType === 'robot'" :label="$t('system.notify.subscriber.type.robot')">
- <base-select
- v-decorator="decorators.robot"
- class="w-100"
- :filterable="true"
- needParams
- resource="robots"
- version="v1"
- option-label-prop="label"
- :isDefaultSelect="true"
- :params="recipientParams"
- :select-props="{ placeholder: $t('system.text_232', [$t('system.notify.subscriber.type.robot')]), allowClear: false }" />
- </a-form-item>
- <a-form-item :label="$t('iam.notify_silent')">
- <a-row type="flex">
- <a-col :flex="2" class="mr-2">
- <a-select
- v-decorator="decorators.group_times"
- allow-clear
- :placeholder="$t('common.tips.select', [$t('iam.notify_silent')])">
- <a-select-option v-for="item in groupKeyOpts" :value="item.id" :key="item.id">{{item.name}}</a-select-option>
- </a-select>
- </a-col>
- <a-col :flex="3"><help-tooltip :text="$t('iam.notify_silent.tip')" /></a-col>
- </a-row>
- </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 { mapGetters } from 'vuex'
- import DialogMixin from '@/mixins/dialog'
- import WindowsMixin from '@/mixins/windows'
- import ScopeRadio from '@/sections/ScopeRadio'
- import { NOTIFY_SUBSCRIBER_TYPES, NOTIFY_ROLE_SCOPES } from '../../../constants'
- export default {
- name: 'SetupNotifyReceiverDialog',
- components: { ScopeRadio },
- mixins: [DialogMixin, WindowsMixin],
- data () {
- const initialValues = {}
- if (this.params.data && this.params.data.id) {
- // update
- const s = this.params.data
- initialValues.scope = s.resource_scope
- initialValues.resource_scope = s.resource_scope
- if (s.resource_scope === 'domain') initialValues.domain = s.resource_attribution_id
- if (s.resource_scope === 'project') initialValues.project = s.resource_attribution_id
- initialValues.type = s.type
- initialValues.role_scope = s.role_scope
- initialValues.role = s.role ? s.role.id : ''
- initialValues.robot = s.robot ? s.robot.id : ''
- initialValues.receivers = s.receivers ? s.receivers.map(r => r.id) : []
- initialValues.group_times = s.group_times || undefined
- } else {
- // create
- initialValues.scope = this.$store.getters.scope
- initialValues.resource_scope = this.$store.getters.scope
- initialValues.type = NOTIFY_SUBSCRIBER_TYPES[0].key
- initialValues.role_scope = 'system'
- initialValues.group_times = 60
- }
- return {
- loading: false,
- isAdminMode: this.$store.getters.isAdminMode,
- curType: initialValues.type,
- sub_types: NOTIFY_SUBSCRIBER_TYPES,
- roleScopeOptions: NOTIFY_ROLE_SCOPES,
- form: {
- fc: this.$form.createForm(this, {
- onValuesChange: (props, values) => {
- Object.keys(values).forEach((key) => {
- this.form.fd[key] = values[key]
- })
- },
- }),
- fd: {
- ...initialValues,
- },
- },
- decorators: {
- scope: [
- 'scope',
- {
- initialValue: initialValues.resource_scope,
- },
- ],
- domain: [
- 'domain',
- {
- initialValue: initialValues.domain,
- rules: [
- { required: !this.params.data, message: `${this.$t('common.select')}` },
- ],
- },
- ],
- project: [
- 'project',
- {
- initialValue: initialValues.project,
- rules: [
- { required: !this.params.data, message: `${this.$t('common.select')}` },
- ],
- },
- ],
- type: [
- 'type',
- {
- initialValue: initialValues.type,
- rules: [
- { required: true, message: `${this.$t('common.select')}` },
- ],
- },
- ],
- receivers: [
- 'receivers',
- {
- initialValue: initialValues.receivers,
- rules: [
- { required: true, message: `${this.$t('common.select')}` },
- ],
- },
- ],
- robot: [
- 'robot',
- {
- initialValue: initialValues.robot,
- rules: [
- { required: true, message: `${this.$t('common.select')}` },
- ],
- },
- ],
- role: [
- 'role',
- {
- initialValue: initialValues.role,
- rules: [
- { required: true, message: `${this.$t('common.select')}` },
- ],
- },
- ],
- role_scope: [
- 'role_scope',
- {
- initialValue: initialValues.role_scope,
- rules: [
- { required: true, message: `${this.$t('common.select')}` },
- ],
- },
- ],
- group_times: [
- 'group_times',
- {
- initialValue: initialValues.group_times,
- rules: [
- { required: false, message: `${this.$t('common.select')}` },
- ],
- },
- ],
- },
- formItemLayout: {
- wrapperCol: {
- span: 19,
- },
- labelCol: {
- span: 5,
- },
- },
- groupKeyOpts: [
- { id: 5, name: this.$t('iam.silent.minute', [5]) },
- { id: 10, name: this.$t('iam.silent.minute', [10]) },
- { id: 15, name: this.$t('iam.silent.minute', [15]) },
- { id: 30, name: this.$t('iam.silent.minute', [30]) },
- { id: 1 * 60, name: this.$t('iam.silent.hour', [1]) },
- { id: 2 * 60, name: this.$t('iam.silent.hour', [2]) },
- { id: 3 * 60, name: this.$t('iam.silent.hour', [3]) },
- { id: 6 * 60, name: this.$t('iam.silent.hour', [6]) },
- { id: 12 * 60, name: this.$t('iam.silent.hour', [12]) },
- { id: 24 * 60, name: this.$t('iam.silent.hour', [24]) },
- ],
- }
- },
- computed: {
- ...mapGetters(['userInfo']),
- isUpdate () {
- return this.params.data && this.params.data.id
- },
- title () {
- if (this.params.data && this.params.data.id) {
- return this.$t('system.text_141', [this.$t('system.notify.subscriber.type.receiver')])
- }
- return this.$t('system.text_130', [this.$t('system.notify.subscriber.type.receiver')])
- },
- recipientParams () {
- return {
- limit: 0,
- scope: this.$store.getters.scope,
- with_meta: true,
- enabled: true,
- }
- },
- },
- destroyed () {
- this.manager = null
- },
- created () {
- this.manager = new this.$Manager('subscribers', 'v1')
- },
- methods: {
- handleTypeChange (e) {
- this.curType = e.target.value
- },
- async handleConfirm () {
- this.loading = true
- try {
- const values = await this.form.fc.validateFields()
- let resource_attribution_id = ''
- if (values.scope === 'domain') resource_attribution_id = values.domain || this.userInfo.projectDomainId
- if (values.scope === 'project') resource_attribution_id = values.project || this.userInfo.projectId
- const params = {
- receivers: values.receivers,
- role_scope: values.role_scope,
- role: values.role,
- robot: values.robot,
- group_times: values.group_times || 0,
- }
- if (this.isUpdate) {
- // params.topic_id = this.params.data.topic_id || this.params.resId
- await this.manager.performAction({
- id: this.params.data.id,
- action: 'change',
- data: params,
- })
- } else {
- params.scope = this.$store.getters.scope
- params.resource_scope = values.scope
- params.resource_attribution_id = resource_attribution_id
- params.topic_id = this.params.resId
- params.type = values.type
- await this.manager.create({
- data: params,
- })
- }
- this.loading = false
- this.params.success()
- this.cancelDialog()
- } catch (error) {
- this.loading = false
- throw error
- }
- },
- },
- }
- </script>
|