-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathindex.tsx
423 lines (364 loc) · 8.49 KB
/
index.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
/**
* External dependencies
*/
import { render, screen, waitFor } from '@testing-library/react';
import { click, type, press } from '@ariakit/test';
/**
* Internal dependencies
*/
import PaletteEdit, { getNameAndSlugForPosition } from '..';
import type { PaletteElement } from '../types';
const noop = () => {};
async function clearInput( input: HTMLInputElement ) {
await click( input );
// Press backspace as many times as the input's current value
for ( const _ of Array( input.value.length ) ) {
await press.Backspace();
}
}
describe( 'getNameAndSlugForPosition', () => {
test( 'should return 1 by default', () => {
const slugPrefix = 'test-';
const elements: PaletteElement[] = [];
expect( getNameAndSlugForPosition( elements, slugPrefix ) ).toEqual( {
name: 'Color 1',
slug: 'test-color-1',
} );
} );
test( 'should return a new color name and slug with an incremented slug id', () => {
const slugPrefix = 'test-';
const elements = [
{
slug: 'test-color-1',
color: '#ffffff',
name: 'Test Color 1',
},
];
expect( getNameAndSlugForPosition( elements, slugPrefix ) ).toEqual( {
name: 'Color 2',
slug: 'test-color-2',
} );
} );
test( 'should ignore user-defined color name and slug', () => {
const slugPrefix = 'test-';
const elements = [
{
slug: 'a-sweet-color-2',
color: '#ffffff',
name: 'Test Color 1',
},
];
expect( getNameAndSlugForPosition( elements, slugPrefix ) ).toEqual( {
name: 'Color 1',
slug: 'test-color-1',
} );
} );
test( 'should return a new color name and slug with an incremented slug id one higher than the current highest', () => {
const slugPrefix = 'test-';
const elements = [
{
slug: 'test-color-1',
color: '#ffffff',
name: 'Test Color 1',
},
{
slug: 'test-color-2',
color: '#1a4548',
name: 'Test Color 2',
},
{
slug: 'test-color-150',
color: '#f6f6f6',
name: 'Test Color 150',
},
{
slug: 'a-sweet-color-100',
color: '#ffe2c7',
name: 'A Sweet Color 100',
},
];
expect( getNameAndSlugForPosition( elements, slugPrefix ) ).toEqual( {
name: 'Color 151',
slug: 'test-color-151',
} );
} );
} );
describe( 'PaletteEdit', () => {
const defaultProps = {
paletteLabel: 'Test label',
slugPrefix: '',
onChange: noop,
};
const colors = [
{ color: '#1a4548', name: 'Primary', slug: 'primary' },
{ color: '#0000ff', name: 'Secondary', slug: 'secondary' },
];
const gradients = [
{
gradient:
'linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%)',
name: 'Pale ocean',
slug: 'pale-ocean',
},
{
gradient:
'linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%)',
name: 'Midnight',
slug: 'midnight',
},
];
it( 'shows heading label', () => {
render( <PaletteEdit { ...defaultProps } colors={ colors } /> );
const paletteLabel = screen.getByRole( 'heading', {
level: 2,
name: 'Test label',
} );
expect( paletteLabel ).toBeVisible();
} );
it( 'shows heading label with custom heading level', () => {
render(
<PaletteEdit
{ ...defaultProps }
colors={ colors }
paletteLabelHeadingLevel={ 5 }
/>
);
expect(
screen.getByRole( 'heading', {
level: 5,
name: 'Test label',
} )
).toBeVisible();
} );
it( 'shows empty message', () => {
render(
<PaletteEdit
{ ...defaultProps }
emptyMessage="Test empty message"
/>
);
expect( screen.getByText( 'Test empty message' ) ).toBeVisible();
} );
it( 'shows an option to remove all colors', async () => {
render( <PaletteEdit { ...defaultProps } colors={ colors } /> );
await click(
screen.getByRole( 'button', {
name: 'Color options',
} )
);
await waitFor( () => {
expect(
screen.getByRole( 'button', {
name: 'Remove all colors',
} )
).toBeVisible();
} );
} );
it( 'shows a reset option when the `canReset` prop is enabled', async () => {
render(
<PaletteEdit { ...defaultProps } colors={ colors } canReset />
);
await click(
screen.getByRole( 'button', {
name: 'Color options',
} )
);
await waitFor( () => {
expect(
screen.getByRole( 'button', {
name: 'Reset colors',
} )
).toBeVisible();
} );
} );
it( 'does not show a reset colors option when `canReset` is disabled', async () => {
render( <PaletteEdit { ...defaultProps } colors={ colors } /> );
await click(
screen.getByRole( 'button', {
name: 'Color options',
} )
);
expect(
screen.queryByRole( 'button', {
name: 'Reset colors',
} )
).not.toBeInTheDocument();
} );
it( 'calls the `onChange` with the new color appended', async () => {
const onChange = jest.fn();
render(
<PaletteEdit
{ ...defaultProps }
colors={ colors }
onChange={ onChange }
/>
);
await click(
screen.getByRole( 'button', {
name: 'Add color',
} )
);
await waitFor( () => {
expect( onChange ).toHaveBeenCalledWith( [
...colors,
{
color: '#000',
name: 'Color 1',
slug: 'color-1',
},
] );
} );
} );
it( 'calls the `onChange` with the new gradient appended', async () => {
const onChange = jest.fn();
render(
<PaletteEdit
{ ...defaultProps }
gradients={ gradients }
onChange={ onChange }
/>
);
await click(
screen.getByRole( 'button', {
name: 'Add gradient',
} )
);
await waitFor( () => {
expect( onChange ).toHaveBeenCalledWith( [
...gradients,
{
gradient:
'linear-gradient(135deg, rgba(6, 147, 227, 1) 0%, rgb(155, 81, 224) 100%)',
name: 'Color 1',
slug: 'color-1',
},
] );
} );
} );
it( 'can not add new colors when `canOnlyChangeValues` is enabled', () => {
render( <PaletteEdit { ...defaultProps } canOnlyChangeValues /> );
expect(
screen.queryByRole( 'button', {
name: 'Add color',
} )
).not.toBeInTheDocument();
} );
it( 'can remove a color', async () => {
const onChange = jest.fn();
render(
<PaletteEdit
{ ...defaultProps }
colors={ colors }
onChange={ onChange }
/>
);
await click(
screen.getByRole( 'button', {
name: 'Color options',
} )
);
await click(
screen.getByRole( 'button', {
name: 'Show details',
} )
);
await click( screen.getByRole( 'button', { name: 'Edit: Primary' } ) );
await click(
screen.getByRole( 'button', {
name: 'Remove color',
} )
);
await waitFor( () => {
expect( onChange ).toHaveBeenCalledWith( [ colors[ 1 ] ] );
} );
} );
it( 'can update palette name', async () => {
const onChange = jest.fn();
render(
<PaletteEdit
{ ...defaultProps }
colors={ colors }
onChange={ onChange }
/>
);
await click(
screen.getByRole( 'button', {
name: 'Color options',
} )
);
await click(
screen.getByRole( 'button', {
name: 'Show details',
} )
);
await click( screen.getByRole( 'button', { name: 'Edit: Primary' } ) );
const nameInput = screen.getByRole( 'textbox', {
name: 'Color name',
} );
await clearInput( nameInput as HTMLInputElement );
await type( 'Primary Updated' );
await waitFor( () => {
expect( onChange ).toHaveBeenCalledWith( [
{
...colors[ 0 ],
name: 'Primary Updated',
slug: 'primary-updated',
},
colors[ 1 ],
] );
} );
} );
it( 'can update color palette value', async () => {
const onChange = jest.fn();
render(
<PaletteEdit
{ ...defaultProps }
colors={ colors }
onChange={ onChange }
/>
);
await click( screen.getByLabelText( 'Color: Primary' ) );
const hexInput = screen.getByRole( 'textbox', {
name: 'Hex color',
} );
await clearInput( hexInput as HTMLInputElement );
await type( '000000' );
await waitFor( () => {
expect( onChange ).toHaveBeenCalledWith( [
{
...colors[ 0 ],
color: '#000000',
},
colors[ 1 ],
] );
} );
} );
it( 'can update gradient palette value', async () => {
const onChange = jest.fn();
render(
<PaletteEdit
{ ...defaultProps }
gradients={ gradients }
onChange={ onChange }
/>
);
await click( screen.getByLabelText( 'Gradient: Pale ocean' ) );
// Select radial gradient option
await click(
screen.getByRole( 'combobox', {
name: 'Type',
} )
);
await click( screen.getByRole( 'option', { name: 'Radial' } ) );
await waitFor( () => {
expect( onChange ).toHaveBeenCalledWith( [
{
...gradients[ 0 ],
gradient:
'radial-gradient(rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%)',
},
gradients[ 1 ],
] );
} );
} );
} );