bfg-common 1.5.431 → 1.5.433
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/CODE_STYLE.md +109 -109
- package/assets/img/icons/icons-sprite-dark-3.svg +227 -227
- package/assets/img/icons/icons-sprite-dark-5.svg +488 -488
- package/assets/img/icons/icons-sprite-light-3.svg +227 -227
- package/assets/img/icons/icons-sprite-light-5.svg +488 -488
- package/components/atoms/TheIcon3.vue +50 -50
- package/components/atoms/collapse/CollapseNav.vue +170 -170
- package/components/atoms/perPage/PerPage.vue +58 -58
- package/components/atoms/table/dataGrid/lib/config/settingsTable.ts +94 -94
- package/components/atoms/table/dataGrid/lib/utils/export.ts +16 -16
- package/components/atoms/wizard/Wizard.vue +2 -2
- package/components/atoms/wizard/lib/models/enums.ts +8 -0
- package/components/atoms/wizard/lib/models/interfaces.ts +59 -0
- package/components/atoms/wizard/lib/utils/utils.ts +954 -0
- package/components/atoms/wizard/step/Step.vue +1 -1
- package/components/common/backup/storage/actions/add/Add.vue +5 -5
- package/components/common/backup/storage/actions/add/Old.vue +1 -1
- package/components/common/backup/storage/actions/add/lib/config/steps.ts +2 -2
- package/components/common/backup/storage/actions/add/lib/validations.ts +4 -4
- package/components/common/backup/storage/actions/add/steps/name/Name.vue +1 -1
- package/components/common/backup/storage/actions/add/steps/name/New.vue +1 -1
- package/components/common/backup/storage/actions/add/steps/name/Old.vue +1 -1
- package/components/common/backup/storage/actions/add/steps/nameAndConfigure/NameAndConfigure.vue +1 -1
- package/components/common/backup/storage/actions/add/steps/nameAndConfigure/NameAndConfigureNew.vue +1 -1
- package/components/common/backup/storage/actions/add/steps/nameAndConfigure/NameAndConfigureOld.vue +1 -1
- package/components/common/browse/BrowseNew.vue +1 -0
- package/components/common/browse/blocks/Container.vue +235 -235
- package/components/common/browse/blocks/contents/filesNew/Skeleton.vue +18 -18
- package/components/common/browse/blocks/lib/models/types.ts +1 -1
- package/components/common/browse/lib/models/interfaces.ts +5 -5
- package/components/common/context/lib/models/interfaces.ts +33 -33
- package/components/common/diagramMain/lib/config/initial.ts +50 -50
- package/components/common/diagramMain/lib/models/types.ts +21 -21
- package/components/common/diagramMain/lib/utils/utils.ts +331 -331
- package/components/common/diagramMain/modals/lib/config/networkModal.ts +398 -398
- package/components/common/diagramMain/modals/lib/config/portModal.ts +251 -251
- package/components/common/diagramMain/modals/lib/config/vCenterModal.ts +48 -48
- package/components/common/diagramMain/modals/lib/config/vmKernelAdapter.ts +90 -90
- package/components/common/diagramMain/modals/lib/mappers/mappers.ts +87 -87
- package/components/common/diagramMain/modals/lib/utils/index.ts +24 -24
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/MigrateVmkernelAdapter.vue +5 -5
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/lib/config/steps.ts +2 -2
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/steps/ConnectionSettings.vue +2 -2
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/common.ts +14 -14
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/connectionSettings.ts +5 -5
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/selectVmkernelAdapter.ts +2 -2
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/validations.ts +19 -19
- package/components/common/diagramMain/port/Port.vue +580 -580
- package/components/common/diagramMain/port/Ports.vue +47 -47
- package/components/common/layout/theHeader/helpMenu/About.vue +82 -82
- package/components/common/pages/backups/Backups.vue +102 -102
- package/components/common/pages/backups/DetailView.vue +52 -52
- package/components/common/pages/backups/lib/models/interfaces.ts +36 -36
- package/components/common/pages/backups/modals/Modals.vue +1 -1
- package/components/common/pages/backups/modals/createBackup/CreateBackup.vue +2 -5
- package/components/common/pages/backups/modals/createBackup/configuration/Configuration.vue +29 -29
- package/components/common/pages/backups/modals/createBackup/configuration/backupWindow/BackupWindow.vue +26 -26
- package/components/common/pages/backups/modals/createBackup/configuration/maxBandwidth/MaxBandwidth.vue +66 -66
- package/components/common/pages/backups/modals/createBackup/configuration/maxBandwidth/lib/config/options.ts +6 -6
- package/components/common/pages/backups/modals/createBackup/configuration/strategy/Strategy.vue +35 -35
- package/components/common/pages/backups/modals/createBackup/datastores/Datastores.vue +59 -59
- package/components/common/pages/backups/modals/createBackup/datastores/tableView/TableView.vue +95 -95
- package/components/common/pages/backups/modals/createBackup/disks/tableView/lib/config/table.ts +117 -117
- package/components/common/pages/backups/modals/createBackup/general/General.vue +135 -135
- package/components/common/pages/backups/modals/createBackup/lib/config/steps.ts +117 -117
- package/components/common/pages/backups/modals/createBackup/lib/config/strategyOptions.ts +12 -12
- package/components/common/pages/backups/modals/lib/config/restore.ts +115 -115
- package/components/common/pages/backups/modals/lib/models/interfaces.ts +186 -186
- package/components/common/pages/backups/modals/restore/Restore.vue +417 -417
- package/components/common/pages/backups/modals/restore/disks/Disks.vue +27 -27
- package/components/common/pages/backups/modals/restore/disks/tableView/TableView.vue +102 -102
- package/components/common/pages/backups/modals/restore/disks/tableView/lib/config/table.ts +117 -117
- package/components/common/pages/backups/modals/restore/lib/config/steps.ts +108 -108
- package/components/common/pages/backups/modals/restore/name/Name.vue +160 -160
- package/components/common/pages/backups/modals/restore/name/lib/models/interfaces.ts +6 -6
- package/components/common/pages/backups/modals/restore/networks/Networks.vue +67 -67
- package/components/common/pages/backups/modals/restore/networks/table/Table.vue +214 -214
- package/components/common/pages/backups/modals/restore/types/lib/config/typeOptions.ts +25 -25
- package/components/common/pages/backups/tools/Tools.vue +75 -75
- package/components/common/pages/backups/tools/lib/config/tabs.ts +36 -36
- package/components/common/pages/home/headline/HeadlineOld.vue +42 -42
- package/components/common/pages/home/lib/models/interfaces.ts +48 -48
- package/components/common/pages/home/widgets/hosts/Hosts.vue +27 -27
- package/components/common/pages/home/widgets/hosts/lib/config/items.ts +23 -23
- package/components/common/pages/home/widgets/vms/VmsOld.vue +35 -35
- package/components/common/pages/home/widgets/vms/lib/config/items.ts +19 -19
- package/components/common/pages/scheduledTasks/lib/utils/utils.ts +84 -84
- package/components/common/readyToComplete/ReadyToComplete.vue +17 -17
- package/components/common/select/radio/RadioGroup.vue +137 -137
- package/components/common/spiceConsole/Drawer.vue +381 -381
- package/components/common/spiceConsole/SpiceConsole.vue +127 -127
- package/components/common/spiceConsole/lib/models/interfaces.ts +5 -5
- package/components/common/tools/Actions.vue +207 -207
- package/components/common/treeView/TreeView.vue +52 -52
- package/components/common/vm/actions/add/Add.vue +5 -5
- package/components/common/vm/actions/add/New.vue +2 -2
- package/components/common/vm/actions/add/Old.vue +2 -2
- package/components/common/vm/actions/add/folderTreeView/FolderTreeView.vue +72 -72
- package/components/common/vm/actions/add/folderTreeView/New.vue +40 -40
- package/components/common/vm/actions/add/lib/config/steps.ts +2 -2
- package/components/common/vm/actions/clone/Clone.vue +5 -5
- package/components/common/vm/actions/clone/lib/config/steps.ts +291 -291
- package/components/common/vm/actions/clone/toTemplate/ToTemplate.vue +5 -5
- package/components/common/vm/actions/clone/toTemplate/lib/config/steps.ts +2 -2
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/media/Media.vue +25 -25
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/media/MediaNew.vue +78 -78
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/media/MediaOld.vue +50 -50
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/shares/Shares.vue +140 -140
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/shares/lib/config/options.ts +28 -28
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/location/Location.vue +154 -154
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/location/LocationOld.vue +85 -85
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/location/storageModal/new/New.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/location/new/table/Table.vue +99 -92
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/macAddress/MacAddress.vue +119 -119
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/directPathIo/DirectPathIoNew.vue +66 -66
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/directPathIo/DirectPathIoOld.vue +62 -62
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/dynamicDirectPathIo/DynamicDirectPathIo.vue +31 -31
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/dynamicDirectPathIo/DynamicDirectPathIoOld.vue +76 -76
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/note/Note.vue +15 -15
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/note/NoteNew.vue +42 -42
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/note/NoteOld.vue +30 -30
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/nvidiaGrid/NvidiaGridOld.vue +84 -84
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/other/Other.vue +16 -16
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/numberDisplays/NumberDisplays.vue +53 -53
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/delay/Delay.vue +32 -32
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/firmware/Firmware.vue +60 -60
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/order/Order.vue +174 -174
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/keymap/Keymap.vue +32 -32
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/keymap/KeymapOld.vue +44 -44
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/password/Password.vue +103 -103
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/usbRedirection/UsbRedirection.vue +28 -28
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/usbRedirection/UsbRedirectionOld.vue +44 -44
- package/components/common/vm/actions/common/select/compatibility/Old.vue +107 -107
- package/components/common/vm/actions/common/select/computeResource/ComputeResource.vue +143 -143
- package/components/common/vm/actions/common/select/computeResource/New.vue +184 -184
- package/components/common/vm/actions/common/select/computeResource/treeView/TreeView.vue +131 -131
- package/components/common/vm/actions/common/select/createType/CreateType.vue +38 -38
- package/components/common/vm/actions/common/select/createType/lib/config/items.ts +48 -48
- package/components/common/vm/actions/common/select/createType/lib/models/interfaces.ts +5 -5
- package/components/common/vm/actions/common/select/os/Old.vue +152 -152
- package/components/common/vm/actions/common/select/os/Os.vue +139 -139
- package/components/common/vm/actions/common/select/storage/new/New.vue +14 -14
- package/components/common/vm/actions/common/select/storage/new/lib/models/interfaces.ts +5 -5
- package/components/common/vm/actions/common/select/storage/new/lib/utils/utils.ts +21 -21
- package/components/common/vm/actions/common/select/template/old/Old.vue +50 -50
- package/components/common/vm/actions/editSettings/new/Skeleton.vue +88 -88
- package/components/common/vmt/actions/add/Add.vue +5 -5
- package/components/common/vmt/actions/add/New.vue +3 -2
- package/components/common/vmt/actions/add/Old.vue +2 -2
- package/components/common/vmt/actions/add/lib/config/steps.ts +2 -2
- package/components/common/wizards/datastore/add/Add.vue +2 -2
- package/components/common/wizards/datastore/add/Old.vue +2 -2
- package/components/common/wizards/datastore/add/lib/config/steps.ts +2 -2
- package/components/common/wizards/datastore/add/lib/utils.ts +1 -1
- package/components/common/wizards/datastore/add/lib/validations.ts +3 -3
- package/components/common/wizards/datastore/add/steps/_local/Local.vue +1 -1
- package/components/common/wizards/datastore/add/steps/_local/createName/CreateName.vue +1 -1
- package/components/common/wizards/datastore/add/steps/nameAndConfigure/NameAndConfigure.vue +1 -2
- package/components/common/wizards/datastore/add/steps/nameAndConfigure/NameAndConfigureNew.vue +1 -1
- package/components/common/wizards/datastore/add/steps/nameAndConfigure/NameAndConfigureOld.vue +1 -1
- package/components/common/wizards/datastore/add/steps/nameAndDevice/NameAndDevice.vue +1 -1
- package/components/common/wizards/datastore/add/steps/nameAndDevice/NameAndDeviceNew.vue +1 -1
- package/components/common/wizards/datastore/add/steps/nameAndDevice/NameAndDeviceOld.vue +1 -1
- package/components/common/wizards/datastore/add/steps/typeMode/lib/config/typeOptions.ts +43 -43
- package/components/common/wizards/network/add/Add.vue +7 -7
- package/components/common/wizards/network/add/lib/config/steps.ts +5 -5
- package/components/common/wizards/network/add/steps/ConnectionSettings.vue +2 -2
- package/components/common/wizards/network/add/steps/IpFourSettings.vue +2 -2
- package/components/common/wizards/network/add/steps/PortProperties.vue +2 -2
- package/components/common/wizards/network/add/steps/SelectedTargetDevice.vue +2 -2
- package/components/common/wizards/network/add/validations/connectionSettings.ts +5 -5
- package/components/common/wizards/network/add/validations/createStandardSwitch.ts +4 -4
- package/components/common/wizards/network/add/validations/ipFourSettings.ts +5 -5
- package/components/common/wizards/network/add/validations/networkValidation.ts +4 -4
- package/components/common/wizards/network/add/validations/physicalAdapter.ts +4 -4
- package/components/common/wizards/network/add/validations/portProperties.ts +2 -2
- package/components/common/wizards/network/add/validations/targetDevice.ts +5 -5
- package/components/common/wizards/vm/migrate/Migrate.vue +2 -2
- package/components/common/wizards/vm/migrate/lib/config/steps.ts +157 -157
- package/components/common/wizards/vm/migrate/lib/validations.ts +68 -68
- package/components/common/wizards/vm/migrate/select/network/Network.vue +103 -103
- package/components/common/wizards/vm/migrate/select/targetServer/new/New.vue +1 -1
- package/components/common/wizards/vm/migrate/select/targetServer/targetServer.vue +1 -1
- package/components/common/wizards/vm/migrate/select/type/lib/config/typeOptions.ts +45 -45
- package/composables/productNameLocal.ts +30 -30
- package/composables/useAppVersion.ts +21 -21
- package/package.json +42 -42
- package/plugins/date.ts +233 -233
- package/plugins/panelStates.ts +70 -70
- package/plugins/text.ts +59 -59
- package/public/spice-console/lib/images/bitmap.js +203 -203
- package/public/spice-console/network/spicechannel.js +390 -390
- package/store/main/mutations.ts +7 -7
- package/store/main/state.ts +7 -7
@@ -1,50 +1,50 @@
|
|
1
|
-
<template>
|
2
|
-
<div class="select-template">
|
3
|
-
<atoms-alert
|
4
|
-
v-show="props.errors.length"
|
5
|
-
:items="props.errors"
|
6
|
-
status="alert-danger"
|
7
|
-
test-id="template-alert"
|
8
|
-
@remove="emits('remove')"
|
9
|
-
/>
|
10
|
-
|
11
|
-
<p class="template-description">
|
12
|
-
{{ localization.vmWizard.selectTemplateForCreatingVm }}
|
13
|
-
</p>
|
14
|
-
<div class="tree-view-wrap">
|
15
|
-
<common-vm-actions-common-select-template-tree-view
|
16
|
-
:templates-tree="props.templatesTree"
|
17
|
-
@select-node="emits('select', $event)"
|
18
|
-
/>
|
19
|
-
</div>
|
20
|
-
</div>
|
21
|
-
</template>
|
22
|
-
|
23
|
-
<script setup lang="ts">
|
24
|
-
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
25
|
-
import type { UI_I_TreeNode } from '~/components/common/recursionTree/lib/models/interfaces'
|
26
|
-
|
27
|
-
const props = defineProps<{
|
28
|
-
templatesTree: UI_I_TreeNode[]
|
29
|
-
errors: string[]
|
30
|
-
}>()
|
31
|
-
|
32
|
-
const emits = defineEmits<{
|
33
|
-
(event: 'remove'): void
|
34
|
-
(event: 'select', value: UI_I_TreeNode): void
|
35
|
-
}>()
|
36
|
-
|
37
|
-
const localization = computed<UI_I_Localization>(() => useLocal())
|
38
|
-
</script>
|
39
|
-
|
40
|
-
<style scoped lang="scss">
|
41
|
-
.tree-view-wrap {
|
42
|
-
position: relative;
|
43
|
-
border: 1px solid #000;
|
44
|
-
padding: 5px;
|
45
|
-
max-height: 300px;
|
46
|
-
min-height: 200px;
|
47
|
-
overflow: auto;
|
48
|
-
margin-bottom: 10px;
|
49
|
-
}
|
50
|
-
</style>
|
1
|
+
<template>
|
2
|
+
<div class="select-template">
|
3
|
+
<atoms-alert
|
4
|
+
v-show="props.errors.length"
|
5
|
+
:items="props.errors"
|
6
|
+
status="alert-danger"
|
7
|
+
test-id="template-alert"
|
8
|
+
@remove="emits('remove')"
|
9
|
+
/>
|
10
|
+
|
11
|
+
<p class="template-description">
|
12
|
+
{{ localization.vmWizard.selectTemplateForCreatingVm }}
|
13
|
+
</p>
|
14
|
+
<div class="tree-view-wrap">
|
15
|
+
<common-vm-actions-common-select-template-tree-view
|
16
|
+
:templates-tree="props.templatesTree"
|
17
|
+
@select-node="emits('select', $event)"
|
18
|
+
/>
|
19
|
+
</div>
|
20
|
+
</div>
|
21
|
+
</template>
|
22
|
+
|
23
|
+
<script setup lang="ts">
|
24
|
+
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
25
|
+
import type { UI_I_TreeNode } from '~/components/common/recursionTree/lib/models/interfaces'
|
26
|
+
|
27
|
+
const props = defineProps<{
|
28
|
+
templatesTree: UI_I_TreeNode[]
|
29
|
+
errors: string[]
|
30
|
+
}>()
|
31
|
+
|
32
|
+
const emits = defineEmits<{
|
33
|
+
(event: 'remove'): void
|
34
|
+
(event: 'select', value: UI_I_TreeNode): void
|
35
|
+
}>()
|
36
|
+
|
37
|
+
const localization = computed<UI_I_Localization>(() => useLocal())
|
38
|
+
</script>
|
39
|
+
|
40
|
+
<style scoped lang="scss">
|
41
|
+
.tree-view-wrap {
|
42
|
+
position: relative;
|
43
|
+
border: 1px solid #000;
|
44
|
+
padding: 5px;
|
45
|
+
max-height: 300px;
|
46
|
+
min-height: 200px;
|
47
|
+
overflow: auto;
|
48
|
+
margin-bottom: 10px;
|
49
|
+
}
|
50
|
+
</style>
|
@@ -1,88 +1,88 @@
|
|
1
|
-
<template>
|
2
|
-
<div class="skeleton-wrap">
|
3
|
-
<div class="tabs">
|
4
|
-
<ui-skeleton-item width="64px" height="16px" />
|
5
|
-
<ui-skeleton-item width="64px" height="16px" />
|
6
|
-
</div>
|
7
|
-
<div class="actions">
|
8
|
-
<ui-skeleton-item width="80px" height="16px" />
|
9
|
-
<ui-skeleton-item width="152px" height="32px" border-radius="6px" />
|
10
|
-
</div>
|
11
|
-
<div class="stack-block-wrap">
|
12
|
-
<div class="stack-block">
|
13
|
-
<div class="stack-label flex-1">
|
14
|
-
<ui-skeleton-item width="16px" height="16px" border-radius="50%" />
|
15
|
-
<ui-skeleton-item height="16px" />
|
16
|
-
</div>
|
17
|
-
<div class="stack-value flex-1">
|
18
|
-
<ui-skeleton-item width="102px" height="32px" border-radius="8px" />
|
19
|
-
</div>
|
20
|
-
</div>
|
21
|
-
|
22
|
-
<div v-for="item in 2" :key="item" class="stack-block">
|
23
|
-
<div class="stack-label flex-1">
|
24
|
-
<ui-skeleton-item width="16px" height="16px" border-radius="50%" />
|
25
|
-
<ui-skeleton-item height="16px" />
|
26
|
-
</div>
|
27
|
-
<div class="stack-value flex-1">
|
28
|
-
<ui-skeleton-item width="102px" height="32px" border-radius="8px" />
|
29
|
-
<ui-skeleton-item width="80px" height="32px" border-radius="8px" />
|
30
|
-
</div>
|
31
|
-
</div>
|
32
|
-
|
33
|
-
<div v-for="item in 5" :key="item" class="stack-block">
|
34
|
-
<div class="stack-label flex-1">
|
35
|
-
<ui-skeleton-item width="16px" height="16px" border-radius="50%" />
|
36
|
-
<ui-skeleton-item height="16px" />
|
37
|
-
</div>
|
38
|
-
<div class="stack-value flex-1">
|
39
|
-
<ui-skeleton-item width="196px" height="32px" border-radius="8px" />
|
40
|
-
</div>
|
41
|
-
</div>
|
42
|
-
</div>
|
43
|
-
</div>
|
44
|
-
</template>
|
45
|
-
|
46
|
-
<script setup lang="ts"></script>
|
47
|
-
|
48
|
-
<style scoped lang="scss">
|
49
|
-
.skeleton-wrap {
|
50
|
-
padding: 0 32px;
|
51
|
-
|
52
|
-
.tabs {
|
53
|
-
display: flex;
|
54
|
-
align-items: center;
|
55
|
-
gap: 32px;
|
56
|
-
padding: 8px 0 12px;
|
57
|
-
border-bottom: 1px solid var(--divider-color);
|
58
|
-
}
|
59
|
-
|
60
|
-
.actions {
|
61
|
-
display: flex;
|
62
|
-
align-items: center;
|
63
|
-
justify-content: space-between;
|
64
|
-
margin: 12px 0;
|
65
|
-
}
|
66
|
-
|
67
|
-
.stack-block-wrap {
|
68
|
-
display: grid;
|
69
|
-
grid-gap: 12px;
|
70
|
-
|
71
|
-
.stack-block {
|
72
|
-
display: flex;
|
73
|
-
align-items: center;
|
74
|
-
gap: 12px;
|
75
|
-
padding: 8px 12px;
|
76
|
-
background: var(--stack-block-bg-color);
|
77
|
-
border-radius: 6px;
|
78
|
-
|
79
|
-
.stack-label,
|
80
|
-
.stack-value {
|
81
|
-
display: flex;
|
82
|
-
align-items: center;
|
83
|
-
gap: 8px;
|
84
|
-
}
|
85
|
-
}
|
86
|
-
}
|
87
|
-
}
|
88
|
-
</style>
|
1
|
+
<template>
|
2
|
+
<div class="skeleton-wrap">
|
3
|
+
<div class="tabs">
|
4
|
+
<ui-skeleton-item width="64px" height="16px" />
|
5
|
+
<ui-skeleton-item width="64px" height="16px" />
|
6
|
+
</div>
|
7
|
+
<div class="actions">
|
8
|
+
<ui-skeleton-item width="80px" height="16px" />
|
9
|
+
<ui-skeleton-item width="152px" height="32px" border-radius="6px" />
|
10
|
+
</div>
|
11
|
+
<div class="stack-block-wrap">
|
12
|
+
<div class="stack-block">
|
13
|
+
<div class="stack-label flex-1">
|
14
|
+
<ui-skeleton-item width="16px" height="16px" border-radius="50%" />
|
15
|
+
<ui-skeleton-item height="16px" />
|
16
|
+
</div>
|
17
|
+
<div class="stack-value flex-1">
|
18
|
+
<ui-skeleton-item width="102px" height="32px" border-radius="8px" />
|
19
|
+
</div>
|
20
|
+
</div>
|
21
|
+
|
22
|
+
<div v-for="item in 2" :key="item" class="stack-block">
|
23
|
+
<div class="stack-label flex-1">
|
24
|
+
<ui-skeleton-item width="16px" height="16px" border-radius="50%" />
|
25
|
+
<ui-skeleton-item height="16px" />
|
26
|
+
</div>
|
27
|
+
<div class="stack-value flex-1">
|
28
|
+
<ui-skeleton-item width="102px" height="32px" border-radius="8px" />
|
29
|
+
<ui-skeleton-item width="80px" height="32px" border-radius="8px" />
|
30
|
+
</div>
|
31
|
+
</div>
|
32
|
+
|
33
|
+
<div v-for="item in 5" :key="item" class="stack-block">
|
34
|
+
<div class="stack-label flex-1">
|
35
|
+
<ui-skeleton-item width="16px" height="16px" border-radius="50%" />
|
36
|
+
<ui-skeleton-item height="16px" />
|
37
|
+
</div>
|
38
|
+
<div class="stack-value flex-1">
|
39
|
+
<ui-skeleton-item width="196px" height="32px" border-radius="8px" />
|
40
|
+
</div>
|
41
|
+
</div>
|
42
|
+
</div>
|
43
|
+
</div>
|
44
|
+
</template>
|
45
|
+
|
46
|
+
<script setup lang="ts"></script>
|
47
|
+
|
48
|
+
<style scoped lang="scss">
|
49
|
+
.skeleton-wrap {
|
50
|
+
padding: 0 32px;
|
51
|
+
|
52
|
+
.tabs {
|
53
|
+
display: flex;
|
54
|
+
align-items: center;
|
55
|
+
gap: 32px;
|
56
|
+
padding: 8px 0 12px;
|
57
|
+
border-bottom: 1px solid var(--divider-color);
|
58
|
+
}
|
59
|
+
|
60
|
+
.actions {
|
61
|
+
display: flex;
|
62
|
+
align-items: center;
|
63
|
+
justify-content: space-between;
|
64
|
+
margin: 12px 0;
|
65
|
+
}
|
66
|
+
|
67
|
+
.stack-block-wrap {
|
68
|
+
display: grid;
|
69
|
+
grid-gap: 12px;
|
70
|
+
|
71
|
+
.stack-block {
|
72
|
+
display: flex;
|
73
|
+
align-items: center;
|
74
|
+
gap: 12px;
|
75
|
+
padding: 8px 12px;
|
76
|
+
background: var(--stack-block-bg-color);
|
77
|
+
border-radius: 6px;
|
78
|
+
|
79
|
+
.stack-label,
|
80
|
+
.stack-value {
|
81
|
+
display: flex;
|
82
|
+
align-items: center;
|
83
|
+
gap: 8px;
|
84
|
+
}
|
85
|
+
}
|
86
|
+
}
|
87
|
+
}
|
88
|
+
</style>
|
@@ -103,15 +103,14 @@
|
|
103
103
|
</template>
|
104
104
|
|
105
105
|
<script setup lang="ts">
|
106
|
-
import type {
|
107
|
-
UI_I_ValidationReturn,
|
108
|
-
UI_I_WizardStep,
|
109
|
-
} from '~/node_modules/bfg-uikit/components/ui/wizard/lib/models/interfaces'
|
110
|
-
import Wizard from '~/node_modules/bfg-uikit/components/ui/wizard/lib/utils/utils'
|
111
106
|
import type {
|
112
107
|
UI_I_ArbitraryObject,
|
113
108
|
UI_I_Localization,
|
114
109
|
} from '~/lib/models/interfaces'
|
110
|
+
import type {
|
111
|
+
UI_I_ValidationReturn,
|
112
|
+
UI_I_WizardStep,
|
113
|
+
} from '~/components/atoms/wizard/lib/models/interfaces'
|
115
114
|
import type { UI_I_VmtForm } from '~/components/common/vmt/actions/add/lib/models/interfaces'
|
116
115
|
import type {
|
117
116
|
UI_I_SendDataCpu,
|
@@ -143,6 +142,7 @@ import type {
|
|
143
142
|
UI_I_PciDevice,
|
144
143
|
} from '~/lib/models/store/vm/interfaces'
|
145
144
|
import type { UI_I_Capabilities } from '~/components/common/vm/actions/common/lib/models/interfaces'
|
145
|
+
import Wizard from '~/components/atoms/wizard/lib/utils/utils'
|
146
146
|
import { mapCapabilities } from '~/components/common/vm/actions/common/lib/utils/capabilities'
|
147
147
|
import {
|
148
148
|
dynamicSteps,
|
@@ -181,8 +181,7 @@
|
|
181
181
|
|
182
182
|
<script setup lang="ts">
|
183
183
|
import { useElementSize } from '@vueuse/core'
|
184
|
-
import type {
|
185
|
-
import Wizard from '~/node_modules/bfg-uikit/components/ui/wizard/lib/utils/utils'
|
184
|
+
import type { UI_I_WizardTexts } from '~/node_modules/bfg-uikit/components/ui/wizard/lib/models/interfaces'
|
186
185
|
import type {
|
187
186
|
UI_I_DatastoreTableItem,
|
188
187
|
UI_I_FolderOrFileTreePayload,
|
@@ -210,11 +209,13 @@ import type {
|
|
210
209
|
UI_I_MediatedDevice,
|
211
210
|
UI_I_PciDevice,
|
212
211
|
} from '~/lib/models/store/vm/interfaces'
|
212
|
+
import type { UI_I_WizardStep } from '~/components/atoms/wizard/lib/models/interfaces'
|
213
213
|
import type { UI_I_OptionItem } from '~/components/atoms/lib/models/interfaces'
|
214
214
|
import type {
|
215
215
|
UI_I_VmtForm,
|
216
216
|
UI_I_DynamicSteps,
|
217
217
|
} from '~/components/common/vmt/actions/add/lib/models/interfaces'
|
218
|
+
import Wizard from '~/components/atoms/wizard/lib/utils/utils'
|
218
219
|
import type { UI_I_TreeNode } from '~/components/common/recursionTree/lib/models/interfaces'
|
219
220
|
|
220
221
|
const vmtForm = defineModel<UI_I_VmtForm>('vmtForm')
|
@@ -101,8 +101,6 @@
|
|
101
101
|
</template>
|
102
102
|
|
103
103
|
<script setup lang="ts">
|
104
|
-
import type { UI_I_WizardStep } from '~/node_modules/bfg-uikit/components/ui/wizard/lib/models/interfaces'
|
105
|
-
import Wizard from '~/node_modules/bfg-uikit/components/ui/wizard/lib/utils/utils'
|
106
104
|
import type {
|
107
105
|
UI_I_DatastoreTableItem,
|
108
106
|
UI_I_FolderOrFileTreePayload,
|
@@ -131,11 +129,13 @@ import type {
|
|
131
129
|
UI_I_MediatedDevice,
|
132
130
|
UI_I_PciDevice,
|
133
131
|
} from '~/lib/models/store/vm/interfaces'
|
132
|
+
import type { UI_I_WizardStep } from '~/components/atoms/wizard/lib/models/interfaces'
|
134
133
|
import type { UI_I_OptionItem } from '~/components/atoms/lib/models/interfaces'
|
135
134
|
import type {
|
136
135
|
UI_I_VmtForm,
|
137
136
|
UI_I_DynamicSteps,
|
138
137
|
} from '~/components/common/vmt/actions/add/lib/models/interfaces'
|
138
|
+
import Wizard from '~/components/atoms/wizard/lib/utils/utils'
|
139
139
|
|
140
140
|
const vmtForm = defineModel<UI_I_VmtForm>('vmtForm')
|
141
141
|
const props = defineProps<{
|
@@ -1,7 +1,7 @@
|
|
1
|
-
import type { UI_I_WizardStep } from '~/node_modules/bfg-uikit/components/ui/wizard/lib/models/interfaces'
|
2
|
-
import { UI_E_WIZARD_STATUS } from '~/node_modules/bfg-uikit/components/ui/wizard/lib/models/enums'
|
3
1
|
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
2
|
+
import type { UI_I_WizardStep } from '~/components/atoms/wizard/lib/models/interfaces'
|
4
3
|
import type { UI_I_DynamicSteps } from '~/components/common/vmt/actions/add/lib/models/interfaces'
|
4
|
+
import { UI_E_WIZARD_STATUS } from '~/components/atoms/wizard/lib/models/enums'
|
5
5
|
|
6
6
|
export const dynamicSteps: UI_I_DynamicSteps = {
|
7
7
|
selectName: 0,
|
@@ -35,8 +35,8 @@
|
|
35
35
|
import type {
|
36
36
|
UI_I_WizardStep,
|
37
37
|
UI_I_ValidationReturn,
|
38
|
-
} from '~/
|
39
|
-
import Wizard from '~/
|
38
|
+
} from '~/components/atoms/wizard/lib/models/interfaces'
|
39
|
+
import Wizard from '~/components/atoms/wizard/lib/utils/utils'
|
40
40
|
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
41
41
|
import type { UI_T_Project } from '~/lib/models/types'
|
42
42
|
import type { UI_I_TreeNode } from '~/components/common/recursionTree/lib/models/interfaces'
|
@@ -61,8 +61,8 @@
|
|
61
61
|
</template>
|
62
62
|
|
63
63
|
<script setup lang="ts">
|
64
|
-
import type { UI_I_WizardStep } from '~/
|
65
|
-
import type Wizard from '~/
|
64
|
+
import type { UI_I_WizardStep } from '~/components/atoms/wizard/lib/models/interfaces'
|
65
|
+
import type Wizard from '~/components/atoms/wizard/lib/utils/utils'
|
66
66
|
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
67
67
|
import type { UI_T_Project } from '~/lib/models/types'
|
68
68
|
import type { UI_I_CreateDatastoreForm } from '~/components/common/wizards/datastore/add/lib/models/interfaces'
|
@@ -1,9 +1,9 @@
|
|
1
|
-
import type { UI_I_WizardStep } from '~/node_modules/bfg-uikit/components/ui/wizard/lib/models/interfaces'
|
2
|
-
import { UI_E_WIZARD_STATUS } from '~/node_modules/bfg-uikit/components/ui/wizard/lib/models/enums'
|
3
1
|
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
4
2
|
import type { UI_T_Project } from '~/lib/models/types'
|
3
|
+
import type { UI_I_WizardStep } from '~/components/atoms/wizard/lib/models/interfaces'
|
5
4
|
import type { UI_I_ChangeStepsSchemes } from '~/components/common/wizards/datastore/add/lib/models/interfaces'
|
6
5
|
import type { UI_T_DatastoreTypeCode } from '~/components/common/wizards/datastore/add/lib/models/types'
|
6
|
+
import { UI_E_WIZARD_STATUS } from '~/components/atoms/wizard/lib/models/enums'
|
7
7
|
|
8
8
|
export const dynamicSteps = {
|
9
9
|
type: 0,
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import Wizard from '~/node_modules/bfg-uikit/components/ui/wizard/lib/utils/utils'
|
2
1
|
import type { API_UI_I_Error } from '~/lib/models/store/interfaces'
|
3
2
|
import type { UI_T_Project } from '~/lib/models/types'
|
3
|
+
import Wizard from '~/components/atoms/wizard/lib/utils/utils'
|
4
4
|
import { UI_E_Kind } from '~/lib/models/enums'
|
5
5
|
|
6
6
|
export const checkValidityName = async (
|
@@ -1,10 +1,10 @@
|
|
1
|
+
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
1
2
|
import type {
|
2
3
|
UI_I_AsyncCheckReturn,
|
3
4
|
UI_I_ValidationReturn,
|
4
5
|
UI_I_WizardStep,
|
5
|
-
} from '~/
|
6
|
-
import type Wizard from '~/
|
7
|
-
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
6
|
+
} from '~/components/atoms/wizard/lib/models/interfaces'
|
7
|
+
import type Wizard from '~/components/atoms/wizard/lib/utils/utils'
|
8
8
|
import type { UI_I_CreateDatastoreForm } from '~/components/common/wizards/datastore/add/lib/models/interfaces'
|
9
9
|
import type { UI_T_Project } from '~/lib/models/types'
|
10
10
|
import { checkValidityName } from '~/components/common/wizards/datastore/add/lib/utils'
|
@@ -12,10 +12,10 @@
|
|
12
12
|
</template>
|
13
13
|
|
14
14
|
<script lang="ts" setup>
|
15
|
-
import type { UI_I_ErrorFields } from '~/node_modules/bfg-uikit/components/ui/wizard/lib/models/interfaces'
|
16
15
|
import type { UI_T_Project } from '~/lib/models/types'
|
17
16
|
import type { UI_I_ArbitraryObject } from '~/lib/models/interfaces'
|
18
17
|
import type { UI_T_DatastoreTypeCode } from '~/components/common/wizards/datastore/add/lib/models/types'
|
18
|
+
import type { UI_I_ErrorFields } from '~/components/atoms/wizard/lib/models/interfaces'
|
19
19
|
import type { UI_I_CreateDatastoreForm } from '~/components/common/wizards/datastore/add/lib/models/interfaces'
|
20
20
|
|
21
21
|
const props = defineProps<{
|
@@ -36,11 +36,11 @@
|
|
36
36
|
</template>
|
37
37
|
|
38
38
|
<script lang="ts" setup>
|
39
|
-
import type { UI_I_ErrorFields } from '~/node_modules/bfg-uikit/components/ui/wizard/lib/models/interfaces'
|
40
39
|
import type {
|
41
40
|
UI_I_Localization,
|
42
41
|
UI_I_ArbitraryObject,
|
43
42
|
} from '~/lib/models/interfaces'
|
43
|
+
import type { UI_I_ErrorFields } from '~/components/atoms/wizard/lib/models/interfaces'
|
44
44
|
|
45
45
|
const props = defineProps<{
|
46
46
|
alertMessages: string[]
|
@@ -18,9 +18,8 @@
|
|
18
18
|
</template>
|
19
19
|
|
20
20
|
<script lang="ts" setup>
|
21
|
-
import type { UI_I_WizardStep } from '~/node_modules/bfg-uikit/components/ui/wizard/lib/models/interfaces'
|
22
21
|
import type { UI_T_Project } from '~/lib/models/types'
|
23
|
-
import type {
|
22
|
+
import type { UI_I_WizardStep } from '~/components/atoms/wizard/lib/models/interfaces'
|
24
23
|
import type { UI_I_CreateDatastoreForm } from '~/components/common/wizards/datastore/add/lib/models/interfaces'
|
25
24
|
|
26
25
|
const formModel = defineModel<UI_I_CreateDatastoreForm>({ required: true })
|
package/components/common/wizards/datastore/add/steps/nameAndConfigure/NameAndConfigureNew.vue
CHANGED
@@ -93,8 +93,8 @@
|
|
93
93
|
</template>
|
94
94
|
|
95
95
|
<script setup lang="ts">
|
96
|
-
import type { UI_I_WizardStep } from '~/node_modules/bfg-uikit/components/ui/wizard/lib/models/interfaces'
|
97
96
|
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
97
|
+
import type { UI_I_WizardStep } from '~/components/atoms/wizard/lib/models/interfaces'
|
98
98
|
import type { UI_I_CreateDatastoreForm } from '~/components/common/wizards/datastore/add/lib/models/interfaces'
|
99
99
|
import type { UI_I_InitialValidationFields } from '~/components/common/wizards/vm/migrate/select/targetServer/new/lib/models/interfaces'
|
100
100
|
|
package/components/common/wizards/datastore/add/steps/nameAndConfigure/NameAndConfigureOld.vue
CHANGED
@@ -108,8 +108,8 @@
|
|
108
108
|
</template>
|
109
109
|
|
110
110
|
<script lang="ts" setup>
|
111
|
-
import type { UI_I_WizardStep } from '~/node_modules/bfg-uikit/components/ui/wizard/lib/models/interfaces'
|
112
111
|
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
112
|
+
import type { UI_I_WizardStep } from '~/components/atoms/wizard/lib/models/interfaces'
|
113
113
|
import type { UI_I_InitialValidationFields } from '~/components/common/wizards/datastore/add/steps/nameAndConfigure/lib/models/interfaces'
|
114
114
|
import type { UI_I_CreateDatastoreForm } from '~/components/common/wizards/datastore/add/lib/models/interfaces'
|
115
115
|
import { dynamicSteps } from '~/components/common/wizards/datastore/add/lib/config/steps'
|
@@ -36,7 +36,6 @@
|
|
36
36
|
</template>
|
37
37
|
|
38
38
|
<script lang="ts" setup>
|
39
|
-
import type { UI_I_ErrorFields } from '~/node_modules/bfg-uikit/components/ui/wizard/lib/models/interfaces'
|
40
39
|
import type { UI_T_Project } from '~/lib/models/types'
|
41
40
|
import type { UI_I_ArbitraryObject } from '~/lib/models/interfaces'
|
42
41
|
import type {
|
@@ -47,6 +46,7 @@ import type {
|
|
47
46
|
UI_I_LunDiskSpherePayload,
|
48
47
|
UI_I_SelectHostOptions,
|
49
48
|
} from '~/components/common/wizards/datastore/add/steps/nameAndDevice/lib/models/interfaces'
|
49
|
+
import type { UI_I_ErrorFields } from '~/components/atoms/wizard/lib/models/interfaces'
|
50
50
|
import type { UI_I_TreeNode } from '~/components/common/recursionTree/lib/models/interfaces'
|
51
51
|
import type { UI_I_CompatibleHosts } from '~/components/common/wizards/datastore/add/steps/hostAccessibility/table/lib/models/interfaces'
|
52
52
|
import type { UI_I_CreateDatastoreForm } from '~/components/common/wizards/datastore/add/lib/models/interfaces'
|
@@ -80,13 +80,13 @@
|
|
80
80
|
</template>
|
81
81
|
|
82
82
|
<script lang="ts" setup>
|
83
|
-
import type { UI_I_ErrorFields } from '~/node_modules/bfg-uikit/components/ui/wizard/lib/models/interfaces'
|
84
83
|
import type {
|
85
84
|
UI_I_Localization,
|
86
85
|
UI_I_ArbitraryObject,
|
87
86
|
} from '~/lib/models/interfaces'
|
88
87
|
import type { UI_I_Pagination } from '~/lib/models/table/interfaces'
|
89
88
|
import type { UI_I_SelectHostOptions } from '~/components/common/wizards/datastore/add/steps/nameAndDevice/lib/models/interfaces'
|
89
|
+
import type { UI_I_ErrorFields } from '~/components/atoms/wizard/lib/models/interfaces'
|
90
90
|
import type { UI_I_CreateDatastoreForm } from '~/components/common/wizards/datastore/add/lib/models/interfaces'
|
91
91
|
import type { UI_I_CreateStorageLunDisks } from '~/components/common/wizards/datastore/add/steps/nameAndDevice/table/lib/models/interfaces'
|
92
92
|
|
@@ -94,13 +94,13 @@
|
|
94
94
|
</template>
|
95
95
|
|
96
96
|
<script lang="ts" setup>
|
97
|
-
import type { UI_I_ErrorFields } from '~/node_modules/bfg-uikit/components/ui/wizard/lib/models/interfaces'
|
98
97
|
import type {
|
99
98
|
UI_I_Localization,
|
100
99
|
UI_I_ArbitraryObject,
|
101
100
|
} from '~/lib/models/interfaces'
|
102
101
|
import type { UI_I_Pagination } from '~/lib/models/table/interfaces'
|
103
102
|
import type { UI_I_SelectHostOptions } from '~/components/common/wizards/datastore/add/steps/nameAndDevice/lib/models/interfaces'
|
103
|
+
import type { UI_I_ErrorFields } from '~/components/atoms/wizard/lib/models/interfaces'
|
104
104
|
import type { UI_I_CreateDatastoreForm } from '~/components/common/wizards/datastore/add/lib/models/interfaces'
|
105
105
|
import type { UI_I_CreateStorageLunDisks } from '~/components/common/wizards/datastore/add/steps/nameAndDevice/table/lib/models/interfaces'
|
106
106
|
import { validateNameAndGenerateDataId } from '~/components/common/wizards/datastore/add/lib/utils'
|
@@ -1,43 +1,43 @@
|
|
1
|
-
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
2
|
-
import type { UI_T_Project } from '~/lib/models/types'
|
3
|
-
import type { UI_I_RadioOption } from '~/components/common/select/radio/lib/models/interfaces'
|
4
|
-
|
5
|
-
export const datastoreTypesFunc = (
|
6
|
-
localization: UI_I_Localization,
|
7
|
-
_project?: UI_T_Project
|
8
|
-
): UI_I_RadioOption[] => {
|
9
|
-
return [
|
10
|
-
{
|
11
|
-
id: 'datastore-type-shared-storm',
|
12
|
-
label: localization.common.stormSharedStorage,
|
13
|
-
value: 2,
|
14
|
-
disabled: false,
|
15
|
-
description: localization.common.sharedStormDesc,
|
16
|
-
isTooltip: false,
|
17
|
-
tooltipContent: localization.common.stormSharedStorageHelpDesc,
|
18
|
-
testId: 'datastore-type-shared-storm',
|
19
|
-
},
|
20
|
-
{
|
21
|
-
id: 'datastore-type-nfs',
|
22
|
-
label: localization.common.nfs,
|
23
|
-
value: 4,
|
24
|
-
disabled: false,
|
25
|
-
description: localization.common.nfsDesc,
|
26
|
-
isTooltip: false,
|
27
|
-
tooltipContent: localization.common.nfsHelpDesc,
|
28
|
-
testId: 'datastore-type-nfs',
|
29
|
-
},
|
30
|
-
]
|
31
|
-
|
32
|
-
// if (project === 'procurator') {
|
33
|
-
// types.unshift({
|
34
|
-
// label: localization.common.localStorage,
|
35
|
-
// value: 1,
|
36
|
-
// disabled: false,
|
37
|
-
// description: localization.common.localDesc,
|
38
|
-
// isTooltip: false,
|
39
|
-
// tooltipContent: localization.common.localStorageHelpDesc,
|
40
|
-
// testId: 'datastore-type-local',
|
41
|
-
// })
|
42
|
-
// }
|
43
|
-
}
|
1
|
+
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
2
|
+
import type { UI_T_Project } from '~/lib/models/types'
|
3
|
+
import type { UI_I_RadioOption } from '~/components/common/select/radio/lib/models/interfaces'
|
4
|
+
|
5
|
+
export const datastoreTypesFunc = (
|
6
|
+
localization: UI_I_Localization,
|
7
|
+
_project?: UI_T_Project
|
8
|
+
): UI_I_RadioOption[] => {
|
9
|
+
return [
|
10
|
+
{
|
11
|
+
id: 'datastore-type-shared-storm',
|
12
|
+
label: localization.common.stormSharedStorage,
|
13
|
+
value: 2,
|
14
|
+
disabled: false,
|
15
|
+
description: localization.common.sharedStormDesc,
|
16
|
+
isTooltip: false,
|
17
|
+
tooltipContent: localization.common.stormSharedStorageHelpDesc,
|
18
|
+
testId: 'datastore-type-shared-storm',
|
19
|
+
},
|
20
|
+
{
|
21
|
+
id: 'datastore-type-nfs',
|
22
|
+
label: localization.common.nfs,
|
23
|
+
value: 4,
|
24
|
+
disabled: false,
|
25
|
+
description: localization.common.nfsDesc,
|
26
|
+
isTooltip: false,
|
27
|
+
tooltipContent: localization.common.nfsHelpDesc,
|
28
|
+
testId: 'datastore-type-nfs',
|
29
|
+
},
|
30
|
+
]
|
31
|
+
|
32
|
+
// if (project === 'procurator') {
|
33
|
+
// types.unshift({
|
34
|
+
// label: localization.common.localStorage,
|
35
|
+
// value: 1,
|
36
|
+
// disabled: false,
|
37
|
+
// description: localization.common.localDesc,
|
38
|
+
// isTooltip: false,
|
39
|
+
// tooltipContent: localization.common.localStorageHelpDesc,
|
40
|
+
// testId: 'datastore-type-local',
|
41
|
+
// })
|
42
|
+
// }
|
43
|
+
}
|