|
| 1 | +--- |
| 2 | +title: Svelte + Hanko |
| 3 | +sidebar_label: Svelte |
| 4 | +keywords: |
| 5 | + - hanko |
| 6 | + - svelte |
| 7 | + - integration |
| 8 | +sidebar_custom_props: |
| 9 | + docCardIconName: svelte |
| 10 | +--- |
| 11 | + |
| 12 | +# Svelte |
| 13 | + |
| 14 | +In this guide you will learn how to add authentication to your Svelte application using the Hanko custom element. |
| 15 | + |
| 16 | +## Install dependencies |
| 17 | +Install the `@teamhanko/hanko-elements` package: |
| 18 | + |
| 19 | +```shell npm2yarn |
| 20 | +npm install @teamhanko/hanko-elements |
| 21 | +``` |
| 22 | + |
| 23 | +## Import & use custom element |
| 24 | + |
| 25 | +Import the `register` function from `@teamhanko/hanko-elements/hanko-auth` in the component where you want to use the |
| 26 | +Hanko custom element. Call `register` to register the `<hanko-auth>` element with the browser's |
| 27 | +[`CustomElementRegistry`](https://developer.mozilla.org/de/docs/Web/API/CustomElementRegistry). |
| 28 | +Then use the `<hanko-auth>` element in your component template. |
| 29 | + |
| 30 | +:::info |
| 31 | + |
| 32 | +When adding the `<hanko-auth>` element to your JSX you must provide the URL of the Hanko API via the `api` |
| 33 | +attribute. If you are using [Hanko Cloud](https://cloud.hanko.io), you can find the API URL on your project dashboard. |
| 34 | +If you are self-hosting you need to provide the URL of your running Hanko backend. |
| 35 | + |
| 36 | +::: |
| 37 | + |
| 38 | +```js title="Login.svelte" showLineNumbers |
| 39 | +<script> |
| 40 | + import { onMount } from "svelte"; |
| 41 | + import { register } from '@teamhanko/hanko-elements/hanko-auth'; |
| 42 | +
|
| 43 | + const api = import.meta.env.VITE_HANKO_API; |
| 44 | + const lang = import.meta.env.VITE_HANKO_LANG; |
| 45 | +
|
| 46 | + onMount(async () => { |
| 47 | + // register the component |
| 48 | + // see: https://github.com/teamhanko/hanko/blob/main/frontend/elements/README.md#script |
| 49 | + register({ shadow: true }).catch((e) => { |
| 50 | + console.error(e) |
| 51 | + }); |
| 52 | + }); |
| 53 | +</script> |
| 54 | +
|
| 55 | +<div class="content"> |
| 56 | + <hanko-auth {api} {lang}/> |
| 57 | +</div> |
| 58 | +``` |
| 59 | + |
| 60 | +## Defining login callbacks |
| 61 | + |
| 62 | +The `<hanko-auth>` element dispatches a custom `hankoAuthSuccess` event on successful login. React to this |
| 63 | +event in order to, for example, redirect your users to protected pages in your application. |
| 64 | + |
| 65 | +To do so, apply an event listener with an appropriate redirect callback: |
| 66 | + |
| 67 | +```js {2-3,9-14,23,26-28,32} title="Login.svelte" showLineNumbers |
| 68 | +<script> |
| 69 | + import { onDestroy, onMount } from "svelte"; |
| 70 | + import { useNavigate } from "svelte-navigator"; |
| 71 | + import { register } from '@teamhanko/hanko-elements/hanko-auth'; |
| 72 | +
|
| 73 | + const api = import.meta.env.VITE_HANKO_API; |
| 74 | + const lang = import.meta.env.VITE_HANKO_LANG; |
| 75 | +
|
| 76 | + const navigate = useNavigate(); |
| 77 | + let element; |
| 78 | +
|
| 79 | + const redirectToTodos = () => { |
| 80 | + navigate('/todo'); |
| 81 | + }; |
| 82 | +
|
| 83 | + onMount(async () => { |
| 84 | + // register the component |
| 85 | + // see: https://github.com/teamhanko/hanko/blob/main/frontend/elements/README.md#script |
| 86 | + register({ shadow: true }).catch((e) => { |
| 87 | + console.error(e) |
| 88 | + }); |
| 89 | +
|
| 90 | + element.addEventListener('hankoAuthSuccess', redirectToTodos); |
| 91 | + }); |
| 92 | +
|
| 93 | + onDestroy(() => { |
| 94 | + element.removeEventListener('hankoAuthSuccess', redirectToTodos); |
| 95 | + }); |
| 96 | +</script> |
| 97 | +
|
| 98 | +<div class="content"> |
| 99 | + <hanko-auth bind:this={element} {api} {lang}/> |
| 100 | +</div> |
| 101 | +``` |
| 102 | + |
| 103 | +## UI customization |
| 104 | + |
| 105 | +The styles of the `hanko-auth` element can be customized using CSS variables and parts. See our guide |
| 106 | +on customization [here](https://github.com/teamhanko/hanko/tree/main/frontend/elements#ui-customization). |
| 107 | + |
| 108 | +## Backend request authentication |
| 109 | + |
| 110 | +If you want to authenticate requests in your own backend, please view our [backend guide](/guides/backend). |
0 commit comments