-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathclick_outside_wrapper.test.tsx
More file actions
282 lines (230 loc) · 7.84 KB
/
click_outside_wrapper.test.tsx
File metadata and controls
282 lines (230 loc) · 7.84 KB
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
import { render, fireEvent } from "@testing-library/react";
import React from "react";
import { ClickOutsideWrapper } from "../click_outside_wrapper";
describe("ClickOutsideWrapper", () => {
let onClickOutsideMock: jest.Mock;
beforeEach(() => {
onClickOutsideMock = jest.fn();
});
afterEach(() => {
onClickOutsideMock.mockClear();
});
it("renders children correctly", () => {
const { container } = render(
<ClickOutsideWrapper onClickOutside={onClickOutsideMock}>
<div data-testid="child">Test Content</div>
</ClickOutsideWrapper>,
);
expect(container.querySelector('[data-testid="child"]')).toBeTruthy();
});
it("calls onClickOutside when clicking outside the wrapper", () => {
const { container } = render(
<div>
<ClickOutsideWrapper onClickOutside={onClickOutsideMock}>
<div data-testid="inside">Inside</div>
</ClickOutsideWrapper>
<div data-testid="outside">Outside</div>
</div>,
);
const outsideElement = container.querySelector(
'[data-testid="outside"]',
) as HTMLElement;
fireEvent.mouseDown(outsideElement);
expect(onClickOutsideMock).toHaveBeenCalledTimes(1);
});
it("does not call onClickOutside when clicking inside the wrapper", () => {
const { container } = render(
<ClickOutsideWrapper onClickOutside={onClickOutsideMock}>
<div data-testid="inside">Inside</div>
</ClickOutsideWrapper>,
);
const insideElement = container.querySelector(
'[data-testid="inside"]',
) as HTMLElement;
fireEvent.mouseDown(insideElement);
expect(onClickOutsideMock).not.toHaveBeenCalled();
});
it("applies custom className", () => {
const { container } = render(
<ClickOutsideWrapper
onClickOutside={onClickOutsideMock}
className="custom-class"
>
<div>Content</div>
</ClickOutsideWrapper>,
);
const wrapper = container.firstChild as HTMLElement;
expect(wrapper.className).toBe("custom-class");
});
it("applies custom style", () => {
const customStyle = { backgroundColor: "red", padding: "10px" };
const { container } = render(
<ClickOutsideWrapper
onClickOutside={onClickOutsideMock}
style={customStyle}
>
<div>Content</div>
</ClickOutsideWrapper>,
);
const wrapper = container.firstChild as HTMLElement;
expect(wrapper.style.backgroundColor).toBe("red");
expect(wrapper.style.padding).toBe("10px");
});
it("does not call onClickOutside when clicking on element with ignoreClass", () => {
const { container } = render(
<div>
<ClickOutsideWrapper
onClickOutside={onClickOutsideMock}
ignoreClass="ignore-me"
>
<div data-testid="inside">Inside</div>
</ClickOutsideWrapper>
<div className="ignore-me" data-testid="ignored">
Ignored
</div>
</div>,
);
const ignoredElement = container.querySelector(
'[data-testid="ignored"]',
) as HTMLElement;
fireEvent.mouseDown(ignoredElement);
expect(onClickOutsideMock).not.toHaveBeenCalled();
});
it("calls onClickOutside when clicking on element without ignoreClass", () => {
const { container } = render(
<div>
<ClickOutsideWrapper
onClickOutside={onClickOutsideMock}
ignoreClass="ignore-me"
>
<div data-testid="inside">Inside</div>
</ClickOutsideWrapper>
<div className="not-ignored" data-testid="not-ignored">
Not Ignored
</div>
</div>,
);
const notIgnoredElement = container.querySelector(
'[data-testid="not-ignored"]',
) as HTMLElement;
fireEvent.mouseDown(notIgnoredElement);
expect(onClickOutsideMock).toHaveBeenCalledTimes(1);
});
it("uses containerRef when provided", () => {
const containerRef = React.createRef<HTMLDivElement>();
render(
<ClickOutsideWrapper
onClickOutside={onClickOutsideMock}
containerRef={containerRef}
>
<div>Content</div>
</ClickOutsideWrapper>,
);
expect(containerRef.current).toBeTruthy();
expect(containerRef.current?.tagName).toBe("DIV");
});
it("handles composedPath events (e.g. shadow DOM)", () => {
render(
<div>
<ClickOutsideWrapper onClickOutside={onClickOutsideMock}>
<div data-testid="inside">Inside</div>
</ClickOutsideWrapper>
</div>,
);
const outsideNode = document.createElement("div");
document.body.appendChild(outsideNode);
const event = new MouseEvent("mousedown", {
bubbles: true,
composed: true,
});
Object.defineProperty(event, "composed", { value: true });
Object.defineProperty(event, "composedPath", {
value: () => [outsideNode, document.body],
});
outsideNode.dispatchEvent(event);
expect(onClickOutsideMock).toHaveBeenCalled();
document.body.removeChild(outsideNode);
});
it("cleans up event listener on unmount", () => {
const removeEventListenerSpy = jest.spyOn(document, "removeEventListener");
const { unmount } = render(
<ClickOutsideWrapper onClickOutside={onClickOutsideMock}>
<div>Content</div>
</ClickOutsideWrapper>,
);
unmount();
expect(removeEventListenerSpy).toHaveBeenCalledWith(
"mousedown",
expect.any(Function),
);
removeEventListenerSpy.mockRestore();
});
it("invokes handler registered on document with composedPath target", () => {
const addEventListenerSpy = jest.spyOn(document, "addEventListener");
const removeEventListenerSpy = jest.spyOn(document, "removeEventListener");
const { unmount } = render(
<ClickOutsideWrapper onClickOutside={onClickOutsideMock}>
<div>Inside</div>
</ClickOutsideWrapper>,
);
const handlerEntry = addEventListenerSpy.mock.calls.find(
([type]) => type === "mousedown",
);
const handler = handlerEntry?.[1] as EventListener;
const outsideNode = document.createElement("div");
const mockEvent = {
composed: true,
composedPath: () => [outsideNode],
target: outsideNode,
} as unknown as MouseEvent;
handler(mockEvent);
expect(onClickOutsideMock).toHaveBeenCalledTimes(1);
unmount();
addEventListenerSpy.mockRestore();
removeEventListenerSpy.mockRestore();
});
it("falls back to event.target when composedPath does not return nodes", () => {
const addEventListenerSpy = jest.spyOn(document, "addEventListener");
render(
<ClickOutsideWrapper onClickOutside={onClickOutsideMock}>
<div>Inside</div>
</ClickOutsideWrapper>,
);
const handlerEntry = addEventListenerSpy.mock.calls.find(
([type]) => type === "mousedown",
);
const handler = handlerEntry?.[1] as EventListener;
const outsideNode = document.createElement("div");
const mockEvent = {
composed: true,
composedPath: () => [{}],
target: outsideNode,
} as unknown as MouseEvent;
handler(mockEvent);
expect(onClickOutsideMock).toHaveBeenCalledTimes(1);
addEventListenerSpy.mockRestore();
});
it("does not treat non-Element targets as ignored elements", () => {
const addEventListenerSpy = jest.spyOn(document, "addEventListener");
render(
<ClickOutsideWrapper
onClickOutside={onClickOutsideMock}
ignoreClass="ignore-me"
>
<div>Inside</div>
</ClickOutsideWrapper>,
);
const handlerEntry = addEventListenerSpy.mock.calls.find(
([type]) => type === "mousedown",
);
const handler = handlerEntry?.[1] as EventListener;
const textNode = document.createTextNode("outside");
const mockEvent = {
composed: false,
target: textNode,
} as unknown as MouseEvent;
handler(mockEvent);
expect(onClickOutsideMock).toHaveBeenCalledTimes(1);
addEventListenerSpy.mockRestore();
});
});