| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- <template>
- <page-list
- show-tag-columns
- show-tag-columns2
- show-tag-filter
- :list="list"
- :columns="templateListColumns || columns"
- :group-actions="groupActions"
- :single-actions="singleActions"
- :export-data-options="exportDataOptions"
- :showSearchbox="showSearchbox"
- :showGroupActions="showGroupActions"
- :show-single-actions="!isTemplate"
- :show-page="!isTemplate" />
- </template>
- <script>
- import WindowsMixin from '@/mixins/windows'
- import GlobalSearchMixin from '@/mixins/globalSearch'
- import ListMixin from '@/mixins/list'
- import ResTemplateListMixin from '@/mixins/resTemplateList'
- import {
- getNameFilter,
- getTenantFilter,
- getStatusFilter,
- getDomainFilter,
- getOsArchFilter,
- getRegionFilter,
- getDescriptionFilter,
- } from '@/utils/common/tableFilter'
- import SingleActionsMixin from '../mixins/singleActions'
- import ColumnsMixin from '../mixins/columns'
- import { steadyStatus } from '../constants'
- export default {
- name: 'InstanceSnapshotList',
- mixins: [WindowsMixin, ListMixin, GlobalSearchMixin, ColumnsMixin, SingleActionsMixin, ResTemplateListMixin],
- props: {
- id: String,
- getParams: {
- type: [Function, Object],
- },
- cloudEnv: String,
- },
- data () {
- return {
- list: this.$list.createList(this, {
- ctx: this,
- id: this.id,
- resource: 'instance_snapshots',
- getParams: this.getParam,
- isTemplate: this.isTemplate,
- templateLimit: this.templateLimit,
- steadyStatus,
- filterOptions: {
- id: {
- label: this.$t('table.title.id'),
- },
- name: getNameFilter(),
- description: getDescriptionFilter(),
- status: getStatusFilter('snapshot'),
- guest_id: {
- label: this.$t('res.server'),
- },
- projects: getTenantFilter(),
- project_domains: getDomainFilter(),
- region: getRegionFilter(),
- os_arch: getOsArchFilter(),
- with_memory: {
- label: this.$t('compute.mem_snapshot'),
- dropdown: true,
- items: [
- { label: this.$t('compute.contains'), key: 'true' },
- { label: this.$t('compute.not_contains'), key: 'false' },
- ],
- },
- },
- responseData: this.responseData,
- hiddenColumns: ['created_at'],
- }),
- groupActions: [
- {
- label: this.$t('table.action.set_tag'),
- permission: 'instance_snapshots_perform_set_user_metadata',
- action: () => {
- this.createDialog('SetTagDialog', {
- data: this.list.selectedItems,
- columns: this.columns,
- onManager: this.onManager,
- mode: 'add',
- params: {
- resources: 'instance_snapshot',
- },
- tipName: this.$t('compute.text_462'),
- })
- },
- meta: () => {
- return {
- validate: this.list.selected.length,
- tooltip: null,
- }
- },
- },
- {
- label: this.$t('compute.perform_delete'),
- permission: 'instance_snapshots_delete',
- action: () => {
- this.createDialog('DeleteResDialog', {
- vm: this,
- data: this.list.selectedItems,
- columns: this.columns,
- onManager: this.onManager,
- title: this.$t('compute.perform_delete'),
- name: this.$t('compute.text_462'),
- })
- },
- meta: () => {
- const ret = {
- validate: this.list.selected.length,
- tooltip: null,
- }
- if (this.list.selectedItems.some(item => !item.can_delete)) {
- ret.validate = false
- return ret
- }
- if (this.list.selectedItems.some(item => item.is_sub_snapshot)) {
- ret.validate = false
- ret.tooltip = this.$t('compute.text_1062')
- return ret
- }
- return ret
- },
- },
- ],
- }
- },
- computed: {
- exportDataOptions () {
- return {
- title: this.$t('compute.text_102'),
- downloadType: 'local',
- items: [
- { field: 'id', title: 'ID' },
- ...this.columns,
- ],
- }
- },
- },
- watch: {
- cloudEnv (val) {
- this.$nextTick(() => {
- this.list.fetchData(0)
- })
- },
- },
- created () {
- this.initSidePageTab('snapshot-detail')
- this.list.fetchData()
- },
- methods: {
- getParam () {
- const ret = {
- details: true,
- ...this.getParams,
- }
- if (this.cloudEnv) ret.cloud_env = this.cloudEnv
- return ret
- },
- handleOpenSidepage (row, tab) {
- this.sidePageTriggerHandle(this, 'SnapshotInstanceSidePage', {
- id: row.id,
- resource: 'instance_snapshots',
- getParams: this.getParam,
- steadyStatus: this.list.steadyStatus,
- }, {
- list: this.list,
- type: 'instance',
- tab,
- })
- },
- },
- }
- </script>
|