61 lines
1.9 KiB
TypeScript
61 lines
1.9 KiB
TypeScript
import type { SanitizedConfig } from 'payload/config'
|
|
|
|
import { APIError } from '../../packages/payload/src/errors/index.js'
|
|
import { buildConfigWithDefaults } from '../buildConfigWithDefaults.js'
|
|
import AfterOperation from './collections/AfterOperation/index.js'
|
|
import ChainingHooks from './collections/ChainingHooks/index.js'
|
|
import ContextHooks from './collections/ContextHooks/index.js'
|
|
import { DataHooks } from './collections/Data/index.js'
|
|
import Hooks, { hooksSlug } from './collections/Hook/index.js'
|
|
import NestedAfterReadHooks from './collections/NestedAfterReadHooks/index.js'
|
|
import Relations from './collections/Relations/index.js'
|
|
import TransformHooks from './collections/Transform/index.js'
|
|
import Users, { seedHooksUsers } from './collections/Users/index.js'
|
|
import { DataHooksGlobal } from './globals/Data/index.js'
|
|
export const HooksConfig: Promise<SanitizedConfig> = buildConfigWithDefaults({
|
|
collections: [
|
|
AfterOperation,
|
|
ContextHooks,
|
|
TransformHooks,
|
|
Hooks,
|
|
NestedAfterReadHooks,
|
|
ChainingHooks,
|
|
Relations,
|
|
Users,
|
|
DataHooks,
|
|
],
|
|
globals: [DataHooksGlobal],
|
|
endpoints: [
|
|
{
|
|
path: '/throw-to-after-error',
|
|
method: 'get',
|
|
handler: () => {
|
|
throw new APIError("I'm a teapot", 418)
|
|
},
|
|
},
|
|
],
|
|
hooks: {
|
|
afterError: () => console.log('Running afterError hook'),
|
|
},
|
|
onInit: async (payload) => {
|
|
await seedHooksUsers(payload)
|
|
await payload.create({
|
|
collection: hooksSlug,
|
|
data: {
|
|
check: 'update',
|
|
fieldBeforeValidate: false,
|
|
collectionBeforeValidate: false,
|
|
fieldBeforeChange: false,
|
|
collectionBeforeChange: false,
|
|
fieldAfterChange: false,
|
|
collectionAfterChange: false,
|
|
collectionBeforeRead: false,
|
|
fieldAfterRead: false,
|
|
collectionAfterRead: false,
|
|
},
|
|
})
|
|
},
|
|
})
|
|
|
|
export default HooksConfig
|