| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- <template>
- <page-list
- :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 * as R from 'ramda'
- import expectStatus from '@/constants/expectStatus'
- import { getNameFilter, getStatusFilter, getOsTypeFilter } from '@/utils/common/tableFilter'
- import WindowsMixin from '@/mixins/windows'
- import GlobalSearchMixin from '@/mixins/globalSearch'
- import ListMixin from '@/mixins/list'
- import ResTemplateListMixin from '@/mixins/resTemplateList'
- import SingleActionsMixin from '../mixins/singleActions'
- import ColumnsMixin from '../mixins/columns'
- export default {
- name: 'ImageRecoveryList',
- mixins: [WindowsMixin, ListMixin, GlobalSearchMixin, ColumnsMixin, SingleActionsMixin, ResTemplateListMixin],
- props: {
- id: String,
- cloudEnv: String,
- getParams: {
- type: [Function, Object],
- default: () => ({}),
- },
- },
- data () {
- return {
- list: this.$list.createList(this, {
- ctx: this,
- id: this.id,
- resource: 'images',
- getParams: this.getParam,
- isTemplate: this.isTemplate,
- templateLimit: this.templateLimit,
- steadyStatus: Object.values(expectStatus.image).flat(),
- apiVersion: 'v1',
- filterOptions: {
- name: getNameFilter(),
- status: getStatusFilter(),
- os_type: getOsTypeFilter(),
- },
- responseData: this.responseData,
- }),
- exportDataOptions: {
- items: [
- { label: 'ID', key: 'id' },
- { label: this.$t('compute.text_228'), key: 'name' },
- { label: this.$t('compute.text_398'), key: 'disk_format' },
- { label: this.$t('table.title.image_size'), key: 'size' },
- { label: this.$t('dictionary.project'), key: 'tenant' },
- { label: this.$t('table.title.image_type'), key: 'is_standard' },
- { label: this.$t('compute.text_243'), key: 'created_at' },
- { label: this.$t('table.title.checksum'), key: 'checksum' },
- ],
- },
- groupActions: [
- {
- label: this.$t('compute.text_477'),
- permission: 'images_delete',
- action: () => {
- this.createDialog('DeleteResDialog', {
- vm: this,
- data: this.list.selectedItems,
- columns: this.columns,
- title: this.$t('compute.text_477'),
- name: this.$t('dictionary.image'),
- requestParams: { override_pending_delete: true },
- onManager: this.onManager,
- })
- },
- meta: () => {
- return {
- validate: this.list.allowDelete(),
- }
- },
- },
- {
- label: this.$t('compute.text_478'),
- permission: 'images_perform_cancel_delete',
- action: () => {
- this.createDialog('ImageRestoreDialog', {
- title: this.$t('compute.text_478'),
- data: this.list.selectedItems,
- columns: this.columns,
- refresh: this.refresh,
- cloudEnv: this.cloudEnv,
- })
- },
- meta: () => {
- if (this.list.selectedItems.length > 0 && this.list.selectedItems.find(v => v.status === 'deleting') === undefined) {
- return {
- validate: true,
- }
- }
- return {
- validate: false,
- }
- },
- },
- ],
- }
- },
- watch: {
- cloudEnv (val) {
- this.list.manager = new this.$Manager(val, 'v1')
- this.list.resource = this[`${val}Fetcher`]
- this.list.fetchData(0)
- },
- },
- created () {
- this.sm = new this.$Manager('images', 'v1')
- this.vm = new this.$Manager('guestimages', 'v1')
- this.list.fetchData()
- },
- methods: {
- getParam () {
- const ret = {
- ...(R.is(Function, this.getParams) ? this.getParams() : this.getParams),
- details: true,
- pending_delete: true,
- }
- if (this.cloudEnv === 'images') {
- ret.details = true
- ret.pending_delete = true
- ret.is_guest_image = false
- }
- return ret
- },
- imagesFetcher (params) {
- return this.sm.list({ params })
- },
- guestimagesFetcher (params) {
- return this.vm.list({ params })
- },
- handleOpenSidepage (row) {
- this.sidePageTriggerHandle(this, 'ImageRecoverySidePage', {
- id: row.id,
- resource: this.cloudEnv,
- getParams: this.getParams,
- }, {
- list: this.list,
- })
- },
- },
- }
- </script>
|