bfg-common 1.0.16 → 1.0.18

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 (28) hide show
  1. package/components/common/adapterManager/AdapterManager.vue +9 -9
  2. package/components/common/adapterManager/ui/table/Table.vue +2 -2
  3. package/components/common/addNetworking/AddNetworking.vue +2 -2
  4. package/components/common/addNetworking/config/sendData.ts +1 -1
  5. package/components/common/addNetworking/mappers/mappers.ts +1 -1
  6. package/components/common/diagramMain/DiagramMain.vue +2 -2
  7. package/components/common/diagramMain/config/initial.ts +1 -1
  8. package/components/common/diagramMain/modals/ManagePhysicalAdaptersModal.vue +236 -236
  9. package/components/common/diagramMain/modals/config/initial.ts +31 -45
  10. package/components/common/diagramMain/modals/editSettings/EditSettings.vue +6 -5
  11. package/components/common/diagramMain/modals/editSettings/tabs/Security.vue +183 -178
  12. package/components/common/diagramMain/modals/editSettings/tabs/TeamingFailover.vue +2 -1
  13. package/components/common/diagramMain/modals/editSettings/tabs/TrafficShaping.vue +393 -392
  14. package/components/common/diagramMain/models/interfaces.ts +53 -74
  15. package/components/common/diagramMain/models/types.ts +1 -1
  16. package/components/common/monitor/models/interfaces.ts +1 -0
  17. package/components/common/vm/actions/add/customizeHardware/virtualHardware/cpu/Cpu.vue +371 -371
  18. package/components/common/vm/actions/add/customizeHardware/virtualHardware/cpu/MaxCpu.vue +105 -105
  19. package/components/common/vm/actions/add/customizeHardware/virtualHardware/cpu/Sa.vue +102 -102
  20. package/components/common/vm/actions/add/customizeHardware/virtualHardware/cpu/shares/Shares.vue +155 -155
  21. package/components/common/vm/actions/add/customizeHardware/virtualHardware/limit/Limit.vue +214 -214
  22. package/components/common/vm/actions/add/customizeHardware/virtualHardware/memory/Memory.vue +282 -282
  23. package/components/common/vm/actions/add/customizeHardware/virtualHardware/newHardDisk/NewHardDisk.vue +451 -451
  24. package/components/common/vm/actions/add/customizeHardware/virtualHardware/newHardDisk/limitIops/LimitIops.vue +151 -151
  25. package/components/common/vm/actions/add/customizeHardware/vmoptions/remoteConsoleOptions/RemoteConsoleOptions.vue +230 -230
  26. package/components/common/vm/actions/add/select/compatibility/Compatibility.vue +151 -151
  27. package/package.json +1 -1
  28. package/public/spice-console/network/spicechannel.js +1 -1
@@ -10,28 +10,28 @@ import {
10
10
  } from '~/components/common/diagramMain/models/interfaces'
11
11
 
12
12
  export const teamingFailoverFieldsInitialFunc = (
13
- isSwitch: boolean | undefined,
14
- initialData: UI_I_ModalsInitialData | undefined
13
+ isSwitch: boolean,
14
+ initialData?: UI_I_ModalsInitialData
15
15
  ): UI_I_TeamingFailoverFields => {
16
16
  const teaming = {
17
17
  loadBalancing: {
18
- checked: isSwitch || false,
18
+ checked: isSwitch,
19
19
  selected: 'balance-tcp',
20
20
  },
21
21
  networkFailureDetection: {
22
- checked: isSwitch || false,
22
+ checked: isSwitch,
23
23
  selected: 'carier',
24
24
  },
25
25
  notifySwitches: {
26
- checked: isSwitch || false,
26
+ checked: isSwitch,
27
27
  selected: 'yes',
28
28
  },
29
29
  failback: {
30
- checked: isSwitch || false,
30
+ checked: isSwitch,
31
31
  selected: 'yes',
32
32
  },
33
33
  failoverOrder: {
34
- checked: isSwitch || false,
34
+ checked: isSwitch,
35
35
  },
36
36
  }
37
37
 
@@ -41,34 +41,26 @@ export const teamingFailoverFieldsInitialFunc = (
41
41
  switch (sec.id) {
42
42
  case 'mode':
43
43
  teaming.loadBalancing = {
44
- checked:
45
- isSwitch || (sec.initialValue as UI_I_OverrideValue).override,
46
- selected: (sec.initialValue as UI_I_OverrideValue)
47
- .value as string,
44
+ checked: isSwitch || sec.initialValue.override,
45
+ selected: sec.initialValue.value as string,
48
46
  }
49
47
  return true
50
48
  case 'link_detect':
51
49
  teaming.networkFailureDetection = {
52
- checked:
53
- isSwitch || (sec.initialValue as UI_I_OverrideValue).override,
54
- selected: (sec.initialValue as UI_I_OverrideValue)
55
- .value as string,
50
+ checked: isSwitch || sec.initialValue.override,
51
+ selected: sec.initialValue.value as string,
56
52
  }
57
53
  return true
58
54
  case 'notify_switches':
59
55
  teaming.notifySwitches = {
60
- checked:
61
- isSwitch || (sec.initialValue as UI_I_OverrideValue).override,
62
- selected: (sec.initialValue as UI_I_OverrideValue)
63
- .value as string,
56
+ checked: isSwitch || sec.initialValue.override,
57
+ selected: sec.initialValue.value as string,
64
58
  }
65
59
  return true
66
60
  case 'failback':
67
61
  teaming.failback = {
68
- checked:
69
- isSwitch || (sec.initialValue as UI_I_OverrideValue).override,
70
- selected: (sec.initialValue as UI_I_OverrideValue)
71
- .value as string,
62
+ checked: isSwitch || sec.initialValue.override,
63
+ selected: sec.initialValue.value as string,
72
64
  }
73
65
  return true
74
66
  }
@@ -81,20 +73,20 @@ export const teamingFailoverFieldsInitialFunc = (
81
73
  }
82
74
 
83
75
  export const securityFieldsInitialFunc = (
84
- isSwitch: boolean | undefined,
85
- initialData: UI_I_ModalsInitialData | undefined
76
+ isSwitch: boolean,
77
+ initialData?: UI_I_ModalsInitialData
86
78
  ): UI_I_SecurityFields => {
87
79
  const security: UI_I_SecurityFields = {
88
80
  promiscuousMode: {
89
- checked: isSwitch || false,
81
+ checked: isSwitch,
90
82
  selected: '0',
91
83
  },
92
84
  macAddressChanges: {
93
- checked: isSwitch || false,
85
+ checked: isSwitch,
94
86
  selected: '0',
95
87
  },
96
88
  forgedTransmits: {
97
- checked: isSwitch || false,
89
+ checked: isSwitch,
98
90
  selected: '0',
99
91
  },
100
92
  }
@@ -105,26 +97,20 @@ export const securityFieldsInitialFunc = (
105
97
  switch (sec.id) {
106
98
  case 'promiscuous_mode':
107
99
  security.promiscuousMode = {
108
- checked:
109
- isSwitch || (sec.initialValue as UI_I_OverrideValue).override,
110
- selected: (sec.initialValue as UI_I_OverrideValue)
111
- .value as string,
100
+ checked: isSwitch || sec.initialValue.override,
101
+ selected: sec.initialValue.value as string,
112
102
  }
113
103
  return true
114
104
  case 'mac_change':
115
105
  security.macAddressChanges = {
116
- checked:
117
- isSwitch || (sec.initialValue as UI_I_OverrideValue).override,
118
- selected: (sec.initialValue as UI_I_OverrideValue)
119
- .value as string,
106
+ checked: isSwitch || sec.initialValue.override,
107
+ selected: sec.initialValue.value as string,
120
108
  }
121
109
  return true
122
110
  case 'forged_transmits':
123
111
  security.forgedTransmits = {
124
- checked:
125
- isSwitch || (sec.initialValue as UI_I_OverrideValue).override,
126
- selected: (sec.initialValue as UI_I_OverrideValue)
127
- .value as string,
112
+ checked: isSwitch || sec.initialValue.override,
113
+ selected: sec.initialValue.value as string,
128
114
  }
129
115
  return true
130
116
  }
@@ -134,8 +120,8 @@ export const securityFieldsInitialFunc = (
134
120
  return security
135
121
  }
136
122
  export const trafficShapingFieldsInitialFunc = (
137
- isSwitch: boolean | undefined,
138
- initialData: UI_I_ModalsInitialData | undefined,
123
+ isSwitch: boolean,
124
+ initialData: UI_I_ModalsInitialData,
139
125
  speeds: UI_I_TrafficShapingSpeeds
140
126
  ): UI_I_TrafficShapingFields => {
141
127
  const trafficShapingInitialValue = initialData?.shapingPolicy?.find(
@@ -144,7 +130,7 @@ export const trafficShapingFieldsInitialFunc = (
144
130
 
145
131
  let trafficShaping: UI_I_TrafficShapingFields = {
146
132
  status: {
147
- checked: isSwitch || false,
133
+ checked: isSwitch,
148
134
  selected: '1',
149
135
  },
150
136
  average: 100000,
@@ -158,8 +144,8 @@ export const trafficShapingFieldsInitialFunc = (
158
144
  switch (sec.id) {
159
145
  case 'shaping_enabled':
160
146
  trafficShaping.status = {
161
- checked: isSwitch || trafficShapingInitialValue.override,
162
- selected: trafficShapingInitialValue.value ? '1' : '0',
147
+ checked: isSwitch || trafficShapingInitialValue?.override,
148
+ selected: trafficShapingInitialValue?.value ? '1' : '0',
163
149
  }
164
150
  return true
165
151
  }
@@ -186,12 +186,12 @@ const isFailoverOrderOverride = computed<string | number | boolean | undefined>(
186
186
 
187
187
  const adapterStatus = ref<UI_I_AdapterStatus>({
188
188
  active: [],
189
- standBy: [],
189
+ standby: [],
190
190
  unused: [],
191
191
  })
192
192
  const adapterStatusInitial = ref<UI_I_AdapterStatus>({
193
193
  active: [],
194
- standBy: [],
194
+ standby: [],
195
195
  unused: [],
196
196
  })
197
197
 
@@ -308,7 +308,8 @@ const checkNetworkLabelCallback = (
308
308
  }
309
309
 
310
310
  const networkLabel = computed<string>(
311
- () => networkEditData.value.properties?.networkLabel
311
+ () =>
312
+ (networkEditData.value.properties as UI_I_PropertiesFields)?.networkLabel
312
313
  )
313
314
  const onSendData = () => {
314
315
  if (isNetwork.value) {
@@ -440,11 +441,11 @@ watch(
440
441
 
441
442
  onMounted(() => {
442
443
  const active = useDeepCopy(props.initialData.activeAdapters) || []
443
- const standBy = useDeepCopy(props.initialData.standbyAdapters) || []
444
+ const standby = useDeepCopy(props.initialData.standbyAdapters) || []
444
445
  const unused = useDeepCopy(props.initialData.unusedAdapters) || []
445
446
  const adapterStatusInit = {
446
447
  active,
447
- standBy,
448
+ standby,
448
449
  unused,
449
450
  }
450
451
  adapterStatus.value = adapterStatusInit
@@ -1,178 +1,183 @@
1
- <template>
2
- <div class="wizard-content__container">
3
- <div class="wizard-content">
4
- <form action="">
5
- <div class="horizontal-flex-container">
6
- <span class="flex-property-label-group large">
7
- {{ localization.promiscuousMode }}
8
- </span>
9
-
10
- <div class="flex-property-value-group overridable-dropdown">
11
- <div class="horizontal-flex-container no-margin">
12
- <div class="flex-property-value-group">
13
- <div class="horizontal-flex-container">
14
- <div
15
- v-if="!props.isSwitch"
16
- class="flex-property-label-group small checkbox-inline"
17
- >
18
- <input
19
- id="promiscuous-mode"
20
- v-model="fieldsValues.promiscuousMode.checked"
21
- type="checkbox"
22
- />
23
- <label for="promiscuous-mode" class="normal-weight">
24
- {{ localization.override }}
25
- </label>
26
- </div>
27
- <div class="flex-property-value-group">
28
- <div class="select">
29
- <select
30
- id="promiscuous-mode-select"
31
- v-model="fieldsValues.promiscuousMode.selected"
32
- :disabled="!fieldsValues.promiscuousMode.checked"
33
- name="selectName"
34
- >
35
- <option value="no" :label="localization.reject">
36
- {{ localization.reject }}
37
- </option>
38
- <option value="yes" :label="localization.accept">
39
- {{ localization.accept }}
40
- </option>
41
- </select>
42
- </div>
43
- </div>
44
- </div>
45
- </div>
46
- </div>
47
- </div>
48
- </div>
49
- <div class="horizontal-flex-container">
50
- <span class="flex-property-label-group large">
51
- {{ localization.macAddressChanges }}
52
- </span>
53
-
54
- <div class="flex-property-value-group overridable-dropdown">
55
- <div class="horizontal-flex-container no-margin">
56
- <div class="flex-property-value-group">
57
- <div class="horizontal-flex-container">
58
- <div
59
- v-if="!props.isSwitch"
60
- class="flex-property-label-group small checkbox-inline"
61
- >
62
- <input
63
- id="mac-address-changes"
64
- v-model="fieldsValues.macAddressChanges.checked"
65
- type="checkbox"
66
- />
67
- <label for="mac-address-changes" class="normal-weight">
68
- {{ localization.override }}
69
- </label>
70
- </div>
71
- <div class="flex-property-value-group">
72
- <div class="select">
73
- <select
74
- id="mac-address-select"
75
- v-model="fieldsValues.macAddressChanges.selected"
76
- :disabled="!fieldsValues.macAddressChanges.checked"
77
- name="selectName"
78
- >
79
- <option value="no" :label="localization.reject">
80
- {{ localization.reject }}
81
- </option>
82
- <option value="yes" :label="localization.accept">
83
- {{ localization.accept }}
84
- </option>
85
- </select>
86
- </div>
87
- </div>
88
- </div>
89
- </div>
90
- </div>
91
- </div>
92
- </div>
93
- <div class="horizontal-flex-container">
94
- <span class="flex-property-label-group large">
95
- {{ localization.forgedTransmits }}
96
- </span>
97
-
98
- <div class="flex-property-value-group overridable-dropdown">
99
- <div class="horizontal-flex-container no-margin">
100
- <div class="flex-property-value-group">
101
- <div class="horizontal-flex-container">
102
- <div
103
- v-if="!props.isSwitch"
104
- class="flex-property-label-group small checkbox-inline"
105
- >
106
- <input
107
- id="forged-transmits"
108
- v-model="fieldsValues.forgedTransmits.checked"
109
- type="checkbox"
110
- />
111
- <label for="forged-transmits" class="normal-weight">
112
- {{ localization.override }}
113
- </label>
114
- </div>
115
- <div class="flex-property-value-group">
116
- <div class="select">
117
- <select
118
- id="forged-transmits"
119
- v-model="fieldsValues.forgedTransmits.selected"
120
- :disabled="!fieldsValues.forgedTransmits.checked"
121
- name="selectName"
122
- >
123
- <option value="no" :label="localization.reject">
124
- {{ localization.reject }}
125
- </option>
126
- <option value="yes" :label="localization.accept">
127
- {{ localization.accept }}
128
- </option>
129
- </select>
130
- </div>
131
- </div>
132
- </div>
133
- </div>
134
- </div>
135
- </div>
136
- </div>
137
- </form>
138
- </div>
139
- </div>
140
- </template>
141
-
142
- <script setup lang="ts">
143
- import { UI_I_Localization } from '~/models/interfaces'
144
- import {
145
- UI_I_ModalsInitialData,
146
- UI_I_SecurityFields,
147
- } from '~/components/common/diagramMain/models/interfaces'
148
- import { securityFieldsInitialFunc } from '~/components/common/diagramMain/modals/config'
149
-
150
- // Props from up
151
- const props = defineProps<{
152
- isSwitch?: boolean
153
- initialData?: UI_I_ModalsInitialData
154
- }>()
155
-
156
- // UI_I_Localization
157
- const localization = computed<UI_I_Localization>(() => useLocal())
158
-
159
- const fieldsValues = ref<UI_I_SecurityFields>(
160
- securityFieldsInitialFunc(props.isSwitch, props.initialData)
161
- )
162
-
163
- const emits = defineEmits<{
164
- (event: 'change-edit-security-data', securityData: UI_I_SecurityFields): void
165
- }>()
166
-
167
- onMounted(() => {
168
- emits('change-edit-security-data', fieldsValues.value)
169
- })
170
-
171
- watch(
172
- fieldsValues,
173
- (newFieldsValues: UI_I_SecurityFields) => {
174
- emits('change-edit-security-data', newFieldsValues)
175
- },
176
- { deep: true }
177
- )
178
- </script>
1
+ <template>
2
+ <div class="wizard-content__container">
3
+ <div class="wizard-content">
4
+ <form action="">
5
+ <div class="horizontal-flex-container">
6
+ <span class="flex-property-label-group large">
7
+ {{ localization.promiscuousMode }}
8
+ </span>
9
+
10
+ <div class="flex-property-value-group overridable-dropdown">
11
+ <div class="horizontal-flex-container no-margin">
12
+ <div class="flex-property-value-group">
13
+ <div class="horizontal-flex-container">
14
+ <div
15
+ v-if="!props.isSwitch"
16
+ class="flex-property-label-group small checkbox-inline"
17
+ >
18
+ <input
19
+ id="promiscuous-mode"
20
+ v-model="fieldsValues.promiscuousMode.checked"
21
+ type="checkbox"
22
+ />
23
+ <label for="promiscuous-mode" class="normal-weight">
24
+ {{ localization.override }}
25
+ </label>
26
+ </div>
27
+ <div class="flex-property-value-group">
28
+ <div class="select">
29
+ <select
30
+ id="promiscuous-mode-select"
31
+ v-model="fieldsValues.promiscuousMode.selected"
32
+ :disabled="!fieldsValues.promiscuousMode.checked"
33
+ name="selectName"
34
+ >
35
+ <option value="no" :label="localization.reject">
36
+ {{ localization.reject }}
37
+ </option>
38
+ <option value="yes" :label="localization.accept">
39
+ {{ localization.accept }}
40
+ </option>
41
+ </select>
42
+ </div>
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </div>
47
+ </div>
48
+ </div>
49
+ <div class="horizontal-flex-container">
50
+ <span class="flex-property-label-group large">
51
+ {{ localization.macAddressChanges }}
52
+ </span>
53
+
54
+ <div class="flex-property-value-group overridable-dropdown">
55
+ <div class="horizontal-flex-container no-margin">
56
+ <div class="flex-property-value-group">
57
+ <div class="horizontal-flex-container">
58
+ <div
59
+ v-if="!props.isSwitch"
60
+ class="flex-property-label-group small checkbox-inline"
61
+ >
62
+ <input
63
+ id="mac-address-changes"
64
+ v-model="fieldsValues.macAddressChanges.checked"
65
+ type="checkbox"
66
+ />
67
+ <label for="mac-address-changes" class="normal-weight">
68
+ {{ localization.override }}
69
+ </label>
70
+ </div>
71
+ <div class="flex-property-value-group">
72
+ <div class="select">
73
+ <select
74
+ id="mac-address-select"
75
+ v-model="fieldsValues.macAddressChanges.selected"
76
+ :disabled="!fieldsValues.macAddressChanges.checked"
77
+ name="selectName"
78
+ >
79
+ <option value="no" :label="localization.reject">
80
+ {{ localization.reject }}
81
+ </option>
82
+ <option value="yes" :label="localization.accept">
83
+ {{ localization.accept }}
84
+ </option>
85
+ </select>
86
+ </div>
87
+ </div>
88
+ </div>
89
+ </div>
90
+ </div>
91
+ </div>
92
+ </div>
93
+ <div class="horizontal-flex-container">
94
+ <span class="flex-property-label-group large">
95
+ {{ localization.forgedTransmits }}
96
+ </span>
97
+
98
+ <div class="flex-property-value-group overridable-dropdown">
99
+ <div class="horizontal-flex-container no-margin">
100
+ <div class="flex-property-value-group">
101
+ <div class="horizontal-flex-container">
102
+ <div
103
+ v-if="!props.isSwitch"
104
+ class="flex-property-label-group small checkbox-inline"
105
+ >
106
+ <input
107
+ id="forged-transmits"
108
+ v-model="fieldsValues.forgedTransmits.checked"
109
+ type="checkbox"
110
+ />
111
+ <label for="forged-transmits" class="normal-weight">
112
+ {{ localization.override }}
113
+ </label>
114
+ </div>
115
+ <div class="flex-property-value-group">
116
+ <div class="select">
117
+ <select
118
+ id="forged-transmits"
119
+ v-model="fieldsValues.forgedTransmits.selected"
120
+ :disabled="!fieldsValues.forgedTransmits.checked"
121
+ name="selectName"
122
+ >
123
+ <option value="no" :label="localization.reject">
124
+ {{ localization.reject }}
125
+ </option>
126
+ <option value="yes" :label="localization.accept">
127
+ {{ localization.accept }}
128
+ </option>
129
+ </select>
130
+ </div>
131
+ </div>
132
+ </div>
133
+ </div>
134
+ </div>
135
+ </div>
136
+ </div>
137
+ </form>
138
+ </div>
139
+ </div>
140
+ </template>
141
+
142
+ <script setup lang="ts">
143
+ import { UI_I_Localization } from '~/models/interfaces'
144
+ import {
145
+ UI_I_ModalsInitialData,
146
+ UI_I_SecurityFields,
147
+ } from '~/components/common/diagramMain/models/interfaces'
148
+ import { securityFieldsInitialFunc } from '~/components/common/diagramMain/modals/config'
149
+
150
+ // Props from up
151
+ const props = withDefaults(
152
+ defineProps<{
153
+ isSwitch: boolean
154
+ initialData?: UI_I_ModalsInitialData
155
+ }>(),
156
+ {
157
+ isSwitch: false,
158
+ }
159
+ )
160
+
161
+ // UI_I_Localization
162
+ const localization = computed<UI_I_Localization>(() => useLocal())
163
+
164
+ const fieldsValues = ref<UI_I_SecurityFields>(
165
+ securityFieldsInitialFunc(props.isSwitch, props.initialData)
166
+ )
167
+
168
+ const emits = defineEmits<{
169
+ (event: 'change-edit-security-data', securityData: UI_I_SecurityFields): void
170
+ }>()
171
+
172
+ onMounted(() => {
173
+ emits('change-edit-security-data', fieldsValues.value)
174
+ })
175
+
176
+ watch(
177
+ fieldsValues,
178
+ (newFieldsValues: UI_I_SecurityFields) => {
179
+ emits('change-edit-security-data', newFieldsValues)
180
+ },
181
+ { deep: true }
182
+ )
183
+ </script>
@@ -111,10 +111,11 @@ const props = withDefaults(
111
111
  initialData?: UI_I_ModalsInitialData
112
112
  adapters: UI_I_SwitchAdapters
113
113
  adapterStatus: UI_I_AdapterStatus
114
- isSwitch?: boolean
114
+ isSwitch: boolean
115
115
  }>(),
116
116
  {
117
117
  initialData: () => ({}),
118
+ isSwitch: false,
118
119
  }
119
120
  )
120
121