| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- <template>
- <page-list
- :columns="columns"
- :group-actions="groupActions"
- :list="list"
- :single-actions="singleActions" />
- </template>
- <script>
- import { ACCOUNT_PRIVILEGES } from '../constants'
- import PasswordFetcher from '@Compute/sections/PasswordFetcher'
- import { getStatusTableColumn, getCopyWithContentTableColumn } from '@/utils/common/tableColumn'
- import WindowsMixin from '@/mixins/windows'
- import expectStatus from '@/constants/expectStatus'
- import { HYPERVISORS_MAP } from '@/constants'
- import { getNameFilter, getStatusFilter } from '@/utils/common/tableFilter'
- export default {
- name: 'RedisAccountList',
- mixins: [WindowsMixin],
- props: {
- params: {
- type: Object,
- },
- data: {
- type: Object,
- },
- },
- data () {
- const steadyStatus = Object.values(expectStatus.redisAccount).flat()
- return {
- steadyStatus,
- list: this.$list.createList(this, {
- id: 'RedisAccountListForRedisSidePage',
- resource: 'elasticcacheaccounts',
- getParams: this.params,
- steadyStatus,
- filterOptions: {
- name: getNameFilter(),
- status: getStatusFilter('redisAccount'),
- },
- }),
- columns: [
- getCopyWithContentTableColumn(),
- getStatusTableColumn({ statusModule: 'redisAccount' }),
- {
- field: 'password',
- title: this.$t('db.text_195'),
- width: 100,
- slots: {
- default: ({ row }) => {
- return [<PasswordFetcher serverId={row.id} resourceType='elasticcacheaccounts' />]
- },
- },
- },
- {
- field: 'account_type',
- title: this.$t('db.text_309'),
- minWidth: 100,
- slots: {
- default: ({ row }) => {
- return row.account_type === 'admin' ? this.$t('db.text_310') : this.$t('db.text_311')
- },
- },
- },
- {
- field: 'ip',
- title: this.$t('db.text_196'),
- minWidth: 150,
- slots: {
- default: ({ row }) => {
- return ACCOUNT_PRIVILEGES[row.account_privilege] || '-'
- },
- },
- },
- ],
- groupActions: [
- {
- label: this.$t('db.text_41'),
- permission: 'redis_elasticcacheaccounts_create',
- action: () => {
- this.createDialog('RedisAccountDialog', {
- list: this.list,
- redisItem: this.data,
- })
- },
- meta: () => {
- let validate = true
- let tooltip = ''
- if (this.data.brand === 'Huawei') {
- validate = false
- tooltip = this.$t('db.text_202')
- }
- if (this.data.brand === 'Aliyun' && this.data.engine_version === '2.8') {
- validate = false
- tooltip = this.$t('db.text_312')
- }
- if (this.data.brand === 'Qcloud' && this.data.slave_zones && this.data.slave_zones.length > 0) {
- validate = false
- tooltip = this.$t('db.redis.qcloud.multizone.tooltips')
- }
- if ((this.data.brand === HYPERVISORS_MAP.aws.brand || this.data.brand === HYPERVISORS_MAP.azure.brand) && validate) {
- validate = false
- tooltip = this.$t('db.text_384', [this.data.brand])
- }
- return {
- buttonType: 'primary',
- validate,
- tooltip,
- }
- },
- },
- ],
- singleActions: [
- {
- label: this.$t('db.text_201'),
- permission: 'redis_elasticcacheaccounts_perform_reset_password',
- action: (obj) => {
- this.createDialog('RedisAccountLisResetPwdDialog', {
- data: [obj],
- steadyStatus: this.steadyStatus,
- list: this.list,
- columns: this.columns,
- redisItem: this.data,
- })
- },
- meta: () => this.commonMeta,
- },
- {
- label: this.$t('db.text_203'),
- permission: 'redis_elasticcacheaccounts_perform_reset_password',
- action: (obj) => {
- this.createDialog('RedisAccountListSetPrivilegeDialog', {
- title: this.$t('db.text_203'),
- steadyStatus: this.steadyStatus,
- initialValues: {
- account_privilege: obj.account_privilege,
- },
- data: [obj],
- list: this.list,
- columns: this.columns,
- redisItem: this.data,
- })
- },
- meta: (obj) => {
- const isAdmin = obj.account_type === 'admin'
- const brandMap = {
- Aliyun: this.$t('db.text_52'),
- Qcloud: this.$t('db.text_361'),
- }
- return {
- validate: this.commonMeta.validate && !isAdmin,
- tooltip: this.commonMeta.tooltip || (isAdmin ? this.$t('db.text_313', [brandMap[obj.brand]]) : null),
- }
- },
- },
- {
- label: this.$t('db.text_42'),
- permission: 'redis_elasticcacheaccounts_delete',
- action: (obj) => {
- this.createDialog('RedisWhiteListDeleteDialog', {
- data: [obj],
- columns: this.columns,
- title: this.$t('db.text_206'),
- list: this.list,
- })
- },
- meta: (obj) => {
- const isHuawei = this.data.brand === 'Huawei'
- let tooltip = ''
- if (isHuawei) {
- tooltip = this.$t('db.text_202')
- }
- if (obj.account_type === 'admin') {
- tooltip = this.$t('db.text_315')
- }
- return {
- validate: !tooltip,
- tooltip,
- }
- },
- },
- ],
- }
- },
- computed: {
- commonMeta () {
- if (this.data.brand === 'Qcloud' && this.data.slave_zones && this.data.slave_zones.length > 0) {
- return {
- validate: false,
- tooltip: this.$t('db.redis.qcloud.multizone.tooltips'),
- }
- }
- const isHuawei = this.data.brand === 'Huawei'
- return {
- validate: !isHuawei,
- tooltip: isHuawei ? this.$t('db.text_202') : null,
- }
- },
- },
- created () {
- this.list.fetchData()
- },
- }
- </script>
|