# tinro ![npm](https://img.shields.io/npm/v/tinro?style=flat-square) ![GitHub Workflow Status](https://img.shields.io/github/workflow/status/AlexxNB/tinro/Publish%20on%20NPM?label=test&style=flat-square) ![npm bundle size](https://img.shields.io/bundlephobia/minzip/tinro?label=Bundle%20size&style=flat-square) ![npm](https://img.shields.io/npm/dt/tinro?style=flat-square) tinro is a highly declarative, [tiny](https://github.com/AlexxNB/tinro/blob/master/COMPARE.md), dependency free router for [Svelte](https://svelte.dev) web applications. ## Features * Just one component to declare routes in your app * Links are just common native `` elements * History API, Hash-based, or in-memory navigation * Simple nested routes * Routes with parameters (`/hello/:name`) * Redirects * Fallbacks on any nested level * Parsing query parameters (`?x=42&hello=world&fruits=apple,banana,orange`) * Manage URL's hash and query parts * [Svelte's REPL](https://svelte.dev/repl/4bc37ff40ada4111b71fe292a4eb90f6) compatible ## Documentation * [Install](#install) * [Getting started](#getting-started) * [Nesting](#nesting) * [Links](#links) * [Redirects](#redirects) * [Fallbacks](#fallbacks) * [Route meta](#route-meta) - [url](#metaurl) - [pattern](#metapattern) - [match](#metamatch) - [from](#metafrom) - [query](#metaquery) - [params](#metaparams) - [breadcrumbs](#metabreadcrumbs) * [~~Parameters~~ (Deprecated since 0.5.0)](#parameters) * [Navigation method](#navigation-method) * [Base path](#base-path) * [Manage hash and query](#manage-hash-and-query) * [API](#api) * [Recipes](#recipes) - [Lazy loading](#lazy-loading-components) - [Transitions](#transitions) - [Guarded routes](#guarded-routes) - [Scroll to top](#scroll-to-top) - [Navigation Announcer](#navigation-announcer) * [Troubleshooting](#troubleshooting) ## Install Install tinro as a dev dependency in your Svelte project: ```shell $ npm i -D tinro ``` ## Getting started **tinro is very simple!** It provides just *one component* — ``. A common app structure looks like this: ```html

This is the main page

Portfolio introduction

Portfolio: Sites

Portfolio: Photos

