File size: 7,557 Bytes
2dd779d |
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 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 |
import type { MaybeGetter } from "$lib/types.js";
import { AnimationFrames, useDebounce, useEventListener } from "runed";
import { onMount } from "svelte";
import { extract } from "./extract.svelte.js";
import { noop } from "$lib/utils/noop.js";
export interface ScrollStateOptions {
/**
* The target element.
*/
element: MaybeGetter<HTMLElement | Window | Document | null | undefined>;
// /**
// * Throttle time for scroll event, it’s disabled by default.
// *
// * @default 0
// */
// throttle?: MaybeGetter<number | undefined>;
/**
* The check time when scrolling ends.
* This configuration will be setting to (throttle + idle) when the `throttle` is configured.
*
* @default 200
*/
idle?: MaybeGetter<number | undefined>;
/**
* Offset arrived states by x pixels
*
*/
offset?: MaybeGetter<
| {
left?: number;
right?: number;
top?: number;
bottom?: number;
}
| undefined
>;
/**
* Trigger it when scrolling.
*
*/
onScroll?: (e: Event) => void;
/**
* Trigger it when scrolling ends.
*
*/
onStop?: (e: Event) => void;
/**
* Listener options for scroll event.
*
* @default {capture: false, passive: true}
*/
eventListenerOptions?: AddEventListenerOptions;
/**
* Optionally specify a scroll behavior of `auto` (default, not smooth scrolling) or
* `smooth` (for smooth scrolling) which takes effect when changing the `x` or `y` refs.
*
* @default 'auto'
*/
behavior?: MaybeGetter<ScrollBehavior | undefined>;
/**
* On error callback
*
* Default log error to `console.error`
*/
onError?: (error: unknown) => void;
}
/**
* We have to check if the scroll amount is close enough to some threshold in order to
* more accurately calculate arrivedState. This is because scrollTop/scrollLeft are non-rounded
* numbers, while scrollHeight/scrollWidth and clientHeight/clientWidth are rounded.
* https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollHeight#determine_if_an_element_has_been_totally_scrolled
*/
const ARRIVED_STATE_THRESHOLD_PIXELS = 1;
/**
* Reactive scroll.
*
* @see https://vueuse.org/useScroll for the inspiration behind this utility.
* @param element
* @param options
*/
export class ScrollState {
#options!: ScrollStateOptions;
element = $derived(extract(this.#options.element));
// throttle = $derived(extract(this.#options.throttle, 0));
idle = $derived(extract(this.#options.idle, 200));
offset = $derived(
extract(this.#options.offset, {
left: 0,
right: 0,
top: 0,
bottom: 0,
})
);
onScroll = $derived(this.#options.onScroll ?? noop);
onStop = $derived(this.#options.onStop ?? noop);
eventListenerOptions = $derived(
this.#options.eventListenerOptions ?? {
capture: false,
passive: true,
}
);
behavior = $derived(extract(this.#options.behavior, "auto"));
onError = $derived(
this.#options.onError ??
((e: unknown) => {
console.error(e);
})
);
/** State */
internalX = $state(0);
internalY = $state(0);
// Use a get/set pair for x and y because we want to write the value to the refs
// during a `scrollTo()` without firing additional `scrollTo()`s in the process.
#x = $derived(this.internalX);
get x() {
return this.#x;
}
set x(v) {
this.scrollTo(v, undefined);
}
#y = $derived(this.internalY);
get y() {
return this.#y;
}
set y(v) {
this.scrollTo(undefined, v);
}
isScrolling = $state(false);
arrived = $state({
left: true,
right: false,
top: true,
bottom: false,
});
directions = $state({
left: false,
right: false,
top: false,
bottom: false,
});
constructor(options: ScrollStateOptions) {
this.#options = options;
useEventListener(
() => this.element,
"scroll",
// throttle ? useThrottleFn(onScrollHandler, throttle, true, false) : onScrollHandler,
this.onScrollHandler,
this.eventListenerOptions
);
useEventListener(
() => this.element,
"scrollend",
e => this.onScrollEnd(e),
this.eventListenerOptions
);
onMount(() => {
this.setArrivedState();
});
// useResizeObserver(
// () => (isHtmlElement(this.element) ? this.element : null),
// () => {
// setTimeout(() => {
// this.setArrivedState();
// }, 100);
// }
// );
// overkill?
new AnimationFrames(() => this.setArrivedState());
}
setArrivedState = () => {
if (!window || !this.element) return;
const el: Element = ((this.element as Window)?.document?.documentElement ||
(this.element as Document)?.documentElement ||
(this.element as HTMLElement | SVGElement)) as Element;
const { display, flexDirection, direction } = getComputedStyle(el);
const directionMultipler = direction === "rtl" ? -1 : 1;
const scrollLeft = el.scrollLeft;
this.directions.left = scrollLeft < this.internalX;
this.directions.right = scrollLeft > this.internalX;
const left = scrollLeft * directionMultipler <= (this.offset.left || 0);
const right =
scrollLeft * directionMultipler + el.clientWidth >=
el.scrollWidth - (this.offset.right || 0) - ARRIVED_STATE_THRESHOLD_PIXELS;
if (display === "flex" && flexDirection === "row-reverse") {
this.arrived.left = right;
this.arrived.right = left;
} else {
this.arrived.left = left;
this.arrived.right = right;
}
this.internalX = scrollLeft;
let scrollTop = el.scrollTop;
// patch for mobile compatible
if (this.element === window.document && !scrollTop) scrollTop = window.document.body.scrollTop;
this.directions.top = scrollTop < this.internalY;
this.directions.bottom = scrollTop > this.internalY;
const top = scrollTop <= (this.offset.top || 0);
const bottom =
scrollTop + el.clientHeight >= el.scrollHeight - (this.offset.bottom || 0) - ARRIVED_STATE_THRESHOLD_PIXELS;
/**
* reverse columns and rows behave exactly the other way around,
* bottom is treated as top and top is treated as the negative version of bottom
*/
if (display === "flex" && flexDirection === "column-reverse") {
this.arrived.top = bottom;
this.arrived.bottom = top;
} else {
this.arrived.top = top;
this.arrived.bottom = bottom;
}
this.internalY = scrollTop;
};
onScrollHandler = (e: Event) => {
if (!window) return;
this.setArrivedState();
this.isScrolling = true;
this.onScrollEndDebounced(e);
this.onScroll(e);
};
scrollTo(x: number | undefined, y: number | undefined) {
if (!window) return;
(this.element instanceof Document ? window.document.body : this.element)?.scrollTo({
top: y ?? this.y,
left: x ?? this.x,
behavior: this.behavior,
});
const scrollContainer =
(this.element as Window)?.document?.documentElement ||
(this.element as Document)?.documentElement ||
(this.element as Element);
if (x != null) this.internalX = scrollContainer.scrollLeft;
if (y != null) this.internalY = scrollContainer.scrollTop;
}
scrollToTop() {
this.scrollTo(undefined, 0);
}
scrollToBottom() {
if (!window) return;
const scrollContainer =
(this.element as Window)?.document?.documentElement ||
(this.element as Document)?.documentElement ||
(this.element as Element);
this.scrollTo(undefined, scrollContainer.scrollHeight);
}
onScrollEnd = (e: Event) => {
// dedupe if support native scrollend event
if (!this.isScrolling) return;
this.isScrolling = false;
this.directions.left = false;
this.directions.right = false;
this.directions.top = false;
this.directions.bottom = false;
this.onStop(e);
};
onScrollEndDebounced = useDebounce(this.onScrollEnd, () => this.idle);
}
|