bfg-common 1.6.95 → 1.6.97
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/.idea/inspectionProfiles/Project_Default.xml +3 -1
- package/assets/img/icons/icons-sprite-dark-5.svg +15 -2
- package/assets/img/icons/icons-sprite-light-5.svg +18 -5
- package/assets/localization/local_be.json +667 -51
- package/assets/localization/local_en.json +690 -73
- package/assets/localization/local_hy.json +670 -54
- package/assets/localization/local_kk.json +668 -52
- package/assets/localization/local_ru.json +704 -88
- package/assets/localization/local_zh.json +667 -51
- package/assets/scss/clarity/local_ar.json +12 -12
- package/assets/scss/common/global.scss +11 -0
- package/assets/scss/common/normalize.scss +3 -0
- package/assets/scss/common/theme.scss +2 -2
- package/components/atoms/dropdown/dropdown/Dropdown.vue +10 -8
- package/components/atoms/dropdown/dropdown/lib/models/interfaces.ts +1 -0
- package/components/atoms/list/dragDropList/DragDropList.vue +14 -10
- package/components/atoms/stack/StackBlock.vue +1 -1
- package/components/atoms/table/dataGrid/DataGrid.vue +4 -0
- package/components/atoms/table/dataGrid/DataGridColumnSwitch.vue +2 -2
- package/components/atoms/tooltip/TooltipError.vue +3 -0
- package/components/common/adapterManager/AdapterManagerNew.vue +128 -6
- package/components/common/adapterManager/addAdapterModal/AddAdapterModalNew.vue +64 -31
- package/components/common/adapterManager/addAdapterWarningModal/AddAdapterWarningModalNew.vue +3 -4
- package/components/common/adapterManager/ui/actions/bar/Bar.vue +2 -0
- package/components/common/adapterManager/ui/actions/bar/BarNew.vue +3 -2
- package/components/common/adapterManager/ui/actions/moveDownAdapterButton/MoveDownAdapterButtonNew.vue +1 -0
- package/components/common/adapterManager/ui/actions/moveUpAdapterButton/MoveUpAdapterButtonNew.vue +1 -0
- package/components/common/adapterManager/ui/noSelectedAdapter/NoSelectedAdapterNew.vue +10 -4
- package/components/common/adapterManager/ui/secondTitle/SecondTitleNew.vue +16 -1
- package/components/common/adapterManager/ui/table/TableNew.vue +3 -2
- package/components/common/adapterManager/ui/table/adapters/AdaptersNew.vue +70 -36
- package/components/common/adapterManager/ui/table/header/HeaderNew.vue +5 -1
- package/components/common/certificate/Certificate.vue +16 -6
- package/components/common/certificate/Info/Info.vue +61 -0
- package/components/common/certificate/{CertificateInfo.vue → Info/Old.vue} +6 -28
- package/components/common/certificate/Info/new/New.vue +285 -0
- package/components/common/certificate/Info/new/lib/config/index.ts +59 -0
- package/components/common/certificate/Info/new/lib/models/interfaces.ts +3 -0
- package/components/common/certificate/Info/new/lib/utils/index.ts +10 -0
- package/components/common/certificate/Old.vue +27 -0
- package/components/common/certificate/new/New.vue +30 -0
- package/components/common/certificate/new/Skeleton.vue +155 -0
- package/components/common/certificate/tools/New.vue +48 -0
- package/components/common/certificate/tools/Old.vue +39 -0
- package/components/common/certificate/{Tools.vue → tools/Tools.vue} +18 -23
- package/components/common/certificate/tools/lib/config/tabsPannel.ts +20 -0
- package/components/common/configure/physicalAdapters/PhysicalAdapters.vue +190 -0
- package/components/common/configure/physicalAdapters/PhysicalAdaptersNew.vue +392 -0
- package/components/common/configure/physicalAdapters/PhysicalAdaptersOld.vue +307 -0
- package/components/common/configure/physicalAdapters/buttons/Buttons.vue +106 -0
- package/components/common/configure/physicalAdapters/emptyBlock/EmptyBlock.vue +17 -0
- package/components/common/configure/physicalAdapters/emptyBlock/EmptyBlockNew.vue +37 -0
- package/components/common/configure/physicalAdapters/emptyBlock/EmptyBlockOld.vue +26 -0
- package/components/common/configure/physicalAdapters/modals/edit/Edit.vue +124 -0
- package/components/common/configure/physicalAdapters/modals/edit/EditNew.vue +232 -0
- package/components/common/configure/physicalAdapters/modals/edit/EditOld.vue +170 -0
- package/components/common/configure/physicalAdapters/modals/edit/lib/config/config.ts +59 -0
- package/components/common/configure/physicalAdapters/modals/edit/lib/models/interfaces.ts +17 -0
- package/components/common/configure/physicalAdapters/modals/edit/lib/validations/validations.ts +19 -0
- package/components/common/configure/physicalAdapters/tableView/TableView.vue +43 -0
- package/components/common/configure/physicalAdapters/tableView/TableViewNew.vue +345 -0
- package/components/common/configure/physicalAdapters/tableView/TableViewOld.vue +334 -0
- package/components/common/configure/physicalAdapters/tableView/lib/config/physicalAdaptersTableConfig.ts +177 -0
- package/components/common/configure/physicalAdapters/tableView/lib/config/physicalAdaptersTableConfigNew.ts +191 -0
- package/components/common/configure/physicalAdapters/tableView/lib/config/settings.ts +129 -0
- package/components/common/configure/physicalAdapters/tableView/lib/config/tableKeys.ts +14 -0
- package/components/common/configure/physicalAdapters/tableView/lib/models/interfaces.ts +33 -0
- package/components/common/configure/physicalAdapters/tableView/lib/models/types.ts +11 -0
- package/components/common/configure/physicalAdapters/tableView/mappers/mappers.ts +43 -0
- package/components/common/context/recursion/RecursionNew.vue +1 -2
- package/components/common/context/recursion/RecursionOld.vue +2 -2
- package/components/common/diagramMain/Diagram.vue +169 -85
- package/components/common/diagramMain/DiagramMain.vue +40 -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 +5 -5
- package/components/common/diagramMain/modals/UnsavedChangesModal.vue +32 -0
- package/components/common/diagramMain/modals/editSettings/EditSettings.vue +104 -102
- package/components/common/diagramMain/modals/editSettings/EditSettingsNew.vue +285 -0
- package/components/common/diagramMain/modals/editSettings/EditSettingsOld.vue +254 -0
- package/components/common/diagramMain/modals/editSettings/confirmTeamingSettingsModal/ConfirmTeamingSettingsModal.vue +31 -0
- package/components/common/diagramMain/modals/editSettings/confirmTeamingSettingsModal/ConfirmTeamingSettingsModalNew.vue +82 -0
- package/components/common/diagramMain/modals/editSettings/{ConfirmTeamingSettingsModal.vue → confirmTeamingSettingsModal/ConfirmTeamingSettingsModalOld.vue} +2 -5
- package/components/common/diagramMain/modals/editSettings/lib/config/config.ts +15 -0
- package/components/common/diagramMain/modals/editSettings/lib/models/interfaces.ts +6 -0
- package/components/common/diagramMain/modals/editSettings/lib/utils/utils.ts +177 -0
- package/components/common/diagramMain/modals/editSettings/modal/EditSettingsModal.vue +137 -0
- package/components/common/diagramMain/modals/editSettings/modal/EditSettingsModalNew.vue +91 -0
- package/components/common/diagramMain/modals/editSettings/{EditSettingsModal.vue → modal/EditSettingsModalOld.vue} +12 -51
- package/components/common/diagramMain/modals/editSettings/tabs/networkProperties/NetworkProperties.vue +158 -0
- package/components/common/diagramMain/modals/editSettings/tabs/networkProperties/NetworkPropertiesNew.vue +262 -0
- package/components/common/diagramMain/modals/editSettings/tabs/{NetworkProperties.vue → networkProperties/NetworkPropertiesOld.vue} +12 -110
- package/components/common/diagramMain/modals/editSettings/tabs/port/ipvFourSettings/IpvFourSettings.vue +192 -0
- package/components/common/diagramMain/modals/editSettings/tabs/port/ipvFourSettings/IpvFourSettingsNew.vue +388 -0
- package/components/common/diagramMain/modals/editSettings/tabs/port/{IpvFourSettings.vue → ipvFourSettings/IpvFourSettingsOld.vue} +11 -152
- package/components/common/diagramMain/modals/editSettings/tabs/port/portProperties/PortProperties.vue +139 -0
- package/components/common/diagramMain/modals/editSettings/tabs/port/portProperties/PortPropertiesNew.vue +286 -0
- package/components/common/diagramMain/modals/editSettings/tabs/port/{PortProperties.vue → portProperties/PortPropertiesOld.vue} +12 -103
- package/components/common/diagramMain/modals/editSettings/tabs/security/Security.vue +209 -0
- package/components/common/diagramMain/modals/editSettings/tabs/security/SecurityNew.vue +233 -0
- package/components/common/diagramMain/modals/editSettings/tabs/{Security.vue → security/SecurityOld.vue} +25 -48
- package/components/common/diagramMain/modals/editSettings/tabs/switchProperties/SwitchProperties.vue +128 -0
- package/components/common/diagramMain/modals/editSettings/tabs/switchProperties/SwitchPropertiesNew.vue +235 -0
- package/components/common/diagramMain/modals/editSettings/tabs/{SwitchProperties.vue → switchProperties/SwitchPropertiesOld.vue} +12 -89
- package/components/common/diagramMain/modals/editSettings/tabs/teamingFailover/TeamingFailover.vue +99 -0
- package/components/common/diagramMain/modals/editSettings/tabs/teamingFailover/TeamingFailoverNew.vue +319 -0
- package/components/common/diagramMain/modals/editSettings/tabs/{TeamingFailover.vue → teamingFailover/TeamingFailoverOld.vue} +11 -48
- package/components/common/diagramMain/modals/editSettings/tabs/trafficShaping/TrafficShaping.vue +173 -0
- package/components/common/diagramMain/modals/editSettings/tabs/trafficShaping/TrafficShapingNew.vue +348 -0
- package/components/common/diagramMain/modals/editSettings/tabs/{TrafficShaping.vue → trafficShaping/TrafficShapingOld.vue} +12 -134
- package/components/common/diagramMain/modals/lib/config/adapterModal.ts +9 -9
- 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/networkModal.ts +15 -15
- package/components/common/diagramMain/modals/lib/config/portModal.ts +12 -12
- package/components/common/diagramMain/modals/lib/config/vCenterModal.ts +2 -2
- package/components/common/diagramMain/modals/lib/config/vmKernelAdapter.ts +1 -1
- package/components/common/diagramMain/modals/lib/utils/index.ts +34 -4
- package/components/common/diagramMain/modals/managePhysicalAdapters/ManagePhysicalAdapters.vue +164 -0
- package/components/common/diagramMain/modals/managePhysicalAdapters/ManagePhysicalAdaptersNew.vue +306 -0
- package/components/common/diagramMain/modals/{ManagePhysicalAdaptersModal.vue → managePhysicalAdapters/ManagePhysicalAdaptersOld.vue} +33 -119
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/MigrateVmkernelAdapter.vue +2 -2
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/steps/ConnectionSettings.vue +3 -2
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/common.ts +8 -3
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/connectionSettings.ts +2 -2
- package/components/common/diagramMain/modals/remove/RemoveModalNew.vue +67 -16
- package/components/common/diagramMain/modals/viewSettings/info/InfoNew.vue +17 -0
- package/components/common/diagramMain/modals/viewSettings/viewSettings/ViewSettings.vue +3 -0
- package/components/common/diagramMain/modals/viewSettings/viewSettings/ViewSettingsNew.vue +66 -20
- package/components/common/diagramMain/modals/viewSettings/viewSettingsModal/ViewSettingsModalNew.vue +8 -0
- package/components/common/diagramMain/skeleton/Header.vue +31 -0
- package/components/common/diagramMain/skeleton/Switch.vue +75 -0
- package/components/common/layout/theHeader/Old.vue +1 -5
- 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/ChangePassword.vue +16 -10
- package/components/common/layout/theHeader/userMenu/modals/changePassword/New.vue +8 -9
- package/components/common/layout/theHeader/userMenu/modals/preferences/New.vue +7 -0
- package/components/common/layout/theHeader/userMenu/modals/preferences/Old.vue +10 -2
- package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/ChangeLanguage.vue +12 -8
- 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/security/Security.vue +48 -28
- 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/New.vue +20 -8
- package/components/common/layout/theHeader/userMenu/modals/preferences/view/Old.vue +11 -11
- package/components/common/layout/theHeader/userMenu/modals/preferences/view/View.vue +12 -6
- package/components/common/mainNavigationPanel/MainNavigationPanelNew.vue +3 -1
- package/components/common/modals/Rename.vue +3 -1
- package/components/common/modals/newFolder/new/Location.vue +21 -1
- package/components/common/monitor/advanced/Advanced.vue +8 -5
- package/components/common/monitor/advanced/AdvancedNew.vue +4 -2
- package/components/common/monitor/advanced/AdvancedOld.vue +8 -3
- package/components/common/monitor/advanced/table/lib/models/interfaces.ts +1 -0
- package/components/common/monitor/advanced/table/lib/models/types.ts +1 -4
- package/components/common/monitor/advanced/table/tableNew/TableNew.vue +1 -0
- package/components/common/monitor/advanced/table/tableNew/lib/config/options.ts +8 -38
- package/components/common/monitor/advanced/table/tableNew/lib/utils/constructBody.ts +5 -7
- package/components/common/monitor/advanced/table/tableOld/lib/config/performanceDatatable.ts +27 -31
- package/components/common/monitor/advanced/tools/Tools.vue +17 -13
- package/components/common/monitor/advanced/tools/ToolsNew.vue +4 -2
- package/components/common/monitor/advanced/tools/ToolsOld.vue +4 -2
- package/components/common/monitor/advanced/tools/chartOptionsModal/ChartOptionsModal.vue +38 -18
- package/components/common/monitor/advanced/tools/chartOptionsModal/ChartOptionsModalNew.vue +99 -80
- package/components/common/monitor/advanced/tools/chartOptionsModal/ChartOptionsModalOld.vue +9 -2
- package/components/common/monitor/advanced/tools/chartOptionsModal/actions/ActionsOld.vue +1 -1
- package/components/common/monitor/advanced/tools/chartOptionsModal/actions/lib/utils/optionsActions.ts +2 -2
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/Counters.vue +13 -3
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/CountersNew.vue +22 -4
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/CountersOld.vue +9 -2
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/Table.vue +7 -3
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/lib/config/utils.ts +1901 -493
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/lib/models/interfaces.ts +5 -0
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/tableNew/TableNew.vue +9 -0
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/tableOld/lib/config/tableConfig.ts +4 -4
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/Timespan.vue +3 -3
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/TimespanNew.vue +14 -2
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/TimespanOld.vue +2 -2
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/object/Object.vue +22 -21
- package/components/common/monitor/advanced/tools/chartOptionsModal/lib/config/index.ts +2 -0
- package/components/common/monitor/advanced/tools/chartOptionsModal/lib/utils/checkSubmit.ts +11 -4
- package/components/common/monitor/advanced/tools/chartOptionsModal/metrics/MetricsNew.vue +2 -0
- package/components/common/monitor/advanced/tools/chartOptionsModal/metrics/lib/config/optionsMetrics.ts +34 -1
- package/components/common/monitor/advanced/tools/lib/config/advancedToolbar.ts +80 -11
- package/components/common/monitor/lib/utils/local_be.json +714 -0
- package/components/common/monitor/lib/utils/local_en.json +714 -0
- package/components/common/monitor/lib/utils/local_hy.json +714 -0
- package/components/common/monitor/lib/utils/local_kk.json +714 -0
- package/components/common/monitor/lib/utils/local_ru.json +714 -0
- package/components/common/monitor/lib/utils/local_zh.json +714 -0
- package/components/common/monitor/lib/utils/localization.ts +43 -0
- package/components/common/monitor/overview/filters/lib/config/filterOptions.ts +3 -1
- package/components/common/monitor/utilization/Old.vue +120 -0
- package/components/common/monitor/utilization/Utilization.vue +65 -0
- package/components/common/monitor/utilization/infoBlock/InfoBlock.vue +146 -0
- package/components/common/monitor/utilization/infoBlock/New.vue +185 -0
- package/components/common/monitor/utilization/infoBlock/Old.vue +190 -0
- package/components/common/monitor/utilization/infoBlock/progressBar/New.vue +64 -0
- package/components/common/monitor/utilization/infoBlock/progressBar/Old.vue +65 -0
- package/components/common/monitor/utilization/infoBlock/progressBar/ProgressBar.vue +84 -0
- package/components/common/monitor/utilization/infoBlock/progressBar/lib/models/interfaces.ts +10 -0
- package/components/common/monitor/utilization/lib/models/interfaces.ts +27 -0
- package/components/common/monitor/utilization/lib/models/types.ts +1 -0
- package/components/common/monitor/utilization/lib/utils/index.ts +112 -0
- package/components/common/monitor/utilization/new/New.vue +195 -0
- package/components/common/monitor/utilization/new/Portlet.vue +42 -0
- package/components/common/monitor/utilization/new/Skeleton.vue +120 -0
- package/components/common/monitor/utilization/new/lib/utils/newPortlet.ts +7 -0
- package/components/common/noDataProvided/NoDataProvided.vue +17 -0
- package/components/common/noDataProvided/NoDataProvidedNew.vue +66 -0
- package/components/common/noDataProvided/NoDataProvidedOld.vue +18 -0
- package/components/common/pages/auth/TheFooter.vue +9 -0
- package/components/common/pages/backups/lib/models/interfaces.ts +1 -0
- package/components/common/pages/backups/modals/Modals.vue +1 -0
- package/components/common/pages/backups/modals/createBackup/New.vue +4 -0
- package/components/common/pages/backups/modals/createBackup/Old.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/backups/modals/createBackup/disks/tableView/new/TableView.vue +0 -1
- package/components/common/pages/backups/modals/createBackup/disks/tableView/new/lib/config/table.ts +1 -1
- package/components/common/pages/backups/modals/createBackup/general/General.vue +1 -0
- package/components/common/pages/backups/modals/createBackup/general/GeneralNew.vue +1 -1
- package/components/common/pages/backups/modals/createBackup/general/GeneralOld.vue +59 -9
- package/components/common/pages/backups/modals/lib/config/restore.ts +1 -0
- package/components/common/pages/backups/modals/lib/models/interfaces.ts +1 -0
- package/components/common/pages/backups/modals/restore/New.vue +40 -35
- package/components/common/pages/backups/modals/restore/Restore.vue +4 -5
- package/components/common/pages/backups/modals/restore/disks/tableView/new/Table.vue +6 -1
- package/components/common/pages/backups/modals/restore/disks/tableView/new/lib/config/table.ts +1 -0
- package/components/common/pages/backups/modals/restore/lib/config/steps.ts +1 -1
- package/components/common/pages/backups/modals/restore/name/NameNew.vue +3 -0
- package/components/common/pages/backups/modals/restore/networks/table/new/Table.vue +7 -0
- package/components/common/pages/hardwareHealth/HardwareHealth.vue +69 -148
- package/components/common/pages/hardwareHealth/HardwareHealthNew.vue +252 -0
- package/components/common/pages/hardwareHealth/HardwareHealthOld.vue +192 -0
- package/components/common/pages/hardwareHealth/historyTestimony/Graph.vue +204 -251
- package/components/common/pages/hardwareHealth/historyTestimony/GraphNew.vue +211 -0
- package/components/common/pages/hardwareHealth/historyTestimony/GraphOld.vue +212 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/Tools.vue +96 -248
- package/components/common/pages/hardwareHealth/historyTestimony/tools/ToolsNew.vue +227 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/ToolsOld.vue +289 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/ChartOptionsModal.vue +110 -112
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/ChartOptionsModalNew.vue +173 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/ChartOptionsModalOld.vue +168 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/NotificationNew.vue +22 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/Actions.vue +34 -55
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/ActionsNew.vue +145 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/ActionsOld.vue +81 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/{SaveOptionsModal.vue → saveOptionsModal/SaveOptionsModal.vue} +2 -2
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/Counters.vue +70 -49
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/CountersNew.vue +108 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/CountersOld.vue +93 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/Table.vue +25 -78
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/lib/models/interfaces.ts +13 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/tableNew/TableNew.vue +58 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/tableNew/lib/config/options.ts +19 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/tableNew/lib/config/tableData.ts +73 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/tableNew/lib/utils/constructTable.ts +31 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/tableOld/TableOld.vue +103 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/{lib → tableOld/lib}/config/tableConfig.ts +3 -1
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/timespan/Timespan.vue +50 -33
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/timespan/TimespanNew.vue +177 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/timespan/TimespanOld.vue +65 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/metrics/Metrics.vue +15 -9
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/metrics/MetricsNew.vue +121 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/metrics/MetricsOld.vue +22 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/lib/config/toolbar.ts +68 -5
- package/components/common/pages/hardwareHealth/indicators/Indicators.vue +96 -0
- package/components/common/pages/hardwareHealth/indicators/lib/models/interfaces.ts +5 -0
- package/components/common/pages/hardwareHealth/lib/config/status.ts +14 -0
- package/components/common/pages/hardwareHealth/lib/config/tabsPannel.ts +38 -0
- package/components/common/pages/hardwareHealth/lib/models/enums.ts +1 -1
- package/components/common/pages/hardwareHealth/tableView/new/New.vue +230 -0
- package/components/common/pages/hardwareHealth/tableView/new/lib/config/alertWarningTable.ts +99 -0
- package/components/common/pages/hardwareHealth/tableView/new/lib/config/historyTestimonyTable.ts +126 -0
- package/components/common/pages/hardwareHealth/tableView/new/lib/config/sensorTable.ts +164 -0
- package/components/common/pages/hardwareHealth/tableView/new/lib/config/storageSensorsTable.ts +88 -0
- package/components/common/pages/hardwareHealth/tableView/new/lib/config/systemLogTable.ts +74 -0
- package/components/common/pages/hardwareHealth/tableView/{TableView.vue → old/Old.vue} +16 -7
- package/components/common/pages/hardwareHealth/tableView/{lib → old/lib}/config/alertWarningTable.ts +2 -2
- package/components/common/pages/hardwareHealth/tableView/{lib → old/lib}/config/historyTestimonyTable.ts +2 -2
- package/components/common/pages/hardwareHealth/tableView/{lib → old/lib}/config/sensorTable.ts +2 -2
- package/components/common/pages/hardwareHealth/tableView/{lib → old/lib}/config/storageSensorTable.ts +2 -2
- package/components/common/pages/hardwareHealth/tableView/{lib → old/lib}/config/systemLogTable.ts +2 -2
- package/components/common/pages/hardwareHealth/tableView/{lib → old/lib}/config/tableKeys.ts +1 -1
- package/components/common/pages/hardwareHealth/tableView/{modal → old/modal}/SensorWarning.vue +3 -0
- package/components/common/pages/hardwareHealth/tooltip/Tooltip.vue +73 -0
- package/components/common/pages/licensing/listView/lib/config/list.ts +1 -1
- package/components/common/pages/scheduledTasks/lib/models/interfaces.ts +6 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/Frequency.vue +51 -42
- package/components/common/pages/scheduledTasks/modals/common/frequency/afterStartup/AfterStartup.vue +20 -48
- package/components/common/pages/scheduledTasks/modals/common/frequency/afterStartup/New.vue +73 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/afterStartup/Old.vue +65 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/end/End.vue +18 -69
- package/components/common/pages/scheduledTasks/modals/common/frequency/end/New.vue +104 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/end/Old.vue +112 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/interval/Interval.vue +22 -53
- package/components/common/pages/scheduledTasks/modals/common/frequency/interval/New.vue +79 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/interval/Old.vue +68 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/lib/utils.ts +1 -1
- package/components/common/pages/scheduledTasks/modals/common/frequency/on/New.vue +170 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/on/Old.vue +234 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/on/On.vue +30 -168
- package/components/common/pages/scheduledTasks/modals/common/frequency/on/lib/config/options.ts +17 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/on/selectWeek/New.vue +66 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/on/selectWeek/Old.vue +44 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/on/selectWeek/SelectWeek.vue +17 -28
- package/components/common/pages/scheduledTasks/modals/common/frequency/on/selectWeek/lib/config/weekOptions.ts +20 -50
- package/components/common/pages/scheduledTasks/modals/common/frequency/startOn/New.vue +83 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/startOn/Old.vue +77 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/startOn/StartOn.vue +20 -51
- package/components/common/pages/scheduledTasks/modals/common/taskForm/New.vue +338 -0
- package/components/common/pages/scheduledTasks/modals/common/{newTaskForm/NewTaskForm.vue → taskForm/Old.vue} +12 -69
- package/components/common/pages/scheduledTasks/modals/common/taskForm/TaskForm.vue +129 -0
- package/components/common/pages/scheduledTasks/table/Table.vue +27 -81
- package/components/common/pages/scheduledTasks/table/expandDetails/ExpandDetails.vue +2 -2
- package/components/common/pages/scheduledTasks/table/expandDetails/New.vue +47 -17
- package/components/common/pages/scheduledTasks/table/expandDetails/Old.vue +4 -9
- package/components/common/pages/scheduledTasks/table/expandDetails/historyRun/HistoryRun.vue +16 -54
- package/components/common/pages/scheduledTasks/table/expandDetails/historyRun/new/New.vue +146 -0
- package/components/common/pages/scheduledTasks/table/expandDetails/historyRun/new/lib/config/historyRunsTable.ts +161 -0
- package/components/common/pages/scheduledTasks/table/expandDetails/historyRun/old/Old.vue +68 -0
- package/components/common/pages/scheduledTasks/table/expandDetails/historyRun/{lib → old/lib}/config/historyRunsTable.ts +4 -4
- package/components/common/pages/scheduledTasks/table/expandDetails/historyRun/{lib → old/lib}/config/tableKeys.ts +1 -1
- package/components/common/pages/scheduledTasks/table/expandDetails/lib/config/expandDetails.ts +7 -5
- package/components/common/pages/scheduledTasks/table/expandDetails/lib/models/interfaces.ts +8 -0
- package/components/common/pages/scheduledTasks/table/lib/models/enums.ts +13 -0
- package/components/common/pages/scheduledTasks/table/new/New.vue +318 -0
- package/components/common/pages/scheduledTasks/table/new/lib/config/scheduledTasksTable.ts +192 -0
- package/components/common/pages/scheduledTasks/table/new/lib/models/enums.ts +14 -0
- package/components/common/pages/scheduledTasks/table/old/Old.vue +93 -0
- package/components/common/pages/scheduledTasks/table/{lib → old/lib}/config/scheduledTasksTable.ts +13 -9
- package/components/common/pages/scheduledTasks/table/{lib → old/lib}/config/tableKeys.ts +1 -1
- package/components/common/pages/shortcuts/Shortcuts.vue +1 -1
- package/components/common/pages/shortcuts/category/CategoryNew.vue +1 -0
- package/components/common/pages/shortcuts/category/CategoryOld.vue +1 -0
- package/components/common/pages/shortcuts/lib/models/interfaces.ts +2 -0
- 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/spiceConsole/SpiceConsole.vue +38 -0
- package/components/common/spiceConsole/keyboard/Keyboard.vue +5 -2
- package/components/common/split/horizontal/New.vue +6 -3
- package/components/common/split/horizontal/Old.vue +1 -1
- 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/tools/Actions.vue +8 -3
- package/components/common/tools/lib/models/interfaces.ts +2 -0
- package/components/common/tooltip/Help.vue +28 -28
- package/components/common/vm/actions/add/New.vue +21 -6
- package/components/common/vm/actions/clone/Clone.vue +78 -68
- package/components/common/vm/actions/clone/lib/config/steps.ts +8 -8
- package/components/common/vm/actions/clone/new/New.vue +71 -36
- package/components/common/vm/actions/clone/new/SkeletonName.vue +22 -0
- package/components/common/vm/actions/clone/old/Old.vue +10 -4
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardware.vue +6 -3
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/CdDvdDrive.vue +4 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/New.vue +2 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/Old.vue +6 -3
- 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/Cpu.vue +30 -9
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/New.vue +7 -2
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Old.vue +6 -2
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/coresPerSocket/CoresPerSocket.vue +29 -7
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/shares/Shares.vue +2 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/limit/Limit.vue +3 -2
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/limit/lib/config/options.ts +6 -3
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/Memory.vue +12 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/New.vue +6 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/Old.vue +6 -2
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/NewHardDisk.vue +6 -4
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/reservation/New.vue +2 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/reservation/Reservation.vue +9 -12
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/order/Order.vue +11 -3
- package/components/common/vm/actions/common/select/createType/lib/config/items.ts +1 -1
- package/components/common/vm/actions/common/select/options/New.vue +56 -48
- package/components/common/vm/actions/common/select/options/Old.vue +42 -24
- package/components/common/vm/actions/common/select/options/Options.vue +33 -2
- package/components/common/vm/actions/common/select/storage/Old.vue +0 -1
- package/components/common/vm/actions/common/select/storage/Storage.vue +2 -3
- package/components/common/vm/actions/common/select/storage/new/New.vue +13 -10
- 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/actions/consolidate/New.vue +1 -1
- package/components/common/vm/actions/consolidate/Old.vue +2 -2
- package/components/common/vm/actions/editSettings/EditSettings.vue +20 -1
- package/components/common/vm/actions/register/New.vue +55 -27
- package/components/common/vm/actions/register/lib/config/steps.ts +1 -1
- package/components/common/vm/actions/rename/New.vue +11 -1
- package/components/common/vm/actions/rename/Old.vue +1 -0
- package/components/common/vm/actions/rename/Rename.vue +6 -0
- package/components/common/vm/snapshots/DetailView.vue +6 -6
- package/components/common/vm/snapshots/lib/models/types.ts +1 -0
- package/components/common/vm/snapshots/modals/confirm/New.vue +3 -2
- package/components/common/vm/snapshots/modals/confirm/Old.vue +3 -3
- package/components/common/vm/snapshots/modals/confirm/lib/models/enums.ts +2 -0
- package/components/common/vm/snapshots/modals/lib/config/modalTexts.ts +1 -0
- package/components/common/wizards/common/steps/name/New.vue +56 -35
- 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/_vmfsVersion/lib/config/versionOptions.ts +2 -2
- package/components/common/wizards/datastore/add/steps/nameAndDevice/NameAndDeviceNew.vue +60 -42
- package/components/common/wizards/datastore/add/steps/nameAndDevice/advancedOptions/AdvancedOptions.vue +7 -1
- package/components/common/wizards/datastore/add/steps/nameAndDevice/advancedOptions/New.vue +53 -76
- package/components/common/wizards/datastore/add/steps/nameAndDevice/advancedOptions/Old.vue +13 -61
- package/components/common/wizards/datastore/add/steps/nameAndDevice/advancedOptions/lib/config/raidOptions.ts +35 -0
- package/components/common/wizards/network/add/Add.vue +99 -109
- package/components/common/wizards/network/add/AddNew.vue +50 -21
- package/components/common/wizards/network/add/AddOld.vue +2 -2
- package/components/common/wizards/network/add/lib/config/config.ts +1 -1
- package/components/common/wizards/network/add/lib/config/initialData.ts +23 -9
- package/components/common/wizards/network/add/lib/config/selectSwitch.ts +5 -4
- package/components/common/wizards/network/add/lib/config/steps.ts +4 -2
- package/components/common/wizards/network/add/lib/models/interfaces.ts +1 -0
- package/components/common/wizards/network/add/lib/utils/utils.ts +8 -3
- package/components/common/wizards/network/add/mappers/mappers.ts +12 -5
- package/components/common/wizards/network/add/steps/connectionSettings/ConnectionSettings.vue +19 -13
- package/components/common/wizards/network/add/steps/connectionSettings/ConnectionSettingsNew.vue +10 -2
- package/components/common/wizards/network/add/steps/connectionSettings/ConnectionSettingsOld.vue +11 -4
- package/components/common/wizards/network/add/steps/createStandardSwitch/CreateStandardSwitch.vue +8 -26
- package/components/common/wizards/network/add/steps/ipFourSettings/IpFourSettings.vue +25 -16
- package/components/common/wizards/network/add/steps/ipFourSettings/IpFourSettingsNew.vue +84 -17
- package/components/common/wizards/network/add/steps/ipFourSettings/IpFourSettingsOld.vue +3 -0
- package/components/common/wizards/network/add/steps/portProperties/PortProperties.vue +13 -9
- package/components/common/wizards/network/add/steps/portProperties/PortPropertiesNew.vue +29 -5
- package/components/common/wizards/network/add/steps/portProperties/PortPropertiesOld.vue +8 -3
- package/components/common/wizards/network/add/steps/readyComplete/ReadyComplete.vue +8 -6
- package/components/common/wizards/network/add/steps/readyComplete/ReadyCompleteNew.vue +16 -7
- package/components/common/wizards/network/add/steps/selectConnectionType/SelectConnectionType.vue +7 -8
- package/components/common/wizards/network/add/steps/selectConnectionType/SelectConnectionTypeNew.vue +4 -0
- package/components/common/wizards/network/add/steps/selectTargetDevice/SelectTargetDevice.vue +11 -12
- package/components/common/wizards/network/add/steps/selectTargetDevice/SelectTargetDeviceNew.vue +89 -19
- package/components/common/wizards/network/add/steps/selectTargetDevice/SelectTargetDeviceOld.vue +4 -0
- package/components/common/wizards/network/add/steps/selectTargetDevice/modals/SelectNetwork.vue +8 -9
- package/components/common/wizards/network/add/steps/selectTargetDevice/modals/SelectStandardSwitch.vue +8 -9
- package/components/common/wizards/network/add/steps/selectTargetDevice/modals/SelectSwitch.vue +9 -10
- package/components/common/wizards/network/add/steps/selectTargetDevice/modals/new/SelectNetwork.vue +21 -0
- package/components/common/wizards/network/add/steps/selectTargetDevice/modals/new/SelectStandardSwitch.vue +18 -1
- package/components/common/wizards/network/add/steps/selectTargetDevice/modals/new/SelectSwitch.vue +18 -1
- package/components/common/wizards/network/add/validations/common.ts +8 -3
- package/components/common/wizards/network/add/validations/connectionSettings.ts +2 -2
- package/components/common/wizards/network/add/validations/networkValidation.ts +2 -2
- package/components/common/wizards/network/add/validations/portProperties.ts +2 -2
- package/components/common/wizards/vm/migrate/New.vue +15 -4
- package/components/common/wizards/vm/migrate/Old.vue +1 -1
- 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/ComputeResource.vue +30 -9
- package/components/common/wizards/vm/migrate/steps/computeResource/New.vue +2 -2
- package/components/common/wizards/vm/migrate/steps/computeResource/Old.vue +0 -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/composables/useLocalStorage.ts +1 -1
- package/lib/models/interfaces.ts +3 -0
- package/lib/models/store/tasks/enums.ts +3 -0
- package/lib/models/store/tasks/types.ts +7 -6
- package/lib/utils/validation.ts +3 -2
- package/package.json +3 -3
- package/plugins/directives.ts +3 -5
- package/public/spice-console/application/WorkerProcess.js +411 -303
- package/public/spice-console/application/agent.js +18 -17
- package/public/spice-console/application/application.js +7 -6
- package/public/spice-console/lib/graphic.js +55 -11
- package/public/spice-console/process/mainprocess.js +10 -2
- package/public/spice-console/run.js +19 -8
- package/public/spice-console-minify/WorkerProcess.min.js +1 -1
- package/public/spice-console-minify/run.min.js +1 -1
- package/store/tasks/actions.ts +26 -8
- package/store/tasks/mappers/recentTasks.ts +1 -0
- package/components/common/certificate/lib/config/tabsPannel.ts +0 -22
- package/components/common/pages/scheduledTasks/table/lib/config/schedulerStatus.ts +0 -4
- package/components/common/pages/scheduledTasks/table/lib/models/interfaces.ts +0 -11
- /package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/{Notification.vue → NotificationOld.vue} +0 -0
- /package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/{lib → tableOld/lib}/models/types.ts +0 -0
- /package/components/common/pages/hardwareHealth/tableView/{lib → old/lib}/models/interfaces.ts +0 -0
- /package/components/common/pages/hardwareHealth/tableView/{lib → old/lib}/models/types.ts +0 -0
- /package/components/common/pages/scheduledTasks/modals/common/{newTaskForm → taskForm}/lib/models/interfaces.ts +0 -0
- /package/components/common/pages/scheduledTasks/modals/common/{newTaskForm → taskForm}/lib/utils.ts +0 -0
- /package/components/common/pages/scheduledTasks/table/expandDetails/historyRun/{lib → old/lib}/models/types.ts +0 -0
- /package/components/common/pages/scheduledTasks/table/{lib → old/lib}/models/types.ts +0 -0
|
@@ -1,100 +1,57 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
:selected-scheme="selectedScheme"
|
|
56
|
-
:title="title"
|
|
57
|
-
:project="props.project"
|
|
58
|
-
:target-device="targetDevice"
|
|
59
|
-
:standard-switches-initial="props.standardSwitchesInitial"
|
|
60
|
-
:alert-messages="alertMessages"
|
|
61
|
-
:selected-standard-switch-id="props.selectedStandardSwitchId"
|
|
62
|
-
:selected-switch-id="props.selectedSwitchId"
|
|
63
|
-
:free-adapters="props.freeAdapters"
|
|
64
|
-
:added-adapters="addedAdapters"
|
|
65
|
-
:core-adapters="coreAdapters"
|
|
66
|
-
:adapter-status="adapterStatus"
|
|
67
|
-
:adapters="props.adapters"
|
|
68
|
-
:is-show-no-connected-active-adapters-modal="
|
|
69
|
-
isShowNoConnectedActiveAdaptersModal
|
|
70
|
-
"
|
|
71
|
-
:is-show-no-active-adapters-modal="isShowNoActiveAdaptersModal"
|
|
72
|
-
:is-dark-mode="props.isDarkMode"
|
|
73
|
-
:port-properties="portProperties"
|
|
74
|
-
:mtu-from-switch="mtuFromSwitch"
|
|
75
|
-
:tcp-stacks="props.tcpStacks"
|
|
76
|
-
:ip-four-settings="ipFourSettings"
|
|
77
|
-
:gateway-flag="gatewayFlag"
|
|
78
|
-
:connection-settings="connectionSettings"
|
|
79
|
-
:ready-complete-fields="readyCompleteFields"
|
|
80
|
-
@change-connection-settings="onChangeConnectionSettings"
|
|
81
|
-
@change-gateway-flag="onChangeGatewayFlag"
|
|
82
|
-
@change-ip-four-settings="onChangeIpFourSettings"
|
|
83
|
-
@change-port-properties="onChangePortProperties"
|
|
84
|
-
@get-free-adapters="onGetFreeAdapters"
|
|
85
|
-
@change-added-adapters="onChangeAddedAdapters"
|
|
86
|
-
@change-adapter-status="onChangeAdapterStatus"
|
|
87
|
-
@confirm-no-active-adapters-modal="onConfirmNoActiveAdaptersModal"
|
|
88
|
-
@hide-no-connected-active-adapters-modal="
|
|
89
|
-
onHideNoConnectedActiveAdaptersModal
|
|
90
|
-
"
|
|
91
|
-
@hide-no-active-adapters-modal="onHideNoActiveAdaptersModal"
|
|
92
|
-
@hide-alert="onHideAlert"
|
|
93
|
-
@change-target-device="onChangeTargetDevice"
|
|
94
|
-
@change-steps="onChangeSteps"
|
|
95
|
-
@hide="onHideAddNetworkingModal"
|
|
96
|
-
@submit="onSubmit"
|
|
97
|
-
/>
|
|
2
|
+
<div>
|
|
3
|
+
<component
|
|
4
|
+
:is="currentComponent"
|
|
5
|
+
v-model:connection-type="connectionTypeLocal"
|
|
6
|
+
:show="props.show"
|
|
7
|
+
:wizard="wizard"
|
|
8
|
+
:selected-scheme="selectedScheme"
|
|
9
|
+
:wizard-title="title"
|
|
10
|
+
:host-name="hostNameLocal"
|
|
11
|
+
:project="props.project"
|
|
12
|
+
:target-device="targetDevice"
|
|
13
|
+
:standard-switches-initial="props.standardSwitchesInitial"
|
|
14
|
+
:alert-messages="alertMessages"
|
|
15
|
+
:selected-standard-switch-id="props.selectedStandardSwitchId"
|
|
16
|
+
:selected-switch-id="props.selectedSwitchId"
|
|
17
|
+
:free-adapters="props.freeAdapters"
|
|
18
|
+
:added-adapters="addedAdapters"
|
|
19
|
+
:core-adapters="coreAdapters"
|
|
20
|
+
:adapter-status="adapterStatus"
|
|
21
|
+
:adapters="props.adapters"
|
|
22
|
+
:is-show-no-connected-active-adapters-modal="
|
|
23
|
+
isShowNoConnectedActiveAdaptersModal
|
|
24
|
+
"
|
|
25
|
+
:is-show-no-active-adapters-modal="isShowNoActiveAdaptersModal"
|
|
26
|
+
:is-dark-mode="props.isDarkMode"
|
|
27
|
+
:port-properties="portProperties"
|
|
28
|
+
:mtu-from-switch="mtuFromSwitch"
|
|
29
|
+
:tcp-stacks="props.tcpStacks"
|
|
30
|
+
:ip-four-settings="ipFourSettings"
|
|
31
|
+
:gateway-flag="gatewayFlag"
|
|
32
|
+
:connection-settings="connectionSettings"
|
|
33
|
+
:ready-complete-fields="readyCompleteFields"
|
|
34
|
+
:is-get-existing-switches-loading="props.isGetExistingSwitchesLoading"
|
|
35
|
+
:is-get-tcp-stack-loading="props.isGetTcpStackLoading"
|
|
36
|
+
@change-connection-settings="onChangeConnectionSettings"
|
|
37
|
+
@change-gateway-flag="onChangeGatewayFlag"
|
|
38
|
+
@change-ip-four-settings="onChangeIpFourSettings"
|
|
39
|
+
@change-port-properties="onChangePortProperties"
|
|
40
|
+
@get-free-adapters="onGetFreeAdapters"
|
|
41
|
+
@change-added-adapters="onChangeAddedAdapters"
|
|
42
|
+
@change-adapter-status="onChangeAdapterStatus"
|
|
43
|
+
@confirm-no-active-adapters-modal="onConfirmNoActiveAdaptersModal"
|
|
44
|
+
@hide-no-connected-active-adapters-modal="
|
|
45
|
+
onHideNoConnectedActiveAdaptersModal
|
|
46
|
+
"
|
|
47
|
+
@hide-no-active-adapters-modal="onHideNoActiveAdaptersModal"
|
|
48
|
+
@hide-alert="onHideAlert"
|
|
49
|
+
@change-target-device="onChangeTargetDevice"
|
|
50
|
+
@change-steps="onChangeSteps"
|
|
51
|
+
@hide="onHideAddNetworkingModal"
|
|
52
|
+
@submit="onSubmit"
|
|
53
|
+
/>
|
|
54
|
+
</div>
|
|
98
55
|
</template>
|
|
99
56
|
|
|
100
57
|
<script setup lang="ts">
|
|
@@ -173,6 +130,8 @@ const props = withDefaults(
|
|
|
173
130
|
tcpStacks?: UI_I_TCPStack[]
|
|
174
131
|
diagramsData?: UI_I_DiagramData[]
|
|
175
132
|
isNetworkingLoading?: boolean
|
|
133
|
+
isGetExistingSwitchesLoading?: boolean
|
|
134
|
+
isGetTcpStackLoading?: boolean
|
|
176
135
|
hostName?: string
|
|
177
136
|
}>(),
|
|
178
137
|
{
|
|
@@ -185,6 +144,8 @@ const props = withDefaults(
|
|
|
185
144
|
tcpStacks: () => [],
|
|
186
145
|
diagramsData: [],
|
|
187
146
|
isNetworkingLoading: false,
|
|
147
|
+
isGetExistingSwitchesLoading: false,
|
|
148
|
+
isGetTcpStackLoading: false,
|
|
188
149
|
}
|
|
189
150
|
)
|
|
190
151
|
|
|
@@ -224,6 +185,12 @@ const { $store }: any = useNuxtApp()
|
|
|
224
185
|
|
|
225
186
|
const isNewView = computed<boolean>(() => $store.getters['main/getIsNewView'])
|
|
226
187
|
|
|
188
|
+
const currentComponent = computed(() =>
|
|
189
|
+
isNewView.value
|
|
190
|
+
? defineAsyncComponent(() => import('./AddNew.vue'))
|
|
191
|
+
: defineAsyncComponent(() => import('./AddOld.vue'))
|
|
192
|
+
)
|
|
193
|
+
|
|
227
194
|
const localization = computed<UI_I_Localization>(() => useLocal())
|
|
228
195
|
|
|
229
196
|
const localHostName = ref<string>('')
|
|
@@ -323,7 +290,7 @@ const onChangeTargetDevice = (newTargetDevice: UI_I_TargetDevice): void => {
|
|
|
323
290
|
|
|
324
291
|
// Step's content data and changers (portProperties)
|
|
325
292
|
const portProperties = ref<UI_I_PortProperties>(
|
|
326
|
-
useDeepCopy(portPropertiesInitial)
|
|
293
|
+
useDeepCopy(portPropertiesInitial(localization.value))
|
|
327
294
|
)
|
|
328
295
|
const onChangePortProperties = (newFields: UI_I_PortProperties): void => {
|
|
329
296
|
if (portProperties.value.tcp !== newFields.tcp) {
|
|
@@ -347,7 +314,7 @@ const onChangeGatewayFlag = (newValue: boolean) => {
|
|
|
347
314
|
|
|
348
315
|
// Step's content data and changers (connectionSettings)
|
|
349
316
|
const connectionSettings = ref<UI_I_ConnectionSettings>(
|
|
350
|
-
connectionSettingsInitial
|
|
317
|
+
connectionSettingsInitial(localization.value)
|
|
351
318
|
)
|
|
352
319
|
const onChangeConnectionSettings = (
|
|
353
320
|
newFields: UI_I_ConnectionSettings
|
|
@@ -372,6 +339,7 @@ watch(
|
|
|
372
339
|
const oldCT = oldValues[0] // -> oldConnectionType
|
|
373
340
|
const newTD = newValues[1] // -> newTargetDevice
|
|
374
341
|
const oldTD = oldValues[1] // -> oldTargetDevice
|
|
342
|
+
|
|
375
343
|
if (!oldTD || oldTD.selected !== newTD.selected) {
|
|
376
344
|
flagSwitch = ''
|
|
377
345
|
addedAdapters.value = []
|
|
@@ -520,8 +488,10 @@ const reset = (): void => {
|
|
|
520
488
|
targetDevice.value = useDeepCopy(
|
|
521
489
|
targetDeviceInitialFunc(globalPermissions.value?.['Networks.UpdateSwitch'])
|
|
522
490
|
)
|
|
523
|
-
connectionSettings.value = useDeepCopy(
|
|
524
|
-
|
|
491
|
+
connectionSettings.value = useDeepCopy(
|
|
492
|
+
connectionSettingsInitial(localization.value)
|
|
493
|
+
)
|
|
494
|
+
portProperties.value = useDeepCopy(portPropertiesInitial(localization.value))
|
|
525
495
|
ipFourSettings.value = useDeepCopy(ipFourSettingsInitial)
|
|
526
496
|
coreAdapters.value = []
|
|
527
497
|
addedAdapters.value = []
|
|
@@ -583,7 +553,7 @@ const checkFinal = async (): Promise<UI_I_ArbitraryObject<string>> => {
|
|
|
583
553
|
let type: 'network' | 'vmkernel' | 'adapter' | 'new-switch'
|
|
584
554
|
|
|
585
555
|
if (wizard.isSelectedScheme(0) || wizard.isSelectedScheme(1)) {
|
|
586
|
-
const vlan = getVlanId(portProperties.value.vlanId)
|
|
556
|
+
const vlan = getVlanId(portProperties.value.vlanId, localization.value)
|
|
587
557
|
|
|
588
558
|
data = addNetworkingZeroOrFirstSchemeDataFunc(
|
|
589
559
|
targetDevice.value,
|
|
@@ -598,7 +568,7 @@ const checkFinal = async (): Promise<UI_I_ArbitraryObject<string>> => {
|
|
|
598
568
|
}
|
|
599
569
|
|
|
600
570
|
if (wizard.isSelectedScheme(2) || wizard.isSelectedScheme(3)) {
|
|
601
|
-
const vlan = getVlanId(connectionSettings.value.vlanId)
|
|
571
|
+
const vlan = getVlanId(connectionSettings.value.vlanId, localization.value)
|
|
602
572
|
|
|
603
573
|
data = addNetworkingSecondOrThirdSchemeDataFunc(
|
|
604
574
|
connectionSettings.value,
|
|
@@ -648,9 +618,20 @@ const finalValidationFunc = async (
|
|
|
648
618
|
const stepId = wizard.getStepIdByFieldName(fieldName)
|
|
649
619
|
|
|
650
620
|
if (stepId !== -1) {
|
|
621
|
+
let message = ''
|
|
622
|
+
|
|
623
|
+
if (validationFields[fieldName]) {
|
|
624
|
+
message = `${validationFields[
|
|
625
|
+
fieldName
|
|
626
|
+
][0].toUpperCase()}${validationFields[fieldName].substring(1)}`
|
|
627
|
+
|
|
628
|
+
message =
|
|
629
|
+
message.charAt(message.length - 1) !== '.' ? message + '.' : message
|
|
630
|
+
}
|
|
631
|
+
|
|
651
632
|
stepHasError = wizard.setValidation(stepId, fieldName, {
|
|
652
|
-
fieldMessage:
|
|
653
|
-
alertMessage:
|
|
633
|
+
fieldMessage: message,
|
|
634
|
+
alertMessage: message,
|
|
654
635
|
})
|
|
655
636
|
}
|
|
656
637
|
}
|
|
@@ -826,7 +807,7 @@ const onSubmit = async (): Promise<void> => {
|
|
|
826
807
|
let type: 'network' | 'vmkernel' | 'adapter' | 'new-switch' = 'network'
|
|
827
808
|
|
|
828
809
|
if (wizard.isSelectedScheme(0) || wizard.isSelectedScheme(1)) {
|
|
829
|
-
const vlan = getVlanId(portProperties.value.vlanId)
|
|
810
|
+
const vlan = getVlanId(portProperties.value.vlanId, localization.value)
|
|
830
811
|
type = 'vmkernel'
|
|
831
812
|
data = addNetworkingZeroOrFirstSchemeDataFunc(
|
|
832
813
|
targetDevice.value,
|
|
@@ -839,7 +820,7 @@ const onSubmit = async (): Promise<void> => {
|
|
|
839
820
|
}
|
|
840
821
|
|
|
841
822
|
if (wizard.isSelectedScheme(2) || wizard.isSelectedScheme(3)) {
|
|
842
|
-
const vlan = getVlanId(connectionSettings.value.vlanId)
|
|
823
|
+
const vlan = getVlanId(connectionSettings.value.vlanId, localization.value)
|
|
843
824
|
type = 'network'
|
|
844
825
|
data = addNetworkingSecondOrThirdSchemeDataFunc(
|
|
845
826
|
connectionSettings.value,
|
|
@@ -870,12 +851,21 @@ onMounted(() => {
|
|
|
870
851
|
})
|
|
871
852
|
|
|
872
853
|
watch(
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
854
|
+
[
|
|
855
|
+
() => props.isNetworkingLoading,
|
|
856
|
+
() => props.isGetExistingSwitchesLoading,
|
|
857
|
+
() => props.isGetTcpStackLoading,
|
|
858
|
+
],
|
|
859
|
+
(newValue: [boolean, boolean, boolean]) => {
|
|
860
|
+
const wizardLoading = isNewView.value
|
|
861
|
+
? newValue[0]
|
|
862
|
+
: newValue.some((loading: boolean) => loading)
|
|
863
|
+
|
|
864
|
+
wizard.setLoader(wizardLoading)
|
|
876
865
|
},
|
|
877
866
|
{
|
|
878
867
|
immediate: true,
|
|
868
|
+
deep: true,
|
|
879
869
|
}
|
|
880
870
|
)
|
|
881
871
|
|
|
@@ -44,18 +44,21 @@
|
|
|
44
44
|
>
|
|
45
45
|
<template #subTitle>
|
|
46
46
|
<div ref="selectTargetDeviceBlock">
|
|
47
|
-
<div class="
|
|
47
|
+
<div class="alert-block flex flex-col">
|
|
48
48
|
<template
|
|
49
|
-
v-for="(message, field) in selectedStep.fields"
|
|
50
|
-
:key="
|
|
49
|
+
v-for="(message, field, key) in selectedStep.fields"
|
|
50
|
+
:key="key"
|
|
51
51
|
>
|
|
52
52
|
<ui-alert
|
|
53
|
+
v-if="!!message.alert"
|
|
53
54
|
:messages="[message.alert]"
|
|
54
55
|
test-id="select-target-device-alert"
|
|
55
|
-
|
|
56
|
+
size="md"
|
|
56
57
|
@hide="emits('hide-alert', selectedStep.id, field)"
|
|
57
58
|
/>
|
|
58
59
|
</template>
|
|
60
|
+
</div>
|
|
61
|
+
<div class="subtitle-block flex flex-col">
|
|
59
62
|
<ui-wizard-subtitle :sub-title="selectedStep.subTitle" />
|
|
60
63
|
<ui-line margin="12px 0 0" />
|
|
61
64
|
</div>
|
|
@@ -71,6 +74,9 @@
|
|
|
71
74
|
:alert-messages="props.alertMessages[selectedStep.id]"
|
|
72
75
|
:selected-standard-switch-id="props.selectedStandardSwitchId"
|
|
73
76
|
:selected-switch-id="props.selectedSwitchId"
|
|
77
|
+
:is-get-existing-switches-loading="
|
|
78
|
+
props.isGetExistingSwitchesLoading
|
|
79
|
+
"
|
|
74
80
|
@change-target-device="onChangeTargetDevice"
|
|
75
81
|
/>
|
|
76
82
|
</template>
|
|
@@ -82,18 +88,21 @@
|
|
|
82
88
|
>
|
|
83
89
|
<template #subTitle>
|
|
84
90
|
<div ref="createStandardSwitchBlock">
|
|
85
|
-
<div class="
|
|
91
|
+
<div class="alert-block flex flex-col">
|
|
86
92
|
<template
|
|
87
|
-
v-for="(message, field) in selectedStep.fields"
|
|
88
|
-
:key="
|
|
93
|
+
v-for="(message, field, key) in selectedStep.fields"
|
|
94
|
+
:key="key"
|
|
89
95
|
>
|
|
90
96
|
<ui-alert
|
|
97
|
+
v-if="!!message.alert"
|
|
91
98
|
:messages="[message.alert]"
|
|
92
99
|
test-id="create-standard-switch-alert"
|
|
93
|
-
|
|
100
|
+
size="md"
|
|
94
101
|
@hide="emits('hide-alert', selectedStep.id, field)"
|
|
95
102
|
/>
|
|
96
103
|
</template>
|
|
104
|
+
</div>
|
|
105
|
+
<div class="subtitle-block flex flex-col">
|
|
97
106
|
<ui-wizard-subtitle :sub-title="selectedStep.subTitle" />
|
|
98
107
|
<ui-line margin="12px 0 0" />
|
|
99
108
|
</div>
|
|
@@ -135,18 +144,21 @@
|
|
|
135
144
|
>
|
|
136
145
|
<template #subTitle>
|
|
137
146
|
<div ref="portPropertiesBlock">
|
|
138
|
-
<div class="
|
|
147
|
+
<div class="alert-block flex flex-col">
|
|
139
148
|
<template
|
|
140
|
-
v-for="(message, field) in selectedStep.fields"
|
|
141
|
-
:key="
|
|
149
|
+
v-for="(message, field, key) in selectedStep.fields"
|
|
150
|
+
:key="key"
|
|
142
151
|
>
|
|
143
152
|
<ui-alert
|
|
153
|
+
v-if="!!message.alert"
|
|
144
154
|
:messages="[message.alert]"
|
|
145
155
|
test-id="port-properties-alert"
|
|
146
|
-
|
|
156
|
+
size="md"
|
|
147
157
|
@hide="emits('hide-alert', selectedStep.id, field)"
|
|
148
158
|
/>
|
|
149
159
|
</template>
|
|
160
|
+
</div>
|
|
161
|
+
<div class="subtitle-block flex flex-col">
|
|
150
162
|
<ui-wizard-subtitle :sub-title="selectedStep.subTitle" />
|
|
151
163
|
<ui-line margin="12px 0 0" />
|
|
152
164
|
</div>
|
|
@@ -161,6 +173,8 @@
|
|
|
161
173
|
:messages-fields="selectedStep.fields"
|
|
162
174
|
:alert-messages="props.alertMessages[selectedStep.id]"
|
|
163
175
|
:tcp-stacks="props.tcpStacks"
|
|
176
|
+
:is-get-tcp-stack-loading="props.isGetTcpStackLoading"
|
|
177
|
+
:is-processing="props.wizard.wizardLoader.status"
|
|
164
178
|
@change-gateway-flag="onChangeGatewayFlag"
|
|
165
179
|
@change-port-properties="onChangePortProperties"
|
|
166
180
|
/>
|
|
@@ -173,18 +187,21 @@
|
|
|
173
187
|
>
|
|
174
188
|
<template #subTitle>
|
|
175
189
|
<div ref="ipFourSettingsBlock">
|
|
176
|
-
<div class="
|
|
190
|
+
<div class="alert-block flex flex-col">
|
|
177
191
|
<template
|
|
178
|
-
v-for="(message, field) in selectedStep.fields"
|
|
179
|
-
:key="
|
|
192
|
+
v-for="(message, field, key) in selectedStep.fields"
|
|
193
|
+
:key="key"
|
|
180
194
|
>
|
|
181
195
|
<ui-alert
|
|
196
|
+
v-if="!!message.alert"
|
|
182
197
|
:messages="[message.alert]"
|
|
183
198
|
test-id="ip-four-settings-alert"
|
|
184
|
-
|
|
199
|
+
size="md"
|
|
185
200
|
@hide="emits('hide-alert', selectedStep.id, field)"
|
|
186
201
|
/>
|
|
187
202
|
</template>
|
|
203
|
+
</div>
|
|
204
|
+
<div class="subtitle-block flex flex-col">
|
|
188
205
|
<ui-wizard-subtitle :sub-title="selectedStep.subTitle" />
|
|
189
206
|
<ui-line margin="12px 0 0" />
|
|
190
207
|
</div>
|
|
@@ -199,6 +216,7 @@
|
|
|
199
216
|
:tcp-stacks="props.tcpStacks"
|
|
200
217
|
:tcp="props.portProperties.tcp"
|
|
201
218
|
:gateway-flag="props.gatewayFlag"
|
|
219
|
+
:is-processing="props.wizard.wizardLoader.status"
|
|
202
220
|
@change-gateway-flag="onChangeGatewayFlag"
|
|
203
221
|
@change-ip-four-settings="onChangeIpFourSettings"
|
|
204
222
|
/>
|
|
@@ -211,18 +229,21 @@
|
|
|
211
229
|
>
|
|
212
230
|
<template #subTitle>
|
|
213
231
|
<div ref="connectionSettingsBlock">
|
|
214
|
-
<div class="
|
|
232
|
+
<div class="alert-block flex flex-col">
|
|
215
233
|
<template
|
|
216
|
-
v-for="(message, field) in selectedStep.fields"
|
|
217
|
-
:key="
|
|
234
|
+
v-for="(message, field, key) in selectedStep.fields"
|
|
235
|
+
:key="key"
|
|
218
236
|
>
|
|
219
237
|
<ui-alert
|
|
238
|
+
v-if="!!message.alert"
|
|
220
239
|
:messages="[message.alert]"
|
|
221
240
|
test-id="connection-settings-alert"
|
|
222
|
-
|
|
241
|
+
size="md"
|
|
223
242
|
@hide="emits('hide-alert', selectedStep.id, field)"
|
|
224
243
|
/>
|
|
225
244
|
</template>
|
|
245
|
+
</div>
|
|
246
|
+
<div class="subtitle-block flex flex-col">
|
|
226
247
|
<ui-wizard-subtitle :sub-title="selectedStep.subTitle" />
|
|
227
248
|
<ui-line margin="12px 0 0" />
|
|
228
249
|
</div>
|
|
@@ -232,6 +253,7 @@
|
|
|
232
253
|
<common-wizards-network-add-steps-connection-settings
|
|
233
254
|
:wizard="props.wizard"
|
|
234
255
|
:connection-settings="props.connectionSettings"
|
|
256
|
+
:is-processing="props.wizard.wizardLoader.status"
|
|
235
257
|
:messages-fields="selectedStep.fields"
|
|
236
258
|
:alert-messages="props.alertMessages[selectedStep.id]"
|
|
237
259
|
@change-connection-settings="onChangeConnectionSettings"
|
|
@@ -313,6 +335,8 @@ const props = defineProps<{
|
|
|
313
335
|
gatewayFlag: boolean
|
|
314
336
|
connectionSettings: UI_I_ConnectionSettings
|
|
315
337
|
readyCompleteFields: UI_I_ReadyCompleteFields[]
|
|
338
|
+
isGetExistingSwitchesLoading: boolean
|
|
339
|
+
isGetTcpStackLoading: boolean
|
|
316
340
|
}>()
|
|
317
341
|
|
|
318
342
|
const emits = defineEmits<{
|
|
@@ -341,7 +365,7 @@ const texts = computed<UI_I_WizardTexts>(() => ({
|
|
|
341
365
|
back: localization.value.common.backCap,
|
|
342
366
|
processing: localization.value.common.processing,
|
|
343
367
|
next: localization.value.common.next,
|
|
344
|
-
finish: localization.value.
|
|
368
|
+
finish: localization.value.inventoryMonitor.apply,
|
|
345
369
|
incompleteTitle: localization.value.common.incompleteProcess,
|
|
346
370
|
incompleteMessage: localization.value.common.incompleteProcessMessage,
|
|
347
371
|
incompleteCancel: localization.value.common.cancel,
|
|
@@ -434,6 +458,7 @@ const onChangeSteps = async (value: UI_I_WizardStep[]): Promise<void> => {
|
|
|
434
458
|
}
|
|
435
459
|
:deep(.ui-wizard-content-with-subtitle) {
|
|
436
460
|
padding-right: 0;
|
|
461
|
+
scrollbar-gutter: unset;
|
|
437
462
|
}
|
|
438
463
|
}
|
|
439
464
|
|
|
@@ -447,5 +472,9 @@ const onChangeSteps = async (value: UI_I_WizardStep[]): Promise<void> => {
|
|
|
447
472
|
|
|
448
473
|
:deep(.ui-alert-item) {
|
|
449
474
|
margin-bottom: 12px;
|
|
475
|
+
|
|
476
|
+
&:last-of-type {
|
|
477
|
+
margin-bottom: 16px;
|
|
478
|
+
}
|
|
450
479
|
}
|
|
451
480
|
</style>
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
v-model:show="props.show"
|
|
4
4
|
:wizard="props.wizard"
|
|
5
5
|
:selected-scheme="props.selectedScheme"
|
|
6
|
-
:title="props.
|
|
6
|
+
:title="props.wizardTitle"
|
|
7
7
|
:localization="localization"
|
|
8
8
|
:class="[
|
|
9
9
|
'add-networking-wizard',
|
|
@@ -126,7 +126,7 @@ const props = defineProps<{
|
|
|
126
126
|
show: boolean
|
|
127
127
|
wizard: Wizard
|
|
128
128
|
selectedScheme: number[]
|
|
129
|
-
|
|
129
|
+
wizardTitle: string
|
|
130
130
|
project: UI_T_Project
|
|
131
131
|
connectionType: string
|
|
132
132
|
targetDevice: UI_I_TargetDevice
|
|
@@ -33,16 +33,18 @@ export const targetDeviceInitialFunc = (
|
|
|
33
33
|
mtu: 1500,
|
|
34
34
|
})
|
|
35
35
|
|
|
36
|
-
export const portPropertiesInitial
|
|
36
|
+
export const portPropertiesInitial = (
|
|
37
|
+
localization: UI_I_Localization
|
|
38
|
+
): UI_I_PortProperties => ({
|
|
37
39
|
networkLabel: '',
|
|
38
|
-
vlanId:
|
|
40
|
+
vlanId: `${localization.common.none2} (0)`,
|
|
39
41
|
mtu: {
|
|
40
42
|
option: '0',
|
|
41
43
|
size: 1500,
|
|
42
44
|
},
|
|
43
45
|
tcp: '',
|
|
44
46
|
services: { ...servicesInitial },
|
|
45
|
-
}
|
|
47
|
+
})
|
|
46
48
|
|
|
47
49
|
export const ipFourSettingsInitial: UI_I_IpFourSettings = {
|
|
48
50
|
ipSettings: '0',
|
|
@@ -56,14 +58,26 @@ export const ipFourSettingsInitial: UI_I_IpFourSettings = {
|
|
|
56
58
|
},
|
|
57
59
|
}
|
|
58
60
|
|
|
59
|
-
export const connectionSettingsInitial
|
|
61
|
+
export const connectionSettingsInitial = (
|
|
62
|
+
localization: UI_I_Localization
|
|
63
|
+
): UI_I_ConnectionSettings => ({
|
|
60
64
|
networkLabel: 'VM Network',
|
|
61
|
-
vlanId:
|
|
62
|
-
}
|
|
65
|
+
vlanId: `${localization.common.none2} (0)`,
|
|
66
|
+
})
|
|
63
67
|
|
|
64
|
-
export const
|
|
65
|
-
|
|
66
|
-
|
|
68
|
+
export const vlanIdSelectDataFunc = (
|
|
69
|
+
localization: UI_I_Localization
|
|
70
|
+
): UI_I_VlanIdData[] => [
|
|
71
|
+
{
|
|
72
|
+
text: `${localization.common.none2} (0)`,
|
|
73
|
+
value: `${localization.common.none2} (0)`,
|
|
74
|
+
testId: 'vlan-id-start'
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
text: `${localization.common.all} (4095)`,
|
|
78
|
+
value: `${localization.common.all} (4095)`,
|
|
79
|
+
testId: 'vlan-id-end'
|
|
80
|
+
},
|
|
67
81
|
]
|
|
68
82
|
|
|
69
83
|
export const mtuItemsFunc = (
|
|
@@ -28,7 +28,7 @@ export const selectNetworkTableHeadNewFunc = (
|
|
|
28
28
|
isSortable: true,
|
|
29
29
|
sort: 'asc',
|
|
30
30
|
sortColumn: true,
|
|
31
|
-
width: '
|
|
31
|
+
width: '',
|
|
32
32
|
show: true,
|
|
33
33
|
filter: true,
|
|
34
34
|
},
|
|
@@ -77,7 +77,8 @@ export const selectNetworkTableBodyNewFunc = (
|
|
|
77
77
|
col: 1,
|
|
78
78
|
key: '',
|
|
79
79
|
text: '--',
|
|
80
|
-
}
|
|
80
|
+
},
|
|
81
|
+
,
|
|
81
82
|
{
|
|
82
83
|
col: 2,
|
|
83
84
|
key: '',
|
|
@@ -200,7 +201,7 @@ export const tableOptionsNew: UI_I_DataTableOptions = {
|
|
|
200
201
|
showPageInfo: false,
|
|
201
202
|
isSortable: true,
|
|
202
203
|
server: false,
|
|
203
|
-
isResizable:
|
|
204
|
+
isResizable: true,
|
|
204
205
|
showSearch: false,
|
|
205
206
|
showColumnManager: false,
|
|
206
207
|
withActions: false,
|
|
@@ -224,7 +225,7 @@ export const tableNetworkOptionsNew: UI_I_DataTableOptions = {
|
|
|
224
225
|
showPageInfo: false,
|
|
225
226
|
isSortable: true,
|
|
226
227
|
server: false,
|
|
227
|
-
isResizable:
|
|
228
|
+
isResizable: true,
|
|
228
229
|
showSearch: false,
|
|
229
230
|
showColumnManager: true,
|
|
230
231
|
withActions: false,
|
|
@@ -145,8 +145,8 @@ export const stepsFunc = (
|
|
|
145
145
|
},
|
|
146
146
|
{
|
|
147
147
|
id: 7,
|
|
148
|
-
title: localization.
|
|
149
|
-
subTitle: localization.common.
|
|
148
|
+
title: localization.vmWizard.readyComplete,
|
|
149
|
+
subTitle: localization.common.addNetworkingReadyCompleteSubtitle,
|
|
150
150
|
status: UI_E_WIZARD_STATUS.INACTIVE,
|
|
151
151
|
fields: {},
|
|
152
152
|
isValid: true,
|
|
@@ -326,6 +326,7 @@ const makeFirstColumnOfZeroAndFirstScheme = (
|
|
|
326
326
|
{
|
|
327
327
|
name: localization.common.newStandardSwitch,
|
|
328
328
|
value: '--',
|
|
329
|
+
icon: 'network-lib-ui-icon-vswitch',
|
|
329
330
|
},
|
|
330
331
|
{
|
|
331
332
|
name: localization.common.assignedAdapters,
|
|
@@ -512,6 +513,7 @@ export const createFifthSchemeReadyCompleteFunc = (
|
|
|
512
513
|
{
|
|
513
514
|
name: localization.common.newStandardSwitch,
|
|
514
515
|
value: '--',
|
|
516
|
+
icon: 'network-lib-ui-icon-vswitch',
|
|
515
517
|
},
|
|
516
518
|
{
|
|
517
519
|
name: localization.common.assignedAdapters,
|