| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405 |
- <template>
- <base-dialog @cancel="cancelDialog">
- <div slot="header">{{ $t('common.create') }} {{ $t('dictionary.clouduser') }}</div>
- <div slot="body">
- <a-form
- :form="form.fc"
- v-bind="formItemLayout">
- <a-form-item :label="$t('cloudenv.clouduser_list_t4')">
- <span>{{ params.user.name }}</span>
- </a-form-item>
- <a-form-item :label="$t('dictionary.project')">
- <base-select
- v-decorator="decorators.project_id"
- filterable
- :item.sync="form.fi.project"
- :options="projects">
- <template #optionTemplate="{ options }">
- <a-select-option v-for="item in options" :key="item.id" :value="item.id">
- {{ item.name }}<span class="text-color-secondary ml-2">{{ $t('common_624', [$t('dictionary.domain')]) }}: </span>{{ item.project_domain }}
- </a-select-option>
- </template>
- </base-select>
- </a-form-item>
- <a-form-item :label="$t('dictionary.cloudaccount')">
- <a-row :gutter="8">
- <a-col :span="12">
- <a-select v-model="form.fi.provider">
- <template v-for="item of providerOptions">
- <a-select-option :key="item[0]" :value="item[1].provider">
- <span class="text-color-secondary">{{ $t('common.brand') }}: </span>{{ item[1].label }}
- </a-select-option>
- </template>
- </a-select>
- </a-col>
- <a-col :span="12">
- <base-select
- v-decorator="decorators.cloudaccount_id"
- resource="cloudaccounts"
- filterable
- :item.sync="form.fi.cloudaccount"
- :params="cloudaccountParams"
- :mapper="cloudaccountMapper">
- <template #optionTemplate="{ options }">
- <a-select-option v-for="item in options" :key="item.id" :value="item.id">
- <span class="text-color-secondary">{{ $t('dictionary.cloudaccount') }}: </span>{{ item.name }}
- </a-select-option>
- </template>
- </base-select>
- </a-col>
- </a-row>
- </a-form-item>
- <template v-if="isGoogle">
- <a-form-item :label="$t('dictionary.cloudprovider')">
- <base-select
- v-decorator="decorators.cloudprovider_id"
- resource="cloudproviders"
- filterable
- :params="cloudproviderParams" />
- </a-form-item>
- </template>
- <a-form-item :label="$t('system.text_126')" :extra="nameExtra">
- <a-input v-decorator="decorators.generate_name" :placeholder="namePlaceholder" @change="e => { form.fi.generate_name = e.target.value }" />
- <template #extra>
- <name-repeated
- res="cloudusers"
- version="v1"
- :name="form.fi.generate_name" />
- </template>
- </a-form-item>
- <a-form-item :label="$t('dictionary.cloudgroup')" :extra="$t('cloudenv.clouduser_text2')">
- <list-select
- v-decorator="decorators.cloudgroup_ids"
- :listProps="cloudgroupListSelectProps"
- :formatter="formatterLabel"
- :dialog-params="{ mask: false }" />
- </a-form-item>
- <a-form-item :label="$t('system.text_146')" class="mb-0" :extra="isEnableMail ? '' : $t('system.is_config_mail_tips')">
- <a-input v-decorator="decorators.email" :disabled="!isEnableMail" :placeholder="$t('system.email_placeholder')" />
- </a-form-item>
- <a-form-item :wrapperCol="{ offset: 3 }">
- <a-checkbox v-decorator="decorators.notify" :disabled="!isCanSendNotify">{{ $t('system.email_checkbox_text') }}</a-checkbox>
- </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 get from 'lodash/get'
- import * as R from 'ramda'
- import DialogMixin from '@/mixins/dialog'
- import WindowsMixin from '@/mixins/windows'
- import NameRepeated from '@/sections/NameRepeated'
- import ListSelect from '@/sections/ListSelect'
- import { getNameFilter } from '@/utils/common/tableFilter'
- import { HYPERVISORS_MAP } from '@/constants'
- export default {
- name: 'ClouduserCreateForUserDialog',
- components: {
- NameRepeated,
- ListSelect,
- },
- mixins: [DialogMixin, WindowsMixin],
- data () {
- const providerOptions = Object.entries(HYPERVISORS_MAP).filter(item => {
- return (this.$store.getters.capability.cloud_id_brands || []).includes(item[1].provider) && this.$store.getters.capability.brands.includes(item[1].provider)
- })
- const firstProvider = get(providerOptions, '[0][1].provider')
- return {
- loading: false,
- form: {
- fc: this.$form.createForm(this, {
- onValuesChange: (props, values) => {
- if (values.email) {
- this.$nextTick(() => {
- const isError = this.form.fc.getFieldError('email')
- if (R.isNil(isError) || R.isEmpty(isError)) {
- this.isCanSendNotify = true
- } else {
- this.isCanSendNotify = false
- }
- })
- }
- },
- }),
- fi: {
- generate_name: '',
- provider: firstProvider,
- cloudaccount: {},
- project: {},
- },
- },
- projects: [],
- decorators: {
- generate_name: [
- 'generate_name',
- {
- validateFirst: true,
- rules: [],
- },
- ],
- project_id: [
- 'project_id',
- {
- rules: [
- { required: true, message: this.$t('common.select') },
- ],
- },
- ],
- owner_id: [
- 'owner_id',
- {
- rules: [
- { required: true, message: this.$t('common.select') },
- ],
- },
- ],
- cloudaccount_id: [
- 'cloudaccount_id',
- {
- rules: [
- { required: true, message: this.$t('common.select') },
- ],
- },
- ],
- cloudprovider_id: [
- 'cloudprovider_id',
- {
- rules: [
- { required: true, message: this.$t('common.select') },
- ],
- },
- ],
- cloudgroup_ids: [
- 'cloudgroup_ids',
- {
- rules: [
- { required: firstProvider === 'Google', message: this.$t('common.select') },
- ],
- },
- ],
- email: [
- 'email',
- {
- rules: [
- { validator: this.emailValidator },
- ],
- },
- ],
- notify: [
- 'notify',
- ],
- },
- providerOptions,
- cloudgroupListSelectProps: {
- list: this.$list.createList(this, {
- id: this.id,
- resource: 'cloudgroups',
- apiVersion: 'v1',
- getParams: () => {
- return {
- scope: this.$store.getters.scope,
- provider: this.form.fi.provider,
- }
- },
- filterOptions: {
- name: getNameFilter(),
- },
- }),
- columns: [
- {
- field: 'name',
- title: this.$t('table.title.name'),
- showOverflow: 'title',
- },
- {
- field: 'description',
- title: this.$t('system.text_193'),
- showOverflow: 'title',
- },
- {
- field: 'cloudpolicies',
- title: this.$t('cloudenv.text_329'),
- type: 'expand',
- slots: {
- default: ({ row }) => {
- return [this.$t('cloudenv.text_245', [(row.cloudpolicies && row.cloudpolicies.length) || 0])]
- },
- content: ({ row }) => {
- if (R.isNil(row.cloudpolicies) || R.isEmpty(row.cloudpolicies)) return this.$t('cloudenv.text_330')
- return [
- <vxe-grid
- showOverflow='title'
- data={ row.cloudpolicies }
- columns={[
- {
- field: 'name',
- title: this.$t('common.name'),
- },
- {
- field: 'description',
- title: this.$t('table.title.desc'),
- formatter: ({ cellValue }) => cellValue || '-',
- },
- ]} />,
- ]
- },
- },
- },
- ],
- },
- formItemLayout: {
- wrapperCol: {
- span: 20,
- },
- labelCol: {
- span: 4,
- },
- },
- isCanSendNotify: false,
- isEnableMail: false,
- }
- },
- computed: {
- cloudaccountParams () {
- const params = {
- scope: this.$store.getters.scope,
- provider: this.form.fi.provider,
- enabled: true,
- health_status: 'normal',
- status: 'connected',
- tenant_id: this.form.fi.project.id,
- }
- if (this.$store.getters.isAdminMode) {
- params.project_domain = this.form.fi.project.domain_id
- }
- if (this.$store.getters.isDomainMode) {
- params.project_domains = [this.form.fi.project.domain_id]
- }
- return params
- },
- cloudproviderParams () {
- return {
- scope: this.$store.getters.scope,
- cloudaccount_id: this.form.fi.cloudaccount.id || '',
- tenant_id: this.form.fi.project.id,
- }
- },
- isGoogle () {
- return this.form.fi.provider === 'Google'
- },
- namePlaceholder () {
- return this.isGoogle ? this.$t('system.text_496') : this.params.user.name
- },
- nameExtra () {
- return this.isGoogle ? null : this.$t('cloudenv.clouduser_text1')
- },
- },
- watch: {
- isGoogle (val) {
- this.decorators.generate_name[1].rules = val ? [
- { required: true, message: this.$t('common.text00042') },
- { validator: this.$validate('email'), message: this.$t('system.text_497') },
- ] : []
- if (val) {
- this.decorators.cloudgroup_ids[1].rules[0].required = true
- } else {
- this.decorators.cloudgroup_ids[1].rules[0].required = false
- }
- this.form.fc.resetFields(['generate_name', 'cloudgroup_ids'])
- },
- 'form.fi.cloudaccount.provider' (val) {
- this.form.fc.resetFields(['cloudgroup_ids', 'cloudprovider_id'])
- },
- 'form.fi.project.id' (val) {
- this.form.fc.resetFields(['cloudgroup_ids', 'cloudprovider_id'])
- },
- },
- destroyed () {
- this.um = null
- },
- created () {
- this.um = new this.$Manager('users', 'v1')
- this.fetchProjects()
- this.fetchReceivers()
- },
- methods: {
- emailValidator (rule, value, callback) {
- if (R.isEmpty(value) || R.isNil(value)) {
- return callback()
- }
- return this.$validate('email')(rule, value, callback)
- },
- async fetchProjects () {
- try {
- const response = await this.um.getSpecific({
- id: this.params.user.id,
- spec: 'projects',
- params: {
- scope: this.$store.getters.scope,
- },
- })
- this.projects = response.data.data || []
- this.form.fc.setFieldsValue({
- project_id: this.projects[0].id,
- })
- } catch (error) {
- throw error
- }
- },
- async handleConfirm () {
- this.loading = true
- try {
- const { ...values } = await this.form.fc.validateFields()
- values.owner_id = this.params.user.id
- await this.params.onManager('create', {
- managerArgs: {
- data: values,
- },
- })
- this.cancelDialog()
- } finally {
- this.loading = false
- }
- },
- formatterLabel (row) {
- return row.description ? `${row.name} / ${row.description}` : row.name
- },
- cloudaccountMapper (data) {
- let _data = [...data]
- _data = _data.filter(item => {
- if (this.form.fi.provider !== 'Google' && item.share_mode === 'provider_domain' && item.project_domain !== this.form.fi.project.project_domain) {
- return false
- }
- return true
- })
- return _data
- },
- async fetchReceivers () {
- this.isEnableMail = false
- try {
- const params = { scope: this.$store.getters.scope, id: this.params.user.id }
- const response = await new this.$Manager('receivers', 'v1').list({ params })
- const receivers = response.data.data || []
- if (receivers.length > 0) {
- const receiver = receivers[0]
- if (receiver.enabled_contact_types.includes('email')) {
- this.isEnableMail = true
- this.form.fc.setFieldsValue({
- email: receiver.email,
- })
- }
- }
- } catch (error) {
- throw error
- }
- },
- },
- }
- </script>
|