bfg-common 1.2.113 → 1.2.115
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/assets/localization/local_be.json +2109 -2108
- package/assets/localization/local_en.json +2112 -2111
- package/assets/localization/local_hy.json +2112 -2111
- package/assets/localization/local_kk.json +2112 -2111
- package/assets/localization/local_ru.json +2112 -2111
- package/assets/localization/local_zh.json +2112 -2111
- package/components/atoms/switch/Switch.vue +107 -107
- package/components/common/BadBrowser.vue +114 -114
- package/components/common/adapterManager/AddAdapterWarningModal.vue +82 -82
- package/components/common/adapterManager/NoActiveAdaptersModal.vue +62 -62
- package/components/common/adapterManager/NoConnectedActiveAdaptersModal.vue +62 -62
- package/components/common/browse/blocks/Title.vue +66 -66
- package/components/common/diagramMain/modals/editSettings/tabs/port/IpvFourSettings.vue +339 -339
- package/components/common/diagramMain/modals/editSettings/tabs/port/PortProperties.vue +202 -202
- package/components/common/diagramMain/modals/remove/RemoveModal.vue +226 -226
- package/components/common/feedback/Feedback.vue +261 -261
- package/components/common/feedback/VisitPortal.vue +53 -53
- package/components/common/help/navbar/left/utils/constructAccordion.ts +27 -27
- package/components/common/recursionTree/RecursionTree.vue +201 -201
- package/components/common/vm/actions/clone/Clone.vue +545 -545
- package/components/common/vm/actions/clone/select/options/Options.vue +65 -65
- package/components/common/vm/actions/clone/utils.ts +43 -43
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/CoresPerSocket.vue +109 -109
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Cpu.vue +383 -383
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/limit/Limit.vue +234 -234
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/limit/config/options.ts +28 -28
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/Memory.vue +316 -316
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/config/memoryOptions.ts +35 -35
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/NewHardDisk.vue +447 -447
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/reservation/Reservation.vue +235 -235
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/VideoCard.vue +177 -177
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/order/Order.vue +197 -197
- package/components/common/vm/actions/common/customizeHardware/vmoptions/generalOptions/GeneralOptions.vue +181 -181
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/CopyPaste.vue +51 -51
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/RemoteConsoleOptions.vue +253 -253
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/keymap/Keymap.vue +55 -55
- package/components/common/vm/actions/common/select/storage/Storage.vue +194 -194
- package/components/common/vm/actions/common/select/storage/config/config.ts +154 -154
- package/components/common/wizards/datastore/add/nfs/kerberosAuthentication/KerberosAuthentication.vue +54 -54
- package/components/common/wizards/vm/common/Tooltip.vue +13 -5
- package/components/common/wizards/vm/migrate/contentHeading/ContentHeading.vue +82 -7
- package/components/common/wizards/vm/migrate/contentHeading/models/interfaces.ts +7 -0
- package/composables/useLocal.ts +38 -38
- package/minify.js +146 -146
- package/models/store/interfaces.ts +37 -37
- package/models/store/storage/interfaces.ts +32 -32
- package/models/store/types.ts +32 -32
- package/modules/fixContentBuild/utils/methods.ts +114 -114
- 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/utils/contentBuild.ts +34 -34
|
@@ -1,154 +1,154 @@
|
|
|
1
|
-
import { UI_I_DatastoreTableItem } from '~/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/models/interfaces'
|
|
7
|
-
import type { UI_I_Localization } from '~/models/interfaces'
|
|
8
|
-
import { UI_T_StorageColumnKeys } from '~/components/common/vm/actions/common/select/storage/models/types'
|
|
9
|
-
import {
|
|
10
|
-
constructColumnKey,
|
|
11
|
-
constructHeadItem,
|
|
12
|
-
} from '~/components/atoms/table/dataGrid/utils/constructDataTable'
|
|
13
|
-
import {
|
|
14
|
-
datastoreIconByState,
|
|
15
|
-
datastoreLocalizationByState,
|
|
16
|
-
} from '~/components/common/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(constructColumnKey(col, item[0], item[1]))
|
|
61
|
-
})
|
|
62
|
-
return result
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
export const headItems = (localization: UI_I_Localization): UI_I_HeadItem[] => {
|
|
66
|
-
const result: UI_I_HeadItem[] = []
|
|
67
|
-
getItems(localization).forEach((item, i) => {
|
|
68
|
-
const col = i === 0 ? 'icon' : `col${i}`
|
|
69
|
-
result.push(constructHeadItem(col, item[0], item[3], true, item[2]))
|
|
70
|
-
})
|
|
71
|
-
return result
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
export const bodyItems = (
|
|
75
|
-
data: UI_I_DatastoreTableItem[],
|
|
76
|
-
localization: UI_I_Localization
|
|
77
|
-
): UI_I_BodyItem[][] => {
|
|
78
|
-
const bodyItems: UI_I_BodyItem[][] = []
|
|
79
|
-
const { $binary } = useNuxtApp()
|
|
80
|
-
|
|
81
|
-
data.forEach((storage: UI_I_DatastoreTableItem, key: number) => {
|
|
82
|
-
const state =
|
|
83
|
-
localization[datastoreLocalizationByState[storage[storageTableKeys[1]]]]
|
|
84
|
-
bodyItems.push([
|
|
85
|
-
{
|
|
86
|
-
key: 'icon',
|
|
87
|
-
text: storage[storageTableKeys[0]].toString(),
|
|
88
|
-
data: `vsphere-icon-${datastoreIconByState[storage.state]}`,
|
|
89
|
-
id: key,
|
|
90
|
-
},
|
|
91
|
-
{
|
|
92
|
-
key: 'col1',
|
|
93
|
-
text: state,
|
|
94
|
-
id: key,
|
|
95
|
-
},
|
|
96
|
-
{
|
|
97
|
-
key: 'col2',
|
|
98
|
-
text: $binary.round(storage.capacity[storageTableKeys[2]]),
|
|
99
|
-
id: key,
|
|
100
|
-
},
|
|
101
|
-
{
|
|
102
|
-
key: 'col3',
|
|
103
|
-
text: $binary.round(storage.capacity[storageTableKeys[3]].toString()),
|
|
104
|
-
id: key,
|
|
105
|
-
},
|
|
106
|
-
{
|
|
107
|
-
key: 'col4',
|
|
108
|
-
text: $binary.round(storage.capacity[storageTableKeys[4]].toString()),
|
|
109
|
-
id: key,
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
key: 'col5',
|
|
113
|
-
text: $binary.round(storage.capacity[storageTableKeys[5]].toString()),
|
|
114
|
-
id: key,
|
|
115
|
-
},
|
|
116
|
-
{
|
|
117
|
-
key: 'col6',
|
|
118
|
-
text: storage[storageTableKeys[6]].toString(),
|
|
119
|
-
id: key,
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
key: 'col7',
|
|
123
|
-
text: storage[storageTableKeys[7]] ? localization.yes : localization.no,
|
|
124
|
-
id: key,
|
|
125
|
-
},
|
|
126
|
-
{
|
|
127
|
-
key: 'col8',
|
|
128
|
-
text: storage[storageTableKeys[8]].toString(),
|
|
129
|
-
id: key,
|
|
130
|
-
},
|
|
131
|
-
{
|
|
132
|
-
key: 'col9',
|
|
133
|
-
text: storage[storageTableKeys[9]].toString(),
|
|
134
|
-
id: key,
|
|
135
|
-
},
|
|
136
|
-
{
|
|
137
|
-
key: 'col10',
|
|
138
|
-
text: storage[storageTableKeys[10]].toString(),
|
|
139
|
-
id: key,
|
|
140
|
-
},
|
|
141
|
-
{
|
|
142
|
-
key: 'col11',
|
|
143
|
-
text: storage[storageTableKeys[11]].toString(),
|
|
144
|
-
id: key,
|
|
145
|
-
},
|
|
146
|
-
{
|
|
147
|
-
key: 'col12',
|
|
148
|
-
text: storage[storageTableKeys[12]].toString(),
|
|
149
|
-
id: key,
|
|
150
|
-
},
|
|
151
|
-
])
|
|
152
|
-
})
|
|
153
|
-
return bodyItems
|
|
154
|
-
}
|
|
1
|
+
import { UI_I_DatastoreTableItem } from '~/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/models/interfaces'
|
|
7
|
+
import type { UI_I_Localization } from '~/models/interfaces'
|
|
8
|
+
import { UI_T_StorageColumnKeys } from '~/components/common/vm/actions/common/select/storage/models/types'
|
|
9
|
+
import {
|
|
10
|
+
constructColumnKey,
|
|
11
|
+
constructHeadItem,
|
|
12
|
+
} from '~/components/atoms/table/dataGrid/utils/constructDataTable'
|
|
13
|
+
import {
|
|
14
|
+
datastoreIconByState,
|
|
15
|
+
datastoreLocalizationByState,
|
|
16
|
+
} from '~/components/common/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(constructColumnKey(col, item[0], item[1]))
|
|
61
|
+
})
|
|
62
|
+
return result
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export const headItems = (localization: UI_I_Localization): UI_I_HeadItem[] => {
|
|
66
|
+
const result: UI_I_HeadItem[] = []
|
|
67
|
+
getItems(localization).forEach((item, i) => {
|
|
68
|
+
const col = i === 0 ? 'icon' : `col${i}`
|
|
69
|
+
result.push(constructHeadItem(col, item[0], item[3], true, item[2]))
|
|
70
|
+
})
|
|
71
|
+
return result
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
export const bodyItems = (
|
|
75
|
+
data: UI_I_DatastoreTableItem[],
|
|
76
|
+
localization: UI_I_Localization
|
|
77
|
+
): UI_I_BodyItem[][] => {
|
|
78
|
+
const bodyItems: UI_I_BodyItem[][] = []
|
|
79
|
+
const { $binary } = useNuxtApp()
|
|
80
|
+
|
|
81
|
+
data.forEach((storage: UI_I_DatastoreTableItem, key: number) => {
|
|
82
|
+
const state =
|
|
83
|
+
localization[datastoreLocalizationByState[storage[storageTableKeys[1]]]]
|
|
84
|
+
bodyItems.push([
|
|
85
|
+
{
|
|
86
|
+
key: 'icon',
|
|
87
|
+
text: storage[storageTableKeys[0]].toString(),
|
|
88
|
+
data: `vsphere-icon-${datastoreIconByState[storage.state]}`,
|
|
89
|
+
id: key,
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
key: 'col1',
|
|
93
|
+
text: state,
|
|
94
|
+
id: key,
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
key: 'col2',
|
|
98
|
+
text: $binary.round(storage.capacity[storageTableKeys[2]]),
|
|
99
|
+
id: key,
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
key: 'col3',
|
|
103
|
+
text: $binary.round(storage.capacity[storageTableKeys[3]].toString()),
|
|
104
|
+
id: key,
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
key: 'col4',
|
|
108
|
+
text: $binary.round(storage.capacity[storageTableKeys[4]].toString()),
|
|
109
|
+
id: key,
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
key: 'col5',
|
|
113
|
+
text: $binary.round(storage.capacity[storageTableKeys[5]].toString()),
|
|
114
|
+
id: key,
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
key: 'col6',
|
|
118
|
+
text: storage[storageTableKeys[6]].toString(),
|
|
119
|
+
id: key,
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
key: 'col7',
|
|
123
|
+
text: storage[storageTableKeys[7]] ? localization.yes : localization.no,
|
|
124
|
+
id: key,
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
key: 'col8',
|
|
128
|
+
text: storage[storageTableKeys[8]].toString(),
|
|
129
|
+
id: key,
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
key: 'col9',
|
|
133
|
+
text: storage[storageTableKeys[9]].toString(),
|
|
134
|
+
id: key,
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
key: 'col10',
|
|
138
|
+
text: storage[storageTableKeys[10]].toString(),
|
|
139
|
+
id: key,
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
key: 'col11',
|
|
143
|
+
text: storage[storageTableKeys[11]].toString(),
|
|
144
|
+
id: key,
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
key: 'col12',
|
|
148
|
+
text: storage[storageTableKeys[12]].toString(),
|
|
149
|
+
id: key,
|
|
150
|
+
},
|
|
151
|
+
])
|
|
152
|
+
})
|
|
153
|
+
return bodyItems
|
|
154
|
+
}
|
|
@@ -1,54 +1,54 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="kerberos-auth">
|
|
3
|
-
<atoms-alert
|
|
4
|
-
v-show="isShowAlert"
|
|
5
|
-
test-id="kerberos-authentication"
|
|
6
|
-
status="alert-warning"
|
|
7
|
-
:items="[localization.kerberosAuthenticationAlert]"
|
|
8
|
-
@remove="isShowAlert = false"
|
|
9
|
-
/>
|
|
10
|
-
|
|
11
|
-
<div class="kerberos-auth__inner">
|
|
12
|
-
<div v-for="item in kerberosTypes" :key="item.value" class="radio">
|
|
13
|
-
<input
|
|
14
|
-
:id="item.label"
|
|
15
|
-
v-model="kerberosType"
|
|
16
|
-
type="radio"
|
|
17
|
-
:value="item.value"
|
|
18
|
-
/>
|
|
19
|
-
<label :for="item.label">
|
|
20
|
-
{{ item.label }}
|
|
21
|
-
</label>
|
|
22
|
-
</div>
|
|
23
|
-
</div>
|
|
24
|
-
</div>
|
|
25
|
-
</template>
|
|
26
|
-
|
|
27
|
-
<script lang="ts" setup>
|
|
28
|
-
import { UI_I_Localization } from '~/models/interfaces'
|
|
29
|
-
import { UI_I_RadioOption } from '~/components/common/select/radio/models/interfaces'
|
|
30
|
-
import { UI_T_KerberosAuthentication } from '~/components/common/wizards/datastore/add/models/types'
|
|
31
|
-
import { kerberosOptionsFunc } from '~/components/common/wizards/datastore/add/nfs/kerberosAuthentication/config/radioOptions'
|
|
32
|
-
|
|
33
|
-
const localization = computed<UI_I_Localization>(() => useLocal())
|
|
34
|
-
|
|
35
|
-
const kerberosType = ref<UI_T_KerberosAuthentication>('dont-use')
|
|
36
|
-
const isShowAlert = ref<boolean>(true)
|
|
37
|
-
|
|
38
|
-
const kerberosTypes = readonly<UI_I_RadioOption[]>(
|
|
39
|
-
kerberosOptionsFunc(localization.value)
|
|
40
|
-
)
|
|
41
|
-
</script>
|
|
42
|
-
|
|
43
|
-
<style lang="scss" scoped>
|
|
44
|
-
.kerberos-auth {
|
|
45
|
-
&__inner {
|
|
46
|
-
margin-top: 12px;
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
input[type='radio']:focus:checked + label::before,
|
|
51
|
-
input[type='radio']:focus + label::before {
|
|
52
|
-
box-shadow: inset 0 0 0 0.25rem #0094d2;
|
|
53
|
-
}
|
|
54
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="kerberos-auth">
|
|
3
|
+
<atoms-alert
|
|
4
|
+
v-show="isShowAlert"
|
|
5
|
+
test-id="kerberos-authentication"
|
|
6
|
+
status="alert-warning"
|
|
7
|
+
:items="[localization.kerberosAuthenticationAlert]"
|
|
8
|
+
@remove="isShowAlert = false"
|
|
9
|
+
/>
|
|
10
|
+
|
|
11
|
+
<div class="kerberos-auth__inner">
|
|
12
|
+
<div v-for="item in kerberosTypes" :key="item.value" class="radio">
|
|
13
|
+
<input
|
|
14
|
+
:id="item.label"
|
|
15
|
+
v-model="kerberosType"
|
|
16
|
+
type="radio"
|
|
17
|
+
:value="item.value"
|
|
18
|
+
/>
|
|
19
|
+
<label :for="item.label">
|
|
20
|
+
{{ item.label }}
|
|
21
|
+
</label>
|
|
22
|
+
</div>
|
|
23
|
+
</div>
|
|
24
|
+
</div>
|
|
25
|
+
</template>
|
|
26
|
+
|
|
27
|
+
<script lang="ts" setup>
|
|
28
|
+
import { UI_I_Localization } from '~/models/interfaces'
|
|
29
|
+
import { UI_I_RadioOption } from '~/components/common/select/radio/models/interfaces'
|
|
30
|
+
import { UI_T_KerberosAuthentication } from '~/components/common/wizards/datastore/add/models/types'
|
|
31
|
+
import { kerberosOptionsFunc } from '~/components/common/wizards/datastore/add/nfs/kerberosAuthentication/config/radioOptions'
|
|
32
|
+
|
|
33
|
+
const localization = computed<UI_I_Localization>(() => useLocal())
|
|
34
|
+
|
|
35
|
+
const kerberosType = ref<UI_T_KerberosAuthentication>('dont-use')
|
|
36
|
+
const isShowAlert = ref<boolean>(true)
|
|
37
|
+
|
|
38
|
+
const kerberosTypes = readonly<UI_I_RadioOption[]>(
|
|
39
|
+
kerberosOptionsFunc(localization.value)
|
|
40
|
+
)
|
|
41
|
+
</script>
|
|
42
|
+
|
|
43
|
+
<style lang="scss" scoped>
|
|
44
|
+
.kerberos-auth {
|
|
45
|
+
&__inner {
|
|
46
|
+
margin-top: 12px;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
input[type='radio']:focus:checked + label::before,
|
|
51
|
+
input[type='radio']:focus + label::before {
|
|
52
|
+
box-shadow: inset 0 0 0 0.25rem #0094d2;
|
|
53
|
+
}
|
|
54
|
+
</style>
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<td :id="tooltipTestId" class="sign-post">
|
|
3
|
+
<a
|
|
4
|
+
v-if="props.isShowElement"
|
|
5
|
+
href="javascript:void(0)"
|
|
6
|
+
@click.stop="isShowFindHelp = !isShowFindHelp"
|
|
7
|
+
>{{ localization.vmOrigin }}
|
|
8
|
+
</a>
|
|
3
9
|
<atoms-the-icon
|
|
4
10
|
id="help-tooltip-icon"
|
|
5
11
|
class="info-icon"
|
|
@@ -13,25 +19,26 @@
|
|
|
13
19
|
class="sign-post__content"
|
|
14
20
|
@hide="isShowFindHelp = false"
|
|
15
21
|
>
|
|
16
|
-
<slot name="content">
|
|
17
|
-
</slot>
|
|
22
|
+
<slot name="content"> </slot>
|
|
18
23
|
</atoms-tooltip-signpost>
|
|
19
24
|
</td>
|
|
20
25
|
</template>
|
|
21
26
|
|
|
22
27
|
<script lang="ts" setup>
|
|
23
|
-
|
|
28
|
+
import type { UI_I_Localization } from '~/models/interfaces'
|
|
24
29
|
|
|
25
30
|
const props = withDefaults(
|
|
26
31
|
defineProps<{
|
|
27
32
|
testId?: string
|
|
33
|
+
isShowElement?: boolean
|
|
28
34
|
}>(),
|
|
29
35
|
{
|
|
30
36
|
testId: 'tooltip',
|
|
37
|
+
isShowElement: false,
|
|
31
38
|
}
|
|
32
39
|
)
|
|
33
40
|
|
|
34
|
-
|
|
41
|
+
const localization = computed<UI_I_Localization>(() => useLocal())
|
|
35
42
|
|
|
36
43
|
const tooltipTestId = computed<string>(
|
|
37
44
|
() => `${props.testId}-configure-navigation`
|
|
@@ -41,8 +48,9 @@ const isShowFindHelp = ref<boolean>(false)
|
|
|
41
48
|
</script>
|
|
42
49
|
|
|
43
50
|
<style lang="scss" scoped>
|
|
44
|
-
@import '
|
|
51
|
+
@import 'assets/scss/common/mixins';
|
|
45
52
|
.sign-post {
|
|
53
|
+
@include flex($align: center);
|
|
46
54
|
padding-left: 6px;
|
|
47
55
|
margin-top: 5px;
|
|
48
56
|
&__content {
|
|
@@ -4,28 +4,103 @@
|
|
|
4
4
|
<h2>{{ props.title }}</h2>
|
|
5
5
|
<p>{{ props.description }}</p>
|
|
6
6
|
</div>
|
|
7
|
+
<common-wizards-vm-common-tooltip
|
|
8
|
+
test-id="vm-origin-tooltip"
|
|
9
|
+
is-show-element
|
|
10
|
+
>
|
|
11
|
+
<template #content>
|
|
12
|
+
<div
|
|
13
|
+
v-for="(item, key) in contentTooltip"
|
|
14
|
+
:key="key"
|
|
15
|
+
class="content-heading__tooltip"
|
|
16
|
+
>
|
|
17
|
+
<h2>{{ item.name }}</h2>
|
|
18
|
+
<div
|
|
19
|
+
v-for="(node, index) in item.node"
|
|
20
|
+
:key="index"
|
|
21
|
+
class="content-heading__tooltip-wrapper"
|
|
22
|
+
>
|
|
23
|
+
<span :class="['icon', node.iconClassName]"></span>
|
|
24
|
+
<span>{{ node.name }}</span>
|
|
25
|
+
</div>
|
|
26
|
+
</div>
|
|
27
|
+
</template>
|
|
28
|
+
</common-wizards-vm-common-tooltip>
|
|
7
29
|
</div>
|
|
8
30
|
</template>
|
|
9
31
|
|
|
10
32
|
<script lang="ts" setup>
|
|
33
|
+
import type { UI_I_HeadlineTooltipContent } from '~/components/common/wizards/vm/migrate/contentHeading/models/interfaces'
|
|
34
|
+
|
|
11
35
|
const props = defineProps<{
|
|
12
36
|
title: string
|
|
13
37
|
description: string
|
|
14
38
|
}>()
|
|
39
|
+
|
|
40
|
+
const contentTooltip = ref<UI_I_HeadlineTooltipContent[]>([
|
|
41
|
+
{
|
|
42
|
+
name: 'Host',
|
|
43
|
+
node: [
|
|
44
|
+
{
|
|
45
|
+
name: ' e0.vmw.aobfg.ru',
|
|
46
|
+
iconClassName: 'vsphere-icon-host',
|
|
47
|
+
},
|
|
48
|
+
],
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
name: 'Networks',
|
|
52
|
+
node: [
|
|
53
|
+
{
|
|
54
|
+
name: 'VM-VLAN101',
|
|
55
|
+
iconClassName: 'vsphere-icon-network',
|
|
56
|
+
},
|
|
57
|
+
],
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
name: 'Storage',
|
|
61
|
+
node: [
|
|
62
|
+
{
|
|
63
|
+
name: 'datastore1 (1)',
|
|
64
|
+
iconClassName: 'vsphere-icon-datastore',
|
|
65
|
+
},
|
|
66
|
+
],
|
|
67
|
+
},
|
|
68
|
+
])
|
|
15
69
|
</script>
|
|
16
70
|
|
|
17
71
|
<style lang="scss" scoped>
|
|
72
|
+
@import 'assets/scss/common/mixins.scss';
|
|
18
73
|
.content-heading {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
74
|
+
display: flex;
|
|
75
|
+
justify-content: space-between;
|
|
76
|
+
align-items: flex-start;
|
|
77
|
+
padding: 0 15px 13px 0;
|
|
78
|
+
border-bottom: 1px solid #a6a6a6;
|
|
79
|
+
& > div h2 {
|
|
80
|
+
font-weight: 700;
|
|
81
|
+
font-size: 13px;
|
|
82
|
+
line-height: normal;
|
|
83
|
+
color: var(--add-vm-context-sub-title);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
&__tooltip {
|
|
87
|
+
& > h2 {
|
|
24
88
|
font-weight: 700;
|
|
25
|
-
font-size: 13px;
|
|
26
89
|
line-height: normal;
|
|
27
|
-
|
|
90
|
+
margin-bottom: 2px;
|
|
91
|
+
}
|
|
92
|
+
&-wrapper {
|
|
93
|
+
@include flex($align: center);
|
|
94
|
+
}
|
|
95
|
+
.icon {
|
|
96
|
+
display: block;
|
|
97
|
+
width: 13px;
|
|
98
|
+
height: 13px;
|
|
99
|
+
margin-right: 10px;
|
|
28
100
|
}
|
|
29
101
|
}
|
|
30
102
|
}
|
|
103
|
+
:deep(.signpost) {
|
|
104
|
+
min-width: 300px;
|
|
105
|
+
}
|
|
31
106
|
</style>
|
package/composables/useLocal.ts
CHANGED
|
@@ -1,38 +1,38 @@
|
|
|
1
|
-
import localRu from '~/assets/localization/local_ru.json'
|
|
2
|
-
import localEn from '~/assets/localization/local_en.json'
|
|
3
|
-
import localHy from '~/assets/localization/local_hy.json'
|
|
4
|
-
import localZh from '~/assets/localization/local_zh.json'
|
|
5
|
-
import localKk from '~/assets/localization/local_kk.json'
|
|
6
|
-
import localBe from '~/assets/localization/local_be.json'
|
|
7
|
-
const locals = {
|
|
8
|
-
localRu,
|
|
9
|
-
localEn,
|
|
10
|
-
localHy,
|
|
11
|
-
localZh,
|
|
12
|
-
localKk,
|
|
13
|
-
localBe,
|
|
14
|
-
}
|
|
15
|
-
export const useLocal = () => {
|
|
16
|
-
const config = useRuntimeConfig()
|
|
17
|
-
|
|
18
|
-
const code: string = config?.public?.LOCALIZATION_CODE?.toLowerCase() || 'ru'
|
|
19
|
-
|
|
20
|
-
document.getElementsByTagName('html')[0].setAttribute('lang', code)
|
|
21
|
-
|
|
22
|
-
switch (code) {
|
|
23
|
-
case 'ru':
|
|
24
|
-
return locals.localRu
|
|
25
|
-
case 'en':
|
|
26
|
-
return locals.localEn
|
|
27
|
-
case 'hy':
|
|
28
|
-
return locals.localHy
|
|
29
|
-
case 'zh':
|
|
30
|
-
return locals.localZh
|
|
31
|
-
case 'kk':
|
|
32
|
-
return locals.localKk
|
|
33
|
-
case 'be':
|
|
34
|
-
return locals.localBe
|
|
35
|
-
default:
|
|
36
|
-
return locals.localRu
|
|
37
|
-
}
|
|
38
|
-
}
|
|
1
|
+
import localRu from '~/assets/localization/local_ru.json'
|
|
2
|
+
import localEn from '~/assets/localization/local_en.json'
|
|
3
|
+
import localHy from '~/assets/localization/local_hy.json'
|
|
4
|
+
import localZh from '~/assets/localization/local_zh.json'
|
|
5
|
+
import localKk from '~/assets/localization/local_kk.json'
|
|
6
|
+
import localBe from '~/assets/localization/local_be.json'
|
|
7
|
+
const locals = {
|
|
8
|
+
localRu,
|
|
9
|
+
localEn,
|
|
10
|
+
localHy,
|
|
11
|
+
localZh,
|
|
12
|
+
localKk,
|
|
13
|
+
localBe,
|
|
14
|
+
}
|
|
15
|
+
export const useLocal = () => {
|
|
16
|
+
const config = useRuntimeConfig()
|
|
17
|
+
|
|
18
|
+
const code: string = config?.public?.LOCALIZATION_CODE?.toLowerCase() || 'ru'
|
|
19
|
+
|
|
20
|
+
document.getElementsByTagName('html')[0].setAttribute('lang', code)
|
|
21
|
+
|
|
22
|
+
switch (code) {
|
|
23
|
+
case 'ru':
|
|
24
|
+
return locals.localRu
|
|
25
|
+
case 'en':
|
|
26
|
+
return locals.localEn
|
|
27
|
+
case 'hy':
|
|
28
|
+
return locals.localHy
|
|
29
|
+
case 'zh':
|
|
30
|
+
return locals.localZh
|
|
31
|
+
case 'kk':
|
|
32
|
+
return locals.localKk
|
|
33
|
+
case 'be':
|
|
34
|
+
return locals.localBe
|
|
35
|
+
default:
|
|
36
|
+
return locals.localRu
|
|
37
|
+
}
|
|
38
|
+
}
|