bfg-common 1.5.203 → 1.5.205

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 (27) hide show
  1. package/components/common/browse/blocks/lib/models/types.ts +1 -1
  2. package/components/common/browse/lib/models/interfaces.ts +5 -5
  3. package/components/common/context/recursion/RecursionNew.vue +32 -9
  4. package/components/common/diagramMain/adapter/AdapterItems.vue +61 -61
  5. package/components/common/diagramMain/lib/config/initial.ts +50 -50
  6. package/components/common/diagramMain/lib/models/types.ts +21 -21
  7. package/components/common/diagramMain/lib/utils/utils.ts +331 -331
  8. package/components/common/diagramMain/modals/editSettings/ConfirmTeamingSettingsModal.vue +40 -40
  9. package/components/common/diagramMain/modals/editSettings/tabs/NetworkProperties.vue +214 -214
  10. package/components/common/diagramMain/modals/editSettings/tabs/Security.vue +189 -189
  11. package/components/common/diagramMain/modals/editSettings/tabs/SwitchProperties.vue +163 -163
  12. package/components/common/diagramMain/modals/editSettings/tabs/TeamingFailover.vue +175 -175
  13. package/components/common/diagramMain/modals/editSettings/tabs/port/IpvFourSettings.vue +346 -346
  14. package/components/common/diagramMain/modals/lib/config/initial.ts +180 -180
  15. package/components/common/diagramMain/modals/lib/config/vmKernelAdapter.ts +90 -90
  16. package/components/common/diagramMain/modals/lib/mappers/mappers.ts +87 -87
  17. package/components/common/diagramMain/modals/lib/utils/index.ts +24 -24
  18. package/components/common/diagramMain/modals/migrateVmkernelAdapter/lib/config/steps.ts +114 -114
  19. package/components/common/diagramMain/modals/migrateVmkernelAdapter/steps/ConnectionSettings.vue +169 -169
  20. package/components/common/diagramMain/modals/migrateVmkernelAdapter/steps/SelectVmkernelAdapter.vue +159 -159
  21. package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/common.ts +14 -14
  22. package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/connectionSettings.ts +137 -137
  23. package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/selectVmkernelAdapter.ts +52 -52
  24. package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/validations.ts +19 -19
  25. package/components/common/diagramMain/port/Ports.vue +47 -47
  26. package/components/common/lib/config/states.ts +1 -1
  27. package/package.json +2 -2
@@ -1 +1 @@
1
- export type UI_T_BlocksWidth = [number, number, number]
1
+ export type UI_T_BlocksWidth = [number, number, number]
@@ -1,5 +1,5 @@
1
- export interface UI_I_FileInfo {
2
- type: string
3
- title: string
4
- value: string | number
5
- }
1
+ export interface UI_I_FileInfo {
2
+ type: string
3
+ title: string
4
+ value: string | number
5
+ }
@@ -12,6 +12,7 @@
12
12
  { disabled: item.disabled || isLoading },
13
13
  { 'show-children': item.isShowItems },
14
14
  { 'has-divider': item.hasBorderTop },
15
+ { 'has-shortcut': item.shortcut },
15
16
  ]"
16
17
  @mouseenter="emits('toggle-items', [item, true, $event])"
17
18
  @mouseleave="emits('toggle-items', [item, false, $event])"
@@ -23,7 +24,16 @@
23
24
  @mousedown="emits('select-item', item)"
24
25
  >
25
26
  <span :class="['context-icon', item.iconClassName]" />
26
- <span class="menu-item-text text-ellipsis">{{ item.name }}</span>
27
+ <span
28
+ :class="[
29
+ 'menu-item-text text-ellipsis',
30
+ {
31
+ 'with-children': item.items.length,
32
+ },
33
+ ]"
34
+ >
35
+ {{ item.name }}
36
+ </span>
27
37
  <ui-icon v-if="item.items.length" name="arrow" class="arrow-icon" />
28
38
  <span v-if="item.shortcut" class="shortcut">{{ item.shortcut }}</span>
29
39
  </span>
