@eturnity/eturnity_reusable_components 7.39.5-qa-elisee-7.42.1 → 7.45.0-EPDM-4900.0
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/src/assets/theme.js +0 -3
- package/src/components/icon/index.vue +2 -2
- package/src/components/infoCard/index.vue +9 -36
- package/src/components/infoText/index.vue +289 -132
- package/src/components/infoText/placeholder.vue +225 -0
- package/src/components/inputs/inputText/InputText.stories.js +60 -55
- package/src/components/inputs/inputText/index.vue +8 -49
- package/src/components/inputs/radioButton/RadioButton.stories.js +63 -44
- package/src/components/inputs/radioButton/defaultProps.js +33 -0
- package/src/components/inputs/radioButton/index.vue +56 -20
- package/src/components/inputs/radioButton/radioButton.spec.js +306 -0
- package/src/assets/svgIcons/compass.svg +0 -1
- package/src/assets/svgIcons/pause.svg +0 -6
- package/src/components/inputs/inputText/inputText.spec.js +0 -588
- package/src/components/roundTabs/index.vue +0 -107
@@ -1,588 +0,0 @@
|
|
1
|
-
/* eslint-disable */
|
2
|
-
import { mount, Wrapper } from '@vue/test-utils'
|
3
|
-
import RCInputText from '@/components/inputs/inputText/index'
|
4
|
-
import theme from '@/assets/theme'
|
5
|
-
|
6
|
-
jest.mock('@/components/icon/iconCache.mjs', () => ({
|
7
|
-
// need to mock this due to how jest handles import.meta
|
8
|
-
fetchIcon: jest.fn(() => Promise.resolve('mocked-icon-url.svg')),
|
9
|
-
}))
|
10
|
-
|
11
|
-
const wrapper1 = mount(RCInputText, {
|
12
|
-
props: {
|
13
|
-
placeholder: 'placeholderText',
|
14
|
-
value: 'Test value',
|
15
|
-
label: 'Test label',
|
16
|
-
},
|
17
|
-
global: {
|
18
|
-
provide: {
|
19
|
-
theme,
|
20
|
-
},
|
21
|
-
},
|
22
|
-
})
|
23
|
-
const wrapperPassword = mount(RCInputText, {
|
24
|
-
props: {
|
25
|
-
placeholder: 'placeholderText',
|
26
|
-
value: 'Test value',
|
27
|
-
label: 'Test label',
|
28
|
-
inputType: 'password',
|
29
|
-
},
|
30
|
-
global: {
|
31
|
-
provide: {
|
32
|
-
theme,
|
33
|
-
},
|
34
|
-
},
|
35
|
-
})
|
36
|
-
describe('RCInputText.vue', () => {
|
37
|
-
let consoleWarnSpy
|
38
|
-
beforeEach(() => {
|
39
|
-
consoleWarnSpy = jest.spyOn(console, 'warn').mockImplementation(() => {})
|
40
|
-
})
|
41
|
-
afterEach(() => {
|
42
|
-
consoleWarnSpy.mockRestore()
|
43
|
-
})
|
44
|
-
// initial rendering
|
45
|
-
it('input is rendered', async () => {
|
46
|
-
const inputTextWrapper = wrapper1.find('[data-test-id="input_wrapper"]')
|
47
|
-
expect(inputTextWrapper.exists()).toBe(true)
|
48
|
-
})
|
49
|
-
// event management
|
50
|
-
it('input is rendered and emits inputChange when input event is triggered.', async () => {
|
51
|
-
const inputElement = wrapper1.find('input')
|
52
|
-
await inputElement.setValue('Test Input Value')
|
53
|
-
const emittedInputChangeEvent = wrapper1.emitted('input-change')
|
54
|
-
expect(emittedInputChangeEvent).toBeTruthy()
|
55
|
-
expect(emittedInputChangeEvent).toHaveLength(1) // Check if the event was emitted exactly once
|
56
|
-
expect(emittedInputChangeEvent[0]).toEqual(['Test Input Value'])
|
57
|
-
})
|
58
|
-
it('input emits on-enter-click', async () => {
|
59
|
-
const inputElement = wrapper1.find('input')
|
60
|
-
await inputElement.trigger('keyup.enter')
|
61
|
-
const emittedOnEnterClickEvent = wrapper1.emitted('on-enter-click')
|
62
|
-
expect(emittedOnEnterClickEvent).toBeTruthy()
|
63
|
-
expect(emittedOnEnterClickEvent).toHaveLength(1) // Check if the event was emitted exactly once
|
64
|
-
expect(emittedOnEnterClickEvent[0]).toEqual([]) // Check if the event was emitted exactly once
|
65
|
-
})
|
66
|
-
it('input emits on-blur', async () => {
|
67
|
-
const inputElement = wrapper1.find('input')
|
68
|
-
await inputElement.setValue('Test Input Value')
|
69
|
-
await inputElement.trigger('blur')
|
70
|
-
const emittedOnBlurEvent = wrapper1.emitted('input-blur')
|
71
|
-
expect(emittedOnBlurEvent).toBeTruthy()
|
72
|
-
expect(emittedOnBlurEvent).toHaveLength(1) // Check if the event was emitted exactly once
|
73
|
-
expect(emittedOnBlurEvent[0]).toEqual(['Test Input Value']) // Check if the event was emitted exactly once
|
74
|
-
})
|
75
|
-
it('input password visibility click trigger input type change', async () => {
|
76
|
-
const inputElement = wrapperPassword.find('input')
|
77
|
-
const passwordVisibilityIconElement = wrapperPassword.find(
|
78
|
-
'[data-test-id="password_visiblity_change_icon"]'
|
79
|
-
)
|
80
|
-
expect(passwordVisibilityIconElement.exists()).toBe(true)
|
81
|
-
await passwordVisibilityIconElement.trigger('click')
|
82
|
-
let inputType = inputElement.attributes().type
|
83
|
-
expect(inputType).toBe('text')
|
84
|
-
await passwordVisibilityIconElement.trigger('click')
|
85
|
-
inputType = inputElement.attributes().type
|
86
|
-
expect(inputType).toBe('password')
|
87
|
-
await passwordVisibilityIconElement.trigger('click')
|
88
|
-
inputType = inputElement.attributes().type
|
89
|
-
expect(inputType).toBe('text')
|
90
|
-
})
|
91
|
-
//Test conditional visibility
|
92
|
-
it('label visibility check', async () => {
|
93
|
-
const wrapper = mount(RCInputText, {
|
94
|
-
props: {
|
95
|
-
value: 'Test value',
|
96
|
-
label: 'Test label',
|
97
|
-
},
|
98
|
-
global: {
|
99
|
-
provide: {
|
100
|
-
theme,
|
101
|
-
},
|
102
|
-
},
|
103
|
-
})
|
104
|
-
const label = wrapper.find('[data-test-id="label_wrapper"]')
|
105
|
-
expect(label.exists()).toBe(true)
|
106
|
-
expect(label.text()).toContain('Test label')
|
107
|
-
})
|
108
|
-
it('label invisibility check', async () => {
|
109
|
-
const wrapper = mount(RCInputText, {
|
110
|
-
props: {
|
111
|
-
value: 'Test value',
|
112
|
-
},
|
113
|
-
global: {
|
114
|
-
provide: {
|
115
|
-
theme,
|
116
|
-
},
|
117
|
-
},
|
118
|
-
})
|
119
|
-
const label = wrapper.find('[data-test-id="label_wrapper"]')
|
120
|
-
expect(label.exists()).toBe(false)
|
121
|
-
})
|
122
|
-
it('label optional visibility check', async () => {
|
123
|
-
const wrapper = mount(RCInputText, {
|
124
|
-
props: {
|
125
|
-
value: 'Test value',
|
126
|
-
label: 'Test label',
|
127
|
-
labelOptional: true,
|
128
|
-
},
|
129
|
-
global: {
|
130
|
-
provide: {
|
131
|
-
theme,
|
132
|
-
},
|
133
|
-
},
|
134
|
-
})
|
135
|
-
const labelOptional = wrapper.find('[data-test-id="label_optional"]')
|
136
|
-
expect(labelOptional.exists()).toBe(true)
|
137
|
-
})
|
138
|
-
it('label optional invisibility check', async () => {
|
139
|
-
const wrapper = mount(RCInputText, {
|
140
|
-
props: {
|
141
|
-
value: 'Test value',
|
142
|
-
},
|
143
|
-
global: {
|
144
|
-
provide: {
|
145
|
-
theme,
|
146
|
-
},
|
147
|
-
},
|
148
|
-
})
|
149
|
-
const labelOptional = wrapper.find('[data-test-id="label_optional"]')
|
150
|
-
expect(labelOptional.exists()).toBe(false)
|
151
|
-
})
|
152
|
-
it('infoTextMessage visibility check', async () => {
|
153
|
-
const wrapper = mount(RCInputText, {
|
154
|
-
props: {
|
155
|
-
value: 'Test value',
|
156
|
-
infoTextMessage: 'infoTextMessage test',
|
157
|
-
label: 'Test label',
|
158
|
-
},
|
159
|
-
global: {
|
160
|
-
provide: {
|
161
|
-
theme,
|
162
|
-
},
|
163
|
-
},
|
164
|
-
})
|
165
|
-
const InfoTextMessage = wrapper.find('[data-test-id="info_text_message"]')
|
166
|
-
expect(InfoTextMessage.exists()).toBe(true)
|
167
|
-
})
|
168
|
-
it('infoTextMessage invibility check', async () => {
|
169
|
-
const wrapper = mount(RCInputText, {
|
170
|
-
props: {
|
171
|
-
value: 'Test value',
|
172
|
-
label: 'Test label',
|
173
|
-
},
|
174
|
-
global: {
|
175
|
-
provide: {
|
176
|
-
theme,
|
177
|
-
},
|
178
|
-
},
|
179
|
-
})
|
180
|
-
const InfoTextMessage = wrapper.find('[data-test-id="info_text_message"]')
|
181
|
-
expect(InfoTextMessage.exists()).toBe(false)
|
182
|
-
})
|
183
|
-
it('error visibility check', async () => {
|
184
|
-
const wrapper = mount(RCInputText, {
|
185
|
-
props: {
|
186
|
-
value: 'Test value',
|
187
|
-
isError: true,
|
188
|
-
errorMessage: 'Error message test',
|
189
|
-
label: 'Test label',
|
190
|
-
},
|
191
|
-
global: {
|
192
|
-
provide: {
|
193
|
-
theme,
|
194
|
-
},
|
195
|
-
},
|
196
|
-
})
|
197
|
-
const errorWrapper = wrapper.find('[data-test-id="error_wrapper"]')
|
198
|
-
const errorMessageWrapper = wrapper.find(
|
199
|
-
'[data-test-id="error_message_wrapper"]'
|
200
|
-
)
|
201
|
-
expect(errorWrapper.exists()).toBe(true)
|
202
|
-
expect(errorMessageWrapper.exists()).toBe(true)
|
203
|
-
expect(errorMessageWrapper.text()).toContain('Error message test')
|
204
|
-
})
|
205
|
-
it('error invibility check', async () => {
|
206
|
-
const wrapper = mount(RCInputText, {
|
207
|
-
props: {
|
208
|
-
value: 'Test value',
|
209
|
-
label: 'Test label',
|
210
|
-
},
|
211
|
-
global: {
|
212
|
-
provide: {
|
213
|
-
theme,
|
214
|
-
},
|
215
|
-
},
|
216
|
-
})
|
217
|
-
const errorWrapper = wrapper.find('[data-test-id="error_wrapper"]')
|
218
|
-
const errorMessageWrapper = wrapper.find(
|
219
|
-
'[data-test-id="error_message_wrapper"]'
|
220
|
-
)
|
221
|
-
expect(errorWrapper.exists()).toBe(false)
|
222
|
-
expect(errorMessageWrapper.exists()).toBe(false)
|
223
|
-
})
|
224
|
-
//Test that the component handles different prop types correctly and throws appropriate warnings for invalid props.
|
225
|
-
it('validation of prop type - placeholder - not String', async () => {
|
226
|
-
mount(RCInputText, {
|
227
|
-
props: {
|
228
|
-
placeholder: 42,
|
229
|
-
value: 'value test',
|
230
|
-
},
|
231
|
-
global: {
|
232
|
-
provide: {
|
233
|
-
theme,
|
234
|
-
},
|
235
|
-
},
|
236
|
-
})
|
237
|
-
expect(consoleWarnSpy).toHaveBeenCalled()
|
238
|
-
})
|
239
|
-
it('validation of prop type - alignItems - not horizontal or vertical', async () => {
|
240
|
-
mount(RCInputText, {
|
241
|
-
props: {
|
242
|
-
value: 'value test',
|
243
|
-
alignItems: 'top',
|
244
|
-
},
|
245
|
-
global: {
|
246
|
-
provide: {
|
247
|
-
theme,
|
248
|
-
},
|
249
|
-
},
|
250
|
-
})
|
251
|
-
expect(consoleWarnSpy).toHaveBeenCalled()
|
252
|
-
})
|
253
|
-
it('validation of prop type - isError - not Boolean', async () => {
|
254
|
-
mount(RCInputText, {
|
255
|
-
props: {
|
256
|
-
value: 'value test',
|
257
|
-
isError: 'true',
|
258
|
-
},
|
259
|
-
global: {
|
260
|
-
provide: {
|
261
|
-
theme,
|
262
|
-
},
|
263
|
-
},
|
264
|
-
})
|
265
|
-
expect(consoleWarnSpy).toHaveBeenCalled()
|
266
|
-
})
|
267
|
-
it('validation of prop type - inputWidth - not String', async () => {
|
268
|
-
mount(RCInputText, {
|
269
|
-
props: {
|
270
|
-
value: 'value test',
|
271
|
-
inputWidth: 200,
|
272
|
-
},
|
273
|
-
global: {
|
274
|
-
provide: {
|
275
|
-
theme,
|
276
|
-
},
|
277
|
-
},
|
278
|
-
})
|
279
|
-
expect(consoleWarnSpy).toHaveBeenCalled()
|
280
|
-
})
|
281
|
-
it('validation of prop type - inputHeight - not String', async () => {
|
282
|
-
mount(RCInputText, {
|
283
|
-
props: {
|
284
|
-
value: 'value test',
|
285
|
-
inputHeight: 200,
|
286
|
-
},
|
287
|
-
global: {
|
288
|
-
provide: {
|
289
|
-
theme,
|
290
|
-
},
|
291
|
-
},
|
292
|
-
})
|
293
|
-
expect(consoleWarnSpy).toHaveBeenCalled()
|
294
|
-
})
|
295
|
-
it('validation of prop type - minWidth - not String', async () => {
|
296
|
-
mount(RCInputText, {
|
297
|
-
props: {
|
298
|
-
value: 'value test',
|
299
|
-
minWidth: 200,
|
300
|
-
},
|
301
|
-
global: {
|
302
|
-
provide: {
|
303
|
-
theme,
|
304
|
-
},
|
305
|
-
},
|
306
|
-
})
|
307
|
-
expect(consoleWarnSpy).toHaveBeenCalled()
|
308
|
-
})
|
309
|
-
it('validation of prop type - value - not String', async () => {
|
310
|
-
mount(RCInputText, {
|
311
|
-
props: {
|
312
|
-
value: 42,
|
313
|
-
},
|
314
|
-
global: {
|
315
|
-
provide: {
|
316
|
-
theme,
|
317
|
-
},
|
318
|
-
},
|
319
|
-
})
|
320
|
-
expect(consoleWarnSpy).toHaveBeenCalled()
|
321
|
-
})
|
322
|
-
it('validation of prop type - errorMessage - not String', async () => {
|
323
|
-
mount(RCInputText, {
|
324
|
-
props: {
|
325
|
-
value: 'test value',
|
326
|
-
errorMessage: true,
|
327
|
-
},
|
328
|
-
global: {
|
329
|
-
provide: {
|
330
|
-
theme,
|
331
|
-
},
|
332
|
-
},
|
333
|
-
})
|
334
|
-
expect(consoleWarnSpy).toHaveBeenCalled()
|
335
|
-
})
|
336
|
-
it('validation of prop type - infoTextMessage - not String', async () => {
|
337
|
-
mount(RCInputText, {
|
338
|
-
props: {
|
339
|
-
value: 'test value',
|
340
|
-
infoTextMessage: true,
|
341
|
-
},
|
342
|
-
global: {
|
343
|
-
provide: {
|
344
|
-
theme,
|
345
|
-
},
|
346
|
-
},
|
347
|
-
})
|
348
|
-
expect(consoleWarnSpy).toHaveBeenCalled()
|
349
|
-
})
|
350
|
-
it('validation of prop type - infoTextAlign - not String', async () => {
|
351
|
-
mount(RCInputText, {
|
352
|
-
props: {
|
353
|
-
value: 'test value',
|
354
|
-
infoTextAlign: true,
|
355
|
-
},
|
356
|
-
global: {
|
357
|
-
provide: {
|
358
|
-
theme,
|
359
|
-
},
|
360
|
-
},
|
361
|
-
})
|
362
|
-
expect(consoleWarnSpy).toHaveBeenCalled()
|
363
|
-
})
|
364
|
-
it('validation of prop type - label - not String', async () => {
|
365
|
-
mount(RCInputText, {
|
366
|
-
props: {
|
367
|
-
value: 'test value',
|
368
|
-
label: true,
|
369
|
-
},
|
370
|
-
global: {
|
371
|
-
provide: {
|
372
|
-
theme,
|
373
|
-
},
|
374
|
-
},
|
375
|
-
})
|
376
|
-
expect(consoleWarnSpy).toHaveBeenCalled()
|
377
|
-
})
|
378
|
-
it('validation of prop type - labelOptional - not Boolean', async () => {
|
379
|
-
const wrapper = mount(RCInputText, {
|
380
|
-
props: {
|
381
|
-
value: 'test value',
|
382
|
-
labelOptional: 12,
|
383
|
-
label: 'label test',
|
384
|
-
},
|
385
|
-
global: {
|
386
|
-
provide: {
|
387
|
-
theme,
|
388
|
-
},
|
389
|
-
},
|
390
|
-
})
|
391
|
-
wrapper.vm.$gettext.mockReturnValue('Translated Message')
|
392
|
-
expect(consoleWarnSpy).toHaveBeenCalled()
|
393
|
-
})
|
394
|
-
it('validation of prop type - noBorder - not Boolean', async () => {
|
395
|
-
mount(RCInputText, {
|
396
|
-
props: {
|
397
|
-
value: 'test value',
|
398
|
-
noBorder: 1,
|
399
|
-
},
|
400
|
-
global: {
|
401
|
-
provide: {
|
402
|
-
theme,
|
403
|
-
},
|
404
|
-
},
|
405
|
-
})
|
406
|
-
expect(consoleWarnSpy).toHaveBeenCalled()
|
407
|
-
})
|
408
|
-
it('validation of prop type - disabled - not Boolean', async () => {
|
409
|
-
mount(RCInputText, {
|
410
|
-
props: {
|
411
|
-
disabled: 'false',
|
412
|
-
value: 'value test',
|
413
|
-
},
|
414
|
-
global: {
|
415
|
-
provide: {
|
416
|
-
theme,
|
417
|
-
},
|
418
|
-
},
|
419
|
-
})
|
420
|
-
expect(consoleWarnSpy).toHaveBeenCalled()
|
421
|
-
})
|
422
|
-
it('validation of prop type - fontSize - not String', async () => {
|
423
|
-
mount(RCInputText, {
|
424
|
-
props: {
|
425
|
-
fontSize: true,
|
426
|
-
value: 'value test',
|
427
|
-
},
|
428
|
-
global: {
|
429
|
-
provide: {
|
430
|
-
theme,
|
431
|
-
},
|
432
|
-
},
|
433
|
-
})
|
434
|
-
expect(consoleWarnSpy).toHaveBeenCalled()
|
435
|
-
})
|
436
|
-
it('validation of prop type - inputType - not String', async () => {
|
437
|
-
mount(RCInputText, {
|
438
|
-
props: {
|
439
|
-
inputType: true,
|
440
|
-
value: 'value test',
|
441
|
-
},
|
442
|
-
global: {
|
443
|
-
provide: {
|
444
|
-
theme,
|
445
|
-
},
|
446
|
-
},
|
447
|
-
})
|
448
|
-
expect(consoleWarnSpy).toHaveBeenCalled()
|
449
|
-
})
|
450
|
-
it('validation of prop type - labelFontColor - not String', async () => {
|
451
|
-
mount(RCInputText, {
|
452
|
-
props: {
|
453
|
-
labelFontColor: true,
|
454
|
-
value: 'value test',
|
455
|
-
label: 'label text',
|
456
|
-
},
|
457
|
-
global: {
|
458
|
-
provide: {
|
459
|
-
theme,
|
460
|
-
},
|
461
|
-
},
|
462
|
-
})
|
463
|
-
expect(consoleWarnSpy).toHaveBeenCalled()
|
464
|
-
})
|
465
|
-
it('validation of prop type - backgroundColor - not String', async () => {
|
466
|
-
mount(RCInputText, {
|
467
|
-
props: {
|
468
|
-
backgroundColor: true,
|
469
|
-
value: 'value test',
|
470
|
-
},
|
471
|
-
global: {
|
472
|
-
provide: {
|
473
|
-
theme,
|
474
|
-
},
|
475
|
-
},
|
476
|
-
})
|
477
|
-
expect(consoleWarnSpy).toHaveBeenCalled()
|
478
|
-
})
|
479
|
-
it('validation of prop type - disabledBackgroundColor - not String', async () => {
|
480
|
-
mount(RCInputText, {
|
481
|
-
props: {
|
482
|
-
disabledBackgroundColor: true,
|
483
|
-
value: 'value test',
|
484
|
-
},
|
485
|
-
global: {
|
486
|
-
provide: {
|
487
|
-
theme,
|
488
|
-
},
|
489
|
-
},
|
490
|
-
})
|
491
|
-
expect(consoleWarnSpy).toHaveBeenCalled()
|
492
|
-
})
|
493
|
-
it('validation of prop type - fontColor - not String', async () => {
|
494
|
-
mount(RCInputText, {
|
495
|
-
props: {
|
496
|
-
fontColor: true,
|
497
|
-
value: 'value test',
|
498
|
-
},
|
499
|
-
global: {
|
500
|
-
provide: {
|
501
|
-
theme,
|
502
|
-
},
|
503
|
-
},
|
504
|
-
})
|
505
|
-
expect(consoleWarnSpy).toHaveBeenCalled()
|
506
|
-
})
|
507
|
-
it('validation of prop type - hasFocus - not Boolean', async () => {
|
508
|
-
mount(RCInputText, {
|
509
|
-
props: {
|
510
|
-
hasFocus: 'true',
|
511
|
-
value: 'value test',
|
512
|
-
},
|
513
|
-
global: {
|
514
|
-
provide: {
|
515
|
-
theme,
|
516
|
-
},
|
517
|
-
},
|
518
|
-
})
|
519
|
-
expect(consoleWarnSpy).toHaveBeenCalled()
|
520
|
-
})
|
521
|
-
it('validation of prop type - borderColor - not String', async () => {
|
522
|
-
mount(RCInputText, {
|
523
|
-
props: {
|
524
|
-
borderColor: 42,
|
525
|
-
value: 'value test',
|
526
|
-
},
|
527
|
-
global: {
|
528
|
-
provide: {
|
529
|
-
theme,
|
530
|
-
},
|
531
|
-
},
|
532
|
-
})
|
533
|
-
expect(consoleWarnSpy).toHaveBeenCalled()
|
534
|
-
})
|
535
|
-
it('validation of prop type - labelDataId - not String', async () => {
|
536
|
-
mount(RCInputText, {
|
537
|
-
props: {
|
538
|
-
labelDataId: 42,
|
539
|
-
value: 'value test',
|
540
|
-
},
|
541
|
-
global: {
|
542
|
-
provide: {
|
543
|
-
theme,
|
544
|
-
},
|
545
|
-
},
|
546
|
-
})
|
547
|
-
expect(consoleWarnSpy).toHaveBeenCalled()
|
548
|
-
})
|
549
|
-
it('validation of prop type - inputDataId - not String', async () => {
|
550
|
-
mount(RCInputText, {
|
551
|
-
props: {
|
552
|
-
inputDataId: 42,
|
553
|
-
value: 'value test',
|
554
|
-
},
|
555
|
-
global: {
|
556
|
-
provide: {
|
557
|
-
theme,
|
558
|
-
},
|
559
|
-
},
|
560
|
-
})
|
561
|
-
expect(consoleWarnSpy).toHaveBeenCalled()
|
562
|
-
})
|
563
|
-
//Prop Updates: Verify that the component updates correctly when props change, reflecting new values in the rendered output.
|
564
|
-
it('update of prop hasFocus', async () => {
|
565
|
-
const wrapper = mount(RCInputText, {
|
566
|
-
props: {
|
567
|
-
value: 'value test',
|
568
|
-
hasFocus: false,
|
569
|
-
},
|
570
|
-
global: {
|
571
|
-
provide: {
|
572
|
-
theme,
|
573
|
-
},
|
574
|
-
},
|
575
|
-
})
|
576
|
-
const inputElement = wrapper.find('input').element
|
577
|
-
jest.spyOn(inputElement, 'focus').mockImplementation(() => {
|
578
|
-
// Simulate that the input element is now the focused element
|
579
|
-
Object.defineProperty(document, 'activeElement', {
|
580
|
-
value: inputElement,
|
581
|
-
configurable: true,
|
582
|
-
})
|
583
|
-
})
|
584
|
-
await wrapper.setProps({ hasFocus: true })
|
585
|
-
await wrapper.vm.$nextTick()
|
586
|
-
expect(document.activeElement).toBe(wrapper.find('input').element)
|
587
|
-
})
|
588
|
-
})
|
@@ -1,107 +0,0 @@
|
|
1
|
-
<template>
|
2
|
-
<ContainerComponent>
|
3
|
-
<RoundedTabLeft
|
4
|
-
:background-color="backgroundColor"
|
5
|
-
:border-radius="borderRadius"
|
6
|
-
/>
|
7
|
-
<TabComponent
|
8
|
-
:background-color="backgroundColor"
|
9
|
-
:border-radius="borderRadius"
|
10
|
-
:height="height"
|
11
|
-
:width="width"
|
12
|
-
>
|
13
|
-
<slot></slot>
|
14
|
-
</TabComponent>
|
15
|
-
<RoundedTabRight
|
16
|
-
:background-color="backgroundColor"
|
17
|
-
:border-radius="borderRadius"
|
18
|
-
/>
|
19
|
-
</ContainerComponent>
|
20
|
-
</template>
|
21
|
-
<script>
|
22
|
-
import styled from 'vue3-styled-components'
|
23
|
-
|
24
|
-
const ContainerComponent = styled.div`
|
25
|
-
position: relative;
|
26
|
-
display: flex;
|
27
|
-
align-items: center;
|
28
|
-
justify-content: center;
|
29
|
-
`
|
30
|
-
const RoundedTabLeft = styled('div', {
|
31
|
-
backgroundColor: String,
|
32
|
-
borderRadius: String,
|
33
|
-
})`
|
34
|
-
position:absolute;
|
35
|
-
bottom:0;
|
36
|
-
left:-${(prop) => prop.borderRadius}
|
37
|
-
background-color: ${(prop) => prop.backgroundColor};
|
38
|
-
width: ${(prop) => prop.borderRadius};
|
39
|
-
height: ${(prop) => prop.borderRadius};
|
40
|
-
-webkit-mask-image: radial-gradient(
|
41
|
-
circle at top left,
|
42
|
-
transparent 71%,
|
43
|
-
black 71%
|
44
|
-
);
|
45
|
-
`
|
46
|
-
const RoundedTabRight = styled('div', {
|
47
|
-
backgroundColor: String,
|
48
|
-
borderRadius: String,
|
49
|
-
})`
|
50
|
-
position:absolute;
|
51
|
-
bottom:0;
|
52
|
-
right:-${(prop) => prop.borderRadius}
|
53
|
-
background-color: ${(prop) => prop.backgroundColor};
|
54
|
-
width: ${(prop) => prop.borderRadius};
|
55
|
-
height: ${(prop) => prop.borderRadius};
|
56
|
-
-webkit-mask-image: radial-gradient(
|
57
|
-
circle at top right,
|
58
|
-
transparent 71%,
|
59
|
-
black 71%
|
60
|
-
);`
|
61
|
-
const TabComponent = styled('div', {
|
62
|
-
width: String,
|
63
|
-
height: String,
|
64
|
-
backgroundColor: String,
|
65
|
-
borderRadius: String,
|
66
|
-
})`
|
67
|
-
display: flex;
|
68
|
-
align-items: center;
|
69
|
-
justify-content: center;
|
70
|
-
background-color: ${(prop) => prop.backgroundColor};
|
71
|
-
width: ${(prop) => prop.width};
|
72
|
-
height: ${(prop) => prop.height};
|
73
|
-
border-radius: ${(prop) => prop.borderRadius} ${(prop) => prop.borderRadius}
|
74
|
-
0 0;
|
75
|
-
`
|
76
|
-
export default {
|
77
|
-
name: 'RoundTabs',
|
78
|
-
components: {
|
79
|
-
ContainerComponent,
|
80
|
-
TabComponent,
|
81
|
-
RoundedTabLeft,
|
82
|
-
RoundedTabRight,
|
83
|
-
},
|
84
|
-
props: {
|
85
|
-
height: {
|
86
|
-
required: false,
|
87
|
-
default: '40px',
|
88
|
-
type: String,
|
89
|
-
},
|
90
|
-
width: {
|
91
|
-
required: false,
|
92
|
-
default: '200px',
|
93
|
-
type: String,
|
94
|
-
},
|
95
|
-
backgroundColor: {
|
96
|
-
required: false,
|
97
|
-
default: 'white',
|
98
|
-
type: String,
|
99
|
-
},
|
100
|
-
borderRadius: {
|
101
|
-
required: false,
|
102
|
-
default: '20px',
|
103
|
-
type: String,
|
104
|
-
},
|
105
|
-
},
|
106
|
-
}
|
107
|
-
</script>
|