playbook_ui 14.16.0.pre.alpha.play1881removelodash6986 → 14.16.0.pre.alpha.play1957inlinedatepickericonbugfix6872
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.
- checksums.yaml +4 -4
- data/app/pb_kits/playbook/pb_advanced_table/_advanced_table.tsx +84 -86
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_pagination.jsx +1 -0
- data/app/pb_kits/playbook/pb_button/_button.scss +5 -5
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_autocomplete.jsx +6 -6
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_autocomplete_and_custom_display.jsx +6 -6
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_display.jsx +6 -6
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_display_rails.html.erb +8 -8
- data/app/pb_kits/playbook/pb_filter/Filter/CurrentFilters.tsx +4 -3
- data/app/pb_kits/playbook/pb_filter/Filter/SortMenu.tsx +3 -2
- data/app/pb_kits/playbook/pb_form/pb_form_validation.js +1 -1
- data/app/pb_kits/playbook/pb_lightbox/hooks/useVisibility.js +1 -1
- data/app/pb_kits/playbook/pb_multi_level_select/_multi_level_select.tsx +1 -2
- data/app/pb_kits/playbook/pb_rich_text_editor/_rich_text_editor.tsx +11 -29
- data/app/pb_kits/playbook/pb_rich_text_editor/docs/_rich_text_editor_default.html.erb +1 -1
- data/app/pb_kits/playbook/pb_rich_text_editor/rich_text_editor.html.erb +4 -4
- data/app/pb_kits/playbook/pb_rich_text_editor/rich_text_editor.rb +0 -2
- data/app/pb_kits/playbook/pb_table/_table.tsx +0 -4
- data/app/pb_kits/playbook/pb_table/docs/example.yml +0 -2
- data/app/pb_kits/playbook/pb_table/docs/index.js +0 -2
- data/app/pb_kits/playbook/pb_table/styles/_headers.scss +0 -76
- data/app/pb_kits/playbook/pb_table/styles/_striped.scss +3 -3
- data/app/pb_kits/playbook/pb_table/subcomponents/_table_head.tsx +1 -11
- data/app/pb_kits/playbook/pb_table/subcomponents/_table_header.tsx +1 -11
- data/app/pb_kits/playbook/pb_table/subcomponents/_table_row.tsx +0 -5
- data/app/pb_kits/playbook/pb_table/table.test.js +0 -17
- data/app/pb_kits/playbook/pb_tooltip/floating_ui.js +282 -0
- data/app/pb_kits/playbook/pb_tooltip/index.js +56 -183
- data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_with_highlight.jsx +4 -4
- data/app/pb_kits/playbook/pb_typeahead/index.ts +2 -2
- data/app/pb_kits/playbook/utilities/globalProps.ts +1 -1
- data/app/pb_kits/playbook/utilities/object.test.js +1 -149
- data/app/pb_kits/playbook/utilities/object.ts +42 -124
- data/dist/chunks/_typeahead-BniHPQq8.js +22 -0
- data/dist/chunks/_weekday_stacked-CuaFaMk8.js +45 -0
- data/dist/chunks/lib-UIelzz2O.js +29 -0
- data/dist/chunks/{pb_form_validation-BvNy9Bd6.js → pb_form_validation-EUv1tqtI.js} +1 -1
- data/dist/chunks/vendor.js +1 -1
- data/dist/playbook-doc.js +1 -1
- data/dist/playbook-rails-react-bindings.js +1 -1
- data/dist/playbook-rails.js +1 -1
- data/dist/playbook.css +1 -1
- data/lib/playbook/version.rb +1 -1
- metadata +7 -10
- data/app/pb_kits/playbook/pb_table/docs/_table_with_header_style_borderless.jsx +0 -50
- data/app/pb_kits/playbook/pb_table/docs/_table_with_header_style_borderless_react.md +0 -1
- data/app/pb_kits/playbook/pb_table/docs/_table_with_header_style_floating.jsx +0 -59
- data/app/pb_kits/playbook/pb_table/docs/_table_with_header_style_floating_react.md +0 -1
- data/dist/chunks/_typeahead-Djo6qCne.js +0 -22
- data/dist/chunks/_weekday_stacked-DIIHW0OV.js +0 -45
- data/dist/chunks/lib-BGzBzFZX.js +0 -29
@@ -1,26 +1,22 @@
|
|
1
1
|
import PbEnhancedElement from '../pb_enhanced_element'
|
2
|
-
import {
|
3
|
-
|
4
|
-
|
2
|
+
import {
|
3
|
+
createPopperLite as createPopper,
|
4
|
+
flip,
|
5
|
+
offset,
|
6
|
+
preventOverflow,
|
7
|
+
} from '@popperjs/core'
|
8
|
+
|
9
|
+
const TOOLTIP_OFFSET = [0, 20]
|
5
10
|
const TOOLTIP_TIMEOUT = 250
|
6
|
-
const SAFE_ZONE_MARGIN = 1
|
7
11
|
|
8
12
|
export default class PbTooltip extends PbEnhancedElement {
|
9
13
|
static get selector() {
|
10
|
-
return '[data-pb-tooltip-kit]'
|
14
|
+
return '[data-pb-tooltip-kit="true"][data-pb-tooltip-interaction="false"]:not([data-pb-tooltip-delay-open]):not([data-pb-tooltip-delay-close])'
|
11
15
|
}
|
12
16
|
|
13
17
|
connect() {
|
14
|
-
if (this.tooltipInteraction) {
|
15
|
-
document.addEventListener('mousemove', (e) => {
|
16
|
-
this.lastMouseX = e.clientX
|
17
|
-
this.lastMouseY = e.clientY
|
18
|
-
})
|
19
|
-
}
|
20
|
-
|
21
18
|
this.triggerElements.forEach((trigger) => {
|
22
19
|
const method = this.triggerMethod
|
23
|
-
const interactionEnabled = this.tooltipInteraction
|
24
20
|
|
25
21
|
if (method === 'click') {
|
26
22
|
trigger.addEventListener('click', () => {
|
@@ -28,66 +24,29 @@ export default class PbTooltip extends PbEnhancedElement {
|
|
28
24
|
})
|
29
25
|
} else {
|
30
26
|
trigger.addEventListener('mouseenter', () => {
|
31
|
-
clearSafeZoneListener(this)
|
32
|
-
clearTimeout(this.mouseleaveTimeout)
|
33
|
-
this.currentTrigger = trigger
|
34
|
-
const delayOpen = this.delayOpen ? parseInt(this.delayOpen) : TOOLTIP_TIMEOUT
|
35
27
|
this.mouseenterTimeout = setTimeout(() => {
|
36
28
|
this.showTooltip(trigger)
|
37
|
-
|
38
|
-
|
39
|
-
}
|
40
|
-
}, delayOpen)
|
41
|
-
})
|
29
|
+
this.checkCloseTooltip(trigger)
|
30
|
+
}, TOOLTIP_TIMEOUT)
|
42
31
|
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
const delayClose = parseInt(this.delayClose)
|
47
|
-
this.mouseleaveTimeout = setTimeout(() => {
|
48
|
-
if (interactionEnabled) {
|
49
|
-
this.attachSafeZoneListener()
|
50
|
-
} else {
|
51
|
-
this.hideTooltip()
|
52
|
-
}
|
53
|
-
}, delayClose)
|
54
|
-
} else {
|
55
|
-
if (interactionEnabled) {
|
56
|
-
this.attachSafeZoneListener()
|
57
|
-
} else {
|
32
|
+
trigger.addEventListener('mouseleave', () => {
|
33
|
+
clearTimeout(this.mouseenterTimeout)
|
34
|
+
setTimeout(() => {
|
58
35
|
this.hideTooltip()
|
59
|
-
}
|
60
|
-
}
|
36
|
+
}, 0)
|
37
|
+
}, { once: true })
|
61
38
|
})
|
62
39
|
|
63
|
-
|
64
|
-
this.
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
this.attachSafeZoneListener()
|
70
|
-
})
|
71
|
-
}
|
40
|
+
this.tooltip.addEventListener('mouseenter', () => {
|
41
|
+
clearTimeout(this.mouseenterTimeout)
|
42
|
+
})
|
43
|
+
this.tooltip.addEventListener('mouseleave', () => {
|
44
|
+
this.hideTooltip()
|
45
|
+
})
|
72
46
|
}
|
73
47
|
})
|
74
48
|
}
|
75
49
|
|
76
|
-
attachSafeZoneListener() {
|
77
|
-
clearSafeZoneListener(this)
|
78
|
-
this.safeZoneHandler = (e) => {
|
79
|
-
if (!this.currentTrigger) return
|
80
|
-
const triggerRect = this.currentTrigger.getBoundingClientRect()
|
81
|
-
const tooltipRect = this.tooltip.getBoundingClientRect()
|
82
|
-
const safeRect = getSafeZone(triggerRect, tooltipRect, this.position, SAFE_ZONE_MARGIN)
|
83
|
-
if (!isPointInsideRect(e.clientX, e.clientY, safeRect)) {
|
84
|
-
this.hideTooltip()
|
85
|
-
clearSafeZoneListener(this)
|
86
|
-
}
|
87
|
-
}
|
88
|
-
document.addEventListener('mousemove', this.safeZoneHandler)
|
89
|
-
}
|
90
|
-
|
91
50
|
checkCloseTooltip(trigger) {
|
92
51
|
document.querySelector('body').addEventListener('click', ({ target }) => {
|
93
52
|
const isTooltip = target.closest(`#${this.tooltipId}`) === this.tooltip
|
@@ -103,46 +62,27 @@ export default class PbTooltip extends PbEnhancedElement {
|
|
103
62
|
showTooltip(trigger) {
|
104
63
|
if (this.shouldShowTooltip === 'false') return
|
105
64
|
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
arrow({ element: arrowElement })
|
127
|
-
],
|
128
|
-
}).then(({ x, y, placement, middlewareData }) => {
|
129
|
-
Object.assign(this.tooltip.style, {
|
130
|
-
left: `${x}px`,
|
131
|
-
top: `${y}px`,
|
132
|
-
position: 'fixed'
|
133
|
-
})
|
134
|
-
this.tooltip.setAttribute('data-popper-placement', placement)
|
135
|
-
if (arrowElement && middlewareData.arrow) {
|
136
|
-
const { x: arrowX, y: arrowY } = middlewareData.arrow
|
137
|
-
Object.assign(arrowElement.style, {
|
138
|
-
left: arrowX != null ? `${arrowX}px` : '',
|
139
|
-
top: arrowY != null ? `${arrowY}px` : '',
|
140
|
-
position: 'absolute'
|
141
|
-
})
|
142
|
-
}
|
143
|
-
})
|
65
|
+
this.popper = createPopper(trigger, this.tooltip, {
|
66
|
+
placement: this.position,
|
67
|
+
strategy: 'fixed',
|
68
|
+
modifiers: [
|
69
|
+
{
|
70
|
+
name: 'offset',
|
71
|
+
options: {
|
72
|
+
offset: TOOLTIP_OFFSET,
|
73
|
+
},
|
74
|
+
},
|
75
|
+
{
|
76
|
+
name: 'arrow',
|
77
|
+
options: {
|
78
|
+
element: document.querySelector(`#${this.tooltipId}-arrow`),
|
79
|
+
},
|
80
|
+
},
|
81
|
+
offset,
|
82
|
+
preventOverflow,
|
83
|
+
flip,
|
84
|
+
],
|
144
85
|
})
|
145
|
-
|
146
86
|
this.tooltip.classList.add('show')
|
147
87
|
|
148
88
|
if (this.triggerMethod === 'click') {
|
@@ -154,50 +94,39 @@ export default class PbTooltip extends PbEnhancedElement {
|
|
154
94
|
}
|
155
95
|
|
156
96
|
hideTooltip() {
|
157
|
-
if (!this.tooltip) return
|
158
|
-
|
159
97
|
this.tooltip.classList.add('fade_out')
|
160
98
|
setTimeout(() => {
|
161
|
-
if (this.
|
162
|
-
|
163
|
-
this.cleanup = null
|
164
|
-
}
|
99
|
+
if (!this.popper) return
|
100
|
+
this.popper.destroy()
|
165
101
|
this.tooltip.classList.remove('show')
|
166
102
|
this.tooltip.classList.remove('fade_out')
|
167
|
-
this.tooltip.style.opacity = '0'
|
168
|
-
this.tooltip.style.visibility = 'hidden'
|
169
|
-
this.tooltip.style.pointerEvents = 'none'
|
170
|
-
this.tooltip.style.position = ''
|
171
|
-
this.tooltip.style.top = ''
|
172
|
-
this.tooltip.style.left = ''
|
173
|
-
this.tooltip.style.transform = ''
|
174
103
|
}, TOOLTIP_TIMEOUT)
|
175
104
|
}
|
176
105
|
|
177
106
|
get triggerElements() {
|
178
107
|
let triggerEl
|
108
|
+
|
179
109
|
if (this.triggerElementId) {
|
180
110
|
triggerEl = document.querySelector(`#${this.triggerElementId}`)
|
181
|
-
} else
|
111
|
+
} else {
|
182
112
|
const selectorIsId = this.triggerElementSelector.indexOf('#') > -1
|
183
113
|
triggerEl = selectorIsId
|
184
|
-
? document.querySelector(this.triggerElementSelector)
|
185
|
-
: document.querySelectorAll(this.triggerElementSelector)
|
186
|
-
} else {
|
187
|
-
triggerEl = this.element
|
114
|
+
? document.querySelector(`${this.triggerElementSelector}`)
|
115
|
+
: document.querySelectorAll(`${this.triggerElementSelector}`)
|
188
116
|
}
|
117
|
+
|
189
118
|
if (!triggerEl) {
|
190
|
-
console.error('Tooltip Kit:
|
119
|
+
console.error('Tooltip Kit: an invalid or unavailable DOM reference was provided!')
|
191
120
|
return []
|
192
121
|
}
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
return triggerEl
|
122
|
+
|
123
|
+
if (!triggerEl.length) triggerEl = [triggerEl]
|
124
|
+
return (this._triggerElements = this._triggerElements || triggerEl)
|
197
125
|
}
|
198
126
|
|
199
127
|
get tooltip() {
|
200
|
-
return (this._tooltip =
|
128
|
+
return (this._tooltip =
|
129
|
+
this._tooltip || this.element.querySelector(`#${this.tooltipId}`))
|
201
130
|
}
|
202
131
|
|
203
132
|
get position() {
|
@@ -223,60 +152,4 @@ export default class PbTooltip extends PbEnhancedElement {
|
|
223
152
|
get triggerMethod() {
|
224
153
|
return this.element.dataset.pbTooltipTriggerMethod || 'hover'
|
225
154
|
}
|
226
|
-
|
227
|
-
get tooltipInteraction() {
|
228
|
-
return this.element.dataset.pbTooltipInteraction === 'true'
|
229
|
-
}
|
230
|
-
|
231
|
-
get delayOpen() {
|
232
|
-
return this.element.dataset.pbTooltipDelayOpen
|
233
|
-
}
|
234
|
-
|
235
|
-
get delayClose() {
|
236
|
-
return this.element.dataset.pbTooltipDelayClose
|
237
|
-
}
|
238
|
-
}
|
239
|
-
|
240
|
-
function clearSafeZoneListener(context) {
|
241
|
-
if (context.safeZoneHandler) {
|
242
|
-
document.removeEventListener('mousemove', context.safeZoneHandler)
|
243
|
-
context.safeZoneHandler = null
|
244
|
-
}
|
245
|
-
}
|
246
|
-
|
247
|
-
function getSafeZone(triggerRect, tooltipRect, placement, margin) {
|
248
|
-
let safeRect = {}
|
249
|
-
if (placement.startsWith('top')) {
|
250
|
-
safeRect.left = triggerRect.left - margin
|
251
|
-
safeRect.right = triggerRect.right + margin
|
252
|
-
safeRect.top = tooltipRect.bottom - margin
|
253
|
-
safeRect.bottom = triggerRect.top + margin
|
254
|
-
} else if (placement.startsWith('bottom')) {
|
255
|
-
safeRect.left = triggerRect.left - margin
|
256
|
-
safeRect.right = triggerRect.right + margin
|
257
|
-
safeRect.top = triggerRect.bottom - margin
|
258
|
-
safeRect.bottom = tooltipRect.top + margin
|
259
|
-
} else if (placement.startsWith('left')) {
|
260
|
-
safeRect.top = triggerRect.top - margin
|
261
|
-
safeRect.bottom = triggerRect.bottom + margin
|
262
|
-
safeRect.left = tooltipRect.right - margin
|
263
|
-
safeRect.right = triggerRect.left + margin
|
264
|
-
} else if (placement.startsWith('right')) {
|
265
|
-
safeRect.top = triggerRect.top - margin
|
266
|
-
safeRect.bottom = triggerRect.bottom + margin
|
267
|
-
safeRect.left = triggerRect.right - margin
|
268
|
-
safeRect.right = tooltipRect.left + margin
|
269
|
-
} else {
|
270
|
-
safeRect = {
|
271
|
-
left: triggerRect.left - margin,
|
272
|
-
right: triggerRect.right + margin,
|
273
|
-
top: triggerRect.top - margin,
|
274
|
-
bottom: triggerRect.bottom + margin,
|
275
|
-
}
|
276
|
-
}
|
277
|
-
return safeRect
|
278
|
-
}
|
279
|
-
|
280
|
-
function isPointInsideRect(x, y, rect) {
|
281
|
-
return x >= rect.left && x <= rect.right && y >= rect.top && y <= rect.bottom
|
282
|
-
}
|
155
|
+
}
|
@@ -18,18 +18,18 @@ const USERS = [
|
|
18
18
|
territory: "PHL",
|
19
19
|
},
|
20
20
|
{
|
21
|
-
name: "
|
22
|
-
title: "
|
21
|
+
name: "Jason Cypret",
|
22
|
+
title: "Vice President of User Experience",
|
23
23
|
territory: "PHL",
|
24
24
|
},
|
25
25
|
{
|
26
26
|
name: "Stephen Marshall",
|
27
|
-
title: "Senior
|
27
|
+
title: "Senior User Experience Engineer",
|
28
28
|
territory: "PHL",
|
29
29
|
},
|
30
30
|
{
|
31
31
|
name: "Jasper Furniss",
|
32
|
-
title: "
|
32
|
+
title: "Senior User Experience Engineer",
|
33
33
|
territory: "PHL",
|
34
34
|
},
|
35
35
|
];
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import PbEnhancedElement from '../pb_enhanced_element'
|
2
|
-
import { debounce } from '
|
2
|
+
import { debounce } from 'lodash'
|
3
3
|
|
4
4
|
export default class PbTypeahead extends PbEnhancedElement {
|
5
5
|
_searchInput: HTMLInputElement
|
@@ -284,4 +284,4 @@ export default class PbTypeahead extends PbEnhancedElement {
|
|
284
284
|
if (visible) visibilityProperty = '1'
|
285
285
|
this.resultsLoadingIndicator.style.opacity = visibilityProperty
|
286
286
|
}
|
287
|
-
}
|
287
|
+
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { isEmpty, get, isString, uniqueId, omitBy, noop, merge, filter, find, partial
|
1
|
+
import { isEmpty, get, isString, uniqueId, omitBy, noop, merge, filter, find, partial } from './object';
|
2
2
|
|
3
3
|
describe('Lodash functions', () => {
|
4
4
|
describe('isEmpty', () => {
|
@@ -234,152 +234,4 @@ describe('Lodash functions', () => {
|
|
234
234
|
expect(joinPartial('b', 'c')).toBe('a_b_c');
|
235
235
|
});
|
236
236
|
});
|
237
|
-
|
238
|
-
describe('map', () => {
|
239
|
-
test('maps over an array with a function iteratee', () => {
|
240
|
-
const arr = [1, 2, 3];
|
241
|
-
const result = map(arr, (num) => num * 2);
|
242
|
-
expect(result).toEqual([2, 4, 6]);
|
243
|
-
});
|
244
|
-
|
245
|
-
test('maps over an array with a string iteratee', () => {
|
246
|
-
const arr = [{ value: 1 }, { value: 2 }, { value: 3 }];
|
247
|
-
const result = map(arr, 'value');
|
248
|
-
expect(result).toEqual([1, 2, 3]);
|
249
|
-
});
|
250
|
-
|
251
|
-
test('maps over an object with a function iteratee', () => {
|
252
|
-
const obj = { a: 1, b: 2, c: 3 };
|
253
|
-
const result = map(obj, (val, key) => key + val);
|
254
|
-
expect(result.sort()).toEqual(['a1', 'b2', 'c3'].sort());
|
255
|
-
});
|
256
|
-
|
257
|
-
test('maps over an object with a string iteratee', () => {
|
258
|
-
const obj = {
|
259
|
-
one: { num: 1 },
|
260
|
-
two: { num: 2 },
|
261
|
-
three: { num: 3 },
|
262
|
-
};
|
263
|
-
const result = map(obj, 'num');
|
264
|
-
expect(result.sort()).toEqual([1, 2, 3].sort());
|
265
|
-
});
|
266
|
-
|
267
|
-
test('returns original values if no iteratee provided', () => {
|
268
|
-
const arr = [1, 2, 3];
|
269
|
-
const result = map(arr);
|
270
|
-
expect(result).toEqual([1, 2, 3]);
|
271
|
-
});
|
272
|
-
});
|
273
|
-
|
274
|
-
describe('cloneDeep', () => {
|
275
|
-
test('clones primitive values', () => {
|
276
|
-
expect(cloneDeep(42)).toBe(42);
|
277
|
-
expect(cloneDeep('test')).toBe('test');
|
278
|
-
expect(cloneDeep(null)).toBe(null);
|
279
|
-
});
|
280
|
-
|
281
|
-
test('clones arrays deeply', () => {
|
282
|
-
const arr = [1, [2, 3]];
|
283
|
-
const cloned = cloneDeep(arr);
|
284
|
-
expect(cloned).toEqual(arr);
|
285
|
-
cloned[1][0] = 99;
|
286
|
-
expect(arr[1][0]).toBe(2);
|
287
|
-
});
|
288
|
-
|
289
|
-
test('clones objects deeply', () => {
|
290
|
-
const obj = { a: { b: 2 } };
|
291
|
-
const cloned = cloneDeep(obj);
|
292
|
-
expect(cloned).toEqual(obj);
|
293
|
-
cloned.a.b = 99;
|
294
|
-
expect(obj.a.b).toBe(2);
|
295
|
-
});
|
296
|
-
|
297
|
-
test('clones Date objects', () => {
|
298
|
-
const date = new Date();
|
299
|
-
const cloned = cloneDeep(date);
|
300
|
-
expect(cloned).not.toBe(date);
|
301
|
-
expect(cloned.getTime()).toBe(date.getTime());
|
302
|
-
});
|
303
|
-
|
304
|
-
test('clones RegExp objects', () => {
|
305
|
-
const regex = /test/gi;
|
306
|
-
const cloned = cloneDeep(regex);
|
307
|
-
expect(cloned).not.toBe(regex);
|
308
|
-
expect(cloned.source).toBe(regex.source);
|
309
|
-
expect(cloned.flags).toBe(regex.flags);
|
310
|
-
});
|
311
|
-
});
|
312
|
-
|
313
|
-
describe('omit', () => {
|
314
|
-
test('omits specified keys from object', () => {
|
315
|
-
const obj = { a: 1, b: 2, c: 3 };
|
316
|
-
expect(omit(obj, 'a', 'c')).toEqual({ b: 2 });
|
317
|
-
});
|
318
|
-
|
319
|
-
test('supports array of keys to omit', () => {
|
320
|
-
const obj = { a: 1, b: 2, c: 3 };
|
321
|
-
expect(omit(obj, ['b'])).toEqual({ a: 1, c: 3 });
|
322
|
-
});
|
323
|
-
|
324
|
-
test('returns empty object for null or non-object input', () => {
|
325
|
-
expect(omit(null, 'a')).toEqual({});
|
326
|
-
expect(omit("string", 'a')).toEqual({});
|
327
|
-
});
|
328
|
-
|
329
|
-
test('returns original object if no keys match', () => {
|
330
|
-
const obj = { a: 1, b: 2 };
|
331
|
-
expect(omit(obj, 'c')).toEqual({ a: 1, b: 2 });
|
332
|
-
});
|
333
|
-
});
|
334
|
-
|
335
|
-
describe('debounce', () => {
|
336
|
-
beforeEach(() => {
|
337
|
-
jest.useFakeTimers();
|
338
|
-
});
|
339
|
-
|
340
|
-
afterEach(() => {
|
341
|
-
jest.useRealTimers();
|
342
|
-
});
|
343
|
-
|
344
|
-
test('delays execution until wait time has passed', () => {
|
345
|
-
const func = jest.fn();
|
346
|
-
const debounced = debounce(func, 1000);
|
347
|
-
debounced();
|
348
|
-
expect(func).not.toHaveBeenCalled();
|
349
|
-
jest.advanceTimersByTime(500);
|
350
|
-
expect(func).not.toHaveBeenCalled();
|
351
|
-
jest.advanceTimersByTime(500);
|
352
|
-
expect(func).toHaveBeenCalledTimes(1);
|
353
|
-
});
|
354
|
-
|
355
|
-
test('calls function only once when called repeatedly', () => {
|
356
|
-
const func = jest.fn();
|
357
|
-
const debounced = debounce(func, 1000);
|
358
|
-
debounced();
|
359
|
-
debounced();
|
360
|
-
debounced();
|
361
|
-
jest.advanceTimersByTime(1000);
|
362
|
-
expect(func).toHaveBeenCalledTimes(1);
|
363
|
-
});
|
364
|
-
|
365
|
-
test('immediate option calls function on first call', () => {
|
366
|
-
const func = jest.fn();
|
367
|
-
const debounced = debounce(func, 1000, true);
|
368
|
-
debounced();
|
369
|
-
expect(func).toHaveBeenCalledTimes(1);
|
370
|
-
debounced();
|
371
|
-
debounced();
|
372
|
-
jest.advanceTimersByTime(1000);
|
373
|
-
expect(func).toHaveBeenCalledTimes(1);
|
374
|
-
});
|
375
|
-
|
376
|
-
test('subsequent call after wait period works with immediate option', () => {
|
377
|
-
const func = jest.fn();
|
378
|
-
const debounced = debounce(func, 1000, true);
|
379
|
-
debounced();
|
380
|
-
jest.advanceTimersByTime(1100);
|
381
|
-
debounced();
|
382
|
-
expect(func).toHaveBeenCalledTimes(2);
|
383
|
-
});
|
384
|
-
});
|
385
237
|
});
|