-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add MaybeProtectedForm to optionally skip turnstile
Using `<svelte:component>` for this purpose caused a warning about an unknown `turnstileToken` property when the component was Form rather than ProtectedForm. To avoid this warning, we create a new component that selects between Form and ProtectedForm, and sends turnstileToken only to ProtectedForm.
- Loading branch information
Showing
3 changed files
with
24 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<script lang="ts"> | ||
import Form from './Form.svelte'; | ||
import ProtectedForm from './ProtectedForm.svelte'; | ||
import type { AnySuperForm } from './types'; | ||
export let enhance: AnySuperForm['enhance'] | undefined = undefined; | ||
export let turnstileToken = ''; | ||
export let skipTurnstile = false; | ||
</script> | ||
|
||
{#if skipTurnstile} | ||
<Form {enhance} on:submit> | ||
<slot /> | ||
</Form> | ||
{:else} | ||
<ProtectedForm {enhance} on:submit bind:turnstileToken> | ||
<slot /> | ||
</ProtectedForm> | ||
{/if} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters