bfg-common 1.1.2 → 1.1.4

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 (67) hide show
  1. package/components/atoms/alert/Notification.vue +167 -167
  2. package/components/atoms/autocomplete/Autocomplete.vue +236 -236
  3. package/components/atoms/datepicker/Datepicker.vue +612 -612
  4. package/components/atoms/list/SelectList.vue +62 -62
  5. package/components/atoms/nav/NavBar.vue +116 -116
  6. package/components/atoms/nav/VerticalNavBar.vue +89 -89
  7. package/components/atoms/notificationBar/NotificationBar.vue +174 -174
  8. package/components/atoms/perPage/PerPage.vue +52 -52
  9. package/components/atoms/popup/SimplePopup.vue +90 -90
  10. package/components/atoms/step/VerticalStep.vue +104 -104
  11. package/components/atoms/switch/Switch.vue +107 -107
  12. package/components/atoms/table/dataGrid/DataGridColumnSwitch.vue +204 -204
  13. package/components/atoms/table/dataGrid/DataGridPage.vue +189 -189
  14. package/components/atoms/tabs/Tabs.vue +189 -189
  15. package/components/atoms/tooltip/Signpost.vue +224 -224
  16. package/components/common/adapterManager/AddAdapterWarningModal.vue +82 -82
  17. package/components/common/adapterManager/NoActiveAdaptersModal.vue +62 -62
  18. package/components/common/adapterManager/NoConnectedActiveAdaptersModal.vue +62 -62
  19. package/components/common/browse/Browse.vue +182 -182
  20. package/components/common/browse/blocks/Title.vue +66 -66
  21. package/components/common/diagramMain/adapter/AdapterItem.vue +227 -227
  22. package/components/common/diagramMain/adapter/AdapterItems.vue +57 -57
  23. package/components/common/diagramMain/modals/editSettings/tabs/port/IpvFourSettings.vue +339 -339
  24. package/components/common/diagramMain/modals/editSettings/tabs/port/PortProperties.vue +202 -202
  25. package/components/common/diagramMain/modals/remove/RemoveModal.vue +226 -226
  26. package/components/common/diagramMain/network/Contents.vue +238 -238
  27. package/components/common/feedback/Buttons.vue +232 -232
  28. package/components/common/feedback/Message.vue +468 -468
  29. package/components/common/feedback/VisitPortal.vue +54 -54
  30. package/components/common/help/navbar/left/Left.vue +139 -139
  31. package/components/common/help/navbar/left/utils/constructAccordion.ts +27 -27
  32. package/components/common/home/Card.vue +63 -0
  33. package/components/common/home/ResourceBlock.vue +117 -0
  34. package/components/common/home/StatusContent.vue +47 -0
  35. package/components/common/home/alertsTable/AlertsTable.vue +105 -0
  36. package/components/common/home/alertsTable/config/config.ts +61 -0
  37. package/components/common/home/alertsTable/models/enums.ts +11 -0
  38. package/components/common/home/alertsTable/models/interfaces.ts +19 -0
  39. package/components/common/home/alertsTable/models/types.ts +18 -0
  40. package/components/common/home/config/configResourceMeterBlock.ts +25 -0
  41. package/components/common/home/models/interfaces.ts +59 -0
  42. package/components/common/home/models/types.ts +18 -0
  43. package/components/common/home/servicesTable/ServicesTable.vue +79 -0
  44. package/components/common/home/servicesTable/config/config.ts +62 -0
  45. package/components/common/mainNavigationPanel/MainNavigationPanel.vue +359 -359
  46. package/components/common/modals/Rename.vue +165 -165
  47. package/components/common/perPage/PerPage.vue +51 -51
  48. package/components/common/recursionTree/RecursionTree.vue +201 -201
  49. package/components/common/wizards/datastore/add/nfs/configuration/Configuration.vue +373 -373
  50. package/components/common/wizards/datastore/add/nfs/configuration/serversList/ServersList.vue +123 -123
  51. package/components/common/wizards/datastore/add/nfs/kerberosAuthentication/KerberosAuthentication.vue +54 -54
  52. package/components/common/wizards/datastore/add/sharedStorm/deviceSelection/hostTable/HostTable.vue +131 -131
  53. package/components/common/wizards/datastore/add/sharedStorm/partitionConfiguration/PartitionConfiguration.vue +230 -230
  54. package/models/store/storage/interfaces.ts +32 -32
  55. package/modules/fixContentBuild/index.ts +80 -84
  56. package/modules/fixContentBuild/utils/methods.ts +114 -117
  57. package/package.json +1 -1
  58. package/public/spice-console/application/codec.js +257 -257
  59. package/public/spice-console/lib/rasterEngine.js +907 -907
  60. package/public/spice-console/network/spicechannel.js +369 -369
  61. package/public/spice-console-minify/lib/decoder/dixie.min.js +4 -4
  62. package/public/spice-console-minify/lib/jgestures.min.js +24 -24
  63. package/public/spice-console-minify/lib/jquery-2.0.3.min.js +24 -24
  64. package/public/spice-console-minify/lib/jquery-mousewheel.min.js +11 -11
  65. package/public/spice-console-minify/lib/jquery-visibility.min.js +1 -1
  66. package/public/spice-console-minify/lib/lodash.4.0.0.min.js +5 -5
  67. package/utils/contentBuild.ts +34 -34
