bfg-common 1.3.471 → 1.3.474

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 (65) hide show
  1. package/assets/scss/common/normalize.scss +340 -340
  2. package/components/atoms/TheIcon.vue +78 -0
  3. package/components/atoms/TheIcon2.vue +1353 -1353
  4. package/components/atoms/loader/Loader.vue +30 -30
  5. package/components/atoms/loader/PreLoader.vue +38 -38
  6. package/components/atoms/switch/Switch.vue +111 -111
  7. package/components/atoms/table/compact/Compact.vue +526 -526
  8. package/components/common/adapterManager/ui/table/Header.vue +93 -93
  9. package/components/common/adapterManager/ui/table/Table.vue +162 -162
  10. package/components/common/context/Context.vue +99 -99
  11. package/components/common/countdownTimer/CountdownTimer.vue +50 -0
  12. package/components/common/lib/config/states.ts +160 -160
  13. package/components/common/mainNavigationPanel/MainNavigationPanel.vue +142 -142
  14. package/components/common/mainNavigationPanel/MainNavigationPanelNew.vue +248 -248
  15. package/components/common/mainNavigationPanel/MainNavigationPanelOld.vue +288 -288
  16. package/components/common/readyToComplete/ReadyToComplete.vue +15 -15
  17. package/components/common/resource/progressBlock/ProgressBlock.vue +142 -142
  18. package/components/common/split/horizontal/Horizontal.vue +70 -70
  19. package/components/common/vm/actions/clone/Clone.vue +511 -511
  20. package/components/common/vm/actions/common/customizeHardware/CustomizeHardware.vue +273 -273
  21. package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardware.vue +697 -697
  22. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Cpu.vue +400 -400
  23. package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/Memory.vue +329 -329
  24. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/NewNetwork.vue +305 -305
  25. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/NewPciDevice.vue +168 -168
  26. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newUsbController/NewUsbController.vue +82 -82
  27. package/components/common/vm/actions/common/customizeHardware/virtualHardware/other/Other.vue +32 -32
  28. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/VideoCard.vue +182 -182
  29. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/BootOptions.vue +114 -114
  30. package/components/common/vm/actions/common/customizeHardware/vmoptions/generalOptions/GeneralOptions.vue +192 -192
  31. package/components/common/vm/actions/common/customizeHardware/vmoptions/tools/Tools.vue +72 -72
  32. package/components/common/vm/actions/common/select/computeResource/ComputeResource.vue +164 -164
  33. package/components/common/vm/actions/common/select/name/Name.vue +235 -235
  34. package/components/common/vm/actions/common/select/storage/Storage.vue +198 -198
  35. package/components/common/vm/actions/editSettings/EditSettings.vue +316 -316
  36. package/components/common/weekSelect/lib/config/options.ts +10 -10
  37. package/components/common/wizards/datastore/add/Add.vue +436 -436
  38. package/components/common/wizards/datastore/add/lib/config/stepItems.ts +191 -191
  39. package/components/common/wizards/datastore/add/lib/models/interfaces.ts +38 -38
  40. package/components/common/wizards/datastore/add/lib/utils.ts +70 -70
  41. package/components/common/wizards/datastore/add/local/createName/CreateName.vue +160 -160
  42. package/components/common/wizards/datastore/add/nfs/Nfs.vue +112 -112
  43. package/components/common/wizards/datastore/add/nfs/accessibility/Accessibility.vue +104 -104
  44. package/components/common/wizards/datastore/add/nfs/accessibility/tablesView/lib/config/compatibleTable.ts +62 -62
  45. package/components/common/wizards/datastore/add/nfs/accessibility/tablesView/lib/config/hostsTableItems.ts +53 -53
  46. package/components/common/wizards/datastore/add/readyComplete/ReadyComplete.vue +86 -86
  47. package/components/common/wizards/datastore/add/readyComplete/lib/config/propertiesDetails.ts +184 -184
  48. package/components/common/wizards/datastore/add/sharedStorm/deviceSelection/DeviceSelection.vue +459 -459
  49. package/components/common/wizards/datastore/add/types/Types.vue +80 -80
  50. package/components/common/wizards/datastore/add/types/lib/config/typeOptions.ts +49 -49
  51. package/composables/useAppVersion.ts +22 -22
  52. package/composables/useEnvLanguage.ts +20 -20
  53. package/lib/utils/sendTask.ts +73 -73
  54. package/minify.js +146 -146
  55. package/package.json +1 -1
  56. package/plugins/spice-console/spice.console.ts +147 -147
  57. package/public/spice-console/application/codec.js +263 -263
  58. package/public/spice-console/lib/rasterEngine.js +907 -907
  59. package/public/spice-console/network/spicechannel.js +375 -375
  60. package/store/main/lib/interfaces.ts +9 -9
  61. package/store/tasks/actions.ts +133 -133
  62. package/store/tasks/getters.ts +25 -25
  63. package/store/tasks/lib/models/interfaces.ts +18 -18
  64. package/store/tasks/mutations.ts +58 -58
  65. 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>
