bfg-common 1.6.74 → 1.6.75

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.
Files changed (165) hide show
  1. package/assets/localization/local_be.json +272 -11
  2. package/assets/localization/local_en.json +291 -29
  3. package/assets/localization/local_hy.json +274 -13
  4. package/assets/localization/local_kk.json +272 -11
  5. package/assets/localization/local_ru.json +286 -25
  6. package/assets/localization/local_zh.json +273 -12
  7. package/assets/scss/common/global.scss +11 -0
  8. package/assets/scss/common/normalize.scss +3 -0
  9. package/assets/scss/common/theme.scss +2 -2
  10. package/components/atoms/stack/StackBlock.vue +1 -1
  11. package/components/atoms/table/dataGrid/DataGridColumnSwitch.vue +2 -2
  12. package/components/atoms/tooltip/TooltipError.vue +3 -0
  13. package/components/common/adapterManager/AdapterManagerNew.vue +86 -0
  14. package/components/common/adapterManager/addAdapterModal/AddAdapterModalNew.vue +1 -1
  15. package/components/common/adapterManager/addAdapterWarningModal/AddAdapterWarningModalNew.vue +0 -1
  16. package/components/common/adapterManager/ui/actions/bar/Bar.vue +2 -0
  17. package/components/common/adapterManager/ui/actions/bar/BarNew.vue +3 -2
  18. package/components/common/adapterManager/ui/table/adapters/AdaptersNew.vue +1 -0
  19. package/components/common/certificate/CertificateInfo.vue +7 -1
  20. package/components/common/configure/physicalAdapters/PhysicalAdapters.vue +6 -0
  21. package/components/common/configure/physicalAdapters/PhysicalAdaptersNew.vue +219 -192
  22. package/components/common/configure/physicalAdapters/PhysicalAdaptersOld.vue +6 -4
  23. package/components/common/configure/physicalAdapters/buttons/Buttons.vue +1 -0
  24. package/components/common/configure/physicalAdapters/modals/edit/Edit.vue +26 -1
  25. package/components/common/configure/physicalAdapters/modals/edit/EditNew.vue +30 -1
  26. package/components/common/configure/physicalAdapters/modals/edit/lib/models/interfaces.ts +5 -0
  27. package/components/common/configure/physicalAdapters/modals/edit/lib/validations/validations.ts +19 -0
  28. package/components/common/configure/physicalAdapters/tableView/TableViewNew.vue +12 -1
  29. package/components/common/configure/physicalAdapters/tableView/lib/config/physicalAdaptersTableConfigNew.ts +21 -21
  30. package/components/common/configure/physicalAdapters/tableView/lib/config/settings.ts +12 -5
  31. package/components/common/configure/physicalAdapters/tableView/lib/models/interfaces.ts +4 -1
  32. package/components/common/diagramMain/Diagram.vue +169 -85
  33. package/components/common/diagramMain/DiagramMain.vue +40 -10
  34. package/components/common/diagramMain/header/Header.vue +49 -0
  35. package/components/common/diagramMain/header/HeaderNew.vue +155 -0
  36. package/components/common/diagramMain/{Header.vue → header/HeaderOld.vue} +78 -67
  37. package/components/common/diagramMain/modals/Modals.vue +4 -0
  38. package/components/common/diagramMain/modals/UnsavedChangesModal.vue +32 -0
  39. package/components/common/diagramMain/modals/editSettings/EditSettings.vue +104 -102
  40. package/components/common/diagramMain/modals/editSettings/EditSettingsNew.vue +285 -0
  41. package/components/common/diagramMain/modals/editSettings/EditSettingsOld.vue +254 -0
  42. package/components/common/diagramMain/modals/editSettings/confirmTeamingSettingsModal/ConfirmTeamingSettingsModal.vue +31 -0
  43. package/components/common/diagramMain/modals/editSettings/confirmTeamingSettingsModal/ConfirmTeamingSettingsModalNew.vue +82 -0
  44. package/components/common/diagramMain/modals/editSettings/{ConfirmTeamingSettingsModal.vue → confirmTeamingSettingsModal/ConfirmTeamingSettingsModalOld.vue} +2 -5
  45. package/components/common/diagramMain/modals/editSettings/lib/config/config.ts +15 -0
  46. package/components/common/diagramMain/modals/editSettings/lib/models/interfaces.ts +6 -0
  47. package/components/common/diagramMain/modals/editSettings/lib/utils/utils.ts +177 -0
  48. package/components/common/diagramMain/modals/editSettings/modal/EditSettingsModal.vue +137 -0
  49. package/components/common/diagramMain/modals/editSettings/modal/EditSettingsModalNew.vue +91 -0
  50. package/components/common/diagramMain/modals/editSettings/{EditSettingsModal.vue → modal/EditSettingsModalOld.vue} +12 -51
  51. package/components/common/diagramMain/modals/editSettings/tabs/networkProperties/NetworkProperties.vue +158 -0
  52. package/components/common/diagramMain/modals/editSettings/tabs/networkProperties/NetworkPropertiesNew.vue +262 -0
  53. package/components/common/diagramMain/modals/editSettings/tabs/{NetworkProperties.vue → networkProperties/NetworkPropertiesOld.vue} +12 -113
  54. package/components/common/diagramMain/modals/editSettings/tabs/port/ipvFourSettings/IpvFourSettings.vue +192 -0
  55. package/components/common/diagramMain/modals/editSettings/tabs/port/ipvFourSettings/IpvFourSettingsNew.vue +388 -0
  56. package/components/common/diagramMain/modals/editSettings/tabs/port/{IpvFourSettings.vue → ipvFourSettings/IpvFourSettingsOld.vue} +11 -152
  57. package/components/common/diagramMain/modals/editSettings/tabs/port/portProperties/PortProperties.vue +139 -0
  58. package/components/common/diagramMain/modals/editSettings/tabs/port/portProperties/PortPropertiesNew.vue +286 -0
  59. package/components/common/diagramMain/modals/editSettings/tabs/port/{PortProperties.vue → portProperties/PortPropertiesOld.vue} +12 -103
  60. package/components/common/diagramMain/modals/editSettings/tabs/security/Security.vue +209 -0
  61. package/components/common/diagramMain/modals/editSettings/tabs/security/SecurityNew.vue +233 -0
  62. package/components/common/diagramMain/modals/editSettings/tabs/{Security.vue → security/SecurityOld.vue} +25 -48
  63. package/components/common/diagramMain/modals/editSettings/tabs/switchProperties/SwitchProperties.vue +128 -0
  64. package/components/common/diagramMain/modals/editSettings/tabs/switchProperties/SwitchPropertiesNew.vue +235 -0
  65. package/components/common/diagramMain/modals/editSettings/tabs/{SwitchProperties.vue → switchProperties/SwitchPropertiesOld.vue} +12 -89
  66. package/components/common/diagramMain/modals/editSettings/tabs/teamingFailover/TeamingFailover.vue +99 -0
  67. package/components/common/diagramMain/modals/editSettings/tabs/teamingFailover/TeamingFailoverNew.vue +319 -0
  68. package/components/common/diagramMain/modals/editSettings/tabs/{TeamingFailover.vue → teamingFailover/TeamingFailoverOld.vue} +11 -48
  69. package/components/common/diagramMain/modals/editSettings/tabs/trafficShaping/TrafficShaping.vue +173 -0
  70. package/components/common/diagramMain/modals/editSettings/tabs/trafficShaping/TrafficShapingNew.vue +348 -0
  71. package/components/common/diagramMain/modals/editSettings/tabs/{TrafficShaping.vue → trafficShaping/TrafficShapingOld.vue} +12 -134
  72. package/components/common/diagramMain/modals/lib/config/diagramConfig.ts +43 -2
  73. package/components/common/diagramMain/modals/lib/config/index.ts +2 -1
  74. package/components/common/diagramMain/modals/lib/config/vmKernelAdapter.ts +1 -1
  75. package/components/common/diagramMain/modals/lib/utils/index.ts +34 -4
  76. package/components/common/diagramMain/modals/migrateVmkernelAdapter/MigrateVmkernelAdapter.vue +2 -2
  77. package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/common.ts +1 -1
  78. package/components/common/diagramMain/skeleton/Header.vue +31 -0
  79. package/components/common/diagramMain/skeleton/Switch.vue +75 -0
  80. package/components/common/layout/theHeader/ThemeSwitch.vue +1 -1
  81. package/components/common/layout/theHeader/modals/reconnect/New.vue +38 -30
  82. package/components/common/layout/theHeader/userMenu/modals/changePassword/New.vue +8 -9
  83. package/components/common/layout/theHeader/userMenu/modals/preferences/New.vue +4 -0
  84. package/components/common/layout/theHeader/userMenu/modals/preferences/Old.vue +9 -2
  85. package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/ChangeLanguage.vue +11 -7
  86. package/components/common/layout/theHeader/userMenu/modals/preferences/defaultConsole/DefaultConsole.vue +7 -1
  87. package/components/common/layout/theHeader/userMenu/modals/preferences/defaultConsole/lib/config/consoleOptions.ts +8 -5
  88. package/components/common/layout/theHeader/userMenu/modals/preferences/timeFormat/TimeFormat.vue +9 -5
  89. package/components/common/layout/theHeader/userMenu/modals/preferences/timeFormat/lib/config/formatOptions.ts +1 -1
  90. package/components/common/layout/theHeader/userMenu/modals/preferences/view/Old.vue +5 -9
  91. package/components/common/layout/theHeader/userMenu/modals/preferences/view/View.vue +9 -6
  92. package/components/common/mainNavigationPanel/MainNavigationPanelNew.vue +3 -1
  93. package/components/common/modals/Rename.vue +3 -1
  94. package/components/common/noDataProvided/NoDataProvidedNew.vue +1 -1
  95. package/components/common/pages/backups/modals/createBackup/datastores/tableView/new/lib/config/table.ts +4 -4
  96. package/components/common/pages/backups/modals/createBackup/datastores/tableView/old/lib/config/table.ts +4 -4
  97. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/ChartOptionsModal.vue +184 -253
  98. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/ActionsNew.vue +1 -1
  99. package/components/common/pages/scheduledTasks/table/lib/models/enums.ts +9 -0
  100. package/components/common/pages/scheduledTasks/table/new/New.vue +12 -10
  101. package/components/common/pages/tasks/Tasks.vue +4 -1
  102. package/components/common/pages/tasks/table/Table.vue +25 -23
  103. package/components/common/readyToComplete/New.vue +1 -0
  104. package/components/common/split/vertical/New.vue +42 -8
  105. package/components/common/split/vertical/Old.vue +31 -2
  106. package/components/common/split/vertical/Vertical.vue +4 -0
  107. package/components/common/tools/Actions.vue +7 -3
  108. package/components/common/tools/lib/models/interfaces.ts +1 -0
  109. package/components/common/vm/actions/add/New.vue +21 -6
  110. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/media/Media.vue +14 -1
  111. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/media/New.vue +5 -0
  112. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/media/Old.vue +1 -0
  113. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/New.vue +1 -0
  114. package/components/common/vm/actions/common/customizeHardware/virtualHardware/reservation/New.vue +2 -0
  115. package/components/common/vm/actions/common/select/options/New.vue +14 -12
  116. package/components/common/vm/actions/common/select/options/Old.vue +16 -15
  117. package/components/common/vm/actions/common/select/storage/new/lib/config/table.ts +13 -15
  118. package/components/common/vm/actions/confirm/Confirm.vue +3 -0
  119. package/components/common/vm/actions/rename/Old.vue +1 -0
  120. package/components/common/vm/snapshots/DetailView.vue +6 -6
  121. package/components/common/wizards/datastore/add/New.vue +6 -0
  122. package/components/common/wizards/datastore/add/lib/config/steps.ts +1 -1
  123. package/components/common/wizards/datastore/add/steps/nameAndDevice/NameAndDeviceNew.vue +1 -1
  124. package/components/common/wizards/datastore/add/steps/nameAndDevice/advancedOptions/New.vue +1 -1
  125. package/components/common/wizards/network/add/Add.vue +13 -2
  126. package/components/common/wizards/network/add/AddNew.vue +22 -26
  127. package/components/common/wizards/network/add/lib/config/initialData.ts +6 -4
  128. package/components/common/wizards/network/add/lib/config/steps.ts +1 -1
  129. package/components/common/wizards/network/add/lib/models/interfaces.ts +1 -0
  130. package/components/common/wizards/network/add/lib/utils/utils.ts +1 -1
  131. package/components/common/wizards/network/add/steps/connectionSettings/ConnectionSettingsOld.vue +5 -1
  132. package/components/common/wizards/network/add/steps/ipFourSettings/IpFourSettingsNew.vue +2 -8
  133. package/components/common/wizards/network/add/steps/ipFourSettings/IpFourSettingsOld.vue +3 -0
  134. package/components/common/wizards/network/add/steps/portProperties/PortPropertiesNew.vue +2 -8
  135. package/components/common/wizards/network/add/steps/portProperties/PortPropertiesOld.vue +6 -2
  136. package/components/common/wizards/network/add/steps/selectTargetDevice/SelectTargetDeviceNew.vue +10 -3
  137. package/components/common/wizards/network/add/steps/selectTargetDevice/SelectTargetDeviceOld.vue +4 -0
  138. package/components/common/wizards/network/add/steps/selectTargetDevice/modals/new/SelectNetwork.vue +5 -1
  139. package/components/common/wizards/network/add/validations/common.ts +1 -1
  140. package/components/common/wizards/vm/migrate/New.vue +13 -3
  141. package/components/common/wizards/vm/migrate/lib/config/constructDataReady.ts +5 -0
  142. package/components/common/wizards/vm/migrate/lib/config/steps.ts +3 -2
  143. package/components/common/wizards/vm/migrate/steps/computeResource/New.vue +2 -1
  144. package/components/common/wizards/vm/migrate/steps/computeResource/tableView/new/New.vue +40 -21
  145. package/components/common/wizards/vm/migrate/steps/computeResource/tableView/new/lib/config/clusterTable.ts +340 -0
  146. package/components/common/wizards/vm/migrate/steps/computeResource/tableView/new/lib/config/hostTable.ts +44 -14
  147. package/components/common/wizards/vm/migrate/steps/computeResource/tableView/new/lib/models/enums.ts +4 -0
  148. package/components/common/wizards/vm/migrate/steps/priority/New.vue +7 -2
  149. package/components/common/wizards/vm/migrate/steps/selectStorage/New.vue +22 -7
  150. package/components/common/wizards/vm/migrate/steps/selectStorage/configure/batch/New.vue +6 -0
  151. package/components/common/wizards/vm/migrate/steps/selectStorage/configure/batch/table/new/New.vue +4 -1
  152. package/components/common/wizards/vm/migrate/steps/selectStorage/configure/batch/table/new/lib/config/datastoreTable.ts +12 -16
  153. package/components/common/wizards/vm/migrate/steps/selectStorage/configure/disk/table/new/New.vue +10 -5
  154. package/components/common/wizards/vm/migrate/steps/selectStorage/configure/disk/table/new/lib/config/diskTable.ts +16 -11
  155. package/components/common/wizards/vm/migrate/steps/selectStorage/configure/disk/table/old/lib/config/diskTable.ts +7 -1
  156. package/components/common/wizards/vm/migrate/steps/selectStorage/selectedPerDisk/New.vue +17 -10
  157. package/components/common/wizards/vm/migrate/steps/type/TypeNew.vue +1 -0
  158. package/components/common/wizards/vm/migrate/vmOrigin/New.vue +35 -15
  159. package/lib/models/store/tasks/enums.ts +3 -0
  160. package/lib/models/store/tasks/types.ts +7 -6
  161. package/package.json +2 -2
  162. package/plugins/directives.ts +3 -5
  163. package/public/spice-console/application/agent.js +18 -17
  164. package/store/tasks/actions.ts +26 -8
  165. package/store/tasks/mappers/recentTasks.ts +1 -0
