@eturnity/eturnity_reusable_components 7.39.4-EPDM-11716.0 → 7.39.4-EPDM-10609.1

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eturnity/eturnity_reusable_components",
3
- "version": "7.39.4-EPDM-11716.0",
3
+ "version": "7.39.4-EPDM-10609.1",
4
4
  "files": [
5
5
  "dist",
6
6
  "src"
@@ -63,6 +63,7 @@
63
63
  "jest-styled-components": "7.2.0",
64
64
  "jsdom": "24.1.1",
65
65
  "prettier": "2.8.4",
66
+ "styled-components": "^6.1.13",
66
67
  "vite": "4.0.0",
67
68
  "vite-svg-loader": "5.1.0",
68
69
  "vue-jest": "5.0.0-alpha.10",
@@ -11,6 +11,7 @@ const theme = {
11
11
  lightGray: '#f2f2f2',
12
12
  white: '#ffffff',
13
13
  blue: '#48a2d0',
14
+ blue2: '#6CD4D4',
14
15
  red: '#ff5656',
15
16
  blue1: '#e4efff',
16
17
  brightBlue: '#0068DE',
@@ -1,12 +1,14 @@
1
1
  <template>
2
2
  <ComponentWrapper>
3
- <IconWrapper :size="size">
3
+ <IconWrapper :size="type === 'dot' ? 'unset' : size">
4
4
  <IconImg
5
5
  @click.prevent="toggleShowInfo()"
6
6
  @mouseenter="openTrigger == 'onHover' ? toggleShowInfo() : ''"
7
7
  @mouseleave="openTrigger == 'onHover' ? toggleShowInfo() : ''"
8
8
  >
9
+ <Dot v-if="type === 'dot'" :color="dotColor" />
9
10
  <IconComponent
11
+ v-else
10
12
  :color="iconColor"
11
13
  cursor="pointer"
12
14
  name="info"
@@ -94,6 +96,14 @@
94
96
  height: ${(props) => props.size};
95
97
  `
96
98
 
99
+ const Dot = styled('div')`
100
+ width: 5px;
101
+ height: 5px;
102
+ background-color: ${(props) => props.color};
103
+ border-radius: 50%;
104
+ display: inline-block;
105
+ `
106
+
97
107
  const IconImg = styled.div`
98
108
  line-height: 0;
99
109
  `
@@ -105,6 +115,7 @@
105
115
  export default {
106
116
  name: 'InfoText',
107
117
  components: {
118
+ Dot,
108
119
  IconWrapper,
109
120
  TextOverlay,
110
121
  ComponentWrapper,
@@ -113,21 +124,27 @@
113
124
  },
114
125
  props: {
115
126
  text: {
127
+ type: String,
116
128
  required: false,
129
+ default: '',
117
130
  },
118
131
  size: {
132
+ type: String,
119
133
  required: false,
120
134
  default: '14px',
121
135
  },
122
136
  alignArrow: {
137
+ type: String,
123
138
  required: false,
124
139
  default: 'center',
125
140
  },
126
141
  openTrigger: {
142
+ type: String,
127
143
  required: false,
128
144
  default: 'onHover', // onHover, onClick
129
145
  },
130
146
  width: {
147
+ type: String,
131
148
  required: false,
132
149
  default: '200px',
133
150
  },
@@ -135,6 +152,16 @@
135
152
  type: String,
136
153
  default: '400px',
137
154
  },
155
+ dotColor: {
156
+ type: String,
157
+ required: false,
158
+ default: theme.colors.blue2,
159
+ },
160
+ type: {
161
+ type: String,
162
+ required: false,
163
+ default: 'info', // info, dot
164
+ },
138
165
  },
139
166
  data() {
140
167
  return {
@@ -3,68 +3,73 @@ import InputText from './index.vue'
3
3
  export default {
4
4
  title: 'InputText',
5
5
  component: InputText,
6
- tags: ['autodocs'],
6
+ // argTypes: {},
7
7
  }
8
8
 
9
- // import InputText from "@eturnity/eturnity_reusable_components/src/components/inputs/inputText"
10
- // To use:
11
- // <input-text
12
- // placeholder="Company name"
13
- // :value="companyName"
14
- // @input-change="onInputChange({ value: $event, type: 'companyName' })"
15
- // :isError="checkErrors()"
16
- // :errorMessage="This is my error message"
17
- // infoTextAlign="right" // left by default
18
- // infoTextMessage="My info message"
19
- // label="Question 5"
20
- // alignItems="horizontal" // horizontal, vertical
21
- // inputWidth="250px"
22
- // minWidth="100px"
23
- // />
9
+ const Template = (args, { argTypes }) => ({
10
+ // Components used in your story `template` are defined in the `components` object
11
+ components: { InputText },
12
+ // The story's `args` need to be mapped into the template through the `setup()` method
13
+ props: Object.keys(argTypes),
14
+ template: '<input-text v-bind="$props" />',
24
15
 
25
- export const Default = {
26
- args: {
27
- placeholder: 'Company name',
28
- disabled: false,
29
- value: '',
30
- inputWidth: '200px',
31
- minWidth: '10ch',
32
- isError: false,
33
- label: 'label test',
34
- labelOptional: true,
35
- },
16
+ // import InputText from "@eturnity/eturnity_reusable_components/src/components/inputs/inputText"
17
+ // To use:
18
+ // <input-text
19
+ // placeholder="Company name"
20
+ // :value="companyName"
21
+ // @input-change="onInputChange({ value: $event, type: 'companyName' })"
22
+ // :isError="checkErrors()"
23
+ // :errorMessage="This is my error message"
24
+ // infoTextAlign="right" // left by default
25
+ // infoTextMessage="My info message"
26
+ // label="Question 5"
27
+ // alignItems="horizontal" // horizontal, vertical
28
+ // inputWidth="250px"
29
+ // minWidth="100px"
30
+ // />
31
+ })
32
+
33
+ export const Default = Template.bind({})
34
+ Default.args = {
35
+ placeholder: 'Company name',
36
+ disabled: false,
37
+ value: '',
38
+ inputWidth: '200px',
39
+ minWidth: '10ch',
40
+ unitName: 'pc',
41
+ isError: false,
42
+ textAlign: 'left',
36
43
  }
37
44
 
38
- export const HasError = {
39
- args: {
40
- placeholder: 'Enter Value',
41
- errorMessage: 'This field is required',
42
- isError: true,
43
- disabled: false,
44
- inputWidth: '200px',
45
- },
45
+ export const hasError = Template.bind({})
46
+ hasError.args = {
47
+ placeholder: 'Enter Value',
48
+ errorMessage: 'This field is required',
49
+ isError: true,
50
+ disabled: false,
51
+ inputWidth: '200px',
46
52
  }
47
53
 
48
- export const Disabled = {
49
- args: {
50
- placeholder: 'Enter Value',
51
- disabled: true,
52
- value: '',
53
- inputWidth: '200px',
54
- isError: false,
55
- },
54
+ export const Disabled = Template.bind({})
55
+ Disabled.args = {
56
+ placeholder: 'Enter Value',
57
+ disabled: true,
58
+ value: '',
59
+ inputWidth: '200px',
60
+ isError: false,
56
61
  }
57
62
 
58
- export const WithLabel = {
59
- args: {
60
- placeholder: 'Company name',
61
- disabled: false,
62
- label: 'What is the best company in Switzerland?',
63
- value: 'Eturnity',
64
- inputWidth: '200px',
65
- unitName: 'pc',
66
- isError: false,
67
- errorMessage: 'Maximum 5 characters',
68
- alignItems: 'vertical',
69
- },
63
+ export const WithLabel = Template.bind({})
64
+ WithLabel.args = {
65
+ placeholder: 'Company name',
66
+ disabled: false,
67
+ label: 'What is the best company in Switzerland?',
68
+ value: 'Eturnity',
69
+ inputWidth: '200px',
70
+ unitName: 'pc',
71
+ isError: false,
72
+ errorMessage: 'Maximum 5 characters',
73
+ textAlign: 'left',
74
+ alignItems: 'vertical',
70
75
  }
@@ -2,26 +2,22 @@
2
2
  <Container>
3
3
  <InputWrapper
4
4
  :align-items="alignItems"
5
- data-test-id="input_wrapper"
6
5
  :has-label="!!label && label.length > 0"
7
6
  >
8
7
  <LabelWrapper v-if="label">
9
8
  <InputLabel
10
- ref="label"
11
9
  :data-id="labelDataId"
12
- data-test-id="label_wrapper"
13
10
  :font-size="fontSize"
14
11
  :label-font-color="labelFontColor"
15
12
  >
16
13
  {{ label }}
17
- <OptionalLabel v-if="labelOptional" data-test-id="label_optional">
14
+ <OptionalLabel v-if="labelOptional">
18
15
  ({{ $gettext('Optional') }})
19
16
  </OptionalLabel>
20
17
  </InputLabel>
21
18
  <InfoText
22
- v-if="infoTextMessage != ''"
19
+ v-if="infoTextMessage"
23
20
  :align-arrow="infoTextAlign"
24
- data-test-id="info_text_message"
25
21
  :size="fontSize ? fontSize : '16px'"
26
22
  :text="infoTextMessage"
27
23
  />
@@ -32,7 +28,6 @@
32
28
  ref="inputElement"
33
29
  :background-color="backgroundColor"
34
30
  :data-id="inputDataId"
35
- data-test-id="input"
36
31
  :disabled="disabled"
37
32
  :disabled-background-color="disabledBackgroundColor"
38
33
  :font-color="fontColor"
@@ -54,20 +49,16 @@
54
49
  />
55
50
  <IconWrapper
56
51
  v-if="inputType === 'password' && !isError"
57
- data-test-id="password_visiblity_change_icon"
58
52
  size="20px"
59
53
  @click="toggleShowPassword()"
60
54
  >
61
55
  <Icon name="current_variant" size="20px" />
62
56
  </IconWrapper>
63
- <IconWrapper v-if="hasError" data-test-id="error_wrapper" size="16px">
57
+ <IconWrapper v-if="hasError" size="16px">
64
58
  <Icon cursor="default" name="warning" size="16px" />
65
59
  </IconWrapper>
66
60
  </IconContainer>
67
- <ErrorMessage
68
- v-if="hasError && hasErrorMessage"
69
- data-test-id="error_message_wrapper"
70
- >
61
+ <ErrorMessage v-if="hasError && hasErrorMessage">
71
62
  {{ dynamicErrorMessage }}
72
63
  </ErrorMessage>
73
64
  </InputErrorWrapper>
@@ -245,123 +236,93 @@
245
236
  placeholder: {
246
237
  required: false,
247
238
  default: '',
248
- type: String,
249
239
  },
250
240
  alignItems: {
251
241
  required: false,
252
242
  default: 'horizontal',
253
- type: String,
254
- validator(value) {
255
- return ['horizontal', 'vertical'].includes(value)
256
- },
257
243
  },
258
244
  isError: {
259
245
  required: false,
260
246
  default: false,
261
- type: Boolean,
262
247
  },
263
248
  inputWidth: {
264
249
  required: false,
265
250
  default: null,
266
- type: String,
267
251
  },
268
252
  inputHeight: {
269
253
  required: false,
270
254
  default: null,
271
- type: String,
272
255
  },
273
256
  minWidth: {
274
257
  required: false,
275
258
  default: null,
276
- type: String,
277
259
  },
278
260
  value: {
279
261
  required: true,
280
262
  default: null,
281
- type: String,
282
263
  },
283
264
  errorMessage: {
284
265
  required: false,
285
266
  default: '',
286
- type: String,
287
267
  },
288
268
  infoTextMessage: {
289
269
  required: false,
290
- default: '',
291
- type: String,
292
270
  },
293
271
  infoTextAlign: {
294
272
  required: false,
295
- default: 'left',
296
- type: String,
297
273
  },
298
274
  label: {
299
275
  required: false,
300
- default: '',
301
- type: String,
302
276
  },
303
277
  labelOptional: {
304
278
  required: false,
305
279
  default: false,
306
- type: Boolean,
307
280
  },
308
281
  noBorder: {
309
282
  required: false,
310
283
  default: false,
311
- type: Boolean,
312
284
  },
313
285
  disabled: {
314
286
  required: false,
315
287
  default: false,
316
- type: Boolean,
317
288
  },
318
289
  fontSize: {
319
290
  required: false,
320
291
  default: null,
321
- type: String,
322
292
  },
323
293
  inputType: {
324
294
  required: false,
325
295
  default: 'text',
326
- type: String,
327
296
  },
328
297
  labelFontColor: {
329
298
  required: false,
330
299
  default: 'black',
331
- type: String,
332
300
  },
333
301
  backgroundColor: {
334
302
  required: false,
335
- type: String,
336
303
  },
337
304
  disabledBackgroundColor: {
338
305
  required: false,
339
306
  default: null,
340
- type: String,
341
307
  },
342
308
  fontColor: {
343
309
  required: false,
344
310
  default: 'black',
345
- type: String,
346
311
  },
347
312
  hasFocus: {
348
313
  required: false,
349
314
  default: false,
350
- type: Boolean,
351
315
  },
352
316
  borderColor: {
353
317
  required: false,
354
- type: String,
355
318
  },
356
319
  labelDataId: {
357
320
  required: false,
358
321
  default: '',
359
- type: String,
360
322
  },
361
323
  inputDataId: {
362
324
  required: false,
363
325
  default: '',
364
- type: String,
365
326
  },
366
327
  },
367
328
  data() {
@@ -374,10 +335,12 @@
374
335
  return this.isError || this.error
375
336
  },
376
337
  hasErrorMessage() {
377
- return this.errorMessage && this.errorMessage.length > 0
338
+ return (
339
+ (this.errorMessage && this.errorMessage.length > 0) || this.errMessage
340
+ )
378
341
  },
379
342
  dynamicErrorMessage() {
380
- return this.errorMessage
343
+ return this.errMessage || this.errorMessage
381
344
  },
382
345
  },
383
346
  watch: {
@@ -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
- })