bfg-common 1.3.254 → 1.3.255
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/components/atoms/switch/Switch.vue +111 -111
- package/components/atoms/table/compact/Compact.vue +526 -526
- package/components/common/diagramMain/modals/editSettings/ConfirmTeamingSettingsModal.vue +1 -1
- package/components/common/diagramMain/modals/editSettings/tabs/NetworkProperties.vue +1 -0
- package/components/common/diagramMain/modals/editSettings/tabs/SwitchProperties.vue +1 -0
- package/components/common/diagramMain/modals/editSettings/tabs/TrafficShaping.vue +1 -0
- package/components/common/diagramMain/modals/editSettings/tabs/port/IpvFourSettings.vue +1 -0
- package/components/common/diagramMain/modals/editSettings/tabs/port/PortProperties.vue +1 -0
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/steps/ConnectionSettings.vue +1 -0
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/steps/SelectVmkernelAdapter.vue +1 -0
- package/components/common/home/alertsTable/AlertsTable.vue +1 -0
- package/components/common/home/servicesTable/ServicesTable.vue +1 -0
- package/components/common/monitor/advanced/table/Table.vue +1 -0
- package/components/common/monitor/advanced/tools/chartOptionsModal/Notification.vue +1 -0
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/Table.vue +1 -0
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/object/Object.vue +1 -0
- package/components/common/vm/actions/add/Add.vue +1 -0
- package/components/common/vm/actions/clone/Clone.vue +518 -518
- package/components/common/vm/actions/common/customizeHardware/CustomizeHardware.vue +270 -269
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardware.vue +693 -693
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/lib/config/dropdownItems.ts +59 -59
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/Location.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/NewPciDevice.vue +165 -165
- package/components/common/vm/actions/common/select/name/Name.vue +1 -0
- package/components/common/vm/actions/common/select/storage/Storage.vue +6 -1
- package/components/common/vm/actions/common/select/storage/lib/config/config.ts +191 -166
- package/components/common/vm/actions/editSettings/EditSettings.vue +313 -313
- package/components/common/weekSelect/lib/config/options.ts +10 -10
- package/components/common/wizards/datastore/add/nfs/accessibility/tablesView/TablesView.vue +1 -1
- package/components/common/wizards/datastore/add/nfs/configuration/serversList/ServersList.vue +1 -1
- package/components/common/wizards/datastore/add/sharedStorm/deviceSelection/hostTable/HostTable.vue +1 -1
- package/components/common/wizards/network/add/modals/SelectNetwork.vue +1 -0
- package/components/common/wizards/network/add/modals/SelectStandardSwitch.vue +1 -0
- package/components/common/wizards/network/add/modals/SelectSwitch.vue +1 -0
- package/components/common/wizards/network/add/steps/ConnectionSettings.vue +1 -0
- package/components/common/wizards/network/add/steps/IpFourSettings.vue +1 -0
- package/components/common/wizards/vm/migrate/select/computeResource/tableView/TableView.vue +1 -0
- package/components/common/wizards/vm/migrate/select/network/table/network/Network.vue +1 -0
- package/components/common/wizards/vm/migrate/select/network/table/useAt/UseAt.vue +1 -0
- package/components/common/wizards/vm/migrate/select/storage/table/datastore/Datastore.vue +1 -0
- package/components/common/wizards/vm/migrate/select/storage/table/datastore/lib/config/config.ts +27 -2
- package/components/common/wizards/vm/migrate/select/storage/table/disk/Disk.vue +1 -0
- package/composables/useAppVersion.ts +21 -21
- package/composables/useEnvLanguage.ts +20 -20
- package/lib/utils/sendTask.ts +72 -72
- package/minify.js +146 -146
- package/package.json +1 -1
- package/public/spice-console/application/codec.js +257 -257
- package/public/spice-console/lib/rasterEngine.js +907 -907
- package/public/spice-console/network/spicechannel.js +369 -369
- package/store/main/lib/interfaces.ts +9 -9
- package/store/tasks/actions.ts +133 -133
- package/store/tasks/getters.ts +25 -25
- package/store/tasks/lib/models/interfaces.ts +18 -18
- package/store/tasks/mutations.ts +58 -58
- package/store/tasks/state.ts +16 -16
|
@@ -1,166 +1,191 @@
|
|
|
1
|
-
import { UI_I_DatastoreTableItem } from '~/lib/models/store/storage/interfaces'
|
|
2
|
-
import type {
|
|
3
|
-
UI_I_ColumnKey,
|
|
4
|
-
UI_I_HeadItem,
|
|
5
|
-
UI_I_BodyItem,
|
|
6
|
-
} from '~/components/atoms/table/dataGrid/lib/models/interfaces'
|
|
7
|
-
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
|
8
|
-
import { UI_T_StorageColumnKeys } from '~/components/common/vm/actions/common/select/storage/lib/models/types'
|
|
9
|
-
import {
|
|
10
|
-
constructColumnKey,
|
|
11
|
-
constructHeadItem,
|
|
12
|
-
} from '~/components/atoms/table/dataGrid/lib/utils/constructDataTable'
|
|
13
|
-
import {
|
|
14
|
-
datastoreIconByState,
|
|
15
|
-
datastoreLocalizationByState,
|
|
16
|
-
} from '~/components/common/lib/config/states'
|
|
17
|
-
|
|
18
|
-
export const storageTableKeys: UI_T_StorageColumnKeys = [
|
|
19
|
-
'name',
|
|
20
|
-
'state',
|
|
21
|
-
'capacity_mb',
|
|
22
|
-
'provisioned_mb',
|
|
23
|
-
'free_mb',
|
|
24
|
-
'used_mb',
|
|
25
|
-
'type_text',
|
|
26
|
-
'thin_provisioning',
|
|
27
|
-
'access_mode',
|
|
28
|
-
'hardware_acceleration',
|
|
29
|
-
'drive_type',
|
|
30
|
-
'device',
|
|
31
|
-
'storage_io_control',
|
|
32
|
-
]
|
|
33
|
-
|
|
34
|
-
const getItems = (
|
|
35
|
-
localization: UI_I_Localization
|
|
36
|
-
): [string, boolean, string, string][] => {
|
|
37
|
-
return [
|
|
38
|
-
[localization.name, true, '96px', storageTableKeys[0]],
|
|
39
|
-
[localization.state, true, '138px', storageTableKeys[1]],
|
|
40
|
-
[localization.capacity, true, '110px', storageTableKeys[2]],
|
|
41
|
-
[localization.provisioned, true, '128px', storageTableKeys[3]],
|
|
42
|
-
[localization.free, true, '110px', storageTableKeys[4]],
|
|
43
|
-
[localization.used, true, '110px', storageTableKeys[5]],
|
|
44
|
-
[localization.type, true, '110px', storageTableKeys[6]],
|
|
45
|
-
[localization.thinProvisioning, true, '132px', storageTableKeys[7]],
|
|
46
|
-
[localization.access, true, '110px', storageTableKeys[8]],
|
|
47
|
-
[localization.hardwareAcceleration, true, '134px', storageTableKeys[9]],
|
|
48
|
-
[localization.driverType, true, '110px', storageTableKeys[10]],
|
|
49
|
-
[localization.device, true, '110px', storageTableKeys[11]],
|
|
50
|
-
[localization.storageIoControl, true, '110px', storageTableKeys[12]],
|
|
51
|
-
]
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
export const columnKeys = (
|
|
55
|
-
localization: UI_I_Localization
|
|
56
|
-
): UI_I_ColumnKey[] => {
|
|
57
|
-
const result: UI_I_ColumnKey[] = []
|
|
58
|
-
getItems(localization).forEach((item, i) => {
|
|
59
|
-
const col = i === 0 ? 'icon' : `col${i}`
|
|
60
|
-
result.push(
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
key: '
|
|
106
|
-
text:
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
},
|
|
128
|
-
{
|
|
129
|
-
key: '
|
|
130
|
-
text: storage[storageTableKeys[
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
},
|
|
158
|
-
{
|
|
159
|
-
key: '
|
|
160
|
-
text: storage[storageTableKeys[
|
|
161
|
-
id: key,
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
1
|
+
import { UI_I_DatastoreTableItem } from '~/lib/models/store/storage/interfaces'
|
|
2
|
+
import type {
|
|
3
|
+
UI_I_ColumnKey,
|
|
4
|
+
UI_I_HeadItem,
|
|
5
|
+
UI_I_BodyItem,
|
|
6
|
+
} from '~/components/atoms/table/dataGrid/lib/models/interfaces'
|
|
7
|
+
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
|
8
|
+
import { UI_T_StorageColumnKeys } from '~/components/common/vm/actions/common/select/storage/lib/models/types'
|
|
9
|
+
import {
|
|
10
|
+
constructColumnKey,
|
|
11
|
+
constructHeadItem,
|
|
12
|
+
} from '~/components/atoms/table/dataGrid/lib/utils/constructDataTable'
|
|
13
|
+
import {
|
|
14
|
+
datastoreIconByState,
|
|
15
|
+
datastoreLocalizationByState,
|
|
16
|
+
} from '~/components/common/lib/config/states'
|
|
17
|
+
|
|
18
|
+
export const storageTableKeys: UI_T_StorageColumnKeys = [
|
|
19
|
+
'name',
|
|
20
|
+
'state',
|
|
21
|
+
'capacity_mb',
|
|
22
|
+
'provisioned_mb',
|
|
23
|
+
'free_mb',
|
|
24
|
+
'used_mb',
|
|
25
|
+
'type_text',
|
|
26
|
+
'thin_provisioning',
|
|
27
|
+
'access_mode',
|
|
28
|
+
'hardware_acceleration',
|
|
29
|
+
'drive_type',
|
|
30
|
+
'device',
|
|
31
|
+
'storage_io_control',
|
|
32
|
+
]
|
|
33
|
+
|
|
34
|
+
const getItems = (
|
|
35
|
+
localization: UI_I_Localization
|
|
36
|
+
): [string, boolean, string, string][] => {
|
|
37
|
+
return [
|
|
38
|
+
[localization.name, true, '96px', storageTableKeys[0]],
|
|
39
|
+
[localization.state, true, '138px', storageTableKeys[1]],
|
|
40
|
+
[localization.capacity, true, '110px', storageTableKeys[2]],
|
|
41
|
+
[localization.provisioned, true, '128px', storageTableKeys[3]],
|
|
42
|
+
[localization.free, true, '110px', storageTableKeys[4]],
|
|
43
|
+
[localization.used, true, '110px', storageTableKeys[5]],
|
|
44
|
+
[localization.type, true, '110px', storageTableKeys[6]],
|
|
45
|
+
[localization.thinProvisioning, true, '132px', storageTableKeys[7]],
|
|
46
|
+
[localization.access, true, '110px', storageTableKeys[8]],
|
|
47
|
+
[localization.hardwareAcceleration, true, '134px', storageTableKeys[9]],
|
|
48
|
+
[localization.driverType, true, '110px', storageTableKeys[10]],
|
|
49
|
+
[localization.device, true, '110px', storageTableKeys[11]],
|
|
50
|
+
[localization.storageIoControl, true, '110px', storageTableKeys[12]],
|
|
51
|
+
]
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export const columnKeys = (
|
|
55
|
+
localization: UI_I_Localization
|
|
56
|
+
): UI_I_ColumnKey[] => {
|
|
57
|
+
const result: UI_I_ColumnKey[] = []
|
|
58
|
+
getItems(localization).forEach((item, i) => {
|
|
59
|
+
const col = i === 0 ? 'icon' : `col${i}`
|
|
60
|
+
result.push(
|
|
61
|
+
constructColumnKey(col, item[0], item[1], `show-column-${item[3]}`)
|
|
62
|
+
)
|
|
63
|
+
})
|
|
64
|
+
return result
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
export const headItems = (localization: UI_I_Localization): UI_I_HeadItem[] => {
|
|
68
|
+
const result: UI_I_HeadItem[] = []
|
|
69
|
+
getItems(localization).forEach((item, i) => {
|
|
70
|
+
const col = i === 0 ? 'icon' : `col${i}`
|
|
71
|
+
result.push(
|
|
72
|
+
constructHeadItem(
|
|
73
|
+
col,
|
|
74
|
+
item[0],
|
|
75
|
+
item[3],
|
|
76
|
+
true,
|
|
77
|
+
item[2],
|
|
78
|
+
undefined,
|
|
79
|
+
item[3]
|
|
80
|
+
)
|
|
81
|
+
)
|
|
82
|
+
})
|
|
83
|
+
return result
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
export const bodyItems = (
|
|
87
|
+
data: UI_I_DatastoreTableItem[],
|
|
88
|
+
localization: UI_I_Localization
|
|
89
|
+
): UI_I_BodyItem[][] => {
|
|
90
|
+
const bodyItems: UI_I_BodyItem[][] = []
|
|
91
|
+
const { $binary } = useNuxtApp()
|
|
92
|
+
|
|
93
|
+
data.forEach((storage: UI_I_DatastoreTableItem, key: number) => {
|
|
94
|
+
const state =
|
|
95
|
+
localization[datastoreLocalizationByState[storage[storageTableKeys[1]]]]
|
|
96
|
+
bodyItems.push([
|
|
97
|
+
{
|
|
98
|
+
key: 'icon',
|
|
99
|
+
text: storage[storageTableKeys[0]].toString(),
|
|
100
|
+
data: `vsphere-icon-${datastoreIconByState[storage.state]}`,
|
|
101
|
+
id: key,
|
|
102
|
+
testId: `storage-table-item-${key}`,
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
key: 'col1',
|
|
106
|
+
text: state,
|
|
107
|
+
id: key,
|
|
108
|
+
testId: `storage-table-item-${key}`,
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
key: 'col2',
|
|
112
|
+
text: $binary.round(storage.capacity[storageTableKeys[2]]),
|
|
113
|
+
data: {
|
|
114
|
+
sortValue: storage.capacity[storageTableKeys[2]],
|
|
115
|
+
},
|
|
116
|
+
id: key,
|
|
117
|
+
testId: `storage-table-item-${key}`,
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
key: 'col3',
|
|
121
|
+
text: $binary.round(storage.capacity[storageTableKeys[3]].toString()),
|
|
122
|
+
data: {
|
|
123
|
+
sortValue: storage.capacity[storageTableKeys[3]],
|
|
124
|
+
},
|
|
125
|
+
id: key,
|
|
126
|
+
testId: `storage-table-item-${key}`,
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
key: 'col4',
|
|
130
|
+
text: $binary.round(storage.capacity[storageTableKeys[4]].toString()),
|
|
131
|
+
data: {
|
|
132
|
+
sortValue: storage.capacity[storageTableKeys[4]],
|
|
133
|
+
},
|
|
134
|
+
id: key,
|
|
135
|
+
testId: `storage-table-item-${key}`,
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
key: 'col5',
|
|
139
|
+
text: $binary.round(storage.capacity[storageTableKeys[5]].toString()),
|
|
140
|
+
data: {
|
|
141
|
+
sortValue: storage.capacity[storageTableKeys[5]],
|
|
142
|
+
},
|
|
143
|
+
id: key,
|
|
144
|
+
testId: `storage-table-item-${key}`,
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
key: 'col6',
|
|
148
|
+
text: storage[storageTableKeys[6]].toString(),
|
|
149
|
+
id: key,
|
|
150
|
+
testId: `storage-table-item-${key}`,
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
key: 'col7',
|
|
154
|
+
text: storage[storageTableKeys[7]] ? localization.yes : localization.no,
|
|
155
|
+
id: key,
|
|
156
|
+
testId: `storage-table-item-${key}`,
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
key: 'col8',
|
|
160
|
+
text: storage[storageTableKeys[8]].toString(),
|
|
161
|
+
id: key,
|
|
162
|
+
testId: `storage-table-item-${key}`,
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
key: 'col9',
|
|
166
|
+
text: storage[storageTableKeys[9]].toString(),
|
|
167
|
+
id: key,
|
|
168
|
+
testId: `storage-table-item-${key}`,
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
key: 'col10',
|
|
172
|
+
text: storage[storageTableKeys[10]].toString(),
|
|
173
|
+
id: key,
|
|
174
|
+
testId: `storage-table-item-${key}`,
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
key: 'col11',
|
|
178
|
+
text: storage[storageTableKeys[11]].toString(),
|
|
179
|
+
id: key,
|
|
180
|
+
testId: `storage-table-item-${key}`,
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
key: 'col12',
|
|
184
|
+
text: storage[storageTableKeys[12]].toString(),
|
|
185
|
+
id: key,
|
|
186
|
+
testId: `storage-table-item-${key}`,
|
|
187
|
+
},
|
|
188
|
+
])
|
|
189
|
+
})
|
|
190
|
+
return bodyItems
|
|
191
|
+
}
|