| // Licensed to the Apache Software Foundation (ASF) under one |
| // or more contributor license agreements. See the NOTICE file |
| // distributed with this work for additional information |
| // regarding copyright ownership. The ASF licenses this file |
| // to you under the Apache License, Version 2.0 (the |
| // "License"); you may not use this file except in compliance |
| // with the License. You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, |
| // software distributed under the License is distributed on an |
| // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| // KIND, either express or implied. See the License for the |
| // specific language governing permissions and limitations |
| // under the License. |
| |
| <template> |
| <div> |
| <div style="margin-bottom: 16px; display: flex; justify-content: right; align-items: center;"> |
| <div v-if="showGpuFilter" style="display: flex; align-items: center; margin-right: 16px;"> |
| <span>{{ $t('label.show.only.gpu.enabled.offerings') }}</span> |
| <a-switch style="margin-left: 8px;" v-model:checked="showGpu" @change="handleSearch(this.filter)" /> |
| </div> |
| <a-input-search |
| style="width: 25vw; margin-right: 16px;" |
| :placeholder="$t('label.search')" |
| v-model:value="filter" |
| @search="handleSearch" /> |
| </div> |
| <a-table |
| :columns="columns" |
| :dataSource="tableSource" |
| :pagination="false" |
| :rowSelection="rowSelection" |
| :customRow="onClickRow" |
| :loading="loading" |
| size="middle" |
| :scroll="{ y: 225 }" |
| > |
| <template #headerCell="{ column }"> |
| <template v-if="column.key === 'cpu'"><appstore-outlined /> {{ $t('label.cpu') }}</template> |
| <template v-if="column.key === 'ram'"><bulb-outlined /> {{ $t('label.memory') }}</template> |
| <template v-if="column.key === 'gpu'"><font-awesome-icon |
| :icon="['fa-solid', 'fa-microchip']" |
| class="anticon" |
| :style="{ |
| color: $store.getters.darkMode ? { color: 'rgba(255, 255, 255, 0.65)' } : { color: '#888' }, |
| fontSize: '20px' |
| }"/> {{ $t('label.gpu') }}</template> |
| </template> |
| <template #displayText="{ record }"> |
| <span>{{ record.name }}</span> |
| <span |
| v-if="record.leaseduration !== undefined" |
| :style="{ |
| 'margin-right': '10px', |
| 'float': 'right'}"> |
| <a-tooltip> |
| <template #title>{{ $t('label.remainingdays') + ": " + getRemainingLeaseText(record.leaseduration) }}</template> |
| <field-time-outlined |
| :style="{ |
| color: $store.getters.darkMode ? { color: 'rgba(255, 255, 255, 0.65)' } : { color: '#888' }, |
| fontSize: '20px' |
| }"/> |
| </a-tooltip> |
| </span> |
| </template> |
| <template #gpuColumn="{ record }"> |
| <span>{{ record.gpu }}</span> |
| <span v-if="record.gpuDetails" style="display: block;"> |
| {{ record.gpuDetails }} |
| </span> |
| </template> |
| </a-table> |
| |
| <div style="display: block; text-align: right;"> |
| <a-pagination |
| size="small" |
| :current="options.page" |
| :pageSize="options.pageSize" |
| :total="rowCount" |
| :showTotal="total => `${$t('label.total')} ${total} ${$t('label.items')}`" |
| :pageSizeOptions="['10', '20', '40', '80', '100', '200']" |
| @change="onChangePage" |
| @showSizeChange="onChangePageSize" |
| showSizeChanger> |
| <template #buildOptionText="props"> |
| <span>{{ props.value }} / {{ $t('label.page') }}</span> |
| </template> |
| </a-pagination> |
| </div> |
| </div> |
| </template> |
| |
| <script> |
| export default { |
| name: 'ComputeOfferingSelection', |
| props: { |
| computeItems: { |
| type: Array, |
| default: () => [] |
| }, |
| selectedTemplate: { |
| type: Object, |
| default: () => {} |
| }, |
| rowCount: { |
| type: Number, |
| default: () => 0 |
| }, |
| value: { |
| type: String, |
| default: '' |
| }, |
| loading: { |
| type: Boolean, |
| default: false |
| }, |
| preFillContent: { |
| type: Object, |
| default: () => {} |
| }, |
| zoneId: { |
| type: String, |
| default: () => '' |
| }, |
| autoscale: { |
| type: Boolean, |
| default: () => false |
| }, |
| minimumCpunumber: { |
| type: Number, |
| default: 0 |
| }, |
| minimumCpuspeed: { |
| type: Number, |
| default: 0 |
| }, |
| minimumMemory: { |
| type: Number, |
| default: 0 |
| }, |
| allowAllOfferings: { |
| type: Boolean, |
| required: false, |
| default: false |
| }, |
| showGpuFilter: { |
| type: Boolean, |
| required: false, |
| default: false |
| } |
| }, |
| data () { |
| return { |
| showGpu: false, |
| filter: '', |
| |
| selectedRowKeys: [], |
| oldZoneId: null, |
| options: { |
| page: 1, |
| pageSize: 10, |
| keyword: null |
| } |
| } |
| }, |
| computed: { |
| columns () { |
| const baseColumns = [ |
| { |
| key: 'name', |
| dataIndex: 'name', |
| title: this.$t('label.serviceofferingid'), |
| width: '40%', |
| slots: { customRender: 'displayText' } |
| }, |
| { |
| key: 'cpu', |
| dataIndex: 'cpu', |
| width: '30%' |
| }, |
| { |
| key: 'ram', |
| dataIndex: 'ram', |
| width: '30%' |
| } |
| ] |
| |
| if (this.computeItems.some(item => item.gpucardname !== undefined && item.gpucardname !== null)) { |
| baseColumns.push({ |
| key: 'gpu', |
| dataIndex: 'gpu', |
| width: '30%', |
| slots: { customRender: 'gpuColumn' } |
| }) |
| } |
| |
| return baseColumns |
| }, |
| tableSource () { |
| return this.computeItems.map((item) => { |
| var maxCpuNumber = item.cpunumber |
| var maxCpuSpeed = item.cpuspeed |
| var maxMemory = item.memory |
| var cpuNumberValue = (item.cpunumber !== null && item.cpunumber !== undefined && item.cpunumber > 0) ? item.cpunumber + '' : '' |
| var cpuSpeedValue = (item.cpuspeed !== null && item.cpuspeed !== undefined && item.cpuspeed > 0) ? parseFloat(item.cpuspeed / 1000.0).toFixed(2) + '' : '' |
| var ramValue = (item.memory !== null && item.memory !== undefined && item.memory > 0) ? item.memory + '' : '' |
| if (item.iscustomized === true) { |
| if ('serviceofferingdetails' in item && |
| 'mincpunumber' in item.serviceofferingdetails && |
| 'maxcpunumber' in item.serviceofferingdetails) { |
| maxCpuNumber = item.serviceofferingdetails.maxcpunumber |
| cpuNumberValue = item.serviceofferingdetails.mincpunumber + '-' + item.serviceofferingdetails.maxcpunumber |
| } |
| if ('serviceofferingdetails' in item && |
| 'minmemory' in item.serviceofferingdetails && |
| 'maxmemory' in item.serviceofferingdetails) { |
| maxMemory = item.serviceofferingdetails.maxmemory |
| ramValue = item.serviceofferingdetails.minmemory + '-' + item.serviceofferingdetails.maxmemory |
| } |
| } |
| var disabled = false |
| if (this.minimumCpunumber > 0 && ((item.iscustomized === false && maxCpuNumber !== this.minimumCpunumber) || |
| (item.iscustomized === true && maxCpuNumber < this.minimumCpunumber))) { |
| disabled = true |
| } |
| if (disabled === false && this.minimumCpuspeed > 0 && maxCpuSpeed && maxCpuSpeed < this.minimumCpuspeed) { |
| disabled = true |
| } |
| if (disabled === false && maxMemory && this.minimumMemory > 0 && |
| ((item.iscustomized === false && ((maxMemory < this.minimumMemory) || this.exactMatch && maxMemory !== this.minimumMemory)) || |
| (item.iscustomized === true && maxMemory < this.minimumMemory))) { |
| disabled = true |
| } |
| if (this.selectedTemplate && this.selectedTemplate.hypervisor === 'VMware' && this.selectedTemplate.deployasis && item.rootdisksize) { |
| disabled = true |
| } |
| if (this.autoscale && item.iscustomized) { |
| disabled = true |
| } |
| if (this.allowAllOfferings) { |
| disabled = false |
| } |
| var gpuEnabledOffering = false |
| var gpuCount = 0 |
| var gpuType = '' |
| var gpuValue = '' |
| if (item.gpucardname !== undefined && item.gpucardname !== null) { |
| gpuEnabledOffering = true |
| gpuCount = item.gpucount |
| gpuType = item.gpucardname |
| if (item.vgpuprofilename && item.vgpuprofilename.toLowerCase() !== 'passthrough') { |
| gpuType = item.gpucardname + ' (' + item.vgpuprofilename + ')' |
| } |
| gpuValue = gpuCount + ' x ' + gpuType |
| } |
| return { |
| key: item.id, |
| name: item.name, |
| cpu: cpuNumberValue.length > 0 ? `${cpuNumberValue} CPU x ${cpuSpeedValue} Ghz` : '', |
| ram: ramValue.length > 0 ? `${ramValue} MB` : '', |
| disabled: disabled, |
| leaseduration: item.leaseduration, |
| gpuEnabledOffering: gpuEnabledOffering, |
| gpuCount: gpuCount, |
| gpuType: gpuType, |
| gpu: gpuValue, |
| gpuDetails: this.getGpuDetails(item) |
| } |
| }) |
| }, |
| rowSelection () { |
| return { |
| type: 'radio', |
| selectedRowKeys: this.selectedRowKeys || [], |
| onChange: this.onSelectRow, |
| getCheckboxProps: (record) => { |
| return { |
| disabled: record.disabled |
| } |
| } |
| } |
| } |
| }, |
| watch: { |
| value (newValue, oldValue) { |
| if (newValue && newValue !== oldValue) { |
| this.selectedRowKeys = [newValue] |
| } else { |
| this.selectedRowKeys = [] |
| } |
| }, |
| loading () { |
| if (!this.loading) { |
| if (!this.preFillContent) { |
| return |
| } |
| if (this.preFillContent.computeofferingid) { |
| this.selectedRowKeys = [this.preFillContent.computeofferingid] |
| this.$emit('select-compute-item', this.preFillContent.computeofferingid) |
| } else { |
| if (this.oldZoneId === this.zoneId) { |
| return |
| } |
| this.oldZoneId = this.zoneId |
| if (this.computeItems && this.computeItems.length > 0) { |
| this.selectedRowKeys = [this.computeItems[0].id] |
| this.$emit('select-compute-item', this.computeItems[0].id) |
| } |
| } |
| } |
| } |
| }, |
| methods: { |
| onSelectRow (value) { |
| this.selectedRowKeys = value |
| this.$emit('select-compute-item', value[0]) |
| }, |
| handleSearch (value) { |
| this.filter = value |
| this.options.page = 1 |
| this.options.pageSize = 10 |
| this.options.keyword = this.filter |
| if (this.showGpu) { |
| this.options.gpuenabled = true |
| } else { |
| this.options.gpuenabled = undefined |
| } |
| this.$emit('handle-search-filter', this.options) |
| }, |
| onChangePage (page, pageSize) { |
| this.options.page = page |
| this.options.pageSize = pageSize |
| this.$emit('handle-search-filter', this.options) |
| }, |
| onChangePageSize (page, pageSize) { |
| this.options.page = page |
| this.options.pageSize = pageSize |
| this.$emit('handle-search-filter', this.options) |
| }, |
| onClickRow (record) { |
| return { |
| onClick: () => { |
| if (record.disabled) { |
| return |
| } |
| this.selectedRowKeys = [record.key] |
| this.$emit('select-compute-item', record.key) |
| } |
| } |
| }, |
| getRemainingLeaseText (leaseDuration) { |
| if (leaseDuration > 0) { |
| return leaseDuration + (leaseDuration === 1 ? ' day' : ' days') |
| } else if (leaseDuration === 0) { |
| return 'expiring today' |
| } else { |
| return 'over' |
| } |
| }, |
| getGpuDetails (item) { |
| let gpuDetails = '' |
| if (item.videoram || (item.maxresolutionx && item.maxresolutiony)) { |
| gpuDetails = '[' + (item.videoram ? (item.videoram + 'MB') : '') + |
| ((item.videoram && item.maxresolutionx && item.maxresolutiony) ? ', ' : '') + |
| (item.maxresolutionx && item.maxresolutiony ? item.maxresolutionx + 'x' + item.maxresolutiony : '') + ']' |
| } |
| return gpuDetails |
| } |
| } |
| } |
| </script> |
| |
| <style lang="less" scoped> |
| .ant-table-wrapper { |
| margin: 2rem 0; |
| } |
| |
| :deep(.ant-table-tbody) > tr > td { |
| cursor: pointer; |
| } |
| </style> |