-
-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error in EnhancedForm_destroy - Uncaught (in promise) TypeError: EnhancedForm.remove is not a function
#500
Comments
Uncaught (in promise) TypeError: EnhancedForm.remove is not a function
on FirefoxUncaught (in promise) TypeError: EnhancedForm.remove is not a function
Ok - I have figured out the root cause - but I believe that a fix still needs to be made to the Given below form, when this form was unmounted from the page, SuperForm attempted to call Renaming the input to have attribute It would be good to have a fix - ideally, I don't think that the name of HTML elements should affect the inner workings of SuperForm. See below the full code that was causing issues. Apologies, but it is still difficult for me to create an MRE. Code
<script lang="ts" context="module">
import { z } from 'zod';
export const fileUsersSchema = z
.object({
publicId: z.string(),
users: z
.object({
publicId: z.string(),
remove: z.boolean().optional(),
})
.array(),
})
.strip();
let uniqueId = 0;
</script>
<script lang="ts">
import { page } from '$app/stores';
import { defaults, superForm } from 'sveltekit-superforms';
import { zod } from 'sveltekit-superforms/adapters';
import type { RoomFile } from '$routes/room/+server';
import { createEventDispatcher } from 'svelte';
export let file: RoomFile;
const id = uniqueId++;
let serverError = '';
const dispatch = createEventDispatcher<{
'file-users-updated': void;
}>();
const { form, enhance } = superForm(defaults(file, zod(fileUsersSchema)), {
dataType: 'json',
validators: zod(fileUsersSchema),
onSubmit: ({ jsonData }) => {
jsonData({ publicId: $form.publicId, users: $form.users.filter((u) => u.remove) });
},
onError({ result }) {
serverError = result.error.message;
},
onUpdated: ({ form }) => {
if (form.valid && file) {
file.users = file.users.filter((user) =>
form.data.users.some((u) => user.publicId === u.publicId),
);
dispatch('file-users-updated');
}
},
});
</script>
<form method="POST" use:enhance action="/files/{file.publicId}?/modify-file-users">
<input type="hidden" name="publicId" value={$form.publicId} />
<div class="my-3"><b>People with access</b></div>
<ul class="list-group my-3 overflow-auto mh-25">
<li class="list-group-item d-flex justify-content-between">
<small class="d-flex align-items-center"
>{$page.data.session.user.firstName} {$page.data.session.user.lastName} (You)</small
>
<button type="button" class="btn btn-light btn-sm" disabled>
{file.ownerId === $page.data.session.user.publicId ? 'Owner' : ''}
</button>
</li>
{#each file.users as user, i (user.publicId)}
<li
class="list-group-item d-flex justify-content-between"
class:d-none={$form.users[i].remove}
>
<small class="d-flex align-items-center">{user.firstName} {user.lastName}</small>
{#if file.access.sharing}
<input type="hidden" name="publicId" value={user.publicId} />
<input
type="checkbox"
class="btn-check"
id="file-user-{id}-{i}"
autocomplete="off"
bind:checked={$form.users[i].remove}
name="remove"
/> <!-- ^^^^^^^^^^^^^ this was the problem -->
<label class="btn btn-light btn-sm" for="file-user-{id}-{i}">
<i class="bi bi-x-lg" />
</label>
{/if}
</li>
{/each}
</ul>
{#if serverError}
<div class="invalid-feedback d-block">{serverError}</div>
{/if}
</form>
|
Thank you for the report, but this is very strange, how can the attribute of an input element affect the parent DOM object of the element's form? I have never seen that before. |
I am not sure why it is occurring, but I have found some time to create an MRE. Steps to reproduce
ExpectedUser can be added/removed with the form (expected behaviour can be reproduced by commenting out ActualIf input has attribute
else if input has attribute
Note that it is quite inconsistent. I have found that I reproduce the error more consistently after spending more time in the error/making changes - so it may be related to local dev/HMR? |
Description
I have a pretty dense SPA superform component that throws an error from
EnhancedForm_destroy
, because ofUncaught (in promise) TypeError: EnhancedForm.remove is not a function
.It seems thatEnhancedForm
is expected to be a HTMLElement with aremove()
method. This is fine on Chrome.However, on Firefox, there is noremove()
method - I believe it is a DOM Node.EDIT: I have reproduced on both Chrome and Firefox.
2024-11-02.16-57-54.mp4
The error is bubbling from here:
sveltekit-superforms/src/lib/client/superForm.ts
Lines 1395 to 1400 in ae643b2
sveltekit-superforms/src/lib/client/superForm.ts
Lines 542 to 552 in ae643b2
If applicable, a MRE
Apologies, I have attempted to reproduce in a minimal REPL, but I have been unable to.
Discovered error on
sveltekit-superforms
v2.12.3, attempted to upgrade tosveltekit-superforms
, v2.19.1 and issue is still occurring.Firefox version 126.0 (64-bit)
Chrome Version 128.0.6613.137
The text was updated successfully, but these errors were encountered: