| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- <template>
- <div>
- <a-alert :message="alertMessage" class="mb-2" type="info" />
- <page-list
- :list="list"
- :columns="columns"
- :single-actions="singleActions"
- :group-actions="groupActions"
- :export-data-options="exportDataOptions" />
- </div>
- </template>
- <script>
- import { mapGetters } from 'vuex'
- import ColumnsMixin from '../mixins/columns'
- import SingleActionsMixin from '../mixins/singleActions'
- import ListMixin from '@/mixins/list'
- import WindowsMixin from '@/mixins/windows'
- import { getDescriptionFilter, getCreatedAtFilter } from '@/utils/common/tableFilter'
- export default {
- name: 'SshProxyList',
- mixins: [WindowsMixin, ListMixin, ColumnsMixin, SingleActionsMixin],
- props: {
- id: String,
- hiddenActions: {
- type: Array,
- default: () => ([]),
- },
- },
- data () {
- return {
- alertMessage: this.$t('network.ssh-proxy.endpoints.list.tips'),
- list: this.$list.createList(this, {
- id: this.id,
- resource: 'proxy_endpoints',
- getParams: this.getParam,
- filterOptions: {
- name: {
- label: this.$t('network.text_21'),
- filter: true,
- formatter: val => {
- return `name.contains(${val})`
- },
- },
- description: getDescriptionFilter(),
- ip_addr: {
- label: 'IP',
- filter: true,
- formatter: val => {
- return `intranet_ip_addr.contains(${val})`
- },
- },
- created_at: getCreatedAtFilter(),
- },
- hiddenColumns: ['created_at'],
- }),
- exportDataOptions: {
- items: [
- { label: 'ID', key: 'id' },
- { label: this.$t('network.text_21'), key: 'name' },
- { label: this.$t('common.createdAt'), key: 'created_at' },
- ],
- },
- groupActions: [
- {
- label: this.$t('network.text_26'),
- permission: 'sshproxy_endpoint_create',
- action: () => {
- this.$router.push({
- path: '/ssh-proxy/create',
- })
- },
- meta: () => {
- return {
- buttonType: 'primary',
- validate: !this.cloudEnvEmpty,
- tooltip: this.cloudEnvEmpty ? this.$t('common.no_platform_available') : '',
- }
- },
- hidden: () => this.hiddenActions.includes('create'),
- },
- {
- label: this.$t('network.text_200'),
- actions: () => {
- return [
- {
- label: this.$t('network.text_349'),
- permission: 'proxy_endpoints_update',
- action: () => {
- this.createDialog('UpdateSSHPortDialog', {
- vm: this,
- data: this.list.selectedItems,
- columns: this.columns,
- title: this.$t('network.text_349'),
- name: this.$t('network.ssh-proxy.endpoints'),
- onManager: this.onManager,
- })
- },
- },
- {
- label: this.$t('network.text_131'),
- permission: 'proxy_endpoints_delete',
- action: () => {
- this.createDialog('DeleteResDialog', {
- vm: this,
- data: this.list.selectedItems,
- columns: this.columns,
- title: this.$t('network.text_131'),
- name: this.$t('network.ssh-proxy.endpoints'),
- onManager: this.onManager,
- })
- },
- meta: () => {
- return {
- validate: this.list.allowDelete(),
- }
- },
- },
- ]
- },
- meta: () => {
- return {
- validate: this.list.selected.length,
- }
- },
- },
- ],
- }
- },
- computed: {
- ...mapGetters(['isAdminMode', 'isDomainMode', 'isProjectMode', 'userInfo']),
- },
- created () {
- this.initSidePageTab('SshProxy-detail')
- this.list.fetchData()
- },
- methods: {
- getParam () {
- return {}
- },
- handleOpenSidepage (row) {
- this.sidePageTriggerHandle(this, 'SshProxySidePage', {
- id: row.id,
- resource: 'proxy_endpoints',
- getParams: this.getParam,
- }, {
- list: this.list,
- })
- },
- },
- }
- </script>
|