| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- <template>
- <page-list
- :list="list"
- :columns="columns"
- :single-actions="singleActions"
- :group-actions="groupActions"
- :export-data-options="exportDataOptions" />
- </template>
- <script>
- import * as R from 'ramda'
- import { mapGetters } from 'vuex'
- import ColumnsMixin from '../mixins/columns'
- import SingleActionsMixin from '../mixins/singleActions'
- import ListMixin from '@/mixins/list'
- import WindowsMixin from '@/mixins/windows'
- export default {
- name: 'SshProxyMatchList',
- mixins: [WindowsMixin, ListMixin, ColumnsMixin, SingleActionsMixin],
- props: {
- id: String,
- proxyEndpointId: String,
- getParams: {
- type: [Function, Object],
- },
- },
- data () {
- return {
- list: this.$list.createList(this, {
- id: this.id,
- resource: 'proxy_matches',
- getParams: this.getParam,
- filterOptions: {
- name: {
- label: this.$t('network.text_21'),
- filter: true,
- formatter: val => {
- return `name.contains(${val})`
- },
- },
- },
- extraDataFecther: {
- vpc: async (listData, params) => {
- const vpcIds = listData.data.filter((row) => { return row.match_scope === 'vpc' }).map((row) => { return row.match_value })
- const vpcIdMap = {}
- if (vpcIds.length > 0) {
- try {
- const { data: { data = [] } } = await new this.$Manager('vpcs').list({
- params: {
- 'filter.0': `id.in(${vpcIds.join(',')})`,
- scope: this.$store.getters.scope,
- },
- })
- data.map((row) => { vpcIdMap[row.id] = row.name })
- } catch (e) {
- throw e
- }
- }
- return { data: vpcIdMap }
- },
- network: async (listData, params) => {
- const networkIds = listData.data.filter((row) => { return row.match_scope === 'network' }).map((row) => { return row.match_value })
- const networkIdMap = {}
- if (networkIds.length > 0) {
- try {
- const { data: { data = [] } } = await new this.$Manager('networks').list({
- params: {
- 'filter.0': `id.in(${networkIds.join(',')})`,
- scope: this.$store.getters.scope,
- },
- })
- data.map((row) => { networkIdMap[row.id] = row.name })
- } catch (e) {
- throw e
- }
- }
- return { data: networkIdMap }
- },
- },
- }),
- exportDataOptions: {
- items: [
- { label: 'ID', key: 'id' },
- { label: this.$t('network.text_21'), key: 'name' },
- ],
- },
- groupActions: [
- {
- label: this.$t('network.ssh-proxy-match.link'),
- permission: 'sshproxy_match_link',
- action: () => {
- this.createDialog('SshProxyMatchLinkDialog', {
- proxy_endpoint_id: this.proxyEndpointId,
- list: this.list,
- })
- },
- meta: () => {
- const ret = {
- validate: true,
- tooltip: null,
- buttonType: 'primary',
- }
- return ret
- },
- },
- {
- label: this.$t('network.ssh-proxy-match.unlink'),
- permission: 'sshproxy_match_unlink',
- action: () => {
- this.createDialog('DeleteResDialog', {
- vm: this,
- data: this.list.selectedItems,
- columns: this.columns,
- title: this.$t('network.ssh-proxy-match.unlink'),
- name: this.$t('network.ssh-proxy.match'),
- onManager: this.onManager,
- })
- },
- meta: () => {
- return {
- validate: this.list.allowDelete(),
- }
- },
- },
- ],
- }
- },
- computed: {
- ...mapGetters(['isAdminMode', 'isDomainMode', 'isProjectMode', 'userInfo']),
- },
- created () {
- this.initSidePageTab('SshProxyMatch-detail')
- this.list.fetchData()
- },
- methods: {
- getParam () {
- return { ...(R.is(Function, this.getParams) ? this.getParams() : this.getParams) }
- },
- handleOpenSidepage (row) {
- this.sidePageTriggerHandle(this, 'SshProxyMatchSidePage', {
- id: row.id,
- resource: 'proxy_matches',
- getParams: this.getParam,
- }, {
- list: this.list,
- })
- },
- },
- }
- </script>
|