GithubHelp home page GithubHelp logo

Comments (5)

ciscoheat avatar ciscoheat commented on May 30, 2024

This does work in the latest version. If you're using the latest, I need to see some code to know more.

from sveltekit-flash-message.

oxneat avatar oxneat commented on May 30, 2024

this is the code for the (auth)/signup/+page.server.ts :

import { signUpSchema } from "$lib/validation";
import type { Actions } from "@sveltejs/kit";
import { flashCookieOptions, redirect } from "sveltekit-flash-message/server";
import { superValidate } from "sveltekit-superforms/server";

export const actions = {
    signup: async (event) => {

        throw redirect('/login', {
            type: "success",
            message: ["Votre compte a été crée, vous recevrez un message de confirmation sur votre email"]
        }, event)
    }
} satisfies Actions;

this is the code for src/routes/+layout.server.ts :

// import type { LayoutServerLoad } from "./$types"
import { flashCookieOptions, loadFlash } from "sveltekit-flash-message/server";

// export { load } from 'sveltekit-flash-message/server';
// flashCookieOptions.sameSite = 'strict';

export const load = loadFlash(async (event) => {
    return {
        session: await event.locals.getSession(),
    }
})

this is where the flash is read : (src/routes/+layout.svelte)

<script lang="ts">
	import '../app.postcss';
	import { invalidate } from '$app/navigation';
	import { onMount } from 'svelte';
	import { page } from '$app/stores';
	// import { getFlash, initFlash } from 'sveltekit-flash-message/client';
	// import { page } from '$app/stores';

	import Messages from '$lib/components/Messages.svelte';
	import { getFlash } from 'sveltekit-flash-message/client';

	const flash = getFlash(page);
	$: msg = $flash;

	$: console.log($flash);

	export let data;

	$: ({ supabase, session } = data);

	onMount(() => {
		const {
			data: { subscription }
		} = supabase.auth.onAuthStateChange((event, _session) => {
			if (_session?.expires_at !== session?.expires_at) {
				invalidate('supabase:auth');
			}
		});

		return () => subscription.unsubscribe();
	});
</script>

<Messages data={msg ? msg : { type: 'success', message: ['Hello Friend'] }} />
<slot />

from sveltekit-flash-message.

oxneat avatar oxneat commented on May 30, 2024

@ciscoheat the package version is: "sveltekit-flash-message": "^2.1.0", and sveltekit version is: "@sveltejs/kit": "^1.20.4",

from sveltekit-flash-message.

ciscoheat avatar ciscoheat commented on May 30, 2024

Looks like it should work, but you're using some component and events. Try making the simplest possible case, like in the instructions: https://github.com/ciscoheat/sveltekit-flash-message#3-display-the-flash-message and see if that works?

from sveltekit-flash-message.

oxneat avatar oxneat commented on May 30, 2024

@ciscoheat it works perfectly now, thanks a lot

from sveltekit-flash-message.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.