bfg-common 1.3.99 → 1.3.101
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/scss/common/icons/icons-2.scss +222 -222
- package/components/atoms/switch/Switch.vue +107 -107
- package/components/atoms/table/dataGrid/DataGrid.vue +1576 -1576
- package/components/atoms/wizard/Wizard.vue +7 -2
- package/components/common/adapterManager/AdapterManager.vue +95 -0
- package/components/common/adapterManager/AddAdapterModal.vue +8 -10
- package/components/common/adapterManager/ui/table/Adapters.vue +12 -12
- package/components/common/adapterManager/ui/table/Table.vue +4 -18
- package/components/common/diagramMain/lib/models/interfaces.ts +46 -21
- package/components/common/diagramMain/lib/models/types.ts +6 -0
- package/components/common/diagramMain/port/Port.vue +8 -3
- package/components/common/lib/config/states.ts +13 -0
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/Table.vue +137 -137
- package/components/common/pages/Tasks.vue +120 -120
- package/components/common/recursionTree/RecursionTree.vue +203 -203
- package/components/common/vm/actions/clone/Clone.vue +518 -518
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/CpuModel.vue +220 -220
- package/components/common/vm/actions/common/select/storage/lib/config/config.ts +166 -166
- package/components/common/wizards/network/add/Add.vue +5 -1
- package/components/common/wizards/network/add/modals/SelectStandardSwitch.vue +7 -7
- package/components/common/wizards/network/add/steps/SelectedTargetDevice.vue +7 -2
- package/composables/useAppVersion.ts +21 -21
- package/composables/useEnvLanguage.ts +20 -20
- package/composables/useLocal.ts +38 -38
- 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,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(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
|
-
data: {
|
|
100
|
-
sortValue: storage.capacity[storageTableKeys[2]],
|
|
101
|
-
},
|
|
102
|
-
id: key,
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
key: 'col3',
|
|
106
|
-
text: $binary.round(storage.capacity[storageTableKeys[3]].toString()),
|
|
107
|
-
data: {
|
|
108
|
-
sortValue: storage.capacity[storageTableKeys[3]],
|
|
109
|
-
},
|
|
110
|
-
id: key,
|
|
111
|
-
},
|
|
112
|
-
{
|
|
113
|
-
key: 'col4',
|
|
114
|
-
text: $binary.round(storage.capacity[storageTableKeys[4]].toString()),
|
|
115
|
-
data: {
|
|
116
|
-
sortValue: storage.capacity[storageTableKeys[4]],
|
|
117
|
-
},
|
|
118
|
-
id: key,
|
|
119
|
-
},
|
|
120
|
-
{
|
|
121
|
-
key: 'col5',
|
|
122
|
-
text: $binary.round(storage.capacity[storageTableKeys[5]].toString()),
|
|
123
|
-
data: {
|
|
124
|
-
sortValue: storage.capacity[storageTableKeys[5]],
|
|
125
|
-
},
|
|
126
|
-
id: key,
|
|
127
|
-
},
|
|
128
|
-
{
|
|
129
|
-
key: 'col6',
|
|
130
|
-
text: storage[storageTableKeys[6]].toString(),
|
|
131
|
-
id: key,
|
|
132
|
-
},
|
|
133
|
-
{
|
|
134
|
-
key: 'col7',
|
|
135
|
-
text: storage[storageTableKeys[7]] ? localization.yes : localization.no,
|
|
136
|
-
id: key,
|
|
137
|
-
},
|
|
138
|
-
{
|
|
139
|
-
key: 'col8',
|
|
140
|
-
text: storage[storageTableKeys[8]].toString(),
|
|
141
|
-
id: key,
|
|
142
|
-
},
|
|
143
|
-
{
|
|
144
|
-
key: 'col9',
|
|
145
|
-
text: storage[storageTableKeys[9]].toString(),
|
|
146
|
-
id: key,
|
|
147
|
-
},
|
|
148
|
-
{
|
|
149
|
-
key: 'col10',
|
|
150
|
-
text: storage[storageTableKeys[10]].toString(),
|
|
151
|
-
id: key,
|
|
152
|
-
},
|
|
153
|
-
{
|
|
154
|
-
key: 'col11',
|
|
155
|
-
text: storage[storageTableKeys[11]].toString(),
|
|
156
|
-
id: key,
|
|
157
|
-
},
|
|
158
|
-
{
|
|
159
|
-
key: 'col12',
|
|
160
|
-
text: storage[storageTableKeys[12]].toString(),
|
|
161
|
-
id: key,
|
|
162
|
-
},
|
|
163
|
-
])
|
|
164
|
-
})
|
|
165
|
-
return bodyItems
|
|
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(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
|
+
data: {
|
|
100
|
+
sortValue: storage.capacity[storageTableKeys[2]],
|
|
101
|
+
},
|
|
102
|
+
id: key,
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
key: 'col3',
|
|
106
|
+
text: $binary.round(storage.capacity[storageTableKeys[3]].toString()),
|
|
107
|
+
data: {
|
|
108
|
+
sortValue: storage.capacity[storageTableKeys[3]],
|
|
109
|
+
},
|
|
110
|
+
id: key,
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
key: 'col4',
|
|
114
|
+
text: $binary.round(storage.capacity[storageTableKeys[4]].toString()),
|
|
115
|
+
data: {
|
|
116
|
+
sortValue: storage.capacity[storageTableKeys[4]],
|
|
117
|
+
},
|
|
118
|
+
id: key,
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
key: 'col5',
|
|
122
|
+
text: $binary.round(storage.capacity[storageTableKeys[5]].toString()),
|
|
123
|
+
data: {
|
|
124
|
+
sortValue: storage.capacity[storageTableKeys[5]],
|
|
125
|
+
},
|
|
126
|
+
id: key,
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
key: 'col6',
|
|
130
|
+
text: storage[storageTableKeys[6]].toString(),
|
|
131
|
+
id: key,
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
key: 'col7',
|
|
135
|
+
text: storage[storageTableKeys[7]] ? localization.yes : localization.no,
|
|
136
|
+
id: key,
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
key: 'col8',
|
|
140
|
+
text: storage[storageTableKeys[8]].toString(),
|
|
141
|
+
id: key,
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
key: 'col9',
|
|
145
|
+
text: storage[storageTableKeys[9]].toString(),
|
|
146
|
+
id: key,
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
key: 'col10',
|
|
150
|
+
text: storage[storageTableKeys[10]].toString(),
|
|
151
|
+
id: key,
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
key: 'col11',
|
|
155
|
+
text: storage[storageTableKeys[11]].toString(),
|
|
156
|
+
id: key,
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
key: 'col12',
|
|
160
|
+
text: storage[storageTableKeys[12]].toString(),
|
|
161
|
+
id: key,
|
|
162
|
+
},
|
|
163
|
+
])
|
|
164
|
+
})
|
|
165
|
+
return bodyItems
|
|
166
|
+
}
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
:is-loading="wizard.wizardLoader.status"
|
|
7
7
|
:loader-messages="wizard.wizardLoader.messages"
|
|
8
8
|
:title="title"
|
|
9
|
+
height="533px"
|
|
9
10
|
:was-completed="wasCompleted"
|
|
10
11
|
:localization="localization"
|
|
11
12
|
:class="[
|
|
@@ -94,7 +95,10 @@
|
|
|
94
95
|
</template>
|
|
95
96
|
|
|
96
97
|
<script setup lang="ts">
|
|
97
|
-
import {
|
|
98
|
+
import {
|
|
99
|
+
UI_I_ArbitraryObject,
|
|
100
|
+
UI_I_Localization,
|
|
101
|
+
} from '~/lib/models/interfaces'
|
|
98
102
|
import { UI_T_Project } from '~/lib/models/types'
|
|
99
103
|
import {
|
|
100
104
|
UI_I_PortProperties,
|
|
@@ -34,12 +34,11 @@
|
|
|
34
34
|
<script setup lang="ts">
|
|
35
35
|
import { UI_I_Localization } from '~/lib/models/interfaces'
|
|
36
36
|
import {
|
|
37
|
-
|
|
38
|
-
|
|
37
|
+
UI_I_Switch,
|
|
38
|
+
UI_I_SelectedSwitch,
|
|
39
|
+
UI_I_BodyItems,
|
|
39
40
|
} from '~/components/common/wizards/network/add/lib/models/interfaces'
|
|
40
|
-
import {
|
|
41
|
-
selectStandardSwitchTableHeadFunc
|
|
42
|
-
} from '~/components/common/wizards/network/add/lib/config'
|
|
41
|
+
import { selectStandardSwitchTableHeadFunc } from '~/components/common/wizards/network/add/lib/config'
|
|
43
42
|
|
|
44
43
|
interface I_SelectSwitchModalProps {
|
|
45
44
|
show: boolean
|
|
@@ -90,8 +89,8 @@ const onHideErrorMessageAlert = (): void => {
|
|
|
90
89
|
isShowErrorMessageAlert.value = false
|
|
91
90
|
}
|
|
92
91
|
|
|
93
|
-
const onSelectRow = (
|
|
94
|
-
selectedRowData.value =
|
|
92
|
+
const onSelectRow = (_index: number, item: UI_I_SelectedSwitch[]): void => {
|
|
93
|
+
selectedRowData.value = item
|
|
95
94
|
}
|
|
96
95
|
|
|
97
96
|
const onSelectSwitch = (): void => {
|
|
@@ -99,6 +98,7 @@ const onSelectSwitch = (): void => {
|
|
|
99
98
|
selectedRowData.value &&
|
|
100
99
|
selectedRowData.value[0] &&
|
|
101
100
|
selectedRowData.value[0].id
|
|
101
|
+
|
|
102
102
|
if (!selectedSwitchId) {
|
|
103
103
|
isShowErrorMessageAlert.value = true
|
|
104
104
|
return
|
|
@@ -285,7 +285,10 @@
|
|
|
285
285
|
</template>
|
|
286
286
|
|
|
287
287
|
<script setup lang="ts">
|
|
288
|
-
import {
|
|
288
|
+
import {
|
|
289
|
+
UI_I_ArbitraryObject,
|
|
290
|
+
UI_I_Localization,
|
|
291
|
+
} from '~/lib/models/interfaces'
|
|
289
292
|
import {
|
|
290
293
|
UI_I_TargetDevice,
|
|
291
294
|
UI_I_Switch,
|
|
@@ -379,7 +382,9 @@ watch(
|
|
|
379
382
|
(newStandardSwitchesInitial) => {
|
|
380
383
|
!fields.value.standardSwitch &&
|
|
381
384
|
(fields.value.standardSwitch =
|
|
382
|
-
newStandardSwitchesInitial?.
|
|
385
|
+
newStandardSwitchesInitial?.sort((prev, next) =>
|
|
386
|
+
prev.name.localeCompare(next.name)
|
|
387
|
+
)[0]?.name || '')
|
|
383
388
|
},
|
|
384
389
|
{ deep: true, immediate: true }
|
|
385
390
|
)
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
import type { UI_I_UseAppVersionReturnType } from '~/lib/models/composables/useAppVersion/interfaces'
|
|
2
|
-
|
|
3
|
-
export function useAppVersion(): UI_I_UseAppVersionReturnType {
|
|
4
|
-
const config = useRuntimeConfig()
|
|
5
|
-
const version = config.public.APP_VERSION
|
|
6
|
-
|
|
7
|
-
const regexHasDot = /\./
|
|
8
|
-
const regexHasDotAndB = /\..*b/
|
|
9
|
-
const regexHasDotAndD = /\..*d/
|
|
10
|
-
|
|
11
|
-
const isBeta = regexHasDotAndB.test(version)
|
|
12
|
-
const isDev =
|
|
13
|
-
regexHasDotAndD.test(version) ||
|
|
14
|
-
(!regexHasDot.test(version) && version.length < 8)
|
|
15
|
-
|
|
16
|
-
return {
|
|
17
|
-
version,
|
|
18
|
-
isBeta,
|
|
19
|
-
isDev,
|
|
20
|
-
}
|
|
21
|
-
}
|
|
1
|
+
import type { UI_I_UseAppVersionReturnType } from '~/lib/models/composables/useAppVersion/interfaces'
|
|
2
|
+
|
|
3
|
+
export function useAppVersion(): UI_I_UseAppVersionReturnType {
|
|
4
|
+
const config = useRuntimeConfig()
|
|
5
|
+
const version = config.public.APP_VERSION
|
|
6
|
+
|
|
7
|
+
const regexHasDot = /\./
|
|
8
|
+
const regexHasDotAndB = /\..*b/
|
|
9
|
+
const regexHasDotAndD = /\..*d/
|
|
10
|
+
|
|
11
|
+
const isBeta = regexHasDotAndB.test(version)
|
|
12
|
+
const isDev =
|
|
13
|
+
regexHasDotAndD.test(version) ||
|
|
14
|
+
(!regexHasDot.test(version) && version.length < 8)
|
|
15
|
+
|
|
16
|
+
return {
|
|
17
|
+
version,
|
|
18
|
+
isBeta,
|
|
19
|
+
isDev,
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
export function useEnvLanguage(): string {
|
|
2
|
-
const { $store }: any = useNuxtApp()
|
|
3
|
-
|
|
4
|
-
let localizationCode = 'en_US'
|
|
5
|
-
const langFromLocalStorage =
|
|
6
|
-
useLocalStorage('lang') || $store.getters['main/getInterfaceLang'] // Из $store для Сферы, но думаю нужно сделать одинаково из localStorage
|
|
7
|
-
if (langFromLocalStorage) {
|
|
8
|
-
if (
|
|
9
|
-
langFromLocalStorage === 'en_US' ||
|
|
10
|
-
langFromLocalStorage === 'ru_RU' ||
|
|
11
|
-
langFromLocalStorage === 'hy_AM'
|
|
12
|
-
) {
|
|
13
|
-
localizationCode = langFromLocalStorage
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
localizationCode = localizationCode.slice(0, 2).toUpperCase()
|
|
18
|
-
|
|
19
|
-
return localizationCode
|
|
20
|
-
}
|
|
1
|
+
export function useEnvLanguage(): string {
|
|
2
|
+
const { $store }: any = useNuxtApp()
|
|
3
|
+
|
|
4
|
+
let localizationCode = 'en_US'
|
|
5
|
+
const langFromLocalStorage =
|
|
6
|
+
useLocalStorage('lang') || $store.getters['main/getInterfaceLang'] // Из $store для Сферы, но думаю нужно сделать одинаково из localStorage
|
|
7
|
+
if (langFromLocalStorage) {
|
|
8
|
+
if (
|
|
9
|
+
langFromLocalStorage === 'en_US' ||
|
|
10
|
+
langFromLocalStorage === 'ru_RU' ||
|
|
11
|
+
langFromLocalStorage === 'hy_AM'
|
|
12
|
+
) {
|
|
13
|
+
localizationCode = langFromLocalStorage
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
localizationCode = localizationCode.slice(0, 2).toUpperCase()
|
|
18
|
+
|
|
19
|
+
return localizationCode
|
|
20
|
+
}
|
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
|
+
}
|