forked from floating-ui/floating-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-popper.js
More file actions
248 lines (197 loc) · 8.19 KB
/
Copy pathtest-popper.js
File metadata and controls
248 lines (197 loc) · 8.19 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
describe('Popper.js', function() {
// define modules paths
require.config({
paths: {
popper: 'base/src/popper'
}
});
var TestPopper;
it('loads the AMD module', function(done) {
require(['popper'], function(Popper) {
TestPopper = Popper;
expect(Popper).toBeDefined();
done();
});
});
it('can access the AMD module to create a new instance', function() {
// append popper element
var popper = document.createElement('div');
popper.style.width = '100px';
popper.style.height = '100px';
jasmineWrapper.appendChild(popper);
// append trigger element
var trigger = document.createElement('div');
jasmineWrapper.appendChild(trigger);
// initialize new popper instance
var pop = new TestPopper(trigger, popper);
expect(pop).toBeDefined();
});
it('inits a bottom popper', function() {
var reference = appendNewRef(1);
var popper = appendNewPopper(2);
var pop = new TestPopper(reference, popper);
var top = popper.getBoundingClientRect().top;
expect(top).toBeApprox(51);
pop.destroy();
});
it('inits a right popper', function() {
var reference = appendNewRef(1);
var popper = appendNewPopper(2);
var pop = new TestPopper(reference, popper, {
placement: 'right'
});
var left = popper.getBoundingClientRect().left;
var local = 92;
var ci = 110;
expect([local, ci]).toContain(left);
pop.destroy();
});
it('inits a popper inside a scrolling div, contained in a relative div', function() {
var relative = document.createElement('div');
relative.style.height = '800px';
relative.style.width = '800px';
jasmineWrapper.appendChild(relative);
var scrolling = document.createElement('div');
scrolling.style.width = '800px';
scrolling.style.height = '800px';
scrolling.style.overflow = 'auto';
relative.appendChild(scrolling);
var superHigh = document.createElement('div');
superHigh.style.width = '800px';
superHigh.style.height = '1600px';
scrolling.appendChild(superHigh);
var ref = appendNewRef(1, 'ref', superHigh);
var popper = appendNewPopper(2, 'popper', superHigh);
scrolling.scrollTop = 500;
var pop = new TestPopper(ref, popper);
var top = popper.getBoundingClientRect().top;
expect(top).toBeApprox(-449);
pop.destroy();
});
it('inits a popper inside a body, with its reference element inside a relative div', function() {
var relative = document.createElement('div');
relative.style.position = 'relative';
relative.style.margin = '20px';
jasmineWrapper.appendChild(relative);
var ref = appendNewRef(1, 'ref', relative);
var popper = appendNewPopper(2, 'popper');
new TestPopper(ref, popper).onCreate(function(pop) {
expect(popper.getBoundingClientRect().top).toBeApprox(63);
expect(popper.getBoundingClientRect().left).toBeApprox(5);
pop.destroy();
});
});
it('inits a popper inside a scrolled body, with its reference element inside a relative div', function() {
var relative = document.createElement('div');
relative.style.position = 'relative';
relative.style.margin = '20px';
relative.style.height = '300vh';
jasmineWrapper.appendChild(relative);
document.body.scrollTop = 800;
var ref = appendNewRef(1, 'ref', relative);
ref.style.marginTop = '200px';
var popper = appendNewPopper(2, 'popper');
new TestPopper(ref, popper).onCreate(function(pop) {
expect(popper.getBoundingClientRect().top).toBeApprox(-800 + 263);
expect(popper.getBoundingClientRect().left).toBeApprox(5);
pop.destroy();
});
});
it('inits a popper inside a scrolled body, with its reference element inside a scrolling div, wrapped in a relative div', function() {
var relative = document.createElement('div');
relative.style.position = 'relative';
relative.style.margin = '20px';
relative.style.height = '200vh';
jasmineWrapper.appendChild(relative);
document.body.scrollTop = 800;
var scrolling = document.createElement('div');
scrolling.style.width = '800px';
scrolling.style.height = '800px';
scrolling.style.overflow = 'auto';
relative.appendChild(scrolling);
var superHigh = document.createElement('div');
superHigh.style.width = '800px';
superHigh.style.height = '1600px';
scrolling.appendChild(superHigh);
scrolling.scrollTop = 500;
var ref = appendNewRef(1, 'ref', scrolling);
ref.style.marginTop = '200px';
var popper = appendNewPopper(2, 'popper');
new TestPopper(ref, popper).onCreate(function(pop) {
// force redraw
window.dispatchEvent(new Event('resize'));
expect(popper.getBoundingClientRect().top).toBeApprox(ref.getBoundingClientRect().bottom + 5);
expect(popper.getBoundingClientRect().left).toBeApprox(5);
pop.destroy();
});
});
it('inits a popper near a reference element, both inside a fixed element, inside a scrolled body', function(done) {
var fixed = document.createElement('div');
fixed.style.position = 'fixed';
fixed.style.margin = '20px';
fixed.style.height = '50px';
fixed.style.width = '100%';
jasmineWrapper.appendChild(fixed);
var relative = document.createElement('div');
relative.style.position = 'relative';
relative.style.margin = '20px';
relative.style.height = '200vh';
jasmineWrapper.appendChild(relative);
document.body.scrollTop = 800;
var ref = appendNewRef(1, 'ref', fixed);
var popper = appendNewPopper(2, 'popper', fixed);
new TestPopper(ref, popper).onCreate(function(pop) {
// force redraw
window.dispatchEvent(new Event('resize'));
expect(popper.getBoundingClientRect().top).toBeApprox(83);
expect(popper.getBoundingClientRect().left).toBeApprox(5);
pop.destroy();
done();
});
});
it('inits a popper and destroy it using its callback', function(done) {
var reference = appendNewRef(1);
var popper = appendNewPopper(2);
new TestPopper(reference, popper).onCreate(function(pop) {
pop.destroy();
expect(popper.style.top).toBe('');
done();
});
});
it('creates a popper using the default configuration', function(done) {
var reference = appendNewRef(1);
new TestPopper(reference).onCreate(function(instance) {
expect(document.querySelectorAll('.popper').length).toBe(1);
document.body.removeChild(instance._popper);
done();
});
});
it('creates a popper using a custom configuration', function(done) {
var reference = appendNewRef(1);
new TestPopper(reference, {
content: 'something'
}).onCreate(function(instance) {
expect(instance._popper.innerText).toBe('something');
document.body.removeChild(instance._popper);
done();
});
});
it('creates a popper and sets an onUpdate callback', function(done) {
var reference = appendNewRef(1);
new TestPopper(reference, {content: 'react'}, {
modifiersIgnored: ['applyStyle']
}).onUpdate(function(data) {
expect(data.offsets.popper.top).toBeApprox(46);
done();
});
});
it('creates a popper when content is undefined', function(done) {
var reference = appendNewRef(1);
new TestPopper(reference).onCreate(function(instance) {
expect(instance._popper).toBeDefined();
expect(instance._popper.innerText).toBe('');
document.body.removeChild(instance._popper);
done();
});
});
});