@@ -68,6 +78,7 @@ const emits = defineEmits<{
68
78
  --context-menu-text-disabled-color: #bdc3c7;
69
79
  --context-menu-text-hover-color: #182531;
70
80
  --context-menu-border-color: #e9ebed;
81
+ --context-menu-icon-opacity: 0.4;
71
82
 
72
83
  /*rtl*/
73
84
  --context-menu-wrap-transform: none;
@@ -79,9 +90,10 @@ const emits = defineEmits<{
79
90
  --context-menu-bg-color: #334453;
80
91
  --context-menu-item-bg-hover-color: rgba(233, 235, 237, 0.06);
81
92
  --context-menu-text-color: #e9eaec;
82
- --context-menu-text-disabled-color: #bdc3c7b8;
93
+ --context-menu-text-disabled-color: #bdc3c770;
83
94
  --context-menu-text-hover-color: #ffffff;
84
95
  --context-menu-border-color: rgba(233, 235, 237, 0.12);
96
+ --context-menu-icon-opacity: 0.32;
85
97
  }
86
98
 
87
99
  :root.is-new-view[dir='rtl'] {
@@ -94,9 +106,9 @@ const emits = defineEmits<{
94
106
  <style scoped lang="scss">
95
107
  .context-wrap {
96
108
  //width: auto;
97
- //max-width: 400px;
98
- //min-width: 212px;
99
- width: 212px;
109
+ max-width: 400px;
110
+ min-width: 192px;
111
+ //width: 212px;
100
112
  background: var(--context-menu-bg-color);
101
113
  border-radius: 8px;
102
114
  user-select: none;
@@ -104,8 +116,9 @@ const emits = defineEmits<{
104
116
  max-height: 100vh;
105
117
  box-shadow: var(--box-shadow);
106
118
  padding: 8px;
119
+
107
120
  //overflow-x: hidden;
108
- //overflow-y: auto;
121
+ overflow-y: auto;
109
122
 
110
123
  .context-loader {
111
124
  position: absolute;
@@ -120,6 +133,10 @@ const emits = defineEmits<{
120
133
  cursor: pointer;
121
134
  border-radius: 4px;
122
135
 
136
+ &-text.with-children {
137
+ margin-right: 16px;
138
+ }
139
+
123
140
  &.show-children::after {
124
141
  content: '';
125
142
  position: absolute;
@@ -169,6 +186,12 @@ const emits = defineEmits<{
169
186
  }
170
187
  }
171
188
 
189
+ &.has-shortcut {
190
+ .context-link {
191
+ padding: 6px 8px 6px 8px;
192
+ }
193
+ }
194
+
172
195
  .context-link {
173
196
  position: relative;
174
197
  overflow: hidden;
@@ -178,7 +201,7 @@ const emits = defineEmits<{
178
201
  align-items: center;
179
202
  user-select: none;
180
203
  border-radius: 4px;
181
- padding: 6px 18px 8px 6px;
204
+ padding: 6px 24px 6px 8px;
182
205
 
183
206
  .menu-item-text {
184
207
  flex: 1 1 0;
@@ -197,7 +220,7 @@ const emits = defineEmits<{
197
220
  position: absolute;
198
221
  top: 50%;
199
222
  margin-top: -8px;
200
- right: 4px;
223
+ right: 8px;
201
224
  display: inline-block;
202
225
  width: 16px;
203
226
  height: 16px;
@@ -216,7 +239,7 @@ const emits = defineEmits<{
216
239
  user-select: none;
217
240
  cursor: default;
218
241
  .context-icon {
219
- opacity: 0.4;
242
+ opacity: var(--context-menu-icon-opacity);
220
243
  }
221
244
  .shortcut {
222
245
  color: var(--context-menu-text-disabled-color);
@@ -1,61 +1,61 @@
1
- <template>
2
- <g data-title="adapter-items-group">
3
- <template v-if="props.adaptersWithPositions.toggle">
4
- <template
5
- v-for="(adapter, key) in props.adaptersWithPositions.adapters"
6
- :key="adapter.id"
7
- >
8
- <common-diagram-main-adapter-item
9
- :adapter="adapter"
10
- :selected-port="props.selectedPort"
11
- :selected-adapter="props.selectedAdapter"
12
- :networks-count="props.networksCount"
13
- :is-dark-mode="props.isDarkMode"
14
- :networks-with-positions="props.networksWithPositions"
15
- @select-adapter="onSelectAdapter"
16
- @show-modal="onShowModal"
17
- />
18
- </template>
19
- </template>
20
- </g>
21
- </template>
22
-
23
- <script setup lang="ts">
24
- import {
25
- UI_I_AdaptersWithPositions,
26
- UI_I_ModalsInitialData,
27
- UI_I_SelectedAdapter,
28
- UI_I_SelectedPort,
29
- UI_I_NetworksWithPositions,
30
- } from '~/components/common/diagramMain/lib/models/interfaces'
31
-
32
- const props = defineProps<{
33
- adaptersWithPositions: UI_I_AdaptersWithPositions
34
- networksWithPositions: UI_I_NetworksWithPositions[]
35
- selectedPort: UI_I_SelectedPort
36
- selectedAdapter: UI_I_SelectedAdapter
37
- networksCount: number
38
- isDarkMode: boolean
39
- }>()
40
-
41
- const emits = defineEmits<{
42
- (event: 'select-adapter', adapterId: string): void
43
- (
44
- event: 'show-modal',
45
- value: string,
46
- properties?: UI_I_ModalsInitialData
47
- ): void
48
- }>()
49
-
50
- const onSelectAdapter = (adapterId: string): void => {
51
- emits('select-adapter', adapterId)
52
- }
53
- const onShowModal = (
54
- value: string,
55
- properties?: UI_I_ModalsInitialData
56
- ): void => {
57
- emits('show-modal', value, properties)
58
- }
59
- </script>
60
-
61
- <style scoped lang="scss"></style>
1
+ <template>
2
+ <g data-title="adapter-items-group">
3
+ <template v-if="props.adaptersWithPositions.toggle">
4
+ <template
5
+ v-for="(adapter, key) in props.adaptersWithPositions.adapters"
6
+ :key="adapter.id"
7
+ >
8
+ <common-diagram-main-adapter-item
9
+ :adapter="adapter"
10
+ :selected-port="props.selectedPort"
11
+ :selected-adapter="props.selectedAdapter"
12
+ :networks-count="props.networksCount"
13
+ :is-dark-mode="props.isDarkMode"
14
+ :networks-with-positions="props.networksWithPositions"
15
+ @select-adapter="onSelectAdapter"
16
+ @show-modal="onShowModal"
17
+ />
18
+ </template>
19
+ </template>
20
+ </g>
21
+ </template>
22
+
23
+ <script setup lang="ts">
24
+ import {
25
+ UI_I_AdaptersWithPositions,
26
+ UI_I_ModalsInitialData,
27
+ UI_I_SelectedAdapter,
28
+ UI_I_SelectedPort,
29
+ UI_I_NetworksWithPositions,
30
+ } from '~/components/common/diagramMain/lib/models/interfaces'
31
+
32
+ const props = defineProps<{
33
+ adaptersWithPositions: UI_I_AdaptersWithPositions
34
+ networksWithPositions: UI_I_NetworksWithPositions[]
35
+ selectedPort: UI_I_SelectedPort
36
+ selectedAdapter: UI_I_SelectedAdapter
37
+ networksCount: number
38
+ isDarkMode: boolean
39
+ }>()
40
+
41
+ const emits = defineEmits<{
42
+ (event: 'select-adapter', adapterId: string): void
43
+ (
44
+ event: 'show-modal',
45
+ value: string,
46
+ properties?: UI_I_ModalsInitialData
47
+ ): void
48
+ }>()
49
+
50
+ const onSelectAdapter = (adapterId: string): void => {
51
+ emits('select-adapter', adapterId)
52
+ }
53
+ const onShowModal = (
54
+ value: string,
55
+ properties?: UI_I_ModalsInitialData
56
+ ): void => {
57
+ emits('show-modal', value, properties)
58
+ }
59
+ </script>
60
+
61
+ <style scoped lang="scss"></style>
@@ -1,50 +1,50 @@
1
- import type {
2
- UI_I_AdapterStatus,
3
- UI_I_MainRectHeights,
4
- UI_I_SelectedAdapter,
5
- UI_I_SelectedPort,
6
- UI_I_SwitchLine,
7
- UI_I_NetworkPositionsConst,
8
- } from '~/components/common/diagramMain/lib/models/interfaces'
9
-
10
- export const managePhysicalAdapterStatusInitial: UI_I_AdapterStatus = {
11
- active: [],
12
- standby: [],
13
- unused: [],
14
- }
15
-
16
- export const mainRectHeightsInitial: UI_I_MainRectHeights = {
17
- networksHeight: 0,
18
- adaptersHeight: 0,
19
- }
20
-
21
- export const switchLineInitial: UI_I_SwitchLine = {
22
- y1: 0,
23
- y2: 0,
24
- ay: 0,
25
- }
26
-
27
- export const selectedPortInitial: UI_I_SelectedPort = {
28
- networkId: '-1',
29
- portId: '-1',
30
- activeAdapters: [],
31
- }
32
-
33
- export const selectedAdapterInitial: UI_I_SelectedAdapter = {
34
- adapterId: '-1',
35
- connectedPorts: [],
36
- }
37
-
38
- export const selectedSwitchLineYInitial: UI_I_SwitchLine = {
39
- y1: 0,
40
- y2: 0,
41
- }
42
-
43
- export const NETWORK_POSITIONS: UI_I_NetworkPositionsConst = {
44
- EMPTY_PORTS_PADDING_BOTTOM: 7.5,
45
- FROM_VLAN_ID_TO_GROUP_NAME: 22,
46
- VMS_AND_PORTS_HEIGHT: 22,
47
- V_CENTER_HEIGHT: 32,
48
- BETWEEN_VMS_AND_PORTS: 7.5,
49
- BETWEEN_V_CENTERS: 12.5,
50
- } as const
1
+ import type {
2
+ UI_I_AdapterStatus,
3
+ UI_I_MainRectHeights,
4
+ UI_I_SelectedAdapter,
5
+ UI_I_SelectedPort,
6
+ UI_I_SwitchLine,
7
+ UI_I_NetworkPositionsConst,
8
+ } from '~/components/common/diagramMain/lib/models/interfaces'
9
+
10
+ export const managePhysicalAdapterStatusInitial: UI_I_AdapterStatus = {
11
+ active: [],
12
+ standby: [],
13
+ unused: [],
14
+ }
15
+
16
+ export const mainRectHeightsInitial: UI_I_MainRectHeights = {
17
+ networksHeight: 0,
18
+ adaptersHeight: 0,
19
+ }
20
+
21
+ export const switchLineInitial: UI_I_SwitchLine = {
22
+ y1: 0,
23
+ y2: 0,
24
+ ay: 0,
25
+ }
26
+
27
+ export const selectedPortInitial: UI_I_SelectedPort = {
28
+ networkId: '-1',
29
+ portId: '-1',
30
+ activeAdapters: [],
31
+ }
32
+
33
+ export const selectedAdapterInitial: UI_I_SelectedAdapter = {
34
+ adapterId: '-1',
35
+ connectedPorts: [],
36
+ }
37
+
38
+ export const selectedSwitchLineYInitial: UI_I_SwitchLine = {
39
+ y1: 0,
40
+ y2: 0,
41
+ }
42
+
43
+ export const NETWORK_POSITIONS: UI_I_NetworkPositionsConst = {
44
+ EMPTY_PORTS_PADDING_BOTTOM: 7.5,
45
+ FROM_VLAN_ID_TO_GROUP_NAME: 22,
46
+ VMS_AND_PORTS_HEIGHT: 22,
47
+ V_CENTER_HEIGHT: 32,
48
+ BETWEEN_VMS_AND_PORTS: 7.5,
49
+ BETWEEN_V_CENTERS: 12.5,
50
+ } as const
@@ -1,21 +1,21 @@
1
- import type {
2
- UI_I_Adapter,
3
- UI_I_AdapterWithError,
4
- } from '~/components/common/diagramMain/lib/models/interfaces'
5
-
6
- export type UI_T_AdapterStatusNames = 'active' | 'standby' | 'unused'
7
- export type UI_T_PropertiesFieldName = 'vlanId' | 'networkLabel'
8
- export type UI_T_TrafficShapingFieldName = 'average' | 'peak' | 'burstSize'
9
- export type UI_T_PortPropertiesFieldName = 'mtu'
10
-
11
- export type UI_T_LoadBalancingMode =
12
- | 'inherit'
13
- | 'active-backup'
14
- | 'balance-slb'
15
- | 'balance-tcp'
16
- export type UI_T_IYN = 'inherit' | 'yes' | 'no'
17
- export type UI_T_Carier = 'inherit' | 'carier' | 'beakon'
18
-
19
- export type UI_T_Adapters = (UI_I_Adapter | UI_I_AdapterWithError) & {
20
- adapterPosition: number
21
- }
1
+ import type {
2
+ UI_I_Adapter,
3
+ UI_I_AdapterWithError,
4
+ } from '~/components/common/diagramMain/lib/models/interfaces'
5
+
6
+ export type UI_T_AdapterStatusNames = 'active' | 'standby' | 'unused'
7
+ export type UI_T_PropertiesFieldName = 'vlanId' | 'networkLabel'
8
+ export type UI_T_TrafficShapingFieldName = 'average' | 'peak' | 'burstSize'
9
+ export type UI_T_PortPropertiesFieldName = 'mtu'
10
+
11
+ export type UI_T_LoadBalancingMode =
12
+ | 'inherit'
13
+ | 'active-backup'
14
+ | 'balance-slb'
15
+ | 'balance-tcp'
16
+ export type UI_T_IYN = 'inherit' | 'yes' | 'no'
17
+ export type UI_T_Carier = 'inherit' | 'carier' | 'beakon'
18
+
19
+ export type UI_T_Adapters = (UI_I_Adapter | UI_I_AdapterWithError) & {
20
+ adapterPosition: number
21
+ }