Skip to main content

$app/state

SvelteKit makes three readonly state objects available via the $app/state module — page, navigating and updated.

This module was added in 2.12. If you’re using an earlier version of SvelteKit, use $app/stores instead.

import { import navigatingnavigating, import pagepage, import updatedupdated } from '$app/state';

An object with a reactive current property. When navigation starts, current is a Navigation object with from, to, type and (if type === 'popstate') delta properties. When navigation finishes, current reverts to null.

On the server, this value can only be read during rendering. In the browser, it can be read at any time.

const navigating: {
	get current(): import('@sveltejs/kit').Navigation | null;
};

page

A reactive object with information about the current page, serving several use cases:

  • retrieving the combined data of all pages/layouts anywhere in your component tree (also see loading data)
  • retrieving the current value of the form prop anywhere in your component tree (also see form actions)
  • retrieving the page state that was set through goto, pushState or replaceState (also see goto and shallow routing)
  • retrieving metadata such as the URL you’re on, the current route and its parameters, and whether or not there was an error
+layout
<script>
	import { page } from '$app/state';
</script>

<p>Currently at {page.url.pathname}</p>

{#if page.error}
	<span class="red">Problem detected</span>
{:else}
	<span class="small">All systems operational</span>
{/if}
<script lang="ts">
	import { page } from '$app/state';
</script>

<p>Currently at {page.url.pathname}</p>

{#if page.error}
	<span class="red">Problem detected</span>
{:else}
	<span class="small">All systems operational</span>
{/if}

On the server, values can only be read during rendering (in other words not in e.g. load functions). In the browser, the values can be read at any time.

const page: import('@sveltejs/kit').Page;

updated

A reactive value that’s initially false. If version.pollInterval is a non-zero value, SvelteKit will poll for new versions of the app and update current to true when it detects one. updated.check() will force an immediate check, regardless of polling.

const updated: {
	get current(): boolean;
	check(): Promise<boolean>;
};

Edit this page on GitHub

previous next