JSPM

  • Created
  • Published
  • Downloads 5045
  • Score
    100M100P100Q135360F

Package Exports

  • sveltekit-flash-message/client
  • sveltekit-flash-message/package.json
  • sveltekit-flash-message/server

Readme

sveltekit-flash-message ⚡

This is a Sveltekit library that passes temporary data to the next request, usually from Actions and endpoints. It's useful when you want a "success" message displayed after a POST, which should not always be displayed at the form, rather as a message on the page that the request was redirected to.

This is known as a "flash message", especially known from PHP apps, since it's easy to add this functionality with PHP's built-in session handling. With Sveltekit it's a bit harder, but this library was made to alleviate that.

The library is encouraging well-behaved web apps that Redirects after Post, so a redirect is required for a flash message to be displayed.

Installation

(p)npm i sveltekit-flash-message

Configuration

As usual, there are a few hoops to jump through:

1. [Typescript only] Add the flash message to app.d.ts

In src/app.d.ts you should add the type for the flash message to App.PageData as an optional property called flash. It can be as simple as a string, or something more advanced. It has to be serializable though, so only JSON-friendly data structures. Here's an example:

src/app.d.ts

declare namespace App {
  interface PageData {
    flash?: { type: 'success' | 'error', message: string }
  }
}

2. Add a load function to a top-level +page or +layout server route

If you're not using any load functions, this is a simple step. Create a src/routes/+layout.server.ts file (or +page.server.ts) with the following content:

src/routes/+layout.server.ts

export { load } from "sveltekit-flash-message/server"

If you've implemented a load function already, you can import loadFlash and use it in the load function instead:

src/routes/+layout.server.ts

import type { ServerLoadEvent } from "@sveltejs/kit"
import { loadFlash } from "sveltekit-flash-message/server"

export function load(event : ServerLoadEvent) {
  const data = {
    some: 'data'
  }

  // Returns an object: { flash: App.PageData['flash'] | undefined }
  const flashData = loadFlash(event)

  return Object.assign(flashData, data)
}

3. Display the flash message

Use getFlashStore to display the flash message, for example in your layout component:

src/routes/+layout.svelte

<script lang="ts">
  import { getFlashStore } from "sveltekit-flash-message/client";

  const flash = getFlashStore<App.PageData['flash']>()
</script>

{#if $flash}
  {@const bg = $flash.type == 'success' ? '#3D9970' : '#FF4136'}
  <div style:background-color={bg} class="flash">{$flash.message}</div>
{/if}

4. Send flash messages

Server-side

To send a flash message, you'll import a function depending on whether your route is an Action or an endpoint.

Type File Function
Action +page.server.ts flashMessage(message, url | event, event)
Endpoint +server.ts flashResponse(message, url, headers?, status = 303, statusMessage?)

Action example

src/routes/todos/+page.server.ts

import type { RequestEvent } from '@sveltejs/kit';
import { flashMessage } from 'sveltekit-flash-message/server'

export const POST = async (event : RequestEvent) => {
  const form = await event.request.formData()

  await api('POST', `todos/${event.locals.userid}`, {
    text: form.get('text')
  })

  const message = {type: 'success', message: "That's the entrepreneur spirit!"}

  return flashMessage(message, '/todos', event)
}

You can also redirect to the same page by passing in the event : RequestEvent parameter.

return flashMessage(message, event)

Endpoint example

src/routes/todos/+server.ts

import type { RequestEvent } from '@sveltejs/kit';
import { flashResponse } from 'sveltekit-flash-message/server'

export const POST = async (event : RequestEvent) => {
  const message = {type: 'success', message: "Endpoint POST successful!"}

  return flashResponse(message, '/')
}

You can also append extra headers with the headers argument, and customize the status code and message with status and statusMessage.

Client-side

If you want to send a flash message in some other circumstances on the client, you can simply assign a new value to the store returned from getFlashStore:

src/someOtherComponent.svelte

<script>
  import { getFlashStore } from "sveltekit-flash-message/client"

  const flash = getFlashStore<App.PageData['flash']>()

  function change() {
    const message = {type: 'success', message: 'Updated from other component!'}
    flash.set(message)
  }
</script>

<button on:click={change}>Update message</button>

Client-side fetching and redirecting

If you're using fetch instead of a browser form submit, the flash message will be passed on to the client, but it won't be displayed automatically. To display it, you can use getFlashMessage after the fetch is completed:

<script lang="ts">
  import { getFlashStore, getFlashMessage } from "sveltekit-flash-message/client"

  const message = getFlashStore<App.PageData['flash']>()

  async function submitForm(e : SubmitEvent) {
    const form = e.target as HTMLFormElement
    const body = new FormData(e.target as HTMLFormElement)
    
    await fetch(form.action, { method: 'POST', body })

    const flashMsg = getFlashMessage()
    if(flashMsg) message.set(flashMsg)
  }
</script>

<form method="POST" action="/test" on:submit|preventDefault={submitForm}>
  <input type="text" name="test" value="TEST">
  <button>Submit to /test with fetch</button>
</form>

Securing the flash message

Since the flash message is transferred in a cookie, it can be easily tampered with, so don't trust its content. Treat it like you do with any user data - hanging from a ten-foot pole over a fiery pit. 🔥

To help with that, you can add a parameter to getFlashStore, a validation function:

const checkValue = (value : unknown) => {
  // A bit lazy validation, for the sake of the example
  const check = value as any
  if(typeof check === "object" && 
    ['success', 'error'].contains(check.type) && 
    typeof check.message === "string"
  ) {
    return check 
  }

  // Validation failed
  return undefined // or throw, if deemed more useful
}

const store = getFlashStore<App.PageData['flash']>(checkValue)

This will ensure the integrity of your flash messages. Instead of returning undefined you can return a default value, which is useful if you're using the library for displaying multiple messages in an array, like a notification widget.

Note: You can only use the checkValue parameter once per request, since the cookie has to be cleared after retrieving the flash message. So if you call getFlashStore in other (child) components, they must be called without a checkValue parameter.

So much work, for so little?

It may seem so, but this library works both with SSR and client, which is trickier than it seems (and maybe trickier than what it should be...?)

Bonus: Removing flash message when navigating

This little snippet can be useful if you'd like to have the flash message removed when the user navigates to another route:

import { beforeNavigate } from '$app/navigation';
import { getFlashStore } from "sveltekit-flash-message/client"

const flash = getFlashStore<App.PageData['flash']>()

beforeNavigate(nav => {
  if(nav.from.href != nav.to?.href && $flash) {
    $flash = null
  }
})

Enjoy the library, and please open a github issue if you have suggestions or feedback in general!