bfg-common 1.3.348 → 1.3.349

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 (48) hide show
  1. package/components/atoms/TheIcon.vue +1646 -1125
  2. package/components/atoms/TheIconOld.vue +2444 -0
  3. package/components/atoms/switch/Switch.vue +111 -111
  4. package/components/atoms/table/compact/Compact.vue +526 -526
  5. package/components/common/adapterManager/ui/table/Header.vue +93 -93
  6. package/components/common/adapterManager/ui/table/Table.vue +162 -162
  7. package/components/common/context/Context.vue +99 -99
  8. package/components/common/lib/config/states.ts +126 -126
  9. package/components/common/resource/progressBlock/ProgressBlock.vue +142 -142
  10. package/components/common/vm/actions/add/Add.vue +602 -602
  11. package/components/common/vm/actions/clone/Clone.vue +518 -518
  12. package/components/common/vm/actions/common/customizeHardware/CustomizeHardware.vue +273 -273
  13. package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardware.vue +697 -697
  14. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/NewNetwork.vue +299 -299
  15. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/NewPciDevice.vue +165 -165
  16. package/components/common/vm/actions/common/select/computeResource/ComputeResource.vue +164 -164
  17. package/components/common/vm/actions/common/select/name/Name.vue +235 -235
  18. package/components/common/vm/actions/common/select/storage/Storage.vue +198 -198
  19. package/components/common/vm/actions/editSettings/EditSettings.vue +313 -313
  20. package/components/common/weekSelect/lib/config/options.ts +10 -10
  21. package/components/common/wizards/datastore/add/Add.vue +434 -434
  22. package/components/common/wizards/datastore/add/lib/config/stepItems.ts +191 -191
  23. package/components/common/wizards/datastore/add/lib/models/interfaces.ts +38 -38
  24. package/components/common/wizards/datastore/add/lib/utils.ts +70 -70
  25. package/components/common/wizards/datastore/add/local/createName/CreateName.vue +160 -160
  26. package/components/common/wizards/datastore/add/nfs/Nfs.vue +112 -112
  27. package/components/common/wizards/datastore/add/nfs/accessibility/Accessibility.vue +104 -104
  28. package/components/common/wizards/datastore/add/nfs/accessibility/tablesView/lib/config/compatibleTable.ts +62 -62
  29. package/components/common/wizards/datastore/add/nfs/accessibility/tablesView/lib/config/hostsTableItems.ts +53 -53
  30. package/components/common/wizards/datastore/add/readyComplete/ReadyComplete.vue +86 -86
  31. package/components/common/wizards/datastore/add/readyComplete/lib/config/propertiesDetails.ts +184 -184
  32. package/components/common/wizards/datastore/add/sharedStorm/deviceSelection/DeviceSelection.vue +452 -452
  33. package/components/common/wizards/datastore/add/types/Types.vue +80 -80
  34. package/components/common/wizards/datastore/add/types/lib/config/typeOptions.ts +49 -49
  35. package/composables/useAppVersion.ts +21 -21
  36. package/composables/useEnvLanguage.ts +20 -20
  37. package/lib/utils/sendTask.ts +72 -72
  38. package/minify.js +146 -146
  39. package/package.json +1 -1
  40. package/public/spice-console/application/codec.js +257 -257
  41. package/public/spice-console/lib/rasterEngine.js +907 -907
  42. package/public/spice-console/network/spicechannel.js +369 -369
  43. package/store/main/lib/interfaces.ts +9 -9
  44. package/store/tasks/actions.ts +133 -133
  45. package/store/tasks/getters.ts +25 -25
  46. package/store/tasks/lib/models/interfaces.ts +18 -18
  47. package/store/tasks/mutations.ts +58 -58
  48. package/store/tasks/state.ts +16 -16
