Basic Svelte
Introduction
Bindings
Classes and styles
Attachments
Advanced Svelte
Advanced reactivity
Motion
Advanced bindings
Advanced transitions
Context API
Special elements
<script module>
Next steps
Basic SvelteKit
Introduction
Routing
Loading data
Headers and cookies
Shared modules
API routes
$app/state
Errors and redirects
Advanced SvelteKit
Page options
Link options
Advanced routing
Advanced loading
Environment variables
Conclusion
Finally, there’s the nuclear option — refreshAll(). This will indiscriminately re-run all load functions for the current page, regardless of what they depend on, and all currently active remote functions. Unlike reloading the page, it does not reset page.state.
Update src/routes/[...timezone]/+page.svelte from the previous exercise:
src/routes/[...timezone]/+page
<script>
import { onMount } from 'svelte';
import { refreshAll } from '$app/navigation';
let { data } = $props();
onMount(() => {
const interval = setInterval(() => {
refreshAll();
}, 1000);
return () => {
clearInterval(interval);
};
});
</script><script lang="ts">
import { onMount } from 'svelte';
import { refreshAll } from '$app/navigation';
let { data } = $props();
onMount(() => {
const interval = setInterval(() => {
refreshAll();
}, 1000);
return () => {
clearInterval(interval);
};
});
</script>The depends call in src/routes/+layout.js is no longer necessary:
src/routes/+layout
export async function load({ depends }) {
depends('data:now');
return {
now: Date.now()
};
}
invalidate(() => true)andrefreshAll()are not the same.invalidate(() => true)only re-runsloadfunctions that depend on a URL, whereasrefreshAll()re-runs everyloadfunction for the current page and all currently active remote functions.invalidateAll()is deprecated in SvelteKit 3.
previous next
1