forked from dowjones/react-dropdown-tree-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.test.js
396 lines (346 loc) · 12.7 KB
/
index.test.js
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
import test from 'ava'
import React from 'react'
import { shallow, mount } from 'enzyme'
import { spy } from 'sinon'
import toJson from 'enzyme-to-json'
import DropdownTreeSelect from './index'
import { clientIdGenerator } from './utils'
const dropdownId = 'rdts'
const action = {
id: 'NOT',
title: 'NOT',
className: 'fa fa-ban',
}
const node0 = {
_id: `${dropdownId}-0`,
_children: [`${dropdownId}-0-0`, `${dropdownId}-0-1`],
_depth: 0,
label: 'item1',
value: 'value1',
children: undefined,
actions: [action],
}
test.beforeEach(t => {
t.context.tree = [
{
label: 'item1',
value: 'value1',
children: [
{
label: 'item1-1',
value: 'value1-1',
children: [{ label: 'item1-1-1', value: 'value1-1-1' }, { label: 'item1-1-2', value: 'value1-1-2' }],
},
{ label: 'item1-2', value: 'value1-2' },
],
actions: [action],
},
{
label: 'item2',
value: 'value2',
children: [
{
label: 'item2-1',
value: 'value2-1',
children: [
{ label: 'item2-1-1', value: 'value2-1-1' },
{ label: 'item2-1-2', value: 'value2-1-2' },
{
label: 'item2-1-3',
value: 'value2-1-3',
children: [{ label: 'item2-1-3-1', value: 'value2-1-3-1' }],
},
],
},
{ label: 'item2-2', value: 'value2-2' },
],
},
]
})
test('renders default state', t => {
const { tree } = t.context
const wrapper = mount(<DropdownTreeSelect id={dropdownId} data={tree} />)
t.snapshot(toJson(wrapper))
})
test('renders default radio select state', t => {
const { tree } = t.context
const wrapper = mount(<DropdownTreeSelect id={dropdownId} data={tree} mode="radioSelect" />)
t.snapshot(toJson(wrapper))
})
test('shows dropdown', t => {
const { tree } = t.context
const wrapper = shallow(<DropdownTreeSelect id={dropdownId} data={tree} showDropdown="initial" />)
t.snapshot(toJson(wrapper))
})
test('always shows dropdown', t => {
const { tree } = t.context
const wrapper = shallow(<DropdownTreeSelect id={dropdownId} data={tree} showDropdown="always" />)
t.snapshot(toJson(wrapper))
})
test('always shows dropdown with inline search Input', t => {
const { tree } = t.context
const wrapper = shallow(<DropdownTreeSelect id={dropdownId} data={tree} inlineSearchInput showDropdown="always" />)
t.snapshot(toJson(wrapper))
})
test('keeps dropdown open for showDropdown: always', t => {
const { tree } = t.context
const wrapper = mount(<DropdownTreeSelect id={dropdownId} data={tree} showDropdown="always" />)
wrapper.instance().handleClick()
t.true(wrapper.state().showDropdown)
})
test('notifies on action', t => {
const handler = spy()
const { tree } = t.context
const wrapper = mount(<DropdownTreeSelect id={dropdownId} data={tree} onAction={handler} showDropdown="initial" />)
wrapper.find('i.fa-ban').simulate('click')
t.true(handler.calledWithExactly(node0, action))
})
test('notifies on action without onAction handler', t => {
const handler = spy(console, 'error')
const { tree } = t.context
const wrapper = mount(<DropdownTreeSelect id={dropdownId} data={tree} showDropdown="initial" />)
wrapper.find('i.fa-ban').simulate('click')
t.true(handler.notCalled)
handler.restore()
})
test('notifies on node toggle', t => {
const handler = spy()
const { tree } = t.context
const wrapper = shallow(<DropdownTreeSelect id={dropdownId} data={tree} onNodeToggle={handler} />)
wrapper.instance().onNodeToggle(node0._id)
t.true(handler.calledWithExactly({ ...node0, expanded: true }))
})
test('notifies on checkbox change', t => {
const handler = spy()
const { tree } = t.context
const wrapper = shallow(<DropdownTreeSelect id={dropdownId} data={tree} onChange={handler} />)
wrapper.instance().onCheckboxChange(node0._id, true)
t.true(
handler.calledWithExactly({ ...node0, _focused: true, checked: true }, [
{ ...node0, _focused: true, checked: true },
])
)
})
test('notifies on tag removal', t => {
const handler = spy()
const { tree } = t.context
const wrapper = shallow(<DropdownTreeSelect id={dropdownId} data={tree} onChange={handler} />)
wrapper.instance().onTagRemove(node0._id)
t.true(handler.calledWithExactly({ ...node0, _focused: true, checked: false }, []))
})
test('sets search mode on input change', t => {
const { tree } = t.context
const wrapper = shallow(<DropdownTreeSelect data={tree} />)
wrapper.instance().onInputChange('it')
t.true(wrapper.state().searchModeOn)
})
test('hides dropdown onChange for simpleSelect', t => {
const { tree } = t.context
const wrapper = mount(<DropdownTreeSelect id={dropdownId} showDropdown="initial" data={tree} mode="simpleSelect" />)
wrapper.instance().onCheckboxChange(node0._id, true)
t.false(wrapper.state().searchModeOn)
t.false(wrapper.state().allNodesHidden)
t.false(wrapper.state().showDropdown)
})
test('keeps dropdown open onChange for simpleSelect and keepOpenOnSelect', t => {
const { tree } = t.context
const wrapper = mount(
<DropdownTreeSelect id={dropdownId} data={tree} showDropdown="initial" mode="simpleSelect" keepOpenOnSelect />
)
wrapper.instance().onCheckboxChange(node0._id, true)
t.true(wrapper.state().showDropdown)
})
test('clears input onChange for clearSearchOnChange', t => {
const { tree } = t.context
const wrapper = mount(<DropdownTreeSelect id={dropdownId} data={tree} clearSearchOnChange />)
wrapper.instance().onInputChange('it')
wrapper.instance().onCheckboxChange(node0._id, true)
t.false(wrapper.state().searchModeOn)
t.false(wrapper.state().allNodesHidden)
})
test('toggles dropdown', t => {
const { tree } = t.context
const wrapper = mount(<DropdownTreeSelect data={tree} />)
wrapper.instance().handleClick()
t.true(wrapper.state().showDropdown)
wrapper.instance().handleClick()
t.false(wrapper.state().showDropdown)
})
test('keeps dropdown open on props update', t => {
const { tree } = t.context
const wrapper = mount(<DropdownTreeSelect data={tree} />)
wrapper.instance().handleClick()
t.true(wrapper.state().showDropdown)
wrapper.setProps({ data: tree })
t.true(wrapper.state().showDropdown)
})
test('opens dropdown on props update with show intention', t => {
const { tree } = t.context
const wrapper = mount(<DropdownTreeSelect data={tree} />)
t.false(wrapper.state().showDropdown)
wrapper.setProps({ data: tree, showDropdown: 'initial' })
t.true(wrapper.state().showDropdown)
wrapper.instance().handleClick()
t.false(wrapper.state().showDropdown)
wrapper.setProps({ data: tree, showDropdown: 'always' })
wrapper.instance().handleClick()
t.true(wrapper.state().showDropdown)
})
test('sets unique ids on dropdowns', t => {
const { tree } = t.context
clientIdGenerator.reset()
const wrapper1 = mount(<DropdownTreeSelect data={tree} />)
const wrapper2 = mount(<DropdownTreeSelect data={tree} />)
t.regex(wrapper1.getDOMNode().id, /^rdts\d+$/)
t.regex(wrapper2.getDOMNode().id, /^rdts\d+$/)
t.notDeepEqual(wrapper1.getDOMNode().id, wrapper2.getDOMNode().id)
})
test("doesn't toggle dropdown if it's disabled", t => {
const { tree } = t.context
const wrapper = shallow(<DropdownTreeSelect id={dropdownId} data={tree} disabled />)
t.snapshot(toJson(wrapper))
})
test('keeps dropdown active on focus', t => {
const { tree } = t.context
const wrapper = shallow(<DropdownTreeSelect data={tree} />)
wrapper.instance().onInputFocus()
t.true(wrapper.instance().keepDropdownActive)
})
test('deactivates dropdown active on blur', t => {
const { tree } = t.context
const wrapper = shallow(<DropdownTreeSelect data={tree} />)
wrapper.instance().onInputBlur()
t.false(wrapper.instance().keepDropdownActive)
})
test('detects click outside', t => {
const { tree } = t.context
const wrapper = mount(<DropdownTreeSelect data={tree} />)
const handleOutsideClick = spy(wrapper.instance(), 'handleOutsideClick')
wrapper.instance().handleClick()
t.true(wrapper.state().showDropdown)
const event = new MouseEvent('click', { bubbles: true, cancelable: true })
global.document.dispatchEvent(event)
t.true(handleOutsideClick.calledOnce)
t.false(wrapper.state().showDropdown)
})
test('detects click inside', t => {
const { tree } = t.context
const wrapper = mount(<DropdownTreeSelect data={tree} />)
wrapper.instance().handleClick()
t.true(wrapper.state().showDropdown)
const checkboxItem = wrapper.getDOMNode().getElementsByClassName('checkbox-item')[0]
const event = new MouseEvent('click', {
view: window,
bubbles: true,
cancelable: true,
target: checkboxItem,
})
Object.defineProperty(event, 'target', { value: checkboxItem, enumerable: true })
wrapper.instance().handleOutsideClick(event)
t.true(wrapper.state().showDropdown)
})
test('detects click outside when other dropdown instance', t => {
const { tree } = t.context
const wrapper1 = mount(<DropdownTreeSelect data={tree} />)
const wrapper2 = mount(<DropdownTreeSelect data={tree} />)
wrapper1.instance().handleClick()
t.true(wrapper1.state().showDropdown)
const searchInput = wrapper2.getDOMNode().getElementsByClassName('search')[0]
const event = new MouseEvent('click', {
view: window,
bubbles: true,
cancelable: true,
target: searchInput,
})
Object.defineProperty(event, 'target', { value: searchInput, enumerable: true })
wrapper1.instance().handleOutsideClick(event)
t.false(wrapper1.state().showDropdown)
})
test('adds aria-labelledby when label contains # to search input', t => {
const { tree } = t.context
const wrapper = mount(<DropdownTreeSelect data={tree} texts={{ label: '#hello #world' }} />)
t.deepEqual(wrapper.find('.search').prop('aria-labelledby'), 'hello world')
t.deepEqual(wrapper.find('.search').prop('aria-label'), undefined)
})
test('adds aria-label when having label on search input', t => {
const { tree } = t.context
const wrapper = mount(<DropdownTreeSelect data={tree} texts={{ label: 'hello world' }} />)
t.deepEqual(wrapper.find('.search').prop('aria-labelledby'), undefined)
t.deepEqual(wrapper.find('.search').prop('aria-label'), 'hello world')
})
test('appends selected tags to aria-labelledby with provided aria-labelledby', t => {
const { tree } = t.context
tree[0].checked = true
const wrapper = mount(<DropdownTreeSelect id="rdts" data={tree} texts={{ label: '#hello #world' }} />)
t.deepEqual(wrapper.find('.dropdown-trigger').prop('aria-labelledby'), 'hello world rdts-0_tag')
t.deepEqual(wrapper.find('.dropdown-trigger').prop('aria-label'), undefined)
})
test('appends selected tags to aria-labelledby with text label', t => {
const { tree } = t.context
tree[0].checked = true
const wrapper = mount(<DropdownTreeSelect id="rdts" data={tree} texts={{ label: 'hello world' }} />)
t.deepEqual(wrapper.find('.dropdown-trigger').prop('aria-labelledby'), 'rdts_trigger rdts-0_tag')
t.deepEqual(wrapper.find('.dropdown-trigger').prop('aria-label'), 'hello world')
})
test('default tabIndex value is 0', t => {
const { tree } = t.context
tree[0].checked = true
const wrapper = mount(<DropdownTreeSelect id="rdts" data={tree} />)
t.deepEqual(wrapper.find('.dropdown-trigger').prop('tabIndex'), 0)
})
test('set tabIndex value', t => {
const { tree } = t.context
tree[0].checked = true
const wrapper = mount(<DropdownTreeSelect id="rdts" data={tree} tabIndex={5} />)
t.deepEqual(wrapper.find('.dropdown-trigger').prop('tabIndex'), 5)
})
test('select correct focused node when using external state data container', t => {
let data = [
{
label: 'All data',
value: '0',
checked: false,
},
{
label: 'iWay',
value: '1',
checked: false,
},
]
const wrapper = mount(<DropdownTreeSelect id={dropdownId} data={data} />)
const nodeAllData = {
_id: `${dropdownId}-0`,
_depth: 0,
label: 'All data',
value: '0',
children: undefined,
actions: [action],
}
wrapper.instance().onCheckboxChange(nodeAllData._id, true)
//simulate external change to the data props.
wrapper.setProps({
data: [
{
label: 'All data',
value: '0',
checked: true,
},
{
label: 'iWay',
value: '1',
checked: false,
},
],
})
t.deepEqual(wrapper.state().currentFocus, nodeAllData._id)
})
test('should not scroll on select', t => {
const node = (id, label) => ({ id, label, value: label })
const largeTree = [...Array(150).keys()].map(i => node(`id${i}`, `label${i}`))
const wrapper = mount(<DropdownTreeSelect data={largeTree} showDropdown="initial" />)
const { scrollTop } = wrapper.find('.dropdown-content').getDOMNode()
t.deepEqual(scrollTop, 0)
const checkboxes = wrapper.find('.checkbox-item')
checkboxes.at(140).simulate('click')
t.deepEqual(scrollTop, 0)
})