bfg-common 1.1.51 → 1.1.53

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.
@@ -1,214 +1,232 @@
1
- <template>
2
- <div class="">
3
- <atoms-stack-block :has-children="false">
4
- <template #stackBlockKey>
5
- {{ localization.limit }}
6
- </template>
7
- <template #stackBlockContent>
8
- <div class="flex-align-center">
9
- <div class="tooltip-top-left combobox-container flex-align-center">
10
- <atoms-tooltip-error
11
- :has-error="!!limitLocalAndApiErrorsTexts"
12
- :selector="`#vm-wizard-${props.componentType}-limit input`"
13
- @remove="onRemoveValidationError"
14
- >
15
- <template #elem>
16
- <atoms-combobox
17
- :id="`vm-wizard-${props.componentType}-limit`"
18
- v-model="limitLocalByLocalization"
19
- :items="limitOptionsLocal"
20
- :disabled="props.disabled"
21
- @click.stop
22
- @select="selectLimit"
23
- />
24
- </template>
25
- <template #content>{{ limitLocalAndApiErrorsTexts }}</template>
26
- </atoms-tooltip-error>
27
- </div>
28
- <div class="select">
29
- <select
30
- id="vm-wizard-limit-type-select"
31
- v-model="limitTypeLocal"
32
- :disabled="props.disabled"
33
- >
34
- <option
35
- v-for="(item, key) in limitTypeOptions"
36
- :key="key"
37
- :value="item.value"
38
- >
39
- {{ item.text }}
40
- </option>
41
- </select>
42
- </div>
43
- </div>
44
- </template>
45
- </atoms-stack-block>
46
- </div>
47
- </template>
48
-
49
- <script setup lang="ts">
50
- import {
51
- limitOptionsFunc,
52
- limitTypeOptionsFunc,
53
- } from '~/components/common/vm/actions/add/customizeHardware/virtualHardware/limit/config/options'
54
- import { UI_I_Localization } from '~/models/interfaces'
55
- import { UI_I_ErrorValidationField } from '~/models/store/interfaces'
56
- import { UI_I_OptionItem } from '~/components/atoms/models/interfaces'
57
-
58
- const localization = computed<UI_I_Localization>(() => useLocal())
59
-
60
- const props = withDefaults(
61
- defineProps<{
62
- limit: string
63
- limitType: string
64
- type: 'mb' | 'mhz'
65
- componentType: string
66
- errorValidationFields: UI_I_ErrorValidationField<string>[]
67
- disabled?: boolean
68
- limitOptions?: UI_I_OptionItem[]
69
- }>(),
70
- {
71
- limitOptions: undefined,
72
- }
73
- )
74
- const emits = defineEmits<{
75
- (event: 'update:limit', value: string): void
76
- (event: 'update:limit-type', value: string): void
77
- (event: 'invalid', value: boolean): void
78
- (event: 'remove-error-by-title', value: string): void
79
- }>()
80
-
81
- const typeError = computed<string>(() => `${props.componentType}.limit_mb`)
82
-
83
- const apiErrorLocal = computed<string>(() => {
84
- return (
85
- props.errorValidationFields?.find(
86
- (message) => message.field === typeError.value
87
- )?.error_message || ''
88
- )
89
- })
90
-
91
- const binaryKeys: [string, string] =
92
- props.type === 'mb' ? ['mb', 'gb'] : ['mhz', 'ghz']
93
-
94
- const limitOptionsLocal = computed<UI_I_OptionItem[]>(
95
- () => props.limitOptions || limitOptionsFunc(localization.value, binaryKeys)
96
- )
97
- const limitTypeOptions = ref<UI_I_OptionItem[]>(
98
- limitTypeOptionsFunc(localization.value, binaryKeys)
99
- )
100
-
101
- const limitLocalByLocalization = computed<string>({
102
- get() {
103
- return limitLocal.value === 'Unlimited'
104
- ? localization.value.unlimited
105
- : limitLocal.value
106
- },
107
- set(newValue) {
108
- limitLocal.value =
109
- newValue === localization.value.unlimited ? 'Unlimited' : newValue
110
- },
111
- })
112
- const limitLocal = computed<string>({
113
- get() {
114
- return $binary.universalFromTo(
115
- props.limit,
116
- binaryKeys[0],
117
- limitTypeLocal.value,
118
- 8
119
- )
120
- },
121
- set(newValue) {
122
- emits(
123
- 'update:limit',
124
- '' +
125
- $binary.universalFromTo(
126
- newValue,
127
- limitTypeLocal.value,
128
- binaryKeys[0],
129
- 8
130
- )
131
- )
132
- },
133
- })
134
- const limitTypeLocal = computed<string>({
135
- get() {
136
- return props.limitType
137
- },
138
- set(newValue) {
139
- emits('update:limit-type', newValue)
140
- },
141
- })
142
-
143
- const { $binary } = useNuxtApp()
144
- const selectLimit = (value: 0 | 'Unlimited'): void => {
145
- if (limitTypeLocal.value === binaryKeys[0] || value === 'Unlimited') {
146
- limitLocal.value = '' + value
147
- return
148
- }
149
-
150
- limitLocal.value =
151
- '' + $binary.universalFromTo(value, binaryKeys[0], binaryKeys[1], 8)
152
- }
153
-
154
- const limitErrorLocalText = computed<string>(() => {
155
- const value = $binary.universalFromTo(
156
- +limitLocal.value,
157
- limitTypeLocal.value,
158
- binaryKeys[0],
159
- 8
160
- )
161
- const minValue = limitOptionsLocal.value[0].value
162
- const maxValue = limitOptionsLocal.value[1].value
163
- if (value < minValue) {
164
- return localization.value.limitMustBe.replace(
165
- '{0}',
166
- `${minValue} ${localization.value[binaryKeys[0]]}`
167
- )
168
- }
169
- if (props.limitOptions && value > maxValue) {
170
- return localization.value.limitMustBeMax.replace(
171
- '{0}',
172
- `${maxValue} ${localization.value[binaryKeys[0]]}`
173
- )
174
- }
175
-
176
- const validValue = /^\d+(\.\d+)?$/.test(limitLocal.value)
177
- if (
178
- !validValue &&
179
- (limitLocal.value !== limitOptionsLocal.value[1].value ||
180
- props.limitOptions)
181
- ) {
182
- return localization.value.inputContainsInvalidCharacters
183
- }
184
-
185
- return ''
186
- })
187
- const limitInvalid = computed<boolean>(() => !!limitErrorLocalText.value)
188
- watch(
189
- limitInvalid,
190
- (newValue) => {
191
- emits('invalid', newValue)
192
- },
193
- { immediate: true }
194
- )
195
-
196
- const limitLocalAndApiErrorsTexts = computed<string>(() => {
197
- const localError = limitErrorLocalText.value
198
- const apiError = apiErrorLocal.value
199
-
200
- let result = ''
201
- if (localError && !apiError) result = localError
202
- if (!localError && apiError) result = apiError
203
- if (localError && apiError) result = localError + ', ' + apiError
204
- if (!localError && apiError) result = apiError
205
-
206
- return result
207
- })
208
-
209
- const onRemoveValidationError = (): void => {
210
- emits('remove-error-by-title', typeError.value)
211
- }
212
- </script>
213
-
214
- <style scoped></style>
1
+ <template>
2
+ <div class="">
3
+ <atoms-stack-block :has-children="false">
4
+ <template #stackBlockKey>
5
+ {{ localization.limit }}
6
+ </template>
7
+ <template #stackBlockContent>
8
+ <div class="flex-align-center">
9
+ <div class="tooltip-top-left combobox-container flex-align-center">
10
+ <atoms-tooltip-error
11
+ :has-error="!!limitLocalAndApiErrorsTexts"
12
+ :selector="`#vm-wizard-${props.componentType}-limit input`"
13
+ @remove="onRemoveValidationError"
14
+ >
15
+ <template #elem>
16
+ <atoms-combobox
17
+ :id="`vm-wizard-${props.componentType}-limit`"
18
+ v-model="limitLocalByLocalization"
19
+ :items="limitOptionsLocal"
20
+ :disabled="props.disabled"
21
+ @click.stop
22
+ @select="onSelectLimit"
23
+ />
24
+ </template>
25
+ <template #content>{{ limitLocalAndApiErrorsTexts }}</template>
26
+ </atoms-tooltip-error>
27
+ </div>
28
+ <div class="select">
29
+ <select
30
+ id="vm-wizard-limit-type-select"
31
+ v-model="limitTypeLocal"
32
+ :disabled="props.disabled"
33
+ >
34
+ <option
35
+ v-for="(item, key) in limitTypeOptions"
36
+ :key="key"
37
+ :value="item.value"
38
+ >
39
+ {{ item.text }}
40
+ </option>
41
+ </select>
42
+ </div>
43
+ </div>
44
+ </template>
45
+ </atoms-stack-block>
46
+ </div>
47
+ </template>
48
+
49
+ <script setup lang="ts">
50
+ import {
51
+ limitOptionsFunc,
52
+ limitTypeOptionsFunc,
53
+ } from '~/components/common/vm/actions/add/customizeHardware/virtualHardware/limit/config/options'
54
+ import { UI_I_Localization } from '~/models/interfaces'
55
+ import { UI_I_ErrorValidationField } from '~/models/store/interfaces'
56
+ import { UI_I_OptionItem } from '~/components/atoms/models/interfaces'
57
+
58
+ const localization = computed<UI_I_Localization>(() => useLocal())
59
+
60
+ const props = withDefaults(
61
+ defineProps<{
62
+ limit: string
63
+ limitType: string
64
+ type: 'mb' | 'mhz'
65
+ componentType: string
66
+ errorValidationFields: UI_I_ErrorValidationField<string>[]
67
+ disabled?: boolean
68
+ limitOptions?: UI_I_OptionItem[]
69
+ multiply?: number
70
+ }>(),
71
+ {
72
+ limitOptions: undefined,
73
+ multiply: 1,
74
+ }
75
+ )
76
+ const emits = defineEmits<{
77
+ (event: 'update:limit', value: string): void
78
+ (event: 'update:limit-type', value: string): void
79
+ (event: 'invalid', value: boolean): void
80
+ (event: 'remove-error-by-title', value: string): void
81
+ }>()
82
+
83
+ const typeError = computed<string>(() => `${props.componentType}.limit_mb`)
84
+
85
+ const apiErrorLocal = computed<string>(() => {
86
+ return (
87
+ props.errorValidationFields?.find(
88
+ (message) => message.field === typeError.value
89
+ )?.error_message || ''
90
+ )
91
+ })
92
+
93
+ const binaryKeys: [string, string] =
94
+ props.type === 'mb' ? ['mb', 'gb'] : ['mhz', 'ghz']
95
+
96
+ const limitOptionsLocal = computed<UI_I_OptionItem[]>(
97
+ () => props.limitOptions || limitOptionsFunc(localization.value, binaryKeys)
98
+ )
99
+ const limitTypeOptions = ref<UI_I_OptionItem[]>(
100
+ limitTypeOptionsFunc(localization.value, binaryKeys)
101
+ )
102
+
103
+ const limitLocalByLocalization = computed<string>({
104
+ get() {
105
+ return limitLocal.value === 'Unlimited'
106
+ ? localization.value.unlimited
107
+ : limitLocal.value
108
+ },
109
+ set(newValue) {
110
+ limitLocal.value =
111
+ newValue === localization.value.unlimited ? 'Unlimited' : newValue
112
+ },
113
+ })
114
+ const limitLocal = computed<string>({
115
+ get() {
116
+ return props.limit
117
+ },
118
+ set(newValue) {
119
+ emits('update:limit', '' + newValue)
120
+ },
121
+ })
122
+ const limitTypeLocal = computed<string>({
123
+ get() {
124
+ return props.limitType
125
+ },
126
+ set(newValue) {
127
+ emits('update:limit-type', newValue)
128
+ },
129
+ })
130
+
131
+ const { $binary } = useNuxtApp()
132
+ const onSelectLimit = ({
133
+ value,
134
+ type,
135
+ }: {
136
+ value: number | 'Unlimited'
137
+ type: string
138
+ }): void => {
139
+ limitLocal.value = '' + value
140
+ if (limitTypeLocal.value !== type) {
141
+ limitTypeLocal.value = type
142
+ }
143
+
144
+ // if (limitTypeLocal.value === binaryKeys[0] || value === 'Unlimited') {
145
+ // limitLocal.value = '' + value
146
+ // return
147
+ // }
148
+ //
149
+ // limitLocal.value =
150
+ // '' + $binary.universalFromTo(value, binaryKeys[0], binaryKeys[1], 8)
151
+ }
152
+
153
+ const limitErrorLocalText = computed<string>(() => {
154
+ const valueForMin = $binary.universalFromTo(
155
+ +limitLocal.value,
156
+ limitTypeLocal.value,
157
+ limitOptionsLocal.value[0].value.type,
158
+ 0
159
+ )
160
+ const valueForMax = $binary.universalFromTo(
161
+ +limitLocal.value,
162
+ limitTypeLocal.value,
163
+ limitOptionsLocal.value[1].value.type,
164
+ 0
165
+ )
166
+ const minValue = limitOptionsLocal.value[0].value.value
167
+ const maxValue = limitOptionsLocal.value[1].value.value
168
+ if (valueForMin < minValue) {
169
+ return localization.value.limitMustBe.replace(
170
+ '{0}',
171
+ `${minValue} ${localization.value[binaryKeys[0]]}`
172
+ )
173
+ }
174
+ if (props.limitOptions && valueForMax > maxValue) {
175
+ return localization.value.limitMustBeMax.replace(
176
+ '{0}',
177
+ `${maxValue} ${localization.value[binaryKeys[0]]}`
178
+ )
179
+ }
180
+
181
+ const validValue = /^\d+(\.\d+)?$/.test(limitLocal.value)
182
+ if (
183
+ !validValue &&
184
+ (limitLocal.value !== limitOptionsLocal.value[1].value.value ||
185
+ props.limitOptions)
186
+ ) {
187
+ return localization.value.inputContainsInvalidCharacters
188
+ }
189
+
190
+ const value = $binary.universalFromTo(
191
+ +limitLocal.value,
192
+ limitTypeLocal.value,
193
+ binaryKeys[0],
194
+ 0
195
+ )
196
+ if (value % props.multiply !== 0) {
197
+ return localization.value.valueShouldMultiple.replace(
198
+ '{0}',
199
+ `${props.multiply} ${binaryKeys[0].toUpperCase()}`
200
+ )
201
+ }
202
+
203
+ return ''
204
+ })
205
+ const limitInvalid = computed<boolean>(() => !!limitErrorLocalText.value)
206
+ watch(
207
+ limitInvalid,
208
+ (newValue) => {
209
+ emits('invalid', newValue)
210
+ },
211
+ { immediate: true }
212
+ )
213
+
214
+ const limitLocalAndApiErrorsTexts = computed<string>(() => {
215
+ const localError = limitErrorLocalText.value
216
+ const apiError = apiErrorLocal.value
217
+
218
+ let result = ''
219
+ if (localError && !apiError) result = localError
220
+ if (!localError && apiError) result = apiError
221
+ if (localError && apiError) result = localError + ', ' + apiError
222
+ if (!localError && apiError) result = apiError
223
+
224
+ return result
225
+ })
226
+
227
+ const onRemoveValidationError = (): void => {
228
+ emits('remove-error-by-title', typeError.value)
229
+ }
230
+ </script>
231
+
232
+ <style scoped></style>
@@ -1,28 +1,28 @@
1
- import { UI_I_Localization } from '~/models/interfaces'
2
- import { UI_I_OptionItem } from '~/components/atoms/models/interfaces'
3
-
4
- export const limitOptionsFunc = (
5
- localization: UI_I_Localization,
6
- binaryKeys: [string, string]
7
- ): UI_I_OptionItem[] => {
8
- return [
9
- {
10
- text: `${localization.minimum}: 0 ${localization[binaryKeys[0]]}`,
11
- value: 0,
12
- },
13
- {
14
- text: `${localization.maximum}: ${localization.unlimited}`,
15
- value: 'Unlimited',
16
- },
17
- ]
18
- }
19
-
20
- export const limitTypeOptionsFunc = (
21
- localization: UI_I_Localization,
22
- binaryKeys: [string, string]
23
- ): UI_I_OptionItem[] => {
24
- return [
25
- { text: localization[binaryKeys[0]], value: binaryKeys[0] },
26
- { text: localization[binaryKeys[1]], value: binaryKeys[1] },
27
- ]
28
- }
1
+ import { UI_I_Localization } from '~/models/interfaces'
2
+ import { UI_I_OptionItem } from '~/components/atoms/models/interfaces'
3
+
4
+ export const limitOptionsFunc = (
5
+ localization: UI_I_Localization,
6
+ binaryKeys: [string, string]
7
+ ): UI_I_OptionItem[] => {
8
+ return [
9
+ {
10
+ text: `${localization.minimum}: 0 ${localization[binaryKeys[0]]}`,
11
+ value: { value: 0, type: binaryKeys[0] },
12
+ },
13
+ {
14
+ text: `${localization.maximum}: ${localization.unlimited}`,
15
+ value: { value: 'Unlimited', type: binaryKeys[0] },
16
+ },
17
+ ]
18
+ }
19
+
20
+ export const limitTypeOptionsFunc = (
21
+ localization: UI_I_Localization,
22
+ binaryKeys: [string, string]
23
+ ): UI_I_OptionItem[] => {
24
+ return [
25
+ { text: localization[binaryKeys[0]], value: binaryKeys[0] },
26
+ { text: localization[binaryKeys[1]], value: binaryKeys[1] },
27
+ ]
28
+ }