Fixes https://github.com/payloadcms/payload/issues/11224 Fixes https://github.com/payloadcms/payload/issues/10492 This PR fixes a few weird behaviours when `validate: true` is set on drafts: - when autosave is on and you submit an invalid form it would get stuck in an infinite loop - PreventLeave would not trigger for submitted but invalid forms leading to potential data loss Changes: - Adds e2e tests for the above scenarios - Adds a new `isValid` flag on the `Form` context provider to signal globally if the form is in a valid or invalid state - Components like Autosave will manage this internally since it manages its own submission flow as well - Adds PreventLeave to Autosave too for when form is invalid meaning data hasn't been actually saved so we want to prevent the user accidentally losing data by reloading or closing the page The following tests have been added 
36 lines
953 B
TypeScript
36 lines
953 B
TypeScript
import type { Page } from '@playwright/test'
|
|
|
|
import { expect } from '@playwright/test'
|
|
import { wait } from 'payload/shared'
|
|
import { POLL_TOPASS_TIMEOUT } from 'playwright.config.js'
|
|
|
|
export async function waitForAutoSaveToRunAndComplete(
|
|
page: Page,
|
|
expectation: 'error' | 'success' = 'success',
|
|
) {
|
|
await expect(async () => {
|
|
await expect(page.locator('.autosave:has-text("Saving...")')).toBeVisible()
|
|
}).toPass({
|
|
timeout: POLL_TOPASS_TIMEOUT,
|
|
intervals: [50],
|
|
})
|
|
|
|
await wait(500)
|
|
|
|
if (expectation === 'success') {
|
|
await expect(async () => {
|
|
await expect(
|
|
page.locator('.autosave:has-text("Last saved less than a minute ago")'),
|
|
).toBeVisible()
|
|
}).toPass({
|
|
timeout: POLL_TOPASS_TIMEOUT,
|
|
})
|
|
} else {
|
|
await expect(async () => {
|
|
await expect(page.locator('.payload-toast-container .toast-error')).toBeVisible()
|
|
}).toPass({
|
|
timeout: POLL_TOPASS_TIMEOUT,
|
|
})
|
|
}
|
|
}
|