Files
homepage/src/lib/components/LazyImage.svelte
Alexander Bocken 5c8605c690
All checks were successful
CI / update (push) Successful in 2m8s
feat: complete Svelte 5 migration across entire application
Migrated all components and routes from Svelte 4 to Svelte 5 syntax:

- Converted export let → $props() with generic type syntax
- Replaced createEventDispatcher → callback props
- Migrated $: reactive statements → $derived() and $effect()
- Updated two-way bindings with $bindable()
- Fixed TypeScript syntax: added lang="ts" to script tags
- Converted inline type annotations to generic parameter syntax

- Updated deprecated event directives to Svelte 5 syntax:
  - on:click → onclick
  - on:submit → onsubmit
  - on:change → onchange

- Converted deprecated <slot> elements → {@render children()}
- Updated slot props to Snippet types
- Fixed season/icon selector components with {#snippet} blocks

- Fixed non-reactive state by converting let → $state()
- Fixed infinite loop in EnhancedBalance by converting $effect → $derived
- Fixed Chart.js integration by converting $state proxies to plain arrays
- Updated cospend dashboard and payment pages with proper reactivity

- Migrated 20+ route files from export let data → $props()
- Fixed TypeScript type annotations in page components
- Updated reactive statements in error and cospend routes

- Removed invalid onchange attribute from Toggle component
- Fixed modal ID isolation in CreateIngredientList/CreateStepList
- Fixed dark mode button visibility in TranslationApproval
- Build now succeeds with zero deprecation warnings

All functionality tested and working. No breaking changes to user experience.
2026-01-10 16:20:50 +01:00

129 lines
3.0 KiB
Svelte

<script>
import { onMount } from 'svelte';
import { browser } from '$app/environment';
let {
src,
placeholder = '',
alt = '',
eager = false,
onload = () => {},
...restProps
} = $props();
let shouldLoad = $state(eager);
let imgElement = $state(null);
let isLoaded = $state(false);
let observer = $state(null);
// React to eager prop changes
$effect(() => {
if (eager && !shouldLoad) {
shouldLoad = true;
}
});
onMount(() => {
if (!browser) return;
// If eager, load immediately
if (eager) {
shouldLoad = true;
return;
}
// Helper to check if element is actually visible (both horizontal and vertical)
function isElementInViewport(el) {
const rect = el.getBoundingClientRect();
const windowHeight = window.innerHeight || document.documentElement.clientHeight;
const windowWidth = window.innerWidth || document.documentElement.clientWidth;
// Check if element is within viewport bounds (with margin)
const margin = 400; // Load 400px before visible
return (
rect.top < windowHeight + margin &&
rect.bottom > -margin &&
rect.left < windowWidth + margin &&
rect.right > -margin
);
}
// Check visibility on scroll (both vertical and horizontal)
function checkVisibility() {
if (!shouldLoad && imgElement && isElementInViewport(imgElement)) {
shouldLoad = true;
// Remove listeners once loaded
cleanup();
}
}
// Listen to both scroll events and intersection
let scrollContainers = [];
// Find parent scroll containers
let parent = imgElement?.parentElement;
while (parent) {
const overflowX = window.getComputedStyle(parent).overflowX;
const overflowY = window.getComputedStyle(parent).overflowY;
if (overflowX === 'auto' || overflowX === 'scroll' ||
overflowY === 'auto' || overflowY === 'scroll') {
scrollContainers.push(parent);
}
parent = parent.parentElement;
}
// Add scroll listeners
window.addEventListener('scroll', checkVisibility, { passive: true });
scrollContainers.forEach(container => {
container.addEventListener('scroll', checkVisibility, { passive: true });
});
// Also use IntersectionObserver as fallback
observer = new IntersectionObserver(
(entries) => {
entries.forEach((entry) => {
if (entry.isIntersecting) {
checkVisibility();
}
});
},
{
rootMargin: '400px',
threshold: 0
}
);
if (imgElement) {
observer.observe(imgElement);
// Check initial visibility
checkVisibility();
}
function cleanup() {
window.removeEventListener('scroll', checkVisibility);
scrollContainers.forEach(container => {
container.removeEventListener('scroll', checkVisibility);
});
if (observer && imgElement) {
observer.unobserve(imgElement);
}
}
return cleanup;
});
function handleLoad() {
isLoaded = true;
onload();
}
</script>
<img
bind:this={imgElement}
src={shouldLoad ? src : placeholder}
{alt}
class:blur={shouldLoad && !isLoaded}
onload={handleLoad}
{...restProps}
/>