54 lines
1.2 KiB
TypeScript
54 lines
1.2 KiB
TypeScript
import type { CollectionConfig } from 'payload'
|
|
|
|
export const blocksCollectionSlug = 'blocks-fields'
|
|
|
|
export const BlocksCollection: CollectionConfig = {
|
|
slug: blocksCollectionSlug,
|
|
fields: [
|
|
{
|
|
name: 'content',
|
|
label: 'Content',
|
|
type: 'blocks',
|
|
localized: true,
|
|
blocks: [
|
|
{
|
|
slug: 'blockInsideBlock',
|
|
fields: [
|
|
{
|
|
name: 'content',
|
|
type: 'blocks',
|
|
blocks: [
|
|
{
|
|
slug: 'textBlock',
|
|
fields: [
|
|
{
|
|
name: 'text',
|
|
type: 'text',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
name: 'array',
|
|
type: 'array',
|
|
fields: [
|
|
{
|
|
name: 'link',
|
|
type: 'group',
|
|
fields: [
|
|
{
|
|
name: 'label',
|
|
type: 'text',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
}
|