``` See the example in action in [Svelte's REPL](https://svelte.dev/repl/4bc37ff40ada4111b71fe292a4eb90f6) ## Nesting There are two types of routes you can declare in the `` component's `path` property: ### Exact path Shows its content only when `path` matches the URL of the page *exactly*. You can't place a nested `` inside these components. ```html ... ... ... ``` ### Non-exact path `` components with a `path` property that ends with `/*` show their content when a part of the page's URL matches with the path before the `/*`. A nested `` can be placed inside routes with a non-exact path only. ```html Books list: ... ... ``` The `path` property of a nested `` is relative to its parent. To see the _Fiction_ category in the above example, you would point your browser to `http://mysite.com/books/fiction`. Nested routes also work inside child components. So, we can rewrite the example this way: ```html ... Books list: ... ... ... ``` ### Show first matched nested route only Sometimes, you need to show only the first nested route from all those matched with a given URL. Use the `firstmatch` property on the parent `Route`: ```html Add new user Show user {meta.params.username}'s profile ``` ## Links There is no special component for links. Just use native `` elements. When the `href` attribute starts with a single `/` (like `/mypage` or just `/`), it will be treated as an internal link which will be matched with defined routes. Other cases do not affect the links' behavior. All internal links will be passed into the tinro router. However, it is possible to prevent this by adding the `tinro-ignore` or `data-tinro-ignore` attributes: ```html Go to API page ``` If you need to add the `active` class to links where the path corresponds to the current URL, use the `active` action from the `tinro` package: ```html Link Link Link Link ``` ## Redirects You can redirect the browser to any path by using the `redirect` property: ```html ``` You can also redirect to a relative path — just write the new URL without `/` in front of it: ```html ``` ## Fallbacks Routes with the `fallback` property show their content when no matched address was found. Fallbacks may be placed inside a non-exact `` or belong to root routes. Fallbacks bubble, so if there is no fallback on the current level, the router will try to find one on any parent levels. See the example: ```html Root page Page Subpage1 Subpage2 No subpage found No page found ... ... ... ... ... ... ... ... ... ``` ## Route meta You can get useful meta data for each route by importing and calling `meta` from the `tinro` package. Notice, that `meta()` must be called only inside any ``'s child component. ```html

My URL is {route.url}!

My URL is {$route.url}!

``` You can also get meta data with the `let:meta` directive: ```html

My URL is {meta.url}!

``` ### `meta.url` Current browser URL (includes query). *Example: `/books/stanislaw_lem/page2?order=descend`* ### `meta.pattern` The pattern of the route path, including parameter placeholders. It is a combination of the `path` properties of all parent routes. *Example: `/books/:author`* ### `meta.match` Part of the browser URL that is matched with the route pattern. *Example: `/books/stanislaw_lem`* ### `meta.from` If present, the value of the browser URL before navigation to the current page. Useful to make a back button, for example. *Example: `/books/stanislaw_lem/page1?order=descend`* ### `meta.query` Object containing keys/values from the browser URL query string (if present). *Example: `{order: "descend"}`* ### `meta.params` If the route pattern has parameters, their values will be in the `meta.params` object. ```html Author: {meta.params.author} Book: {meta.params.title} ``` ### `meta.breadcrumbs` All parent routes that have a `breadcrumb` property will add a breadcrumb to the `meta.breadcrumbs` array. Each breadcrumb is an object with `name` and `path` fields. ```html This is my portfolio ``` ## Parameters > **!** *`route.params` and `let:params` are DEPRECATED since v.0.5.0. and will be deleted in future versions!* See [meta.params](#metaparams) section ## Navigation method By default, navigation uses the `History API` which allows you to have clean page URLs, although it needs some setup on the server side. Instead, you may choose to use `hash` or `memory` navigation methods. There is no need to change links or paths in your app, everything else will still work the same. ```html Subpage Subpage content ``` *Note: default navigation method in non-browser environment or inside iframes is `memory`* ### Server side setup for History API method When you use the `History API` and point the browser to the root path `/` (usually `/index.html`) all links and Routes will work properly. But when you start your app on any subpage, like `/page/subpage`, you will see the `404 Not found` error. Because of this, you need to setup your server to point all requests to `/index.html`. This is easy if you use the [official Svelte template](https://github.com/sveltejs/template). Just open `package.json` and find this NPM script: ```json "start": "sirv public" ``` Replace it with this line: ```json "start": "sirv public --single" ``` Now, start your app with `npm run dev` and open a URL like `http://localhost:5000/page/subpage`. You should see the app page, instead of the "Not found" error. *For other servers you can read the following links: [Nginx](https://www.nginx.com/blog/creating-nginx-rewrite-rules/#Example %E2%80%93-Enabling-Pretty-Permalinks-for-WordPress-Websites), [Apache](https://httpd.apache.org/docs/2.4/rewrite/remapping.html#fallback-Resource), [Caddy](https://caddyserver.com/docs/caddyfile/directives/rewrite#examples)* ## Base path When you deploy your app in subderictory on the host and use history navigation mode you must use full links and routes for correct navigation. Other way is to set *base path*, and all links and routes will be treated relatively. For example, if you deploy on `https://myserver.com/subdir`, then set *base path* to `/subdir` in root component of your app: ```html This is Foo This is Bar ``` *Notice: Base path must start but not end with `/`* ## Manage hash and query You can change URL's parts (such as query and hash) using `router.location` methods: ```javascript import {router} from 'tinro'; router.goto('/foo'); //URL: /foo router.location.query.set('name','alex'); //URL: /foo?name=alex router.location.hash.set('bar'); //URL: /foo?name=alex#bar router.location.query.set('page',1); //URL: /foo?name=alex&page=1#bar router.location.query.replace({hello: 'world'}); //URL: /foo?hello=world#bar router.location.query.clear(); //URL: /foo#bar router.location.hash.clear(); //URL: /foo ``` ## API You can import the `router` object from the `tinro` package: ### `router.goto(href)` Programmatically change the URL of the current page. ### `router.mode` Methods to change curent router mode: * `history()` - set HistoryAPI navigation method * `hash()` - set hash navigation method * `memory()` - set memory navigation method ### `router.base(path)` Sets [base path](#base-path) for router ### `router.location.hash` Methods, which allows to get or set current value of the URL's hash part: * `get()` - get current hash value * `set(value)` - set new hash value * `clear()` - remove hash from the current URL ### `router.location.query` Methods, which allows to get or modify current value of the URL's query part: * `get(name?)` - get current query object, or its property value when `name` specified * `set(name,value)` - update or add query property by `name` * `delete(name)` - remove property with specified `name` from the query object * `replace(object)` - replace current query object with new one * `clear()` - remove query from the current URL ### `router.subscribe(func)` The `router` object is a valid Svelte store, so you can subscribe to get the changing navigation data. `func` gets an object with page data: * `url` - current browser URL (with query string) * `from` - previous URL before navigation to current page (if present) * `path` - current browser URL * `hash` - the hash part of the URL, after `#` sign * `query` - object, containing parsed query string Note: you can use Svelte's auto-subscription to retrieve data from the `router` store: ```html Current page URL is: {$router.path} ``` ### `router.mode.[history()|hash()|memory()]` Run this in the app's root file to set the navigation method you need. ### `router.params()` Deprecated. See `router.meta` instead. ## Recipes tinro is not the most powerful router among all those available for Svelte applications. We prefer a smaller footprint in your bundles over having all possible features out of the box. But you can easily code some features yourself using the recipies below: ### Lazy loading components If you want to have code-splitting and load components only when that page is requested, make this little component: ```html {#await component.then ? component : component()} Loading component... {:then Cmp} {/await} ``` And use it when you need a lazy loaded component in your routes: ```html import('./mypage.svelte')}/> ``` ### Transitions If you want a transiton when the path changes, create a component like this: ```html {#key $router.path}
{/key} ``` Then, put your routes inside the *Transition* component: ```html ... ... ... ``` ### Guarded routes You can protect routes from being loaded using only Svelte's logic blocks, like the `{#if}` statement: ```html {#if user.authed} This is a private page... {:else} Please sign in first This is the sign in form... {/if} ``` You can also create a special guard component as shown in [this example](https://svelte.dev/repl/5673ff403af14411b0cd1785be3d996f). ### Scroll to top tinro doesn't control scrolling in your app, but sometimes you need to scroll to the top of the page after navigation. To do this, just add the `router` store subscription to your root component (ex. `App.svelte`). This way you can run any actions (not just scrolling) every time the `URL` changes. ```javascript import {router} from `tinro`; router.subscribe( _ => window.scrollTo(0, 0)); ``` ### Navigation announcer The problem of any SPA router is that it does not use default browser navigation when user click the link. This cause accessability issue for people who use screenreaders, because it won't announce that new page was loaded. You can fix this creating `Announce` component: ```html
{#key current} Navigated to {current} {/key}
``` Then place this component somewhere in your `App.svelte` root file: ```html ... ... ``` ## Troubleshooting If you use Vite to bandle your app(including SvelteKit), you should exclude `tinro` from the `optimizedDeps` in Vite's config: ```javascript ... optimizeDeps: { exclude: ['tinro'] }, ... ```