63 lines
1.2 KiB
TypeScript
63 lines
1.2 KiB
TypeScript
import type { CollectionConfig } from 'payload'
|
|
|
|
export const nestedToArrayAndBlockCollectionSlug = 'nested'
|
|
|
|
export const NestedToArrayAndBlock: CollectionConfig = {
|
|
slug: nestedToArrayAndBlockCollectionSlug,
|
|
fields: [
|
|
{
|
|
type: 'blocks',
|
|
name: 'blocks',
|
|
blocks: [
|
|
{
|
|
slug: 'block',
|
|
fields: [
|
|
{
|
|
name: 'array',
|
|
type: 'array',
|
|
fields: [
|
|
{
|
|
name: 'text',
|
|
type: 'text',
|
|
localized: true,
|
|
},
|
|
{
|
|
name: 'textNotLocalized',
|
|
type: 'text',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
name: 'topLevelArray',
|
|
type: 'array',
|
|
localized: false,
|
|
fields: [
|
|
{
|
|
name: 'localizedText',
|
|
type: 'text',
|
|
localized: true,
|
|
},
|
|
{
|
|
name: 'notLocalizedText',
|
|
type: 'text',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
name: 'topLevelArrayLocalized',
|
|
type: 'array',
|
|
localized: true,
|
|
fields: [
|
|
{
|
|
name: 'text',
|
|
type: 'text',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
}
|