@@ -0,0 +1,50 @@
1
+ <template>
2
+ <div class="countdown-timer">
3
+ <h3 class="countdown-timer__inner">
4
+ <span class="countdown-timer__minutes">{{ minutes }}</span>
5
+ <span class="countdown-timer__separator">:</span>
6
+ <span class="countdown-timer__seconds"
7
+ >{{ seconds }} {{ localization.seconds }}</span
8
+ >
9
+ </h3>
10
+ </div>
11
+ </template>
12
+
13
+ <script lang="ts" setup>
14
+ import type { UI_I_Localization } from '~/lib/models/interfaces'
15
+
16
+ const props = defineProps<{
17
+ timer: number
18
+ totalTime: number
19
+ }>()
20
+
21
+ const localization = computed<UI_I_Localization>(() => useLocal())
22
+
23
+ const secondsInMinute = 60
24
+ const minutes = computed<string>(() => {
25
+ if (!props.timer) return '00'
26
+ const minutes = Math.floor(props.totalTime / secondsInMinute)
27
+ return formatTime(minutes)
28
+ })
29
+
30
+ const seconds = computed<string>(() => {
31
+ if (!props.timer) return '00'
32
+ const seconds = props.totalTime - +minutes.value * secondsInMinute
33
+ return formatTime(seconds)
34
+ })
35
+
36
+ const formatTime = (time: number): string => {
37
+ return (time < 10 ? '0' : '') + time
38
+ }
39
+ </script>
40
+
41
+ <style lang="scss" scoped>
42
+ .countdown-timer {
43
+ &__inner {
44
+ padding-top: 12px;
45
+ & > span {
46
+ font-size: 40px;
47
+ }
48
+ }
49
+ }
50
+ </style>
@@ -1,160 +1,160 @@
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
- ]
127
-
128
- export const backupStorageLocalizationByState = [
129
- 'unknown',
130
- 'connected',
131
- 'warning',
132
- 'error',
133
- 'maintenance',
134
- 'inaccessible',
135
- 'disconnected',
136
- ]
137
-
138
- export const backupStorageIconByState = [
139
- 'datastore-error',
140
- 'datastore',
141
- 'datastore-warning',
142
- 'datastore-error',
143
- 'datastore-maintenance',
144
- 'datastore-inaccessible',
145
- 'datastore-unmount', // 'datastore-disconnected',
146
- ]
147
-
148
- export const bucketLocalizationByState = [
149
- 'unknown',
150
- 'connected',
151
- 'warning',
152
- 'error',
153
- ]
154
-
155
- export const bucketIconByState = [
156
- 'vm-error',
157
- 'vm',
158
- 'vm-warning',
159
- 'vm-error',
160
- ]
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
+ ]
127
+
128
+ export const backupStorageLocalizationByState = [
129
+ 'unknown',
130
+ 'connected',
131
+ 'warning',
132
+ 'error',
133
+ 'maintenance',
134
+ 'inaccessible',
135
+ 'disconnected',
136
+ ]
137
+
138
+ export const backupStorageIconByState = [
139
+ 'datastore-error',
140
+ 'datastore',
141
+ 'datastore-warning',
142
+ 'datastore-error',
143
+ 'datastore-maintenance',
144
+ 'datastore-inaccessible',
145
+ 'datastore-unmount', // 'datastore-disconnected',
146
+ ]
147
+
148
+ export const bucketLocalizationByState = [
149
+ 'unknown',
150
+ 'connected',
151
+ 'warning',
152
+ 'error',
153
+ ]
154
+
155
+ export const bucketIconByState = [
156
+ 'vm-error',
157
+ 'vm',
158
+ 'vm-warning',
159
+ 'vm-error',
160
+ ]