99 lines
2.0 KiB
TypeScript
99 lines
2.0 KiB
TypeScript
import type { CollectionConfig } from 'payload/types'
|
|
|
|
import { Archive } from '../blocks/ArchiveBlock/index.js'
|
|
import { CallToAction } from '../blocks/CallToAction/index.js'
|
|
import { Content } from '../blocks/Content/index.js'
|
|
import { MediaBlock } from '../blocks/MediaBlock/index.js'
|
|
import { hero } from '../fields/hero.js'
|
|
import { tenantsSlug } from '../shared.js'
|
|
|
|
export const postsSlug = 'posts'
|
|
|
|
export const Posts: CollectionConfig = {
|
|
slug: postsSlug,
|
|
access: {
|
|
read: () => true,
|
|
create: () => true,
|
|
update: () => true,
|
|
delete: () => true,
|
|
},
|
|
admin: {
|
|
useAsTitle: 'title',
|
|
defaultColumns: ['id', 'title', 'slug', 'createdAt'],
|
|
},
|
|
fields: [
|
|
{
|
|
name: 'slug',
|
|
type: 'text',
|
|
required: true,
|
|
admin: {
|
|
position: 'sidebar',
|
|
},
|
|
},
|
|
{
|
|
name: 'tenant',
|
|
type: 'relationship',
|
|
relationTo: tenantsSlug,
|
|
admin: {
|
|
position: 'sidebar',
|
|
},
|
|
},
|
|
{
|
|
name: 'title',
|
|
type: 'text',
|
|
required: true,
|
|
},
|
|
{
|
|
type: 'tabs',
|
|
tabs: [
|
|
{
|
|
label: 'Hero',
|
|
fields: [hero],
|
|
},
|
|
{
|
|
label: 'Content',
|
|
fields: [
|
|
{
|
|
name: 'layout',
|
|
type: 'blocks',
|
|
blocks: [CallToAction, Content, MediaBlock, Archive],
|
|
},
|
|
{
|
|
name: 'relatedPosts',
|
|
type: 'relationship',
|
|
relationTo: 'posts',
|
|
hasMany: true,
|
|
filterOptions: ({ id }) => {
|
|
return {
|
|
id: {
|
|
not_in: [id],
|
|
},
|
|
}
|
|
},
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
name: 'meta',
|
|
type: 'group',
|
|
fields: [
|
|
{
|
|
name: 'title',
|
|
type: 'text',
|
|
},
|
|
{
|
|
name: 'description',
|
|
type: 'textarea',
|
|
},
|
|
{
|
|
name: 'image',
|
|
type: 'upload',
|
|
relationTo: 'media',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
}
|