bfg-common 1.6.49 → 1.6.50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/localization/local_be.json +255 -9
- package/assets/localization/local_en.json +264 -17
- package/assets/localization/local_hy.json +257 -11
- package/assets/localization/local_kk.json +255 -9
- package/assets/localization/local_ru.json +264 -18
- package/assets/localization/local_zh.json +255 -9
- package/assets/scss/common/global.scss +11 -0
- package/assets/scss/common/theme.scss +2 -2
- package/components/atoms/stack/StackBlock.vue +1 -1
- package/components/atoms/tooltip/TooltipError.vue +3 -0
- package/components/common/adapterManager/addAdapterModal/AddAdapterModalNew.vue +1 -1
- package/components/common/adapterManager/addAdapterWarningModal/AddAdapterWarningModalNew.vue +0 -1
- package/components/common/adapterManager/ui/table/adapters/AdaptersNew.vue +1 -0
- package/components/common/certificate/CertificateInfo.vue +7 -1
- package/components/common/configure/physicalAdapters/PhysicalAdapters.vue +6 -0
- package/components/common/configure/physicalAdapters/PhysicalAdaptersNew.vue +219 -192
- package/components/common/configure/physicalAdapters/PhysicalAdaptersOld.vue +6 -4
- package/components/common/configure/physicalAdapters/buttons/Buttons.vue +1 -0
- package/components/common/configure/physicalAdapters/modals/edit/Edit.vue +26 -1
- package/components/common/configure/physicalAdapters/modals/edit/EditNew.vue +30 -1
- package/components/common/configure/physicalAdapters/modals/edit/lib/models/interfaces.ts +5 -0
- package/components/common/configure/physicalAdapters/modals/edit/lib/validations/validations.ts +19 -0
- package/components/common/configure/physicalAdapters/tableView/TableViewNew.vue +12 -1
- package/components/common/configure/physicalAdapters/tableView/lib/config/physicalAdaptersTableConfigNew.ts +21 -21
- package/components/common/configure/physicalAdapters/tableView/lib/config/settings.ts +12 -5
- package/components/common/configure/physicalAdapters/tableView/lib/models/interfaces.ts +4 -1
- package/components/common/diagramMain/Diagram.vue +167 -85
- package/components/common/diagramMain/DiagramMain.vue +34 -10
- package/components/common/diagramMain/header/Header.vue +49 -0
- package/components/common/diagramMain/header/HeaderNew.vue +155 -0
- package/components/common/diagramMain/{Header.vue → header/HeaderOld.vue} +78 -67
- package/components/common/diagramMain/modals/Modals.vue +4 -0
- package/components/common/diagramMain/modals/editSettings/tabs/NetworkProperties.vue +2 -2
- package/components/common/diagramMain/modals/lib/config/diagramConfig.ts +43 -2
- package/components/common/diagramMain/modals/lib/config/index.ts +2 -1
- package/components/common/diagramMain/modals/lib/config/vmKernelAdapter.ts +1 -1
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/MigrateVmkernelAdapter.vue +2 -2
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/common.ts +1 -1
- package/components/common/diagramMain/skeleton/Header.vue +31 -0
- package/components/common/diagramMain/skeleton/Switch.vue +75 -0
- package/components/common/layout/theHeader/ThemeSwitch.vue +1 -1
- package/components/common/layout/theHeader/modals/reconnect/New.vue +38 -30
- package/components/common/layout/theHeader/userMenu/modals/changePassword/New.vue +8 -9
- package/components/common/layout/theHeader/userMenu/modals/preferences/New.vue +4 -0
- package/components/common/layout/theHeader/userMenu/modals/preferences/Old.vue +9 -2
- package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/ChangeLanguage.vue +11 -7
- package/components/common/layout/theHeader/userMenu/modals/preferences/defaultConsole/DefaultConsole.vue +7 -1
- package/components/common/layout/theHeader/userMenu/modals/preferences/defaultConsole/lib/config/consoleOptions.ts +8 -5
- package/components/common/layout/theHeader/userMenu/modals/preferences/timeFormat/TimeFormat.vue +9 -5
- package/components/common/layout/theHeader/userMenu/modals/preferences/timeFormat/lib/config/formatOptions.ts +1 -1
- package/components/common/layout/theHeader/userMenu/modals/preferences/view/Old.vue +5 -9
- package/components/common/layout/theHeader/userMenu/modals/preferences/view/View.vue +9 -6
- package/components/common/mainNavigationPanel/MainNavigationPanelNew.vue +3 -1
- package/components/common/monitor/advanced/tools/Tools.vue +10 -9
- package/components/common/monitor/advanced/tools/chartOptionsModal/ChartOptionsModal.vue +16 -19
- package/components/common/monitor/advanced/tools/lib/config/advancedToolbar.ts +62 -9
- package/components/common/noDataProvided/NoDataProvidedNew.vue +1 -1
- package/components/common/pages/backups/modals/createBackup/datastores/tableView/new/lib/config/table.ts +4 -4
- package/components/common/pages/backups/modals/createBackup/datastores/tableView/old/lib/config/table.ts +4 -4
- package/components/common/pages/hardwareHealth/HardwareHealth.vue +4 -0
- package/components/common/pages/hardwareHealth/HardwareHealthNew.vue +12 -3
- package/components/common/pages/hardwareHealth/HardwareHealthOld.vue +3 -0
- package/components/common/pages/hardwareHealth/historyTestimony/Graph.vue +4 -4
- package/components/common/pages/hardwareHealth/historyTestimony/GraphNew.vue +4 -3
- package/components/common/pages/hardwareHealth/historyTestimony/GraphOld.vue +3 -2
- package/components/common/pages/hardwareHealth/historyTestimony/tools/Tools.vue +32 -8
- package/components/common/pages/hardwareHealth/historyTestimony/tools/ToolsNew.vue +11 -18
- package/components/common/pages/hardwareHealth/historyTestimony/tools/ToolsOld.vue +10 -19
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/ChartOptionsModal.vue +19 -7
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/ActionsNew.vue +1 -1
- package/components/common/pages/hardwareHealth/historyTestimony/tools/lib/config/toolbar.ts +68 -5
- package/components/common/pages/scheduledTasks/table/lib/models/enums.ts +9 -0
- package/components/common/pages/scheduledTasks/table/new/New.vue +12 -10
- package/components/common/pages/tasks/Tasks.vue +4 -1
- package/components/common/pages/tasks/table/Table.vue +25 -23
- package/components/common/readyToComplete/New.vue +1 -0
- package/components/common/split/vertical/New.vue +42 -8
- package/components/common/split/vertical/Old.vue +31 -2
- package/components/common/split/vertical/Vertical.vue +4 -0
- package/components/common/vm/actions/add/New.vue +21 -6
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/media/Media.vue +14 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/media/New.vue +5 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/media/Old.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/New.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/reservation/New.vue +2 -0
- package/components/common/vm/actions/common/select/storage/new/lib/config/table.ts +13 -15
- package/components/common/vm/actions/confirm/Confirm.vue +3 -0
- package/components/common/vm/snapshots/DetailView.vue +6 -6
- package/components/common/wizards/datastore/add/New.vue +6 -0
- package/components/common/wizards/datastore/add/lib/config/steps.ts +1 -1
- package/components/common/wizards/datastore/add/steps/nameAndDevice/NameAndDeviceNew.vue +1 -1
- package/components/common/wizards/datastore/add/steps/nameAndDevice/advancedOptions/New.vue +1 -1
- package/components/common/wizards/network/add/Add.vue +13 -2
- package/components/common/wizards/network/add/AddNew.vue +22 -26
- package/components/common/wizards/network/add/lib/config/initialData.ts +6 -4
- package/components/common/wizards/network/add/lib/config/steps.ts +1 -1
- package/components/common/wizards/network/add/lib/models/interfaces.ts +1 -0
- package/components/common/wizards/network/add/lib/utils/utils.ts +1 -1
- package/components/common/wizards/network/add/steps/connectionSettings/ConnectionSettingsOld.vue +5 -1
- package/components/common/wizards/network/add/steps/ipFourSettings/IpFourSettingsNew.vue +2 -8
- package/components/common/wizards/network/add/steps/ipFourSettings/IpFourSettingsOld.vue +3 -0
- package/components/common/wizards/network/add/steps/portProperties/PortPropertiesNew.vue +2 -8
- package/components/common/wizards/network/add/steps/portProperties/PortPropertiesOld.vue +6 -2
- package/components/common/wizards/network/add/steps/selectTargetDevice/SelectTargetDeviceNew.vue +10 -3
- package/components/common/wizards/network/add/steps/selectTargetDevice/SelectTargetDeviceOld.vue +4 -0
- package/components/common/wizards/network/add/steps/selectTargetDevice/modals/new/SelectNetwork.vue +5 -1
- package/components/common/wizards/network/add/validations/common.ts +1 -1
- package/components/common/wizards/vm/migrate/New.vue +13 -3
- package/components/common/wizards/vm/migrate/lib/config/constructDataReady.ts +5 -0
- package/components/common/wizards/vm/migrate/lib/config/steps.ts +3 -2
- package/components/common/wizards/vm/migrate/steps/computeResource/New.vue +2 -1
- package/components/common/wizards/vm/migrate/steps/computeResource/tableView/new/New.vue +40 -21
- package/components/common/wizards/vm/migrate/steps/computeResource/tableView/new/lib/config/clusterTable.ts +340 -0
- package/components/common/wizards/vm/migrate/steps/computeResource/tableView/new/lib/config/hostTable.ts +44 -14
- package/components/common/wizards/vm/migrate/steps/computeResource/tableView/new/lib/models/enums.ts +4 -0
- package/components/common/wizards/vm/migrate/steps/priority/New.vue +7 -2
- package/components/common/wizards/vm/migrate/steps/selectStorage/New.vue +22 -7
- package/components/common/wizards/vm/migrate/steps/selectStorage/configure/batch/New.vue +6 -0
- package/components/common/wizards/vm/migrate/steps/selectStorage/configure/batch/table/new/New.vue +4 -1
- package/components/common/wizards/vm/migrate/steps/selectStorage/configure/batch/table/new/lib/config/datastoreTable.ts +12 -16
- package/components/common/wizards/vm/migrate/steps/selectStorage/configure/disk/table/new/New.vue +10 -5
- package/components/common/wizards/vm/migrate/steps/selectStorage/configure/disk/table/new/lib/config/diskTable.ts +16 -11
- package/components/common/wizards/vm/migrate/steps/selectStorage/configure/disk/table/old/lib/config/diskTable.ts +7 -1
- package/components/common/wizards/vm/migrate/steps/selectStorage/selectedPerDisk/New.vue +17 -10
- package/components/common/wizards/vm/migrate/steps/type/TypeNew.vue +1 -0
- package/components/common/wizards/vm/migrate/vmOrigin/New.vue +35 -15
- package/lib/models/store/tasks/enums.ts +3 -0
- package/lib/models/store/tasks/types.ts +7 -6
- package/package.json +2 -2
- package/plugins/directives.ts +3 -5
- package/public/spice-console/application/agent.js +18 -17
- package/store/tasks/actions.ts +26 -8
- package/store/tasks/mappers/recentTasks.ts +1 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/SaveOptionsModal.vue +0 -81
package/components/common/wizards/network/add/steps/selectTargetDevice/SelectTargetDeviceNew.vue
CHANGED
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
<template #row="{ item }">
|
|
104
104
|
<div v-if="item.iconName" class="browse-btn">
|
|
105
105
|
<ui-button
|
|
106
|
-
test-id="
|
|
106
|
+
test-id="browse-network"
|
|
107
107
|
type="primary"
|
|
108
108
|
variant="text"
|
|
109
109
|
size="lg"
|
|
@@ -154,7 +154,7 @@
|
|
|
154
154
|
<template #row="{ item }">
|
|
155
155
|
<div v-if="item.iconName" class="browse-btn">
|
|
156
156
|
<ui-button
|
|
157
|
-
test-id="
|
|
157
|
+
test-id="browse-standard-switch"
|
|
158
158
|
type="primary"
|
|
159
159
|
variant="text"
|
|
160
160
|
size="lg"
|
|
@@ -203,7 +203,7 @@
|
|
|
203
203
|
<template #row="{ item }">
|
|
204
204
|
<div v-if="item.iconName" class="browse-btn">
|
|
205
205
|
<ui-button
|
|
206
|
-
test-id="
|
|
206
|
+
test-id="browse-switch"
|
|
207
207
|
type="primary"
|
|
208
208
|
variant="text"
|
|
209
209
|
size="lg"
|
|
@@ -357,10 +357,17 @@ watch(
|
|
|
357
357
|
:deep(.ui-btn) {
|
|
358
358
|
justify-content: flex-start;
|
|
359
359
|
height: 32px;
|
|
360
|
+
overflow: hidden;
|
|
361
|
+
text-overflow: ellipsis;
|
|
362
|
+
white-space: nowrap;
|
|
363
|
+
width: 100%;
|
|
360
364
|
|
|
361
365
|
span {
|
|
362
366
|
text-align: left;
|
|
363
367
|
color: var(--select-text);
|
|
368
|
+
overflow: hidden;
|
|
369
|
+
text-overflow: ellipsis;
|
|
370
|
+
white-space: nowrap;
|
|
364
371
|
}
|
|
365
372
|
|
|
366
373
|
&:hover {
|
package/components/common/wizards/network/add/steps/selectTargetDevice/SelectTargetDeviceOld.vue
CHANGED
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
fieldsLocal.selected === '0' &&
|
|
35
35
|
!!props.messagesFields.network.field
|
|
36
36
|
"
|
|
37
|
+
test-id="existing-network-error"
|
|
37
38
|
>
|
|
38
39
|
<template #elem>
|
|
39
40
|
<fieldset class="fieldset-block">
|
|
@@ -97,6 +98,7 @@
|
|
|
97
98
|
fieldsLocal.selected === '1' &&
|
|
98
99
|
!!props.messagesFields.switch.field
|
|
99
100
|
"
|
|
101
|
+
test-id="existing-standard-switch-error"
|
|
100
102
|
>
|
|
101
103
|
<template #elem>
|
|
102
104
|
<fieldset class="fieldset-block">
|
|
@@ -160,6 +162,7 @@
|
|
|
160
162
|
fieldsLocal.selected === '2' &&
|
|
161
163
|
!!props.messagesFields.switch2.field
|
|
162
164
|
"
|
|
165
|
+
test-id="standard-switch-error"
|
|
163
166
|
>
|
|
164
167
|
<template #elem>
|
|
165
168
|
<fieldset class="fieldset-block">
|
|
@@ -229,6 +232,7 @@
|
|
|
229
232
|
:has-error="
|
|
230
233
|
!!props.messagesFields['new_switch.mtu'].field
|
|
231
234
|
"
|
|
235
|
+
test-id="invalid-mtu-error"
|
|
232
236
|
>
|
|
233
237
|
<template #elem>
|
|
234
238
|
<input
|
package/components/common/wizards/network/add/steps/selectTargetDevice/modals/new/SelectNetwork.vue
CHANGED
|
@@ -46,7 +46,7 @@ import type {
|
|
|
46
46
|
UI_I_DataTable,
|
|
47
47
|
UI_I_DataTableHeader,
|
|
48
48
|
UI_I_DataTableBody,
|
|
49
|
-
UI_I_TableTexts
|
|
49
|
+
UI_I_TableTexts,
|
|
50
50
|
} from '~/node_modules/bfg-uikit/components/ui/dataTable/lib/models/interfaces'
|
|
51
51
|
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
|
52
52
|
import type {
|
|
@@ -147,6 +147,10 @@ const onSelectNetwork = (): void => {
|
|
|
147
147
|
<style scoped lang="scss">
|
|
148
148
|
:deep(.table-container) {
|
|
149
149
|
padding: 8px 32px !important;
|
|
150
|
+
|
|
151
|
+
.column-manager-button span {
|
|
152
|
+
font-weight: 500;
|
|
153
|
+
}
|
|
150
154
|
}
|
|
151
155
|
|
|
152
156
|
.row-container {
|
|
@@ -21,7 +21,7 @@ export const checkVlanId = (
|
|
|
21
21
|
vlanId: string,
|
|
22
22
|
localization: UI_I_Localization
|
|
23
23
|
): boolean =>
|
|
24
|
-
vlanId !== `${localization.common.
|
|
24
|
+
vlanId !== `${localization.common.none2} (0)` &&
|
|
25
25
|
vlanId !== `${localization.common.all} (4095)` &&
|
|
26
26
|
(isIntegerNumberInRange(vlanId, 0, 4095) || vlanId.trim() === '')
|
|
27
27
|
|
|
@@ -187,8 +187,13 @@
|
|
|
187
187
|
>
|
|
188
188
|
<template #subTitle>
|
|
189
189
|
<div ref="subTitleBlock6">
|
|
190
|
-
<div class="subtitle-block">
|
|
190
|
+
<div class="subtitle-block flex-row items-start">
|
|
191
191
|
<ui-wizard-subtitle :sub-title="selectedStep.subTitle" />
|
|
192
|
+
|
|
193
|
+
<common-wizards-vm-migrate-vm-origin
|
|
194
|
+
v-if="props.vmOrigin"
|
|
195
|
+
:vm-origin="props.vmOrigin"
|
|
196
|
+
/>
|
|
192
197
|
</div>
|
|
193
198
|
</div>
|
|
194
199
|
</template>
|
|
@@ -207,8 +212,13 @@
|
|
|
207
212
|
>
|
|
208
213
|
<template #subTitle>
|
|
209
214
|
<div ref="subTitleBlock7">
|
|
210
|
-
<div class="subtitle-block">
|
|
215
|
+
<div class="subtitle-block flex-row items-start">
|
|
211
216
|
<ui-wizard-subtitle :sub-title="selectedStep.subTitle" />
|
|
217
|
+
|
|
218
|
+
<common-wizards-vm-migrate-vm-origin
|
|
219
|
+
v-if="props.vmOrigin"
|
|
220
|
+
:vm-origin="props.vmOrigin"
|
|
221
|
+
/>
|
|
212
222
|
</div>
|
|
213
223
|
</div>
|
|
214
224
|
</template>
|
|
@@ -293,7 +303,7 @@ const texts = computed<UI_I_WizardTexts>(() => ({
|
|
|
293
303
|
back: localization.value.common.backCap,
|
|
294
304
|
processing: localization.value.common.processing,
|
|
295
305
|
next: localization.value.common.next,
|
|
296
|
-
finish: localization.value.common.
|
|
306
|
+
finish: localization.value.common.migrate,
|
|
297
307
|
incompleteTitle: localization.value.common.incompleteProcess,
|
|
298
308
|
incompleteMessage: localization.value.common.incompleteProcessMessage,
|
|
299
309
|
incompleteCancel: localization.value.common.cancel,
|
|
@@ -26,6 +26,7 @@ const migrateOnlyStorageDataView = (
|
|
|
26
26
|
label: localization.common.storage,
|
|
27
27
|
value: storage?.name,
|
|
28
28
|
permissions: ['batch-configure'],
|
|
29
|
+
iconClassName: 'vsphere-icon-datastore',
|
|
29
30
|
},
|
|
30
31
|
{
|
|
31
32
|
label: localization.common.diskFormat,
|
|
@@ -124,6 +125,7 @@ const storageDetailsFunc = (
|
|
|
124
125
|
label: localization.common.virtualMachine,
|
|
125
126
|
value: name,
|
|
126
127
|
permissions: ['batch-configure', 'configure-disk'],
|
|
128
|
+
iconClassName: 'vsphere-icon-vm',
|
|
127
129
|
},
|
|
128
130
|
]
|
|
129
131
|
|
|
@@ -148,6 +150,7 @@ const storageDetailsFunc = (
|
|
|
148
150
|
label: localization.common[key],
|
|
149
151
|
value: value.name,
|
|
150
152
|
permissions: [],
|
|
153
|
+
iconClassName: `vsphere-icon-${key}`,
|
|
151
154
|
})
|
|
152
155
|
}
|
|
153
156
|
})
|
|
@@ -165,6 +168,7 @@ const storageDetailsFunc = (
|
|
|
165
168
|
label: localization.common.host,
|
|
166
169
|
value: '', //selectedComputeResource.selectedNode.name,
|
|
167
170
|
permissions: [],
|
|
171
|
+
iconClassName: 'vsphere-icon-host',
|
|
168
172
|
},
|
|
169
173
|
{
|
|
170
174
|
label: localization.migrateVm.migrationStrategy,
|
|
@@ -176,6 +180,7 @@ const storageDetailsFunc = (
|
|
|
176
180
|
label: localization.common.networks,
|
|
177
181
|
value: setSelectNetworkDataView(localization, form),
|
|
178
182
|
permissions: [],
|
|
183
|
+
iconClassName: 'vsphere-icon-network',
|
|
179
184
|
},
|
|
180
185
|
]
|
|
181
186
|
const storageResult = migrateOnlyStorageDataView(localization, form, name)
|
|
@@ -30,7 +30,8 @@ export const stepsFunc = (
|
|
|
30
30
|
{
|
|
31
31
|
id: dynamicSteps.selectMigrationType,
|
|
32
32
|
title: localization.common.selectMigrationType,
|
|
33
|
-
subTitle:
|
|
33
|
+
subTitle:
|
|
34
|
+
localization.migrateVm.changeComputeResourceStorageVirtualMachine,
|
|
34
35
|
status: UI_E_WIZARD_STATUS[!isScheduledTasks ? 'SELECTED' : 'INACTIVE'],
|
|
35
36
|
fields: {},
|
|
36
37
|
isValid: true,
|
|
@@ -99,7 +100,7 @@ export const stepsFunc = (
|
|
|
99
100
|
{
|
|
100
101
|
id: dynamicSteps.readyComplete,
|
|
101
102
|
title: localization.common.readyComplete,
|
|
102
|
-
subTitle:
|
|
103
|
+
subTitle: localization.migrateVm.reviewDetailsBeforeVmMigrated,
|
|
103
104
|
status: UI_E_WIZARD_STATUS.INACTIVE,
|
|
104
105
|
fields: {},
|
|
105
106
|
isValid: true,
|
|
@@ -88,8 +88,9 @@ const onTabChange = (name: keyof UI_I_SelectedTableDataKeys): void => {
|
|
|
88
88
|
@import 'assets/scss/common/mixins';
|
|
89
89
|
.compute-resource {
|
|
90
90
|
@include flex($dir: column);
|
|
91
|
-
top: 16px;
|
|
92
91
|
height: inherit;
|
|
92
|
+
margin-top: 16px;
|
|
93
|
+
margin-bottom: 16px;
|
|
93
94
|
.tree-view-wrap {
|
|
94
95
|
max-height: 250px;
|
|
95
96
|
min-height: 200px;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div class="device-table-container">
|
|
3
3
|
<ui-data-table
|
|
4
4
|
:data="data"
|
|
5
|
-
:options="options"
|
|
5
|
+
:options="tableConfig.options"
|
|
6
6
|
:loading="props.isLoading"
|
|
7
7
|
:total-pages="props.totalPages"
|
|
8
8
|
:total-items="props.totalItems"
|
|
@@ -52,8 +52,8 @@
|
|
|
52
52
|
>
|
|
53
53
|
<ui-icon
|
|
54
54
|
:name="item.data.icon"
|
|
55
|
-
width="
|
|
56
|
-
height="
|
|
55
|
+
width="12px"
|
|
56
|
+
height="12px"
|
|
57
57
|
class="chip-icon"
|
|
58
58
|
></ui-icon>
|
|
59
59
|
{{ item.text }}
|
|
@@ -79,13 +79,10 @@ import type {
|
|
|
79
79
|
UI_I_TableTexts,
|
|
80
80
|
} from '~/node_modules/bfg-uikit/components/ui/dataTable/models/interfaces'
|
|
81
81
|
import type { UI_I_DataTableSkeleton } from '~/node_modules/bfg-uikit/components/ui/dataTable/models/interfaces'
|
|
82
|
-
import type { UI_T_SelectComputeResourceTabType } from '~/components/common/wizards/vm/migrate/
|
|
82
|
+
import type { UI_T_SelectComputeResourceTabType } from '~/components/common/wizards/vm/migrate/steps/selectStorage/lib/models/types'
|
|
83
83
|
import type { UI_T_ComputeResourceTableItem } from '~/components/common/wizards/vm/migrate/steps/computeResource/lib/models/types'
|
|
84
|
-
import
|
|
85
|
-
|
|
86
|
-
getHeaderDataFunc,
|
|
87
|
-
getBodyDataFunc,
|
|
88
|
-
} from '~/components/common/wizards/vm/migrate/steps/computeResource/tableView/new/lib/config/hostTable'
|
|
84
|
+
import * as hostTable from '~/components/common/wizards/vm/migrate/steps/computeResource/tableView/new/lib/config/hostTable'
|
|
85
|
+
import * as clusterTable from '~/components/common/wizards/vm/migrate/steps/computeResource/tableView/new/lib/config/clusterTable'
|
|
89
86
|
|
|
90
87
|
const selectedDataLocal = defineModel<number | null>({ required: true })
|
|
91
88
|
const props = defineProps<{
|
|
@@ -120,15 +117,33 @@ const tableSkeleton = ref<UI_I_DataTableSkeleton>({
|
|
|
120
117
|
withoutPagination: true,
|
|
121
118
|
})
|
|
122
119
|
|
|
120
|
+
const tableTitleMap = {
|
|
121
|
+
host: localization.value.common.hosts,
|
|
122
|
+
cluster: localization.value.common.clusters,
|
|
123
|
+
} as const
|
|
124
|
+
const tableConfigMap = {
|
|
125
|
+
host: hostTable,
|
|
126
|
+
cluster: clusterTable,
|
|
127
|
+
} as const
|
|
128
|
+
|
|
129
|
+
const tableConfig = computed(
|
|
130
|
+
() => tableConfigMap[props.type as keyof typeof tableConfigMap]
|
|
131
|
+
)
|
|
132
|
+
|
|
123
133
|
const data = computed<UI_I_DataTable>(() => ({
|
|
124
|
-
id:
|
|
125
|
-
title:
|
|
134
|
+
id: `compute-resource-${props.type}-table`,
|
|
135
|
+
title: tableDataTitle.value,
|
|
126
136
|
header: deviceHeadItems.value,
|
|
127
137
|
body: deviceBodyItems.value,
|
|
128
138
|
}))
|
|
129
|
-
|
|
139
|
+
const tableDataTitle = computed<string>(
|
|
140
|
+
() =>
|
|
141
|
+
`${tableTitleMap[props.type as keyof typeof tableConfigMap]} (${
|
|
142
|
+
props.totalItems
|
|
143
|
+
})`
|
|
144
|
+
)
|
|
130
145
|
const deviceHeadItems = computed<UI_I_DataTableHeader[]>(() =>
|
|
131
|
-
getHeaderDataFunc(localization.value)
|
|
146
|
+
tableConfig.value.getHeaderDataFunc(localization.value)
|
|
132
147
|
)
|
|
133
148
|
|
|
134
149
|
const deviceBodyItems = ref<UI_I_DataTableBody[]>([])
|
|
@@ -140,19 +155,22 @@ watch(
|
|
|
140
155
|
return
|
|
141
156
|
}
|
|
142
157
|
|
|
143
|
-
deviceBodyItems.value = getBodyDataFunc(
|
|
158
|
+
deviceBodyItems.value = tableConfig.value.getBodyDataFunc(
|
|
159
|
+
newValue,
|
|
160
|
+
localization.value
|
|
161
|
+
)
|
|
144
162
|
},
|
|
145
163
|
{ deep: true, immediate: true }
|
|
146
164
|
)
|
|
147
165
|
|
|
148
166
|
const onSelectRow = (value: UI_I_DataTableBody[]): void => {
|
|
149
|
-
selectedDataLocal.value = value?.[0].row
|
|
167
|
+
selectedDataLocal.value = value?.[0].row as number
|
|
150
168
|
}
|
|
151
169
|
</script>
|
|
152
170
|
|
|
153
171
|
<style lang="scss" scoped>
|
|
154
172
|
.device-table-container {
|
|
155
|
-
margin:
|
|
173
|
+
margin: 16px 0 24px;
|
|
156
174
|
:deep(.column-manager-button.sm span) {
|
|
157
175
|
font-weight: 500;
|
|
158
176
|
}
|
|
@@ -169,15 +187,15 @@ const onSelectRow = (value: UI_I_DataTableBody[]): void => {
|
|
|
169
187
|
}
|
|
170
188
|
.progress {
|
|
171
189
|
&-line {
|
|
172
|
-
height:
|
|
190
|
+
height: 10px;
|
|
173
191
|
width: 100%;
|
|
174
|
-
background:
|
|
192
|
+
background: var(--progress-bar-bg);
|
|
175
193
|
border-radius: 6px;
|
|
176
194
|
|
|
177
195
|
&-fill {
|
|
178
|
-
height:
|
|
179
|
-
min-width:
|
|
180
|
-
background:
|
|
196
|
+
height: 10px;
|
|
197
|
+
min-width: 10px;
|
|
198
|
+
background: var(--progress-bar);
|
|
181
199
|
border-radius: 6px;
|
|
182
200
|
}
|
|
183
201
|
}
|
|
@@ -185,6 +203,7 @@ const onSelectRow = (value: UI_I_DataTableBody[]): void => {
|
|
|
185
203
|
&-text {
|
|
186
204
|
width: 53px;
|
|
187
205
|
min-width: 53px;
|
|
206
|
+
font-size: 12px;
|
|
188
207
|
margin-left: 8px;
|
|
189
208
|
text-align: right;
|
|
190
209
|
|
|
@@ -0,0 +1,340 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
UI_I_DataTableBody,
|
|
3
|
+
UI_I_DataTableOptions,
|
|
4
|
+
UI_I_DataTableHeader,
|
|
5
|
+
} from '~/node_modules/bfg-uikit/components/ui/dataTable/models/interfaces'
|
|
6
|
+
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
|
7
|
+
import type { UI_I_ClusterTableItem } from '~/components/common/wizards/vm/migrate/steps/computeResource/tableView/lib/models/interfaces'
|
|
8
|
+
// import {
|
|
9
|
+
// UI_E_DeviceStatus,
|
|
10
|
+
// UI_E_DeviceStatusChipColor,
|
|
11
|
+
// UI_E_DeviceStatusIcon,
|
|
12
|
+
// } from '~/components/common/wizards/vm/migrate/steps/computeResource/tableView/new/lib/models/enums'
|
|
13
|
+
|
|
14
|
+
// // Маппинг для статусов
|
|
15
|
+
// const STATUS_MAPPING = {
|
|
16
|
+
// [UI_E_DeviceStatus.Unknown]: {
|
|
17
|
+
// icon: UI_E_DeviceStatusIcon.HelpIcon,
|
|
18
|
+
// chipColor: UI_E_DeviceStatusChipColor.Primary,
|
|
19
|
+
// },
|
|
20
|
+
// [UI_E_DeviceStatus.Supported]: {
|
|
21
|
+
// icon: UI_E_DeviceStatusIcon.StatusCheck,
|
|
22
|
+
// chipColor: UI_E_DeviceStatusChipColor.Green,
|
|
23
|
+
// },
|
|
24
|
+
// [UI_E_DeviceStatus.NotSupported]: {
|
|
25
|
+
// icon: UI_E_DeviceStatusIcon.Close,
|
|
26
|
+
// chipColor: UI_E_DeviceStatusChipColor.Red,
|
|
27
|
+
// },
|
|
28
|
+
// }
|
|
29
|
+
|
|
30
|
+
export const getHeaderDataFunc = (
|
|
31
|
+
localization: UI_I_Localization
|
|
32
|
+
): UI_I_DataTableHeader[] => [
|
|
33
|
+
{
|
|
34
|
+
col: 'col0',
|
|
35
|
+
colName: 'name',
|
|
36
|
+
text: localization.common.name,
|
|
37
|
+
isSortable: true,
|
|
38
|
+
sort: 'asc',
|
|
39
|
+
width: '180px',
|
|
40
|
+
show: true,
|
|
41
|
+
filter: false,
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
col: 'col1',
|
|
45
|
+
colName: 'available_cpu',
|
|
46
|
+
text: localization.common.availableCpu,
|
|
47
|
+
isSortable: true,
|
|
48
|
+
sort: 'asc',
|
|
49
|
+
width: '96px',
|
|
50
|
+
show: true,
|
|
51
|
+
filter: false,
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
col: 'col2',
|
|
55
|
+
colName: 'available_memory',
|
|
56
|
+
text: localization.common.availableMemory,
|
|
57
|
+
isSortable: true,
|
|
58
|
+
sort: 'asc',
|
|
59
|
+
width: '96px',
|
|
60
|
+
show: true,
|
|
61
|
+
filter: false,
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
col: 'col3',
|
|
65
|
+
colName: 'available_storage',
|
|
66
|
+
text: localization.common.availableStorage,
|
|
67
|
+
isSortable: true,
|
|
68
|
+
sort: 'asc',
|
|
69
|
+
width: '96px',
|
|
70
|
+
show: true,
|
|
71
|
+
filter: false,
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
col: 'col4',
|
|
75
|
+
colName: 'drs',
|
|
76
|
+
text: localization.common.vSphere_DRS,
|
|
77
|
+
isSortable: true,
|
|
78
|
+
sort: 'asc',
|
|
79
|
+
width: '96px',
|
|
80
|
+
show: true,
|
|
81
|
+
filter: false,
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
col: 'col5',
|
|
85
|
+
colName: 'ha',
|
|
86
|
+
text: localization.common.vSphere_HA,
|
|
87
|
+
isSortable: true,
|
|
88
|
+
sort: 'asc',
|
|
89
|
+
width: '96px',
|
|
90
|
+
show: true,
|
|
91
|
+
filter: false,
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
col: 'col6',
|
|
95
|
+
colName: 'total_cpu',
|
|
96
|
+
text: localization.common.totalCpu,
|
|
97
|
+
isSortable: true,
|
|
98
|
+
sort: 'asc',
|
|
99
|
+
width: '96px',
|
|
100
|
+
show: true,
|
|
101
|
+
filter: false,
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
col: 'col7',
|
|
105
|
+
colName: 'total_memory',
|
|
106
|
+
text: localization.common.totalMemory,
|
|
107
|
+
isSortable: true,
|
|
108
|
+
sort: 'asc',
|
|
109
|
+
width: '96px',
|
|
110
|
+
show: true,
|
|
111
|
+
filter: false,
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
col: 'col8',
|
|
115
|
+
colName: 'total_storage',
|
|
116
|
+
text: localization.common.totalStorage,
|
|
117
|
+
isSortable: true,
|
|
118
|
+
sort: 'asc',
|
|
119
|
+
width: '96px',
|
|
120
|
+
show: true,
|
|
121
|
+
filter: false,
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
col: 'col9',
|
|
125
|
+
colName: 'vms',
|
|
126
|
+
text: localization.common.vms,
|
|
127
|
+
isSortable: true,
|
|
128
|
+
sort: 'asc',
|
|
129
|
+
width: '96px',
|
|
130
|
+
show: true,
|
|
131
|
+
filter: false,
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
col: 'col10',
|
|
135
|
+
colName: 'hosts',
|
|
136
|
+
text: localization.common.hosts,
|
|
137
|
+
isSortable: true,
|
|
138
|
+
sort: 'asc',
|
|
139
|
+
width: '96px',
|
|
140
|
+
show: true,
|
|
141
|
+
filter: false,
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
col: 'col11',
|
|
145
|
+
colName: 'cpus',
|
|
146
|
+
text: localization.common.cpus,
|
|
147
|
+
isSortable: true,
|
|
148
|
+
sort: 'asc',
|
|
149
|
+
width: '96px',
|
|
150
|
+
show: true,
|
|
151
|
+
filter: false,
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
col: 'col12',
|
|
155
|
+
colName: 'datastores',
|
|
156
|
+
text: localization.common.datastores,
|
|
157
|
+
isSortable: true,
|
|
158
|
+
sort: 'asc',
|
|
159
|
+
width: '96px',
|
|
160
|
+
show: true,
|
|
161
|
+
filter: false,
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
col: 'col13',
|
|
165
|
+
colName: 'vsan',
|
|
166
|
+
text: localization.common.vSAN,
|
|
167
|
+
isSortable: true,
|
|
168
|
+
sort: 'asc',
|
|
169
|
+
width: '96px',
|
|
170
|
+
show: true,
|
|
171
|
+
filter: false,
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
col: 'col14',
|
|
175
|
+
colName: 'vc',
|
|
176
|
+
text: localization.common.vc,
|
|
177
|
+
isSortable: true,
|
|
178
|
+
sort: 'asc',
|
|
179
|
+
width: '96px',
|
|
180
|
+
show: true,
|
|
181
|
+
filter: false,
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
col: 'col15',
|
|
185
|
+
colName: 'evc_cpu_mode',
|
|
186
|
+
text: localization.common.evcCpuMode,
|
|
187
|
+
isSortable: true,
|
|
188
|
+
sort: 'asc',
|
|
189
|
+
width: '96px',
|
|
190
|
+
show: true,
|
|
191
|
+
filter: false,
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
col: 'col16',
|
|
195
|
+
colName: 'evc_graphics_mode',
|
|
196
|
+
text: localization.common.evcGraphicsMode,
|
|
197
|
+
isSortable: true,
|
|
198
|
+
sort: 'asc',
|
|
199
|
+
width: '96px',
|
|
200
|
+
show: true,
|
|
201
|
+
filter: false,
|
|
202
|
+
},
|
|
203
|
+
]
|
|
204
|
+
export const options: UI_I_DataTableOptions = {
|
|
205
|
+
perPageOptions: [{ text: '10', value: 100, default: true }],
|
|
206
|
+
isSelectable: true,
|
|
207
|
+
selectType: 'radio',
|
|
208
|
+
showPagination: false,
|
|
209
|
+
showPageInfo: false,
|
|
210
|
+
isSortable: true,
|
|
211
|
+
server: true,
|
|
212
|
+
isResizable: true,
|
|
213
|
+
showSelectedRows: false,
|
|
214
|
+
showColumnManager: true,
|
|
215
|
+
inModal: true,
|
|
216
|
+
inBlock: false,
|
|
217
|
+
// isFocusable: false,
|
|
218
|
+
// showPaginationOnTop: false,
|
|
219
|
+
// showSearch: false,
|
|
220
|
+
// withActions: false,
|
|
221
|
+
// showExport: false,
|
|
222
|
+
// withCollapse: false,
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
export const getBodyDataFunc = (
|
|
226
|
+
bodyData: UI_I_ClusterTableItem[],
|
|
227
|
+
_localization: UI_I_Localization
|
|
228
|
+
): UI_I_DataTableBody[] => {
|
|
229
|
+
const { $binary }: any = useNuxtApp()
|
|
230
|
+
|
|
231
|
+
return bodyData.map((cluster, index: number) => {
|
|
232
|
+
// const statusKey = host.state
|
|
233
|
+
// ? UI_E_DeviceStatus.Unknown
|
|
234
|
+
// : UI_E_DeviceStatus.Supported
|
|
235
|
+
// const statusData = {
|
|
236
|
+
// ...STATUS_MAPPING[statusKey],
|
|
237
|
+
// testId: `${host.name}-${index}-status`,
|
|
238
|
+
// }
|
|
239
|
+
|
|
240
|
+
return {
|
|
241
|
+
row: index,
|
|
242
|
+
collapse: false,
|
|
243
|
+
isHiddenCollapse: false,
|
|
244
|
+
collapseToggle: false,
|
|
245
|
+
|
|
246
|
+
data: [
|
|
247
|
+
{
|
|
248
|
+
key: 'icon',
|
|
249
|
+
col: 'col0',
|
|
250
|
+
text: cluster.name,
|
|
251
|
+
data: {
|
|
252
|
+
iconClassName: 'vsphere-icon-cluster',
|
|
253
|
+
},
|
|
254
|
+
testId: `migrate-cluster-table-item-${index}`,
|
|
255
|
+
},
|
|
256
|
+
|
|
257
|
+
{
|
|
258
|
+
col: 'col1',
|
|
259
|
+
text: $binary.roundHz(cluster.available_cpu),
|
|
260
|
+
testId: `migrate-cluster-table-item-${index}`,
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
col: 'col2',
|
|
264
|
+
text: $binary.round(cluster.available_memory),
|
|
265
|
+
testId: `migrate-cluster-table-item-${index}`,
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
col: 'col3',
|
|
269
|
+
text: $binary.round(cluster.available_storage),
|
|
270
|
+
testId: `migrate-cluster-table-item-${index}`,
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
col: 'col4',
|
|
274
|
+
text: cluster.drs,
|
|
275
|
+
testId: `migrate-cluster-table-item-${index}`,
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
col: 'col5',
|
|
279
|
+
text: cluster.ha,
|
|
280
|
+
testId: `migrate-cluster-table-item-${index}`,
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
col: 'col6',
|
|
284
|
+
text: $binary.roundHz(cluster.total_cpu),
|
|
285
|
+
testId: `migrate-cluster-table-item-${index}`,
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
col: 'col7',
|
|
289
|
+
text: $binary.round(cluster.total_memory),
|
|
290
|
+
testId: `migrate-cluster-table-item-${index}`,
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
col: 'col8',
|
|
294
|
+
text: $binary.round(cluster.total_storage),
|
|
295
|
+
testId: `migrate-cluster-table-item-${index}`,
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
col: 'col9',
|
|
299
|
+
text: cluster.vms,
|
|
300
|
+
testId: `migrate-cluster-table-item-${index}`,
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
col: 'col10',
|
|
304
|
+
text: cluster.hosts,
|
|
305
|
+
testId: `migrate-cluster-table-item-${index}`,
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
col: 'col11',
|
|
309
|
+
text: cluster.cpus,
|
|
310
|
+
testId: `migrate-cluster-table-item-${index}`,
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
col: 'col12',
|
|
314
|
+
text: cluster.datastores,
|
|
315
|
+
testId: `migrate-cluster-table-item-${index}`,
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
col: 'col13',
|
|
319
|
+
text: cluster.vsan,
|
|
320
|
+
testId: `migrate-cluster-table-item-${index}`,
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
col: 'col14',
|
|
324
|
+
text: cluster.vc,
|
|
325
|
+
testId: `migrate-cluster-table-item-${index}`,
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
col: 'col15',
|
|
329
|
+
text: cluster.evc_cpu_mode,
|
|
330
|
+
testId: `migrate-cluster-table-item-${index}`,
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
col: 'col16',
|
|
334
|
+
text: cluster.evc_graphics_mode,
|
|
335
|
+
testId: `migrate-cluster-table-item-${index}`,
|
|
336
|
+
},
|
|
337
|
+
],
|
|
338
|
+
}
|
|
339
|
+
})
|
|
340
|
+
}
|