203 lines
4.4 KiB
TypeScript
203 lines
4.4 KiB
TypeScript
import type { Page } from '../payload-types.js'
|
|
|
|
import { postsSlug } from '../shared.js'
|
|
|
|
export const home: Omit<Page, 'createdAt' | 'id' | 'updatedAt'> = {
|
|
slug: 'home',
|
|
title: 'Home',
|
|
meta: {
|
|
description: 'This is an example of live preview on a page.',
|
|
},
|
|
tenant: '{{TENANT_1_ID}}',
|
|
hero: {
|
|
type: 'highImpact',
|
|
richText: [
|
|
{
|
|
type: 'h1',
|
|
children: [{ text: 'Hello, world!' }],
|
|
},
|
|
{
|
|
type: 'p',
|
|
children: [
|
|
{
|
|
text: 'This is an example of live preview on a page. You can edit this page in the admin panel and see the changes reflected here.',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
media: '{{MEDIA_ID}}',
|
|
},
|
|
layout: [
|
|
{
|
|
blockType: 'archive',
|
|
populateBy: 'selection',
|
|
selectedDocs: [
|
|
{
|
|
relationTo: postsSlug,
|
|
value: '{{POST_1_ID}}',
|
|
},
|
|
{
|
|
relationTo: postsSlug,
|
|
value: '{{POST_2_ID}}',
|
|
},
|
|
{
|
|
relationTo: postsSlug,
|
|
value: '{{POST_3_ID}}',
|
|
},
|
|
],
|
|
introContent: [
|
|
{
|
|
type: 'h2',
|
|
children: [{ text: 'Recent Posts' }],
|
|
},
|
|
{
|
|
type: 'p',
|
|
children: [
|
|
{
|
|
text: 'This is a custom layout building block. You can edit this block in the admin panel and see the changes reflected here.',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
blockType: 'cta',
|
|
blockName: 'CTA',
|
|
richText: [
|
|
{
|
|
children: [
|
|
{
|
|
text: 'This is a call to action',
|
|
},
|
|
],
|
|
type: 'h4',
|
|
},
|
|
{
|
|
children: [
|
|
{
|
|
text: 'This is a custom layout building block. You can edit this block in the admin panel and see the changes reflected here.',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
links: [
|
|
{
|
|
link: {
|
|
type: 'reference',
|
|
url: '',
|
|
label: 'All posts',
|
|
appearance: 'primary',
|
|
reference: {
|
|
value: '{{POSTS_PAGE_ID}}',
|
|
relationTo: 'pages',
|
|
},
|
|
},
|
|
},
|
|
],
|
|
},
|
|
],
|
|
relationshipAsUpload: '{{MEDIA_ID}}',
|
|
richTextSlate: [
|
|
{
|
|
children: [
|
|
{
|
|
text: ' ',
|
|
},
|
|
],
|
|
relationTo: postsSlug,
|
|
type: 'relationship',
|
|
value: {
|
|
id: '{{POST_1_ID}}',
|
|
},
|
|
},
|
|
{
|
|
type: 'paragraph',
|
|
children: [
|
|
{
|
|
text: '',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
children: [
|
|
{
|
|
text: '',
|
|
},
|
|
],
|
|
relationTo: 'media',
|
|
type: 'upload',
|
|
value: {
|
|
id: '{{MEDIA_ID}}',
|
|
},
|
|
},
|
|
],
|
|
richTextLexical: {
|
|
root: {
|
|
type: 'root',
|
|
format: '',
|
|
indent: 0,
|
|
version: 1,
|
|
children: [
|
|
{
|
|
format: '',
|
|
type: 'relationship',
|
|
version: 1,
|
|
relationTo: postsSlug,
|
|
value: {
|
|
id: '{{POST_1_ID}}',
|
|
},
|
|
},
|
|
{
|
|
children: [],
|
|
direction: null,
|
|
format: '',
|
|
indent: 0,
|
|
type: 'paragraph',
|
|
version: 1,
|
|
},
|
|
{
|
|
format: '',
|
|
type: 'upload',
|
|
version: 1,
|
|
fields: null,
|
|
relationTo: 'media',
|
|
value: {
|
|
id: '{{MEDIA_ID}}',
|
|
},
|
|
},
|
|
],
|
|
direction: null,
|
|
},
|
|
},
|
|
relationshipMonoHasMany: ['{{POST_1_ID}}'],
|
|
relationshipMonoHasOne: '{{POST_1_ID}}',
|
|
relationshipPolyHasMany: [{ relationTo: 'posts', value: '{{POST_1_ID}}' }],
|
|
relationshipPolyHasOne: { relationTo: 'posts', value: '{{POST_1_ID}}' },
|
|
arrayOfRelationships: [
|
|
{
|
|
uploadInArray: '{{MEDIA_ID}}',
|
|
richTextInArray: [
|
|
{
|
|
children: [
|
|
{
|
|
text: ' ',
|
|
},
|
|
],
|
|
relationTo: postsSlug,
|
|
type: 'relationship',
|
|
value: {
|
|
id: '{{POST_1_ID}}',
|
|
},
|
|
},
|
|
],
|
|
relationshipInArrayMonoHasMany: ['{{POST_1_ID}}'],
|
|
relationshipInArrayMonoHasOne: '{{POST_1_ID}}',
|
|
relationshipInArrayPolyHasMany: [{ relationTo: 'posts', value: '{{POST_1_ID}}' }],
|
|
relationshipInArrayPolyHasOne: { relationTo: 'posts', value: '{{POST_1_ID}}' },
|
|
},
|
|
],
|
|
tab: {
|
|
relationshipInTab: '{{POST_1_ID}}',
|
|
},
|
|
}
|