@@ -1,230 +1,230 @@
1
- <template>
2
- <div class="partition">
3
- <div class="clr-form-control clr-row">
4
- <label class="clr-col-md-4 clr-control-label">
5
- {{ localization.partitionConfiguration }}
6
- </label>
7
-
8
- <div class="clr-col-md-8 p-0">
9
- <div class="clr-select-wrapper">
10
- <select
11
- id="host-select"
12
- v-model="selectedHost"
13
- class="dropdown-toggle"
14
- @change="onSelectHost"
15
- >
16
- <option
17
- v-for="(item, index) in partitionConfiguration"
18
- :key="index"
19
- :value="item.value"
20
- :disabled="item.disabled"
21
- >
22
- {{ item.text }}
23
- </option>
24
- </select>
25
- </div>
26
- </div>
27
- </div>
28
-
29
- <div class="datastore-size-container clr-flex-row clr-flex">
30
- <label class="clr-col-md-4 clr-control-label" for="datastore-size">
31
- {{ localization.datastoreSize }}
32
- </label>
33
-
34
- <div class="datastore-size-slider-container clr-col-md-8 p-0">
35
- <div class="clr-col-xl-6 clr-col-md-8 p-0">
36
- <div
37
- class="partition__range-input clr-control-container clr-col-md-10 clr-col-12"
38
- >
39
- <div class="clr-range-wrapper">
40
- <input
41
- id="datastore-size-input-0"
42
- v-model="datastoreSize"
43
- type="range"
44
- min="0"
45
- :max="countDatastoreSizeToGb"
46
- step="0.01"
47
- class="ng-valid clr-range ng-dirty ng-touched"
48
- />
49
- </div>
50
- </div>
51
- </div>
52
-
53
- <input
54
- id="datastore-size-input-1"
55
- v-model="datastoreSize"
56
- type="number"
57
- min="0"
58
- :max="countDatastoreSizeToGb"
59
- step="0.01"
60
- class="show-arrow"
61
- />
62
- <span>{{ localization.gb }}</span>
63
- </div>
64
- </div>
65
-
66
- <template v-if="props.vmfsVersion === 'vmfs-6'">
67
- <div class="clr-form-control clr-row">
68
- <label class="clr-col-md-4 clr-control-label">
69
- {{ localization.blockSize }}
70
- </label>
71
-
72
- <div>
73
- <div class="clr-select-wrapper">
74
- <select
75
- id="datastore-size-select"
76
- v-model="selectedSize"
77
- class="dropdown-toggle"
78
- @change="onSelectHost"
79
- >
80
- <option
81
- v-for="(item, index) in blockSize"
82
- :key="index"
83
- :value="item.value"
84
- :disabled="item.disabled"
85
- >
86
- {{ item.text }}
87
- </option>
88
- </select>
89
- </div>
90
- </div>
91
- </div>
92
-
93
- <div class="clr-form-control clr-row">
94
- <label class="clr-col-md-4 clr-control-label">{{
95
- localization.spaceReclamationGranularity
96
- }}</label>
97
-
98
- <div>
99
- <div class="clr-select-wrapper">
100
- <select
101
- id="granularity-select"
102
- v-model="selectedGranularity"
103
- class="dropdown-toggle"
104
- @change="onSelectHost"
105
- >
106
- <option
107
- v-for="(item, index) in spaceGranularity"
108
- :key="index"
109
- :value="item.value"
110
- :disabled="item.disabled"
111
- >
112
- {{ item.text }}
113
- </option>
114
- </select>
115
- </div>
116
- </div>
117
- </div>
118
-
119
- <div class="clr-form-control clr-row">
120
- <label class="clr-col-md-4 clr-control-label">{{
121
- localization.spaceReclamationPriority
122
- }}</label>
123
-
124
- <div>
125
- <div class="clr-select-wrapper">
126
- <select
127
- id="priority-select"
128
- v-model="selectedPriority"
129
- class="dropdown-toggle"
130
- @change="onSelectHost"
131
- >
132
- <option
133
- v-for="(item, index) in spacePriority"
134
- :key="index"
135
- :value="item.value"
136
- :disabled="item.disabled"
137
- >
138
- {{ item.text }}
139
- </option>
140
- </select>
141
- </div>
142
- </div>
143
- </div>
144
- </template>
145
-
146
- <common-wizards-datastore-add-shared-storm-partition-configuration-size-graphic
147
- :selected-size="+datastoreSize"
148
- :capacity="countDatastoreSizeToGb"
149
- />
150
- </div>
151
- </template>
152
-
153
- <script lang="ts" setup>
154
- import { UI_I_Localization } from '~/models/interfaces'
155
- import { UI_T_VmfsType } from '~/components/common/wizards/datastore/add/models/types'
156
- import { UI_I_SelectHostOptions } from '~/components/common/wizards/datastore/add/sharedStorm/deviceSelection/models/interfaces'
157
- import {
158
- partitionConfigurationFunc,
159
- spacePriorityFunc,
160
- spaceGranularityFunc,
161
- blockSizeFunc,
162
- } from '~/components/common/wizards/datastore/add/sharedStorm/partitionConfiguration/config/selectOptions'
163
-
164
- const props = withDefaults(
165
- defineProps<{
166
- vmfsVersion: UI_T_VmfsType
167
- selectedLunDiskSize: number
168
- }>(),
169
- {
170
- selectedLunDiskSize: 0,
171
- }
172
- )
173
- const localization = computed<UI_I_Localization>(() => useLocal())
174
- const { $binary } = useNuxtApp()
175
-
176
- const selectedHost = ref('all-partitions')
177
- const partitionConfiguration = computed<UI_I_SelectHostOptions[]>(() =>
178
- partitionConfigurationFunc(localization.value)
179
- )
180
-
181
- const selectedSize = ref('1')
182
- const blockSize = computed<UI_I_SelectHostOptions[]>(() =>
183
- blockSizeFunc(localization.value)
184
- )
185
-
186
- const selectedGranularity = ref('1')
187
- const spaceGranularity = computed<UI_I_SelectHostOptions[]>(() =>
188
- spaceGranularityFunc(localization.value)
189
- )
190
-
191
- const selectedPriority = ref('low')
192
- const spacePriority = computed<UI_I_SelectHostOptions[]>(() =>
193
- spacePriorityFunc(localization.value)
194
- )
195
-
196
- const countDatastoreSizeToGb = computed(() => {
197
- return $binary.mbToGb(props.selectedLunDiskSize)
198
- })
199
-
200
- const datastoreSize = ref<number | null>(null)
201
- watch(
202
- () => props.selectedLunDiskSize,
203
- (_val) => {
204
- datastoreSize.value = countDatastoreSizeToGb.value
205
- }
206
- )
207
-
208
- const onSelectHost = (): void => {}
209
- </script>
210
-
211
- <style lang="scss" scoped>
212
- .partition {
213
- .datastore-size-container {
214
- display: flex;
215
- margin-left: -1em;
216
- margin-top: 1.2rem;
217
- margin-bottom: 1.2rem;
218
- }
219
- .clr-form-control {
220
- display: flex;
221
- flex-direction: row;
222
- }
223
- &__range-input {
224
- margin-left: -10px;
225
- }
226
- }
227
- .datastore-size-slider-container {
228
- display: flex;
229
- }
230
- </style>
1
+ <template>
2
+ <div class="partition">
3
+ <div class="clr-form-control clr-row">
4
+ <label class="clr-col-md-4 clr-control-label">
5
+ {{ localization.partitionConfiguration }}
6
+ </label>
7
+
8
+ <div class="clr-col-md-8 p-0">
9
+ <div class="clr-select-wrapper">
10
+ <select
11
+ id="host-select"
12
+ v-model="selectedHost"
13
+ class="dropdown-toggle"
14
+ @change="onSelectHost"
15
+ >
16
+ <option
17
+ v-for="(item, index) in partitionConfiguration"
18
+ :key="index"
19
+ :value="item.value"
20
+ :disabled="item.disabled"
21
+ >
22
+ {{ item.text }}
23
+ </option>
24
+ </select>
25
+ </div>
26
+ </div>
27
+ </div>
28
+
29
+ <div class="datastore-size-container clr-flex-row clr-flex">
30
+ <label class="clr-col-md-4 clr-control-label" for="datastore-size">
31
+ {{ localization.datastoreSize }}
32
+ </label>
33
+
34
+ <div class="datastore-size-slider-container clr-col-md-8 p-0">
35
+ <div class="clr-col-xl-6 clr-col-md-8 p-0">
36
+ <div
37
+ class="partition__range-input clr-control-container clr-col-md-10 clr-col-12"
38
+ >
39
+ <div class="clr-range-wrapper">
40
+ <input
41
+ id="datastore-size-input-0"
42
+ v-model="datastoreSize"
43
+ type="range"
44
+ min="0"
45
+ :max="countDatastoreSizeToGb"
46
+ step="0.01"
47
+ class="ng-valid clr-range ng-dirty ng-touched"
48
+ />
49
+ </div>
50
+ </div>
51
+ </div>
52
+
53
+ <input
54
+ id="datastore-size-input-1"
55
+ v-model="datastoreSize"
56
+ type="number"
57
+ min="0"
58
+ :max="countDatastoreSizeToGb"
59
+ step="0.01"
60
+ class="show-arrow"
61
+ />
62
+ <span>{{ localization.gb }}</span>
63
+ </div>
64
+ </div>
65
+
66
+ <template v-if="props.vmfsVersion === 'vmfs-6'">
67
+ <div class="clr-form-control clr-row">
68
+ <label class="clr-col-md-4 clr-control-label">
69
+ {{ localization.blockSize }}
70
+ </label>
71
+
72
+ <div>
73
+ <div class="clr-select-wrapper">
74
+ <select
75
+ id="datastore-size-select"
76
+ v-model="selectedSize"
77
+ class="dropdown-toggle"
78
+ @change="onSelectHost"
79
+ >
80
+ <option
81
+ v-for="(item, index) in blockSize"
82
+ :key="index"
83
+ :value="item.value"
84
+ :disabled="item.disabled"
85
+ >
86
+ {{ item.text }}
87
+ </option>
88
+ </select>
89
+ </div>
90
+ </div>
91
+ </div>
92
+
93
+ <div class="clr-form-control clr-row">
94
+ <label class="clr-col-md-4 clr-control-label">{{
95
+ localization.spaceReclamationGranularity
96
+ }}</label>
97
+
98
+ <div>
99
+ <div class="clr-select-wrapper">
100
+ <select
101
+ id="granularity-select"
102
+ v-model="selectedGranularity"
103
+ class="dropdown-toggle"
104
+ @change="onSelectHost"
105
+ >
106
+ <option
107
+ v-for="(item, index) in spaceGranularity"
108
+ :key="index"
109
+ :value="item.value"
110
+ :disabled="item.disabled"
111
+ >
112
+ {{ item.text }}
113
+ </option>
114
+ </select>
115
+ </div>
116
+ </div>
117
+ </div>
118
+
119
+ <div class="clr-form-control clr-row">
120
+ <label class="clr-col-md-4 clr-control-label">{{
121
+ localization.spaceReclamationPriority
122
+ }}</label>
123
+
124
+ <div>
125
+ <div class="clr-select-wrapper">
126
+ <select
127
+ id="priority-select"
128
+ v-model="selectedPriority"
129
+ class="dropdown-toggle"
130
+ @change="onSelectHost"
131
+ >
132
+ <option
133
+ v-for="(item, index) in spacePriority"
134
+ :key="index"
135
+ :value="item.value"
136
+ :disabled="item.disabled"
137
+ >
138
+ {{ item.text }}
139
+ </option>
140
+ </select>
141
+ </div>
142
+ </div>
143
+ </div>
144
+ </template>
145
+
146
+ <common-wizards-datastore-add-shared-storm-partition-configuration-size-graphic
147
+ :selected-size="+datastoreSize"
148
+ :capacity="countDatastoreSizeToGb"
149
+ />
150
+ </div>
151
+ </template>
152
+
153
+ <script lang="ts" setup>
154
+ import { UI_I_Localization } from '~/models/interfaces'
155
+ import { UI_T_VmfsType } from '~/components/common/wizards/datastore/add/models/types'
156
+ import { UI_I_SelectHostOptions } from '~/components/common/wizards/datastore/add/sharedStorm/deviceSelection/models/interfaces'
157
+ import {
158
+ partitionConfigurationFunc,
159
+ spacePriorityFunc,
160
+ spaceGranularityFunc,
161
+ blockSizeFunc,
162
+ } from '~/components/common/wizards/datastore/add/sharedStorm/partitionConfiguration/config/selectOptions'
163
+
164
+ const props = withDefaults(
165
+ defineProps<{
166
+ vmfsVersion: UI_T_VmfsType
167
+ selectedLunDiskSize: number
168
+ }>(),
169
+ {
170
+ selectedLunDiskSize: 0,
171
+ }
172
+ )
173
+ const localization = computed<UI_I_Localization>(() => useLocal())
174
+ const { $binary } = useNuxtApp()
175
+
176
+ const selectedHost = ref('all-partitions')
177
+ const partitionConfiguration = computed<UI_I_SelectHostOptions[]>(() =>
178
+ partitionConfigurationFunc(localization.value)
179
+ )
180
+
181
+ const selectedSize = ref('1')
182
+ const blockSize = computed<UI_I_SelectHostOptions[]>(() =>
183
+ blockSizeFunc(localization.value)
184
+ )
185
+
186
+ const selectedGranularity = ref('1')
187
+ const spaceGranularity = computed<UI_I_SelectHostOptions[]>(() =>
188
+ spaceGranularityFunc(localization.value)
189
+ )
190
+
191
+ const selectedPriority = ref('low')
192
+ const spacePriority = computed<UI_I_SelectHostOptions[]>(() =>
193
+ spacePriorityFunc(localization.value)
194
+ )
195
+
196
+ const countDatastoreSizeToGb = computed(() => {
197
+ return $binary.mbToGb(props.selectedLunDiskSize)
198
+ })
199
+
200
+ const datastoreSize = ref<number | null>(null)
201
+ watch(
202
+ () => props.selectedLunDiskSize,
203
+ (_val) => {
204
+ datastoreSize.value = countDatastoreSizeToGb.value
205
+ }
206
+ )
207
+
208
+ const onSelectHost = (): void => {}
209
+ </script>
210
+
211
+ <style lang="scss" scoped>
212
+ .partition {
213
+ .datastore-size-container {
214
+ display: flex;
215
+ margin-left: -1em;
216
+ margin-top: 1.2rem;
217
+ margin-bottom: 1.2rem;
218
+ }
219
+ .clr-form-control {
220
+ display: flex;
221
+ flex-direction: row;
222
+ }
223
+ &__range-input {
224
+ margin-left: -10px;
225
+ }
226
+ }
227
+ .datastore-size-slider-container {
228
+ display: flex;
229
+ }
230
+ </style>
@@ -1,32 +1,32 @@
1
- import { API_UI_I_Node } from '~/models/store/interfaces'
2
-
3
- export interface API_UI_I_DatastoreTableItemCapacity {
4
- capacity_mb: number
5
- provisioned_mb: number
6
- free_mb: number
7
- used_mb: number
8
- }
9
-
10
- export interface API_UI_I_DatastoreTableItem extends API_UI_I_Node {
11
- pool_name: string
12
- type_code: number
13
- type_text: string
14
- drive_type: string
15
- capacity: API_UI_I_DatastoreTableItemCapacity
16
- thin_provisioning: boolean
17
- access_mode: string
18
- hardware_acceleration: string
19
- device: string
20
- storage_io_control: boolean
21
- storage_compatibility: string
22
- }
23
-
24
- export interface UI_I_DatastoreTableItem extends API_UI_I_DatastoreTableItem {}
25
-
26
- export interface UI_I_FolderOrFileTreePayload {
27
- type: string
28
- id: string
29
- path: string
30
- merge: boolean
31
- show: boolean
32
- }
1
+ import { API_UI_I_Node } from '~/models/store/interfaces'
2
+
3
+ export interface API_UI_I_DatastoreTableItemCapacity {
4
+ capacity_mb: number
5
+ provisioned_mb: number
6
+ free_mb: number
7
+ used_mb: number
8
+ }
9
+
10
+ export interface API_UI_I_DatastoreTableItem extends API_UI_I_Node {
11
+ pool_name: string
12
+ type_code: number
13
+ type_text: string
14
+ drive_type: string
15
+ capacity: API_UI_I_DatastoreTableItemCapacity
16
+ thin_provisioning: boolean
17
+ access_mode: string
18
+ hardware_acceleration: string
19
+ device: string
20
+ storage_io_control: boolean
21
+ storage_compatibility: string
22
+ }
23
+
24
+ export interface UI_I_DatastoreTableItem extends API_UI_I_DatastoreTableItem {}
25
+
26
+ export interface UI_I_FolderOrFileTreePayload {
27
+ type: string
28
+ id: string
29
+ path: string
30
+ merge: boolean
31
+ show: boolean
32
+ }