@@ -4,12 +4,13 @@
4
4
  v-model:config-speed="configSpeed"
5
5
  v-model:status="sriovStatus"
6
6
  v-model:number-of-functions="numberOfFunctions"
7
+ v-model:errors="errors"
7
8
  :selected-adapter="props.selectedAdapter"
8
9
  :has-speed="props.hasSpeed"
9
10
  :configured-speed-options="configuredSpeedOptions"
10
11
  :sr-options="srOptions"
11
12
  @hide="emits('hide')"
12
- @send-edit-data="emits('send-edit-data')"
13
+ @send-edit-data="onSendData"
13
14
  />
14
15
  </template>
15
16
 
@@ -20,11 +21,13 @@ import type { UI_I_SwitchAdapterItem } from '~/components/common/diagramMain/lib
20
21
  import type {
21
22
  UI_I_ConfiguredSpeedOption,
22
23
  UI_I_SrOption,
24
+ UI_I_SrOptionError,
23
25
  } from '~/components/common/configure/physicalAdapters/modals/edit/lib/models/interfaces'
24
26
  import {
25
27
  configuredSpeedOptionsFunc,
26
28
  srOptionsFunc,
27
29
  } from '~/components/common/configure/physicalAdapters/modals/edit/lib/config/config'
30
+ import { vfNumberValidationFunc } from '~/components/common/configure/physicalAdapters/modals/edit/lib/validations/validations'
28
31
 
