Currently, unless a locale is present in the URL search params, the locale context is instantiated using the default locale until prefs load in client-side. This causes the locale selector to briefly render in with the incorrect (default) locale before being replaced by the proper locale of the request. For example, if the default locale is `en`, and the page is requested in `es`, the locale selector will flash with English before changing to the correct locale, even though the page data itself is properly loaded in Spanish. This is especially evident within slow networks. The fix is to query the user's locale preference server-side and thread it into the locale provider to initialize state. Because search params are not available within server layouts, we cannot pass the locale param in the same way, so we rely on the provider itself to read them from the `useSearchParams` hook. If present, this takes precedence over the user's preference if it exists. Since the root page also queries the user's locale preference to determine the proper locale across navigation, we use React's cache function to dedupe these function calls and ensure only a single query is made to the db for each request.
244 lines
8.2 KiB
TypeScript
244 lines
8.2 KiB
TypeScript
import type { Page } from '@playwright/test'
|
|
import type { GeneratedTypes } from 'helpers/sdk/types.js'
|
|
|
|
import { expect, test } from '@playwright/test'
|
|
import { openListColumns } from 'helpers/e2e/openListColumns.js'
|
|
import { toggleColumn } from 'helpers/e2e/toggleColumn.js'
|
|
import { upsertPrefs } from 'helpers/e2e/upsertPrefs.js'
|
|
import path from 'path'
|
|
import { fileURLToPath } from 'url'
|
|
|
|
import type { PayloadTestSDK } from '../../../helpers/sdk/index.js'
|
|
import type { Config } from '../../payload-types.js'
|
|
|
|
import {
|
|
ensureCompilationIsDone,
|
|
exactText,
|
|
initPageConsoleErrorCatch,
|
|
saveDocAndAssert,
|
|
selectTableRow,
|
|
} from '../../../helpers.js'
|
|
import { AdminUrlUtil } from '../../../helpers/adminUrlUtil.js'
|
|
import { initPayloadE2ENoConfig } from '../../../helpers/initPayloadE2ENoConfig.js'
|
|
import { reInitializeDB } from '../../../helpers/reInitializeDB.js'
|
|
import { RESTClient } from '../../../helpers/rest.js'
|
|
import { TEST_TIMEOUT_LONG } from '../../../playwright.config.js'
|
|
import { textFieldsSlug } from '../../slugs.js'
|
|
import { textDoc } from './shared.js'
|
|
|
|
const filename = fileURLToPath(import.meta.url)
|
|
const currentFolder = path.dirname(filename)
|
|
const dirname = path.resolve(currentFolder, '../../')
|
|
|
|
const { beforeAll, beforeEach, describe } = test
|
|
|
|
let payload: PayloadTestSDK<Config>
|
|
let client: RESTClient
|
|
let page: Page
|
|
let serverURL: string
|
|
// If we want to make this run in parallel: test.describe.configure({ mode: 'parallel' })
|
|
let url: AdminUrlUtil
|
|
|
|
describe('Text', () => {
|
|
beforeAll(async ({ browser }, testInfo) => {
|
|
testInfo.setTimeout(TEST_TIMEOUT_LONG)
|
|
process.env.SEED_IN_CONFIG_ONINIT = 'false' // Makes it so the payload config onInit seed is not run. Otherwise, the seed would be run unnecessarily twice for the initial test run - once for beforeEach and once for onInit
|
|
;({ payload, serverURL } = await initPayloadE2ENoConfig({
|
|
dirname,
|
|
// prebuild,
|
|
}))
|
|
url = new AdminUrlUtil(serverURL, textFieldsSlug)
|
|
|
|
const context = await browser.newContext()
|
|
page = await context.newPage()
|
|
initPageConsoleErrorCatch(page)
|
|
|
|
await ensureCompilationIsDone({ page, serverURL })
|
|
})
|
|
beforeEach(async () => {
|
|
await reInitializeDB({
|
|
serverURL,
|
|
snapshotKey: 'fieldsTest',
|
|
uploadsDir: path.resolve(dirname, './collections/Upload/uploads'),
|
|
})
|
|
|
|
if (client) {
|
|
await client.logout()
|
|
}
|
|
client = new RESTClient(null, { defaultSlug: 'users', serverURL })
|
|
await client.login()
|
|
|
|
await ensureCompilationIsDone({ page, serverURL })
|
|
})
|
|
|
|
describe('hidden and disabled fields', () => {
|
|
test('should not render top-level hidden fields in the UI', async () => {
|
|
await page.goto(url.create)
|
|
await expect(page.locator('#field-hiddenTextField')).toBeHidden()
|
|
await page.goto(url.list)
|
|
await expect(page.locator('.cell-hiddenTextField')).toBeHidden()
|
|
await expect(page.locator('#heading-hiddenTextField')).toBeHidden()
|
|
|
|
const columnContainer = await openListColumns(page, {})
|
|
|
|
await expect(
|
|
columnContainer.locator('.column-selector__column', {
|
|
hasText: exactText('Hidden Text Field'),
|
|
}),
|
|
).toBeHidden()
|
|
|
|
await selectTableRow(page, 'Seeded text document')
|
|
await page.locator('.edit-many__toggle').click()
|
|
await page.locator('.field-select .rs__control').click()
|
|
|
|
const hiddenFieldOption = page.locator('.rs__option', {
|
|
hasText: exactText('Hidden Text Field'),
|
|
})
|
|
|
|
await expect(hiddenFieldOption).toBeHidden()
|
|
})
|
|
|
|
test('should not show disabled fields in the UI', async () => {
|
|
await page.goto(url.create)
|
|
await expect(page.locator('#field-disabledTextField')).toHaveCount(0)
|
|
await page.goto(url.list)
|
|
await expect(page.locator('.cell-disabledTextField')).toBeHidden()
|
|
await expect(page.locator('#heading-disabledTextField')).toBeHidden()
|
|
|
|
const columnContainer = await openListColumns(page, {})
|
|
|
|
await expect(
|
|
columnContainer.locator('.column-selector__column', {
|
|
hasText: exactText('Disabled Text Field'),
|
|
}),
|
|
).toBeHidden()
|
|
|
|
await selectTableRow(page, 'Seeded text document')
|
|
|
|
await page.locator('.edit-many__toggle').click()
|
|
|
|
await page.locator('.field-select .rs__control').click()
|
|
|
|
const disabledFieldOption = page.locator('.rs__option', {
|
|
hasText: exactText('Disabled Text Field'),
|
|
})
|
|
|
|
await expect(disabledFieldOption).toBeHidden()
|
|
})
|
|
|
|
test('should render hidden input for admin.hidden fields', async () => {
|
|
await page.goto(url.create)
|
|
await expect(page.locator('#field-adminHiddenTextField')).toHaveAttribute('type', 'hidden')
|
|
await page.goto(url.list)
|
|
await expect(page.locator('.cell-adminHiddenTextField').first()).toBeVisible()
|
|
await expect(page.locator('#heading-adminHiddenTextField')).toBeVisible()
|
|
|
|
const columnContainer = await openListColumns(page, {})
|
|
|
|
await expect(
|
|
columnContainer.locator('.column-selector__column', {
|
|
hasText: exactText('Admin Hidden Text Field'),
|
|
}),
|
|
).toBeVisible()
|
|
|
|
await selectTableRow(page, 'Seeded text document')
|
|
await page.locator('.edit-many__toggle').click()
|
|
await page.locator('.field-select .rs__control').click()
|
|
|
|
const adminHiddenFieldOption = page.locator('.rs__option', {
|
|
hasText: exactText('Admin Hidden Text Field'),
|
|
})
|
|
|
|
await expect(adminHiddenFieldOption).toBeVisible()
|
|
})
|
|
|
|
test('hidden and disabled fields should not break subsequent field paths', async () => {
|
|
await page.goto(url.create)
|
|
await expect(page.locator('#custom-field-schema-path')).toHaveText('text-fields._index-4')
|
|
})
|
|
})
|
|
|
|
test('should display field in list view', async () => {
|
|
await page.goto(url.list)
|
|
const textCell = page.locator('.row-1 .cell-text')
|
|
await expect(textCell).toHaveText(textDoc.text)
|
|
})
|
|
|
|
test('should respect admin.disableListColumn despite preferences', async () => {
|
|
await upsertPrefs<Config, GeneratedTypes<any>>({
|
|
payload,
|
|
user: client.user,
|
|
key: 'text-fields-list',
|
|
value: {
|
|
columns: [
|
|
{
|
|
accessor: 'disableListColumnText',
|
|
active: true,
|
|
},
|
|
],
|
|
},
|
|
})
|
|
|
|
await page.goto(url.list)
|
|
await openListColumns(page, {})
|
|
await expect(
|
|
page.locator(`.column-selector .column-selector__column`, {
|
|
hasText: exactText('Disable List Column Text'),
|
|
}),
|
|
).toBeHidden()
|
|
|
|
await expect(page.locator('#heading-disableListColumnText')).toBeHidden()
|
|
await expect(page.locator('table .row-1 .cell-disableListColumnText')).toBeHidden()
|
|
})
|
|
|
|
test('should display i18n label in cells when missing field data', async () => {
|
|
await page.goto(url.list)
|
|
await page.waitForURL(new RegExp(`${url.list}.*\\?.*`))
|
|
|
|
await toggleColumn(page, {
|
|
targetState: 'on',
|
|
columnLabel: 'Text en',
|
|
})
|
|
|
|
const textCell = page.locator('.row-1 .cell-i18nText')
|
|
|
|
await expect(textCell).toHaveText('<No Text en>')
|
|
})
|
|
|
|
test('should show i18n label', async () => {
|
|
await page.goto(url.create)
|
|
|
|
await expect(page.locator('label[for="field-i18nText"]')).toHaveText('Text en')
|
|
})
|
|
|
|
test('should show i18n placeholder', async () => {
|
|
await page.goto(url.create)
|
|
await expect(page.locator('#field-i18nText')).toHaveAttribute('placeholder', 'en placeholder')
|
|
})
|
|
|
|
test('should show i18n descriptions', async () => {
|
|
await page.goto(url.create)
|
|
const description = page.locator('.field-description-i18nText')
|
|
await expect(description).toHaveText('en description')
|
|
})
|
|
|
|
test('should create hasMany with multiple texts', async () => {
|
|
const input = 'five'
|
|
const furtherInput = 'six'
|
|
|
|
await page.goto(url.create)
|
|
const requiredField = page.locator('#field-text')
|
|
const field = page.locator('.field-hasMany')
|
|
|
|
await requiredField.fill(String(input))
|
|
await field.click()
|
|
await page.keyboard.type(input)
|
|
await page.keyboard.press('Enter')
|
|
await page.keyboard.type(furtherInput)
|
|
await page.keyboard.press('Enter')
|
|
await saveDocAndAssert(page)
|
|
await expect(field.locator('.rs__value-container')).toContainText(input)
|
|
await expect(field.locator('.rs__value-container')).toContainText(furtherInput)
|
|
})
|
|
})
|