0.1.1 • Published 21 hours ago

skroutes v0.1.1

Weekly downloads
-
License
-
Repository
-
Last release
21 hours ago

skRoutes

skRoutes is a package with the intent of making the URL useable as a typesafe state store for sveltekit (a first class citizen). This intent means that this package makes sveltekit routes, route parameters, and url search parameters easy to manage with validation. Simplifies navigation by generating URLs for a chosen endpoint with necessary params and searchParams. Using this library will dramatically simplify url changing, as changes in teh URL will be reflected elsewhere as type errors.

Installation

npm install skroutes

pnpm add skroutes

Features

  • Typesafe URL generation based on a route configuration, params, and search params.
  • Easily generate new url with different parameters or searchParameters from current url.
  • Validation of route parameters and search parameters.
  • Fully typed params and search params for use throughout the application.
  • Use of nested search pararms.
  • Typescript validation of URL addresses (changing URLs will cause typescript errors).
  • Ability to access params and searchParams as a store, with automatic navigation (with debouncing)

Usage

Define your route configuration:

import { skRoutes } from 'skRoutes';
import { z } from 'zod';

export const { pageInfo, urlGenerator, serverPageInfo } = skRoutes({
	config: {
		'/[id]': {
			paramsValidation: z.object({ id: z.string() }).parse
		},
		'/server/[id]': {
			paramsValidation: z.object({ id: z.string() }).parse
		}
	},
	errorURL: '/error'
});

Use the urlGenerator function to generate URLs:

const url = urlGenerator({ address: '/[id]', paramsValue: { id: 'Horse' } }).url;

Display the generated URL in your Svelte component (note that this includes the current`` url, as well asupdateParams` which generates a url based on updated parameters):

<script lang="ts">
	import { pageInfo, urlGenerator } from '../routeConfig.js';
	import { page } from '$app/stores';

	$: urlInfo = pageInfo('/[id]', $page);
	const options = ['Horse', 'Donkey', 'Cat', 'Dog'];
</script>

<div class="page">
	{JSON.stringify(urlInfo.current)}
	<div class="item-row">
		{#each options as currentOption}
			<a href={urlInfo.updateParams({ params: { id: currentOption } }).url}>{currentOption}</a>
		{/each}
	</div>
</div>

Error Handling and errorURL

skRoutes provides a mechanism to handle errors gracefully through the errorURL configuration. When an error occurs during URL generation, the library will redirect to the specified errorURL with an error message appended as a query parameter.

How errorURL Works

When defining your route configuration, specify an errorURL:

export const { pageInfo, urlGenerator, serverPageInfo } = skRoutes({
	config: {
		// ... your routes
	},
	errorURL: '/error'
});

If an error occurs during URL generation, the urlGenerator function will return an object with the error property set to true and the url property set to the errorURL with an appended error message.

You can then handle this error in your application by checking the error property and displaying the appropriate error message or redirecting to the error page.

Safe Validation

It's crucial to ensure that your validation functions fail safely. If a validation error occurs, it should not crash your application but instead provide meaningful feedback or redirect to the errorURL.

If you're using zod for validation, it's recommended to use the .catch functionality to handle validation errors gracefully:

const validation = z.object({ id: z.string() }).catch({id: "default"}});

By following these practices, you can ensure a smooth user experience even in the face of unexpected input or errors.

Documentation

For more detailed documentation and advanced usage, please refer to the source code and examples provided in the Github repository.

0.1.1

21 hours ago

0.0.14

5 months ago

0.0.15

5 months ago

0.0.11

6 months ago

0.0.12

6 months ago

0.0.13

6 months ago

0.0.9

8 months ago

0.0.8

8 months ago

0.0.7

8 months ago

0.0.6

8 months ago

0.0.5

8 months ago

0.0.4

8 months ago

0.0.3

8 months ago

0.0.2

8 months ago