File size: 1,321 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
import { CollectionConfig } from "payload/types";
import { publishedOnly } from "../access/publishedOnly";
import { CallToAction } from "../blocks/CallToAction";
import { Content } from "../blocks/Content";
import { MediaBlock } from "../blocks/Media";
import { hero } from "../fields/hero";
import { slugField } from "../fields/slug";
import { regenerateStaticPage } from "../utilities/regenerateStaticPage";
export const Pages: CollectionConfig = {
slug: "pages",
admin: {
useAsTitle: "title",
defaultColumns: ["title", "slug", "updatedAt"],
preview: (doc, { locale }) => {
if (doc?.slug) {
return `/${doc.slug}${locale ? `?locale=${locale}` : ""}`;
}
return "";
},
},
access: {
read: publishedOnly,
},
hooks: {
afterChange: [regenerateStaticPage],
},
fields: [
{
name: "title",
type: "text",
required: true,
},
{
type: "tabs",
tabs: [
{
label: "Hero",
fields: [hero],
},
{
label: "Content",
fields: [
{
name: "layout",
type: "blocks",
required: true,
blocks: [CallToAction, Content, MediaBlock],
},
],
},
],
},
slugField(),
],
};
|