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
|
/*
* Copyright (c) Jupyter Development Team.
* Distributed under the terms of the Modified BSD License.
*/
import { HoverBox } from '@jupyterlab/ui-components';
function createDomRect(options: {
x: number;
y: number;
width: number;
height: number;
}): DOMRect {
return {
...options,
bottom: options.x + options.height,
top: options.y,
left: options.x,
right: options.x + options.width,
toJSON: () => 'DummyDOMRect'
};
}
function createPointAnchor(options: { x: number; y: number }): DOMRect {
return createDomRect({ ...options, width: 0, height: 0 });
}
describe('@jupyterlab/ui-components', () => {
describe('HoverBox.setGeometry()', () => {
let host: HTMLElement;
let node: HTMLElement;
let anchor: DOMRect;
let defaults: () => {
host: HTMLElement;
node: HTMLElement;
anchor: DOMRect;
maxHeight: number;
minHeight: number;
};
beforeEach(() => {
host = document.createElement('div');
node = document.createElement('div');
window.innerHeight = 100;
window.innerWidth = 100;
anchor = createPointAnchor({
x: 50,
y: 50
});
defaults = () => {
return { host, anchor, node, maxHeight: 100, minHeight: 1 };
};
jest.spyOn(host, 'getBoundingClientRect').mockReturnValue(
createDomRect({
x: 20,
y: 20,
width: 60, // right = 80
height: 60 // bottom = 80
})
);
});
it('should position node next to the anchor', () => {
jest.spyOn(node, 'getBoundingClientRect').mockImplementation(() => {
return createDomRect({
x: parseInt(node.style.left, 10),
y: parseInt(node.style.top, 10),
width: 10,
height: 0
});
});
HoverBox.setGeometry(defaults());
expect(node.style.left).toBe('50px');
expect(node.style.top).toBe('50px');
});
it('should position node within the window', () => {
// anchor position (50) + node width width (60) exceeds window width (100)
jest.spyOn(node, 'getBoundingClientRect').mockImplementation(() => {
return createDomRect({
x: parseInt(node.style.left, 10),
y: parseInt(node.style.top, 10),
width: 60,
height: 1
});
});
HoverBox.setGeometry(defaults());
expect(node.style.left).toBe('40px');
});
describe('outOfViewDisplay = `stick-outside`', () => {
it('should keep the left edge of the node within the host', () => {
jest.spyOn(node, 'getBoundingClientRect').mockImplementation(() => {
return createDomRect({
x: parseInt(node.style.left, 10),
y: parseInt(node.style.top, 10),
width: 10,
height: 0
});
});
anchor = createPointAnchor({
x: 70,
y: 50
});
HoverBox.setGeometry({
...defaults(),
outOfViewDisplay: {
right: 'stick-outside'
}
});
expect(node.style.left).toBe('70px');
anchor = createPointAnchor({
x: 85,
y: 50
});
HoverBox.setGeometry({
...defaults(),
outOfViewDisplay: {
right: 'stick-outside'
}
});
expect(node.style.left).toBe('80px');
});
});
describe('outOfViewDisplay = `stick-inside`', () => {
it('should keep the right edge of the node within the host', () => {
jest.spyOn(node, 'getBoundingClientRect').mockImplementation(() => {
return createDomRect({
x: parseInt(node.style.left, 10),
y: parseInt(node.style.top, 10),
width: 10,
height: 0
});
});
anchor = createPointAnchor({
x: 85,
y: 50
});
HoverBox.setGeometry({
...defaults(),
outOfViewDisplay: {
right: 'stick-inside'
}
});
// host right edge (80px) - node width (10px)
expect(node.style.left).toBe('70px');
});
it('should also work when adjusting for window right edge', () => {
// anchor position (50) + node width width (60) exceeds window right edge (100)
jest.spyOn(node, 'getBoundingClientRect').mockImplementation(() => {
return createDomRect({
x: parseInt(node.style.left, 10),
y: parseInt(node.style.top, 10),
width: 60,
height: 1
});
});
HoverBox.setGeometry({
...defaults(),
outOfViewDisplay: {
right: 'stick-inside'
}
});
// host right edge (80px) - node width (60px)
expect(node.style.left).toBe('20px');
});
it('should keep the left edge of the node within the host', () => {
jest.spyOn(node, 'getBoundingClientRect').mockImplementation(() => {
return createDomRect({
x: parseInt(node.style.left, 10),
y: parseInt(node.style.top, 10),
width: 10,
height: 0
});
});
anchor = createPointAnchor({
x: 15,
y: 50
});
HoverBox.setGeometry({
...defaults(),
outOfViewDisplay: {
left: 'stick-inside'
}
});
// host left edge (20px)
expect(node.style.left).toBe('20px');
});
it('should also work when adjusting for window left edge', () => {
anchor = createPointAnchor({
x: -60,
y: 50
});
// anchor position (-60) + node width width (30) exceeds window left edge (0)
jest.spyOn(node, 'getBoundingClientRect').mockImplementation(() => {
return createDomRect({
x: parseInt(node.style.left, 10),
y: parseInt(node.style.top, 10),
width: 30,
height: 1
});
});
HoverBox.setGeometry({
...defaults(),
outOfViewDisplay: {
left: 'stick-inside'
}
});
// host left edge (20px)
expect(node.style.left).toBe('20px');
});
});
});
});
|