* feat: adds sortOptions property to relationship field * chore: fix lexical int tests * feat: simplifies logic & updates joi schema definition * feat: revert to default when searching in relationship select * fix types and joi schema * type adjustments --------- Co-authored-by: Alessio Gravili <alessio@bonfireleads.com> Co-authored-by: Jarrod Flesch <jarrodmflesch@gmail.com>
119 lines
2.4 KiB
TypeScript
119 lines
2.4 KiB
TypeScript
import type { CollectionConfig } from '../../../../packages/payload/src/collections/config/types'
|
|
|
|
import { AfterInput } from './AfterInput'
|
|
import { BeforeInput } from './BeforeInput'
|
|
import CustomError from './CustomError'
|
|
import CustomLabel from './CustomLabel'
|
|
import { defaultText, textFieldsSlug } from './shared'
|
|
|
|
const TextFields: CollectionConfig = {
|
|
admin: {
|
|
useAsTitle: 'text',
|
|
},
|
|
defaultSort: 'id',
|
|
fields: [
|
|
{
|
|
name: 'text',
|
|
required: true,
|
|
type: 'text',
|
|
},
|
|
{
|
|
name: 'localizedText',
|
|
localized: true,
|
|
type: 'text',
|
|
},
|
|
{
|
|
name: 'i18nText',
|
|
admin: {
|
|
description: {
|
|
en: 'en description',
|
|
es: 'es description',
|
|
},
|
|
placeholder: {
|
|
en: 'en placeholder',
|
|
es: 'es placeholder',
|
|
},
|
|
},
|
|
label: {
|
|
en: 'Text en',
|
|
es: 'Text es',
|
|
},
|
|
type: 'text',
|
|
},
|
|
{
|
|
name: 'defaultFunction',
|
|
defaultValue: () => defaultText,
|
|
type: 'text',
|
|
},
|
|
{
|
|
name: 'defaultAsync',
|
|
defaultValue: async (): Promise<string> => {
|
|
return new Promise((resolve) =>
|
|
setTimeout(() => {
|
|
resolve(defaultText)
|
|
}, 1),
|
|
)
|
|
},
|
|
type: 'text',
|
|
},
|
|
{
|
|
name: 'overrideLength',
|
|
label: 'Override the 40k text length default',
|
|
maxLength: 50000,
|
|
type: 'text',
|
|
},
|
|
{
|
|
name: 'fieldWithDefaultValue',
|
|
defaultValue: async () => {
|
|
const defaultValue = new Promise((resolve) => setTimeout(() => resolve('some-value'), 1000))
|
|
|
|
return defaultValue
|
|
},
|
|
type: 'text',
|
|
},
|
|
{
|
|
name: 'dependentOnFieldWithDefaultValue',
|
|
hooks: {
|
|
beforeChange: [
|
|
({ data }) => {
|
|
return data?.fieldWithDefaultValue || ''
|
|
},
|
|
],
|
|
},
|
|
type: 'text',
|
|
},
|
|
{
|
|
name: 'customLabel',
|
|
admin: {
|
|
components: {
|
|
Label: CustomLabel,
|
|
},
|
|
},
|
|
type: 'text',
|
|
},
|
|
{
|
|
name: 'customError',
|
|
admin: {
|
|
components: {
|
|
Error: CustomError,
|
|
},
|
|
},
|
|
minLength: 3,
|
|
type: 'text',
|
|
},
|
|
{
|
|
name: 'beforeAndAfterInput',
|
|
admin: {
|
|
components: {
|
|
afterInput: [AfterInput],
|
|
beforeInput: [BeforeInput],
|
|
},
|
|
},
|
|
type: 'text',
|
|
},
|
|
],
|
|
slug: textFieldsSlug,
|
|
}
|
|
|
|
export default TextFields
|