@@ -1,99 +1,99 @@
1
- <template>
2
- <div
3
- :id="elementId"
4
- class="context-popup"
5
- :style="{
6
- top: currentContextMenuY,
7
- left: currentContextMenuX,
8
- }"
9
- >
10
- <common-context-recursion
11
- :action-loading="props.actionLoading"
12
- :items="props.contextMenu.items"
13
- @select-item="selectItem"
14
- />
15
- </div>
16
- </template>
17
-
18
- <script setup lang="ts">
19
- import {
20
- UI_I_ContextMenuItem,
21
- UI_I_ContextMenu,
22
- } from '~/components/common/context/lib/models/interfaces'
23
-
24
- const props = defineProps<{
25
- contextMenu: UI_I_ContextMenu
26
- actionLoading: string | null
27
- }>()
28
- const emits = defineEmits<{
29
- (event: 'select-item', value: UI_I_ContextMenuItem): void
30
- (event: 'hide'): void
31
- }>()
32
- const selectItem = (item: UI_I_ContextMenuItem): void => {
33
- emits('select-item', item)
34
- }
35
-
36
- const elementId = ref<string>(`context-${useUniqueId()}`)
37
-
38
- const currentContextMenuY = ref<string>('')
39
- const currentContextMenuX = ref<string>('')
40
- const setCurrentPositionsPopup = (): void => {
41
- const contextMenuY = props.contextMenu.y
42
- const contextMenuX = props.contextMenu.x
43
-
44
- const contextWrap: HTMLElement | null =
45
- document.querySelector(`#${elementId.value} .context-wrap`)
46
- const contextW = contextWrap?.offsetWidth || 0
47
- const contextH = contextWrap?.offsetHeight || 0
48
-
49
- const windowW = window.innerWidth
50
- const windowH = window.innerHeight
51
-
52
- if (contextMenuY + contextH >= windowH) {
53
- currentContextMenuY.value = 'auto'
54
- } else {
55
- currentContextMenuY.value = `${contextMenuY}px`
56
- }
57
-
58
- if (contextMenuX + contextW >= windowW) {
59
- const divisionW = windowW - contextW
60
- currentContextMenuX.value = `${divisionW}px`
61
- } else {
62
- currentContextMenuX.value = `${contextMenuX}px`
63
- }
64
- }
65
-
66
- const windowMousedown = (): void => {
67
- emits('hide')
68
- }
69
- watch(
70
- () => props.contextMenu.y,
71
- (newValue: number) => {
72
- if (!newValue) return
73
-
74
- if (newValue < 0) {
75
- window.removeEventListener('mousedown', windowMousedown)
76
- } else {
77
- window.addEventListener('mousedown', windowMousedown)
78
- }
79
-
80
- setTimeout(() => {
81
- setCurrentPositionsPopup()
82
- }, 0)
83
- }
84
- )
85
- </script>
86
-
87
- <style scoped lang="scss">
88
- .context-popup {
89
- top: -9999px;
90
- left: -9999px;
91
- bottom: 0;
92
- border: none;
93
- box-sizing: content-box;
94
- overflow: visible;
95
- display: block;
96
- position: fixed;
97
- z-index: 10002;
98
- }
99
- </style>
1
+ <template>
2
+ <div
3
+ :id="elementId"
4
+ class="context-popup"
5
+ :style="{
6
+ top: currentContextMenuY,
7
+ left: currentContextMenuX,
8
+ }"
9
+ >
10
+ <common-context-recursion
11
+ :action-loading="props.actionLoading"
12
+ :items="props.contextMenu.items"
13
+ @select-item="selectItem"
14
+ />
15
+ </div>
16
+ </template>
17
+
18
+ <script setup lang="ts">
19
+ import {
20
+ UI_I_ContextMenuItem,
21
+ UI_I_ContextMenu,
22
+ } from '~/components/common/context/lib/models/interfaces'
23
+
24
+ const props = defineProps<{
25
+ contextMenu: UI_I_ContextMenu
26
+ actionLoading: string | null
27
+ }>()
28
+ const emits = defineEmits<{
29
+ (event: 'select-item', value: UI_I_ContextMenuItem): void
30
+ (event: 'hide'): void
31
+ }>()
32
+ const selectItem = (item: UI_I_ContextMenuItem): void => {
33
+ emits('select-item', item)
34
+ }
35
+
36
+ const elementId = ref<string>(`context-${useUniqueId()}`)
37
+
38
+ const currentContextMenuY = ref<string>('')
39
+ const currentContextMenuX = ref<string>('')
40
+ const setCurrentPositionsPopup = (): void => {
41
+ const contextMenuY = props.contextMenu.y
42
+ const contextMenuX = props.contextMenu.x
43
+
44
+ const contextWrap: HTMLElement | null =
45
+ document.querySelector(`#${elementId.value} .context-wrap`)
46
+ const contextW = contextWrap?.offsetWidth || 0
47
+ const contextH = contextWrap?.offsetHeight || 0
48
+
49
+ const windowW = window.innerWidth
50
+ const windowH = window.innerHeight
51
+
52
+ if (contextMenuY + contextH >= windowH) {
53
+ currentContextMenuY.value = 'auto'
54
+ } else {
55
+ currentContextMenuY.value = `${contextMenuY}px`
56
+ }
57
+
58
+ if (contextMenuX + contextW >= windowW) {
59
+ const divisionW = windowW - contextW
60
+ currentContextMenuX.value = `${divisionW}px`
61
+ } else {
62
+ currentContextMenuX.value = `${contextMenuX}px`
63
+ }
64
+ }
65
+
66
+ const windowMousedown = (): void => {
67
+ emits('hide')
68
+ }
69
+ watch(
70
+ () => props.contextMenu.y,
71
+ (newValue: number) => {
72
+ if (!newValue) return
73
+
74
+ if (newValue < 0) {
75
+ window.removeEventListener('mousedown', windowMousedown)
76
+ } else {
77
+ window.addEventListener('mousedown', windowMousedown)
78
+ }
79
+
80
+ setTimeout(() => {
81
+ setCurrentPositionsPopup()
82
+ }, 0)
83
+ }
84
+ )
85
+ </script>
86
+
87
+ <style scoped lang="scss">
88
+ .context-popup {
89
+ top: -9999px;
90
+ left: -9999px;
91
+ bottom: 0;
92
+ border: none;
93
+ box-sizing: content-box;
94
+ overflow: visible;
95
+ display: block;
96
+ position: fixed;
97
+ z-index: 10002;
98
+ }
99
+ </style>
@@ -1,126 +1,126 @@
1
- export const clusterLocalizationByState = [
2
- 'unknown',
3
- 'connected',
4
- 'warning',
5
- 'error',
6
- ]
7
-
8
- export const clusterIconByState = [
9
- 'cluster-error',
10
- 'cluster',
11
- 'cluster-warning',
12
- 'cluster-error',
13
- // TODO Добавил на скорую руку нужно дополнить, если есть что добавить
14
- ]
15
-
16
- export const hostLocalizationByState = [
17
- 'unknown',
18
- 'connected',
19
- 'warning',
20
- 'error',
21
- 'maintenance',
22
- 'notResponding',
23
- 'disconnected',
24
- ]
25
-
26
- export const hostIconByState = [
27
- 'host-error',
28
- 'host',
29
- 'host-warning',
30
- 'host-error',
31
- 'host-maintenance',
32
- 'host-not-responding',
33
- 'host-disconnected',
34
- ]
35
-
36
- export const vmLocalizationByState = [
37
- 'unknown',
38
- 'powerOff',
39
- 'poweredOn',
40
- 'suspended',
41
- 'error',
42
- 'warning',
43
- 'pending',
44
- 'paused',
45
- 'blocked',
46
- 'shuttingDown',
47
- 'shuttingOff',
48
- ]
49
-
50
- export const vmIconByState = [
51
- 'vm-error',
52
- 'vm',
53
- 'vm-on',
54
- 'vm-suspended',
55
- 'vm-error',
56
- 'vm-warning',
57
- 'vm-warning',
58
- 'vm-suspended',
59
- 'vm-warning',
60
- 'vm-warning',
61
- 'vm-warning',
62
- ]
63
-
64
- export const datastoreLocalizationByState = [
65
- 'unknown',
66
- 'connected',
67
- 'warning',
68
- 'error',
69
- 'maintenance',
70
- 'inaccessible',
71
- 'disconnected',
72
- ]
73
-
74
- export const datastoreIconByState = [
75
- 'datastore-error',
76
- 'datastore',
77
- 'datastore-warning',
78
- 'datastore-error',
79
- 'datastore-maintenance',
80
- 'datastore-inaccessible',
81
- 'datastore-unmount', // 'datastore-disconnected',
82
- ]
83
-
84
- export const networkLocalizationByState = [
85
- 'unknown',
86
- 'connected',
87
- 'warning',
88
- 'error',
89
- ]
90
-
91
- export const networkIconByState = [
92
- 'network-error',
93
- 'network',
94
- 'network-warning',
95
- 'network-error',
96
- ]
97
-
98
- export const switchLocalizationByState = [
99
- 'unknown',
100
- 'connected',
101
- 'warning',
102
- 'error',
103
- ]
104
-
105
- export const switchIconByState = [
106
- 'switch-error',
107
- 'switch',
108
- 'switch-warning',
109
- 'switch-error',
110
- ]
111
-
112
- export const resourcePoolLocalizationByState = [
113
- 'unknown',
114
- 'normal',
115
- 'warning',
116
- 'error',
117
- 'alert',
118
- ]
119
-
120
- export const resourcePoolIconByState = [
121
- 'resourcePoolAlert',
122
- 'resource-pool',
123
- 'resourcePoolWarning',
124
- 'resourcePoolAlert',
125
- 'resourcePoolAlert',
126
- ]
1
+ export const clusterLocalizationByState = [
2
+ 'unknown',
3
+ 'connected',
4
+ 'warning',
5
+ 'error',
6
+ ]
7
+
8
+ export const clusterIconByState = [
9
+ 'cluster-error',
10
+ 'cluster',
11
+ 'cluster-warning',
12
+ 'cluster-error',
13
+ // TODO Добавил на скорую руку нужно дополнить, если есть что добавить
14
+ ]
15
+
16
+ export const hostLocalizationByState = [
17
+ 'unknown',
18
+ 'connected',
19
+ 'warning',
20
+ 'error',
21
+ 'maintenance',
22
+ 'notResponding',
23
+ 'disconnected',
24
+ ]
25
+
26
+ export const hostIconByState = [
27
+ 'host-error',
28
+ 'host',
29
+ 'host-warning',
30
+ 'host-error',
31
+ 'host-maintenance',
32
+ 'host-not-responding',
33
+ 'host-disconnected',
34
+ ]
35
+
36
+ export const vmLocalizationByState = [
37
+ 'unknown',
38
+ 'powerOff',
39
+ 'poweredOn',
40
+ 'suspended',
41
+ 'error',
42
+ 'warning',
43
+ 'pending',
44
+ 'paused',
45
+ 'blocked',
46
+ 'shuttingDown',
47
+ 'shuttingOff',
48
+ ]
49
+
50
+ export const vmIconByState = [
51
+ 'vm-error',
52
+ 'vm',
53
+ 'vm-on',
54
+ 'vm-suspended',
55
+ 'vm-error',
56
+ 'vm-warning',
57
+ 'vm-warning',
58
+ 'vm-suspended',
59
+ 'vm-warning',
60
+ 'vm-warning',
61
+ 'vm-warning',
62
+ ]
63
+
64
+ export const datastoreLocalizationByState = [
65
+ 'unknown',
66
+ 'connected',
67
+ 'warning',
68
+ 'error',
69
+ 'maintenance',
70
+ 'inaccessible',
71
+ 'disconnected',
72
+ ]
73
+
74
+ export const datastoreIconByState = [
75
+ 'datastore-error',
76
+ 'datastore',
77
+ 'datastore-warning',
78
+ 'datastore-error',
79
+ 'datastore-maintenance',
80
+ 'datastore-inaccessible',
81
+ 'datastore-unmount', // 'datastore-disconnected',
82
+ ]
83
+
84
+ export const networkLocalizationByState = [
85
+ 'unknown',
86
+ 'connected',
87
+ 'warning',
88
+ 'error',
89
+ ]
90
+
91
+ export const networkIconByState = [
92
+ 'network-error',
93
+ 'network',
94
+ 'network-warning',
95
+ 'network-error',
96
+ ]
97
+
98
+ export const switchLocalizationByState = [
99
+ 'unknown',
100
+ 'connected',
101
+ 'warning',
102
+ 'error',
103
+ ]
104
+
105
+ export const switchIconByState = [
106
+ 'switch-error',
107
+ 'switch',
108
+ 'switch-warning',
109
+ 'switch-error',
110
+ ]
111
+
112
+ export const resourcePoolLocalizationByState = [
113
+ 'unknown',
114
+ 'normal',
115
+ 'warning',
116
+ 'error',
117
+ 'alert',
118
+ ]
119
+
120
+ export const resourcePoolIconByState = [
121
+ 'resourcePoolAlert',
122
+ 'resource-pool',
123
+ 'resourcePoolWarning',
124
+ 'resourcePoolAlert',
125
+ 'resourcePoolAlert',
126
+ ]