| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359 |
- <template>
- <page-list
- :list="list"
- :columns="templateListColumns || columns"
- :showSearchbox="showSearchbox"
- :showGroupActions="showGroupActions"
- :show-single-actions="!isTemplate"
- :show-page="!isTemplate"
- :group-actions="getFinalGroupActions(groupActions)"
- :single-actions="getFinalSingleActions(singleActions)"
- :export-data-options="exportDataOptions" />
- </template>
- <script>
- import * as R from 'ramda'
- import { GPU_DEV_TYPE_OPTION_MAP } from '@Compute/constants'
- import { getNameFilter, getRegionFilter, getDescriptionFilter } from '@/utils/common/tableFilter'
- import expectStatus from '@/constants/expectStatus'
- import WindowsMixin from '@/mixins/windows'
- import ListMixin from '@/mixins/list'
- import GlobalSearchMixin from '@/mixins/globalSearch'
- import ResTemplateListMixin from '@/mixins/resTemplateList'
- import SingleActionsMixin from '../mixins/singleActions'
- import ColumnsMixin from '../mixins/columns'
- export default {
- name: 'GpuList',
- mixins: [WindowsMixin, ListMixin, GlobalSearchMixin, ColumnsMixin, SingleActionsMixin, ResTemplateListMixin],
- props: {
- id: String,
- getParams: {
- type: [Function, Object],
- },
- resId: String,
- probeHostDevices: Boolean,
- hiddenActionKeys: Array,
- },
- data () {
- const filter = {}
- if (!this.inBaseSidePage) {
- if (this.$route.query.id) {
- filter.id = [this.$route.query.id]
- }
- if (this.$route.query.hasOwnProperty('is_associated')) {
- filter.is_associated = [this.$route.query.is_associated]
- }
- }
- return {
- list: this.$list.createList(this, {
- ctx: this,
- id: this.id,
- resource: 'isolated_devices',
- getParams: this.getParam,
- filter,
- isTemplate: this.isTemplate,
- templateLimit: this.templateLimit,
- filterOptions: {
- id: {
- label: this.$t('table.title.id'),
- },
- name: getNameFilter(),
- description: getDescriptionFilter(),
- dev_type: {
- label: this.$t('compute.text_481'),
- dropdown: true,
- multiple: true,
- distinctField: {
- type: 'field',
- key: 'dev_type',
- },
- },
- model: {
- label: this.$t('compute.text_482'),
- dropdown: true,
- multiple: true,
- distinctField: {
- type: 'field',
- key: 'model',
- },
- },
- vendor_device_id: {
- label: 'PCI ID',
- dropdown: true,
- multiple: true,
- distinctField: {
- type: 'field',
- key: 'vendor_device_id',
- },
- },
- addr: {
- label: 'PCI ADDR',
- dropdown: true,
- multiple: true,
- distinctField: {
- type: 'field',
- key: 'addr',
- },
- },
- device_path: {
- label: this.$t('compute.isolated_devices.device_path.title'),
- dropdown: true,
- multiple: true,
- distinctField: {
- type: 'field',
- key: 'device_path',
- },
- },
- numa_node: {
- label: 'NUMA',
- dropdown: true,
- multiple: true,
- distinctField: {
- type: 'field',
- key: 'numa_node',
- },
- },
- guest: {
- label: this.$t('compute.text_483', [this.$t('dictionary.server')]),
- filter: true,
- jointFilter: true,
- formatter: val => {
- return `servers.id(guest_id).name.contains("${val}")`
- },
- },
- is_associated: {
- label: this.$t('network.is_associated'),
- dropdown: true,
- items: [
- { label: this.$t('network.associated'), key: 'true' },
- { label: this.$t('network.un_associated'), key: 'false' },
- ],
- filter: true,
- formatter: (val) => {
- return val[0] === 'true' ? 'guest_id.isnotempty()' : 'guest_id.isnullorempty()'
- },
- },
- host: {
- label: this.$t('compute.text_484'),
- filter: true,
- jointFilter: true,
- formatter: val => {
- return `hosts.id(host_id).name.contains("${val}")`
- },
- },
- region: getRegionFilter(),
- zone: {
- label: this.$t('dictionary.zone'),
- },
- },
- steadyStatus: {
- guest_status: [...Object.values(expectStatus.server).flat(), '', undefined],
- },
- }),
- groupActions: [
- {
- label: this.$t('compute.text_485', [this.$t('dictionary.server')]),
- permission: 'server_perform_detach_isolated_device',
- action: () => {
- this.createDialog('DetachGpuDialog', {
- data: this.list.selectedItems,
- columns: this.columns,
- title: this.$t('compute.text_485', [this.$t('dictionary.server')]),
- name: this.$t('compute.text_113'),
- refresh: this.refresh,
- devices: this.list.selectedItems,
- })
- },
- meta: () => {
- const item = this.list.selectedItems
- if (item.length <= 0) {
- return {
- validate: false,
- tooltip: this.$t('compute.text_486'),
- }
- }
- const validateGuestStatus = item.every(item => item.guest_id && (item.guest_status === 'ready' || item.guest_status === 'running'))
- const validateGuestId = item.every(item => item.guest_id)
- const someNicDevice = item.some(v => v.dev_type === 'NIC')
- if (someNicDevice) {
- return {
- validate: !someNicDevice,
- tooltip: this.$t('compute.sriov_device_nic_notsupport'),
- }
- }
- if (!validateGuestId) {
- return {
- validate: false,
- tooltip: this.$t('compute.text_487', [this.$t('dictionary.server')]),
- }
- }
- if (!validateGuestStatus) {
- return {
- validate: false,
- tooltip: this.$t('compute.text_489', [this.$t('dictionary.server')]),
- }
- }
- return {
- validate: true,
- }
- },
- },
- {
- key: 'SetReserveResource',
- label: this.$t('compute.text_490'),
- permission: 'isolated_devices_update',
- action: () => {
- this.createDialog('SetReserveResourceDialog', {
- onManager: this.onManager,
- data: this.list.selectedItems,
- columns: this.columns,
- refresh: this.refresh,
- })
- },
- meta: () => {
- const item = this.list.selectedItems
- if (item.length <= 0) {
- return {
- validate: false,
- tooltip: this.$t('compute.text_491'),
- }
- }
- let otherType = ''
- item.map(obj => {
- if (obj.dev_type && obj.dev_type.indexOf('GPU') === -1) {
- otherType = obj.dev_type
- }
- })
- if (otherType) {
- return {
- validate: false,
- tooltip: this.$t('compute.text_1398', [otherType]),
- }
- }
- return {
- validate: true,
- }
- },
- },
- {
- label: this.$t('gpu.device_type.update'),
- action: obj => {
- this.createDialog('UpdateDeviceTypeDialog', {
- data: this.list.selectedItems,
- columns: this.columns,
- refresh: this.refresh,
- })
- },
- meta: obj => {
- const ret = { validate: true }
- const isSelected = this.list.selectedItems?.length > 0
- if (!isSelected) {
- ret.validate = false
- ret.tooltip = this.$t('gpu.device_type.update.tooltip')
- return ret
- }
- const isAllGPU = this.list.selectedItems.every(o => o.dev_type.indexOf('GPU') !== -1)
- if (!isAllGPU) {
- ret.validate = false
- ret.tooltip = this.$t('gpu.device_type.gpu.tooltip')
- return ret
- }
- const isGpuHpcOrVga = this.list.selectedItems.every(o => {
- return o.dev_type === GPU_DEV_TYPE_OPTION_MAP['GPU-HPC'].value || o.dev_type === GPU_DEV_TYPE_OPTION_MAP['GPU-VGA'].value
- })
- if (!isGpuHpcOrVga) {
- ret.validate = false
- ret.tooltip = this.$t('gpu.device_type.tooltip.check_hpc_vga_gpu')
- return ret
- }
- return ret
- },
- },
- {
- label: this.$t('compute.host_probe_isolated_devices'),
- permission: 'hosts_perform_probe_isolated_devices',
- action: () => {
- this.updateHostProbeIsolatedDevices()
- },
- hidden: () => !this.probeHostDevices,
- },
- ],
- }
- },
- computed: {
- exportDataOptions () {
- return {
- downloadType: 'local',
- items: this.columns,
- title: this.$t('compute.text_113'),
- }
- },
- },
- created () {
- this.$bus.$on('gpu-sidepage-refresh', () => {
- this.list.refresh()
- })
- this.init()
- this.list.fetchData().then(() => {
- this.$nextTick(() => {
- if (this.$route.query.id && this.list.data[this.$route.query.id]) {
- this.handleOpenSidepage(this.list.data[this.$route.query.id].data)
- }
- })
- })
- },
- methods: {
- getParam () {
- const ret = {
- show_baremetal_isolated_devices: false,
- ...(R.is(Function, this.getParams) ? this.getParams() : this.getParams),
- with_meta: true,
- details: true,
- }
- return ret
- },
- handleOpenSidepage (row, tab) {
- this.initSidePageTab(tab)
- this.sidePageTriggerHandle(this, 'GpuSidePage', {
- id: row.id,
- resource: 'isolated_devices',
- getParams: this.getParam,
- currentTab: 'servers-list',
- }, {
- list: this.list,
- })
- },
- async init () {
- this.list.fetchData()
- },
- async updateHostProbeIsolatedDevices () {
- const loading = this.$message.loading(this.$t('compute.host_probe_isolated_devices'), 0)
- try {
- new this.$Manager('hosts', 'v1').performAction({
- id: this.resId,
- action: 'probe-isolated-devices',
- }).then(res => {
- this.list.refresh()
- loading()
- })
- } catch (err) {
- loading()
- throw err
- }
- },
- getFinalGroupActions () {
- if (this.hiddenActionKeys?.length > 0) {
- return this.groupActions.filter(o => !this.hiddenActionKeys.includes(o.key))
- }
- return this.groupActions
- },
- getFinalSingleActions () {
- if (this.hiddenActionKeys?.length > 0) {
- return this.singleActions.filter(o => !this.hiddenActionKeys.includes(o.key))
- }
- return this.singleActions
- },
- },
- }
- </script>
|