refactor(web): remove resize observer action (#26647)

This commit is contained in:
Michel Heusschen
2026-03-02 15:45:34 +01:00
committed by GitHub
parent 7f47cdd645
commit dffe4d1d5c
3 changed files with 3 additions and 49 deletions
@@ -1,7 +1,6 @@
<script lang="ts">
import { afterNavigate, beforeNavigate } from '$app/navigation';
import { page } from '$app/state';
import { resizeObserver, type OnResizeCallback } from '$lib/actions/resize-observer';
import Thumbnail from '$lib/components/assets/thumbnail/thumbnail.svelte';
import Month from '$lib/components/timeline/Month.svelte';
import Scrubber from '$lib/components/timeline/Scrubber.svelte';
@@ -260,8 +259,6 @@
const updateIsScrolling = () => (timelineManager.scrolling = true);
// note: don't throttle, debounch, or otherwise do this function async - it causes flicker
const topSectionResizeObserver: OnResizeCallback = ({ height }) => (timelineManager.topSectionHeight = height);
onMount(() => {
if (!enableRouting) {
invisible = false;
@@ -634,7 +631,7 @@
style:height={timelineManager.totalViewerHeight + 'px'}
>
<section
use:resizeObserver={topSectionResizeObserver}
bind:clientHeight={timelineManager.topSectionHeight}
class:invisible
style:position="absolute"
style:left="0"