@vdegenne/highlight-manager 0.1.7 → 0.1.8
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.
- package/lib/index.d.ts +18 -4
- package/lib/index.js +17 -10
- package/lib/utils.d.ts +2 -1
- package/lib/utils.js +20 -13
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { IsInViewportPartCheck } from './utils.js';
|
|
1
2
|
interface Info {
|
|
2
3
|
elements: HTMLElement[];
|
|
3
4
|
highlightIndexStart: number;
|
|
@@ -9,7 +10,20 @@ interface Info {
|
|
|
9
10
|
highlightElement: HTMLElement | undefined;
|
|
10
11
|
highlightContent: string | undefined;
|
|
11
12
|
}
|
|
12
|
-
|
|
13
|
+
interface ScrollStrategy {
|
|
14
|
+
/**
|
|
15
|
+
* @default 'center'
|
|
16
|
+
*/
|
|
17
|
+
whenWhatPartIsHidden: IsInViewportPartCheck;
|
|
18
|
+
/**
|
|
19
|
+
* @default 'smooth'
|
|
20
|
+
*/
|
|
21
|
+
behavior: ScrollBehavior;
|
|
22
|
+
/**
|
|
23
|
+
* @default 'start'
|
|
24
|
+
*/
|
|
25
|
+
logicalPosition: ScrollLogicalPosition;
|
|
26
|
+
}
|
|
13
27
|
interface Options {
|
|
14
28
|
css: string;
|
|
15
29
|
highlightTextColor: string;
|
|
@@ -33,9 +47,9 @@ interface Options {
|
|
|
33
47
|
*/
|
|
34
48
|
applyStyleSheetTo: Document | HTMLElement | ShadowRoot;
|
|
35
49
|
/**
|
|
36
|
-
* @default
|
|
50
|
+
* @default undefined
|
|
37
51
|
*/
|
|
38
|
-
|
|
52
|
+
scrollStrategy: ScrollStrategy | undefined;
|
|
39
53
|
/**
|
|
40
54
|
* If true, will select the next visible candidate if the highlight is offscreen.
|
|
41
55
|
*
|
|
@@ -45,7 +59,7 @@ interface Options {
|
|
|
45
59
|
}
|
|
46
60
|
export declare function setGlobalBeforeHighlight(fct: () => void): void;
|
|
47
61
|
interface HighlightOptions {
|
|
48
|
-
|
|
62
|
+
scrollStrategy: ScrollStrategy | undefined;
|
|
49
63
|
}
|
|
50
64
|
export declare class HighLightManager {
|
|
51
65
|
#private;
|
package/lib/index.js
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { querySelectorAll } from 'html-vision';
|
|
2
2
|
import { isInViewport, sleep } from './utils.js';
|
|
3
|
+
const scrollStrategyDefaults = {
|
|
4
|
+
whenWhatPartIsHidden: 'center',
|
|
5
|
+
behavior: 'smooth',
|
|
6
|
+
logicalPosition: 'start',
|
|
7
|
+
};
|
|
3
8
|
const defaults = {
|
|
4
9
|
atomicSelection(_element) {
|
|
5
10
|
return true;
|
|
@@ -14,7 +19,7 @@ const defaults = {
|
|
|
14
19
|
beforeHighlight: undefined,
|
|
15
20
|
onSelectionChange: undefined,
|
|
16
21
|
applyStyleSheetTo: document,
|
|
17
|
-
|
|
22
|
+
scrollStrategy: undefined,
|
|
18
23
|
fastTravel: false,
|
|
19
24
|
};
|
|
20
25
|
// Local array of all declared highlighters for id control.
|
|
@@ -75,9 +80,7 @@ export class HighLightManager {
|
|
|
75
80
|
const els = querySelectorAll(this.selector);
|
|
76
81
|
const el = els[index];
|
|
77
82
|
if (el) {
|
|
78
|
-
this.highlight(index, index, true, false
|
|
79
|
-
scrollWhenOffscreen: 'never',
|
|
80
|
-
});
|
|
83
|
+
this.highlight(index, index, true, false);
|
|
81
84
|
wr.resolve(el);
|
|
82
85
|
this.#highlightWhenAvailablePromiseWR = undefined;
|
|
83
86
|
return;
|
|
@@ -169,7 +172,11 @@ export class HighLightManager {
|
|
|
169
172
|
}
|
|
170
173
|
// console.log(highlightIndexStart, highlightIndexEnd, start, end)
|
|
171
174
|
const _options = {
|
|
172
|
-
|
|
175
|
+
scrollStrategy: {
|
|
176
|
+
...scrollStrategyDefaults,
|
|
177
|
+
...this.#options.scrollStrategy,
|
|
178
|
+
...options?.scrollStrategy,
|
|
179
|
+
},
|
|
173
180
|
};
|
|
174
181
|
globalBeforeHighlight?.();
|
|
175
182
|
this.#options.beforeHighlight?.();
|
|
@@ -181,12 +188,12 @@ export class HighLightManager {
|
|
|
181
188
|
if (elementsToHighlight.length === 0) {
|
|
182
189
|
return false;
|
|
183
190
|
}
|
|
184
|
-
if (_options.
|
|
185
|
-
!isInViewport(elementsToHighlight[0], _options.
|
|
191
|
+
if (_options.scrollStrategy &&
|
|
192
|
+
!isInViewport(elementsToHighlight[0], _options.scrollStrategy.whenWhatPartIsHidden)) {
|
|
186
193
|
elementsToHighlight[0]?.scrollIntoView({
|
|
187
|
-
behavior:
|
|
188
|
-
block: _options.
|
|
189
|
-
inline: _options.
|
|
194
|
+
behavior: _options.scrollStrategy.behavior,
|
|
195
|
+
block: _options.scrollStrategy.logicalPosition,
|
|
196
|
+
inline: _options.scrollStrategy.logicalPosition,
|
|
190
197
|
});
|
|
191
198
|
}
|
|
192
199
|
elementsToHighlight.forEach((el) => el.setAttribute(`highlight${this.#id}`, ''));
|
package/lib/utils.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
export declare function sleep(milli?: number): Promise<unknown>;
|
|
2
|
-
export
|
|
2
|
+
export type IsInViewportPartCheck = 'top' | 'center' | 'bounding-rect' | 'bottom';
|
|
3
|
+
export declare function isInViewport(el: HTMLElement, partCheck?: IsInViewportPartCheck): boolean;
|
|
3
4
|
//# sourceMappingURL=utils.d.ts.map
|
package/lib/utils.js
CHANGED
|
@@ -1,22 +1,29 @@
|
|
|
1
1
|
export function sleep(milli = 1000) {
|
|
2
2
|
return new Promise((r) => setTimeout(r, milli));
|
|
3
3
|
}
|
|
4
|
-
|
|
5
|
-
// return (
|
|
6
|
-
// el.getBoundingClientRect().top >= 0 &&
|
|
7
|
-
// el.getBoundingClientRect().bottom <= window.innerHeight
|
|
8
|
-
// )
|
|
9
|
-
// }
|
|
10
|
-
export function isInViewport(el, onlyTop = false) {
|
|
4
|
+
export function isInViewport(el, partCheck = 'center') {
|
|
11
5
|
const rect = el.getBoundingClientRect();
|
|
12
6
|
const viewHeight = window.innerHeight || document.documentElement.clientHeight;
|
|
13
7
|
const viewWidth = window.innerWidth || document.documentElement.clientWidth;
|
|
14
|
-
|
|
15
|
-
|
|
8
|
+
switch (partCheck) {
|
|
9
|
+
case 'top':
|
|
10
|
+
return rect.top >= 0 && rect.top <= viewHeight;
|
|
11
|
+
case 'bottom':
|
|
12
|
+
return rect.bottom >= 0 && rect.bottom <= viewHeight;
|
|
13
|
+
case 'center': {
|
|
14
|
+
const centerY = rect.top + rect.height / 2;
|
|
15
|
+
const centerX = rect.left + rect.width / 2;
|
|
16
|
+
return (centerY >= 0 &&
|
|
17
|
+
centerY <= viewHeight &&
|
|
18
|
+
centerX >= 0 &&
|
|
19
|
+
centerX <= viewWidth);
|
|
20
|
+
}
|
|
21
|
+
case 'bounding-rect':
|
|
22
|
+
default:
|
|
23
|
+
return (rect.bottom > 0 &&
|
|
24
|
+
rect.right > 0 &&
|
|
25
|
+
rect.top < viewHeight &&
|
|
26
|
+
rect.left < viewWidth);
|
|
16
27
|
}
|
|
17
|
-
return (rect.bottom > 0 &&
|
|
18
|
-
rect.right > 0 &&
|
|
19
|
-
rect.top < viewHeight &&
|
|
20
|
-
rect.left < viewWidth);
|
|
21
28
|
}
|
|
22
29
|
//# sourceMappingURL=utils.js.map
|