29
32
  const { $store }: any = useNuxtApp()
30
33
 
@@ -60,6 +63,11 @@ const srOptions = computed<(UI_I_SrOption | UI_I_OptionItem)[]>(() =>
60
63
  srOptionsFunc(localization.value, isNewView.value)
61
64
  )
62
65
 
66
+ const errors = ref<UI_I_SrOptionError>({
67
+ alert: '',
68
+ field: '',
69
+ })
70
+
63
71
  watch(
64
72
  configuredSpeedOptions,
65
73
  (newValue: (UI_I_ConfiguredSpeedOption | UI_I_OptionItem)[]) => {
@@ -67,6 +75,23 @@ watch(
67
75
  },
68
76
  { deep: true, immediate: true }
69
77
  )
78
+
79
+ const onSendData = (): void => {
80
+ const alertMessage = vfNumberValidationFunc(
81
+ numberOfFunctions.value,
82
+ localization.value,
83
+ true
84
+ )
85
+
86
+ if (alertMessage) {
87
+ errors.value.alert = alertMessage
88
+ return
89
+ }
90
+
91
+ errors.value.alert = ''
92
+
93
+ emits('send-edit-data')
94
+ }
70
95
  </script>
71
96
 
72
97
  <style scoped lang="scss">
@@ -11,6 +11,14 @@
11
11
  @submit="emits('send-edit-data')"
12
12
  >
13
13
  <template #content>
14
+ <ui-alert
15
+ v-if="!!errors.alert"
16
+ :messages="[errors.alert]"
17
+ test-id="virtual-functions-alert"
18
+ size="md"
19
+ class="virtual-functions-alert"
20
+ @hide="onHideAlert"
21
+ />
14
22
  <div class="form-group">
15
23
  <div class="form-group-speed">
16
24
  <label class="config-speed-title title">
@@ -30,7 +38,7 @@
30
38
  <div v-if="props.hasSpeed" class="form-group-sr">
31
39
  <ui-line margin="24px 0 16px" />
32
40
  <label class="sr-title title">
33
- {{ localization.common.status }}
41
+ {{ localization.common.srIov }}
34
42
  </label>
35
43
  <p class="sr-description">
36
44
  {{ localization.common.srIovDescription }}
@@ -59,6 +67,7 @@
59
67
  :placeholder="localization.common.virtualFunctions"
60
68
  size="md"
61
69
  type="number"
70
+ :error="sriovStatus ? errors.field : ''"
62
71
  :disabled="!sriovStatus"
63
72
  />
64
73
  </div>
@@ -85,6 +94,8 @@ import type { UI_I_ModalTexts } from '~/node_modules/bfg-uikit/components/ui/mod
85
94
  import type { UI_I_OptionItem } from '~/node_modules/bfg-common/components/atoms/lib/models/interfaces'
86
95
  import type { UI_I_Localization } from '~/lib/models/interfaces'
87
96
  import type { UI_I_SwitchAdapterItem } from '~/components/common/diagramMain/lib/models/interfaces'
97
+ import type { UI_I_SrOptionError } from '~/components/common/configure/physicalAdapters/modals/edit/lib/models/interfaces'
98
+ import { vfNumberValidationFunc } from '~/components/common/configure/physicalAdapters/modals/edit/lib/validations/validations'
88
99
 
89
100
  const props = defineProps<{
90
101
  hasSpeed: boolean
@@ -109,6 +120,7 @@ const modalTexts = ref<UI_I_ModalTexts>({
109
120
  const configSpeed = defineModel<string>('config-speed')
110
121
  const sriovStatus = defineModel<boolean>('status')
111
122
  const numberOfFunctions = defineModel<number>('number-of-functions')
123
+ const errors = defineModel<UI_I_SrOptionError>('errors')
112
124
 
113
125
  const status = computed({
114
126
  get() {
@@ -118,6 +130,19 @@ const status = computed({
118
130
  sriovStatus.value = newValue === '1'
119
131
  },
120
132
  })
133
+
134
+ watch(
135
+ numberOfFunctions,
136
+ (newValue: number): void => {
137
+ errors.value.field = vfNumberValidationFunc(newValue, localization.value)
138
+ errors.value.alert = ''
139
+ },
140
+ { immediate: true }
141
+ )
142
+
143
+ const onHideAlert = (): void => {
144
+ errors.value.alert = ''
145
+ }
121
146
  </script>
122
147
 
123
148
  <style scoped lang="scss">
@@ -200,4 +225,8 @@ const status = computed({
200
225
  }
201
226
  }
202
227
  }
228
+
229
+ .virtual-functions-alert {
230
+ margin: 8px 32px;
231
+ }
203
232
  </style>
@@ -10,3 +10,8 @@ export interface UI_I_SrOption {
10
10
  value: string
11
11
  text: string
12
12
  }
13
+
14
+ export interface UI_I_SrOptionError {
15
+ alert: string
16
+ field: string
17
+ }
@@ -0,0 +1,19 @@
1
+ import type { UI_I_Localization } from '~/lib/models/interfaces'
2
+
3
+ export const vfNumberValidationFunc = (
4
+ vfNumber: number,
5
+ localization: UI_I_Localization,
6
+ isAlert = false
7
+ ): string => {
8
+ if (vfNumber !== 0 && !vfNumber) {
9
+ return isAlert
10
+ ? localization.inventoryConfigure.vfRequiredMessage
11
+ : localization.common.fieldRequired
12
+ } else if (vfNumber < 1 || vfNumber > 63) {
13
+ return isAlert
14
+ ? localization.inventoryConfigure.vfNotNegativeMessage
15
+ : localization.inventoryConfigure.vfNotNegativeMessage
16
+ }
17
+
18
+ return ''
19
+ }
@@ -170,7 +170,9 @@ const actions = computed<UI_I_ButtonsGroup>(() => [
170
170
  value: 'edit',
171
171
  testId: 'edit-physical-adapted',
172
172
  id: 'edit-physical-adapted',
173
+ iconName: 'edit',
173
174
  disabled: !props.hasSelectedAdapter,
175
+ development: true,
174
176
  },
175
177
  ])
176
178
 
@@ -247,6 +249,11 @@ const onShowEditModal = (id: string): void => {
247
249
  :deep(.table-container) {
248
250
  height: 100%;
249
251
  grid-template-rows: min-content auto min-content;
252
+
253
+ .title-container {
254
+ margin-right: 16px;
255
+ }
256
+
250
257
  &.full-width-search {
251
258
  grid-template-rows: min-content min-content auto min-content;
252
259
  }
@@ -322,7 +329,7 @@ const onShowEditModal = (id: string): void => {
322
329
  }
323
330
  }
324
331
  &-text {
325
- line-height: 16px;
332
+ line-height: 18px;
326
333
  }
327
334
  }
328
335
 
@@ -331,4 +338,8 @@ const onShowEditModal = (id: string): void => {
331
338
  white-space: nowrap;
332
339
  }
333
340
  }
341
+
342
+ :deep(.ui-button-group-dots-icon) {
343
+ padding-left: 0;
344
+ }
334
345
  </style>
@@ -8,96 +8,96 @@ import type { UI_I_PhysicalAdapter } from '~/components/common/configure/physica
8
8
  import { physicalAdaptersTableItemsTuple } from '~/components/common/configure/physicalAdapters/tableView/lib/config/tableKeys'
9
9
 
10
10
  export const getHeaderDataFunc = (
11
- localization: UI_I_Localization
11
+ localization: UI_I_Localization
12
12
  ): UI_I_DataTableHeader[] => [
13
13
  {
14
14
  col: 'col0',
15
- colName: [physicalAdaptersTableItemsTuple[0]],
15
+ colName: physicalAdaptersTableItemsTuple[0],
16
16
  text: localization.common[physicalAdaptersTableItemsTuple[0]],
17
17
  isSortable: true,
18
18
  sort: 'asc',
19
19
  sortColumn: true,
20
- width: '30%',
20
+ width: '160px',
21
21
  show: true,
22
22
  filter: true,
23
23
  },
24
24
  {
25
25
  col: 'col1',
26
- colName: [physicalAdaptersTableItemsTuple[1]],
26
+ colName: physicalAdaptersTableItemsTuple[1],
27
27
  text: localization.common[physicalAdaptersTableItemsTuple[1]],
28
28
  isSortable: true,
29
29
  sort: 'asc',
30
- width: '20%',
30
+ width: '200px',
31
31
  show: true,
32
32
  filter: true,
33
33
  },
34
34
  {
35
35
  col: 'col2',
36
- colName: [physicalAdaptersTableItemsTuple[2]],
36
+ colName: physicalAdaptersTableItemsTuple[2],
37
37
  text: localization.common[physicalAdaptersTableItemsTuple[2]],
38
38
  isSortable: true,
39
39
  sort: 'asc',
40
- width: '20%',
40
+ width: '240px',
41
41
  show: true,
42
42
  filter: true,
43
43
  },
44
44
  {
45
45
  col: 'col3',
46
- colName: [physicalAdaptersTableItemsTuple[3]],
46
+ colName: physicalAdaptersTableItemsTuple[3],
47
47
  text: localization.common[physicalAdaptersTableItemsTuple[3]],
48
48
  isSortable: true,
49
49
  sort: 'asc',
50
- width: '20%',
50
+ width: '140px',
51
51
  show: true,
52
52
  filter: true,
53
53
  },
54
54
  {
55
55
  col: 'col4',
56
- colName: [physicalAdaptersTableItemsTuple[4]],
56
+ colName: physicalAdaptersTableItemsTuple[4],
57
57
  text: localization.common[physicalAdaptersTableItemsTuple[4]],
58
58
  isSortable: true,
59
59
  sort: 'asc',
60
- width: '20%',
60
+ width: '176px',
61
61
  show: true,
62
62
  filter: true,
63
63
  },
64
64
  {
65
65
  col: 'col5',
66
- colName: [physicalAdaptersTableItemsTuple[5]],
66
+ colName: physicalAdaptersTableItemsTuple[5],
67
67
  text: localization.common[physicalAdaptersTableItemsTuple[5]],
68
68
  isSortable: true,
69
69
  sort: 'asc',
70
- width: '20%',
70
+ width: '174px',
71
71
  show: true,
72
72
  filter: true,
73
73
  },
74
74
  {
75
75
  col: 'col6',
76
- colName: [physicalAdaptersTableItemsTuple[6]],
76
+ colName: physicalAdaptersTableItemsTuple[6],
77
77
  text: localization.common[physicalAdaptersTableItemsTuple[6]],
78
78
  isSortable: true,
79
79
  sort: 'asc',
80
- width: '20%',
80
+ width: '200px',
81
81
  show: true,
82
82
  filter: true,
83
83
  },
84
84
  {
85
85
  col: 'col7',
86
- colName: [physicalAdaptersTableItemsTuple[7]],
86
+ colName: physicalAdaptersTableItemsTuple[7],
87
87
  text: localization.common[physicalAdaptersTableItemsTuple[7]],
88
88
  isSortable: true,
89
89
  sort: 'asc',
90
- width: '20%',
90
+ width: '200px',
91
91
  show: true,
92
92
  filter: true,
93
93
  },
94
94
  {
95
95
  col: 'col8',
96
- colName: [physicalAdaptersTableItemsTuple[8]],
96
+ colName: physicalAdaptersTableItemsTuple[8],
97
97
  text: localization.common[physicalAdaptersTableItemsTuple[8]],
98
98
  isSortable: true,
99
99
  sort: 'asc',
100
- width: '20%',
100
+ width: '140px',
101
101
  show: true,
102
102
  filter: true,
103
103
  },
@@ -131,8 +131,8 @@ export const options: UI_I_DataTableOptions = {
131
131
  }
132
132
 
133
133
  export const getBodyDataFunc = (
134
- bodyData: UI_I_PhysicalAdapter[],
135
- selectedRow: number
134
+ bodyData: UI_I_PhysicalAdapter[],
135
+ selectedRow: number
136
136
  ): UI_I_DataTableBody[] => {
137
137
  return bodyData.map((adapter: UI_I_PhysicalAdapter, index: number) => {
138
138
  return {
@@ -11,22 +11,22 @@ export const adapterViewSettingsModalTabsFunc = (
11
11
  {
12
12
  text: localization.common.all,
13
13
  value: 0,
14
- testId: 'physical-adapter-view-all-settings'
14
+ testId: 'physical-adapter-view-all-settings',
15
15
  },
16
16
  {
17
17
  text: localization.common.properties,
18
18
  value: 1,
19
- testId: 'physical-adapter-view-properties-setting'
19
+ testId: 'physical-adapter-view-properties-setting',
20
20
  },
21
21
  {
22
22
  text: localization.common.cdp,
23
23
  value: 2,
24
- testId: 'physical-adapter-view-cdp-setting'
24
+ testId: 'physical-adapter-view-cdp-setting',
25
25
  },
26
26
  {
27
27
  text: localization.common.lldp,
28
28
  value: 3,
29
- testId: 'physical-adapter-view-lldp-setting'
29
+ testId: 'physical-adapter-view-lldp-setting',
30
30
  },
31
31
  ]
32
32
 
@@ -36,6 +36,7 @@ export const adapterViewSettingsFunc = (
36
36
  ): UI_I_ViewSettingsFields[] => {
37
37
  return [
38
38
  {
39
+ title: localization.common.properties,
39
40
  id: 1,
40
41
  type: 1,
41
42
  rows: [
@@ -67,6 +68,8 @@ export const adapterViewSettingsFunc = (
67
68
  value: initialData.carrier
68
69
  ? localization.common.connected
69
70
  : localization.common.disconnected,
71
+ status: true,
72
+ color: initialData.carrier,
70
73
  },
71
74
  {
72
75
  name: localization.common.actualSpeedDuplex,
@@ -102,7 +105,11 @@ export const adapterViewSettingsFunc = (
102
105
  rows: [
103
106
  {
104
107
  name: localization.common.status,
105
- value: !initialData.srIov ? localization.common.notSupported : '',
108
+ value: !initialData.srIov
109
+ ? localization.common.notSupported
110
+ : localization.common.supported,
111
+ status: true,
112
+ color: initialData.srIov,
106
113
  },
107
114
  ],
108
115
  },
@@ -13,7 +13,10 @@ export interface UI_I_PhysicalAdapter {
13
13
 
14
14
  export interface UI_I_ViewSettingsFieldsRow {
15
15
  name: string
16
- value: string | string[]
16
+ value?: string | string[] | undefined
17
+ color?: boolean
18
+ status?: boolean
19
+ icon?: string
17
20
  }
18
21
 
19
22
  export interface UI_I_ViewSettingsFields {