| 364 | applySort(params.get("sort") ?? "featured"); |
| 365 | |
| 366 | const requestedPage = Number.parseInt(params.get("page") ?? "1", 10); |
| 367 | currentPage = |
| 368 | Number.isInteger(requestedPage) && requestedPage > 0 ? requestedPage : 1; |
| 369 | } |
| 370 | |
| 371 | function focusFirstVisibleLoop() { |
| 372 | const firstVisibleTitle = loopRows |
| 373 | .find((row) => !row.hidden) |
| 374 | ?.querySelector(".loop-title-link"); |
| 375 | |
| 376 | if (!firstVisibleTitle) { |
| 377 | return; |
| 378 | } |
| 379 | |
| 380 | window.requestAnimationFrame(() => { |
| 381 | window.requestAnimationFrame(() => { |
| 382 | firstVisibleTitle.focus({ preventScroll: true }); |
| 383 | firstVisibleTitle.scrollIntoView({ behavior: "instant", block: "start" }); |
| 384 | }); |