| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244 |
- <template>
- <page-list
- :list="list"
- :columns="columns"
- :group-actions="groupActions"
- :single-actions="singleActions"
- :showSearchbox="showSearchbox"
- :showGroupActions="showGroupActions"
- :export-data-options="exportDataOptions" />
- </template>
- <script>
- import { mapGetters } from 'vuex'
- import WindowsMixin from '@/mixins/windows'
- import ListMixin from '@/mixins/list'
- import { getProjectDomainFilter, getEnabledFilter, getCreatedAtFilter } from '@/utils/common/tableFilter'
- import {
- getSetPublicAction,
- } from '@/utils/common/tableActions'
- import GlobalSearchMixin from '@/mixins/globalSearch'
- import SingleActionsMixin from '../mixins/singleActions'
- import ColumnsMixin from '../mixins/columns'
- export default {
- name: 'PolicyList',
- mixins: [WindowsMixin, ListMixin, GlobalSearchMixin, ColumnsMixin, SingleActionsMixin],
- props: {
- id: String,
- getParams: {
- type: Object,
- },
- type: String,
- },
- data () {
- return {
- list: this.$list.createList(this, {
- id: this.id,
- resource: 'policies',
- apiVersion: 'v1',
- getParams: this.getParam,
- filterOptions: {
- id: {
- label: this.$t('table.title.id'),
- },
- name: {
- label: this.$t('system.text_101'),
- filter: true,
- formatter: val => {
- return `name.contains("${val}")`
- },
- },
- project_domain: getProjectDomainFilter(),
- enabled: getEnabledFilter(),
- created_at: getCreatedAtFilter(),
- },
- responseData: this.responseData,
- hiddenColumns: ['created_at'],
- }),
- groupActions: [
- {
- label: this.$t('system.text_128'),
- permission: 'policies_create',
- action: () => {
- this.$router.push('/policy/create')
- },
- meta: () => {
- return {
- buttonType: 'primary',
- }
- },
- },
- {
- label: this.$t('system.text_226'),
- permission: 'policies_update',
- action: () => {
- this.createDialog('DisableDialog', {
- title: this.$t('system.text_341', [this.$t('dictionary.policy')]),
- name: this.$t('dictionary.policy'),
- columns: this.columns,
- data: this.list.selectedItems,
- ok: async () => {
- try {
- const response = await this.list.batchPerformAction('disable')
- return response
- } catch (error) {
- throw error
- }
- },
- })
- },
- meta: () => {
- let validate = true
- if (this.list.selectedItems.length <= 0) {
- validate = false
- }
- if (this.list.selectedItems.some(item => item.enabled === false)) {
- validate = false
- }
- if (this.list.selectedItems.some(item => !this.isOwnerPublic(item))) {
- validate = false
- }
- return {
- validate,
- }
- },
- },
- {
- label: this.$t('system.text_225'),
- permission: 'policies_update',
- action: () => {
- this.createDialog('DisableDialog', {
- title: this.$t('system.text_342', [this.$t('dictionary.policy')]),
- name: this.$t('dictionary.policy'),
- columns: this.columns,
- data: this.list.selectedItems,
- ok: async () => {
- try {
- const response = await this.list.batchPerformAction('enable')
- return response
- } catch (error) {
- throw error
- }
- },
- })
- },
- meta: () => {
- let validate = true
- if (this.list.selectedItems.length <= 0) {
- validate = false
- }
- if (this.list.selectedItems.some(item => item.enabled === true)) {
- validate = false
- }
- if (this.list.selectedItems.some(item => !this.isOwnerPublic(item))) {
- validate = false
- }
- return {
- validate,
- }
- },
- },
- getSetPublicAction(this, {
- name: this.$t('res.policy'),
- scope: 'domain',
- resource: 'policies',
- apiVersion: 'v1',
- noCandidateDomains: true,
- }, {
- permission: 'policies_perform_public',
- meta: () => {
- if (this.list.selectedItems.some(obj => obj.is_system)) {
- return {
- validate: false,
- tooltip: this.$t('policy.tooltip.system_policy'),
- }
- }
- return {
- validate: this.list.selectedItems.length,
- }
- },
- }),
- {
- label: this.$t('system.text_129'),
- permission: 'policies_delete',
- action: () => {
- this.createDialog('DeleteResDialog', {
- vm: this,
- data: this.list.selectedItems,
- columns: this.columns,
- title: this.$t('system.text_129'),
- name: this.$t('dictionary.policy'),
- onManager: this.onManager,
- })
- },
- meta: () => {
- return {
- validate: this.list.allowDelete(),
- }
- },
- },
- ],
- }
- },
- computed: {
- ...mapGetters(['isAdminMode', 'userInfo']),
- exportDataOptions () {
- return {
- title: this.$t('dictionary.policy'),
- downloadType: 'local',
- items: [
- { label: 'ID', field: 'id' },
- ...this.columns,
- ],
- }
- },
- },
- watch: {
- type (val) {
- this.$nextTick(() => {
- this.list.fetchData(0)
- })
- },
- },
- created () {
- this.initSidePageTab('policy-detail')
- this.list.fetchData()
- },
- methods: {
- getParam () {
- const ret = {
- ...this.getParams,
- details: true,
- }
- if (this.type === 'custom') {
- ret.is_system = false
- return ret
- }
- if (this.type === 'system') {
- ret.is_system = true
- return ret
- }
- return ret
- },
- isOwnerPublic (obj) {
- // fix by http://bug.yunion.io/zentao/bug-view-2958.html 共享的权限在其他域下时应该不能做任何操作
- if (obj.is_public) {
- if (this.isAdminMode) return true
- if (obj.domain_id !== this.userInfo.domain.id) return false
- }
- return true
- },
- handleOpenSidepage (row) {
- this.sidePageTriggerHandle(this, 'PolicySidePage', {
- id: row.id,
- resource: 'policies',
- apiVersion: 'v1',
- getParams: this.getParam,
- }, {
- list: this.list,
- })
- },
- },
- }
- </script>
|