payload 3.21.0 → 3.22.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/admin/forms/Form.d.ts +7 -0
- package/dist/admin/forms/Form.d.ts.map +1 -1
- package/dist/admin/forms/Form.js.map +1 -1
- package/dist/auth/strategies/local/generatePasswordSaltHash.d.ts.map +1 -1
- package/dist/auth/strategies/local/generatePasswordSaltHash.js +1 -0
- package/dist/auth/strategies/local/generatePasswordSaltHash.js.map +1 -1
- package/dist/config/types.d.ts +8 -0
- package/dist/config/types.d.ts.map +1 -1
- package/dist/config/types.js.map +1 -1
- package/dist/fields/config/types.d.ts +32 -3
- package/dist/fields/config/types.d.ts.map +1 -1
- package/dist/fields/config/types.js.map +1 -1
- package/dist/fields/hooks/afterChange/promise.d.ts +5 -1
- package/dist/fields/hooks/afterChange/promise.d.ts.map +1 -1
- package/dist/fields/hooks/afterChange/promise.js +8 -1
- package/dist/fields/hooks/afterChange/promise.js.map +1 -1
- package/dist/fields/hooks/afterChange/traverseFields.d.ts +5 -1
- package/dist/fields/hooks/afterChange/traverseFields.d.ts.map +1 -1
- package/dist/fields/hooks/afterChange/traverseFields.js +2 -1
- package/dist/fields/hooks/afterChange/traverseFields.js.map +1 -1
- package/dist/fields/hooks/afterRead/promise.d.ts +5 -1
- package/dist/fields/hooks/afterRead/promise.d.ts.map +1 -1
- package/dist/fields/hooks/afterRead/promise.js +12 -1
- package/dist/fields/hooks/afterRead/promise.js.map +1 -1
- package/dist/fields/hooks/afterRead/traverseFields.d.ts +5 -1
- package/dist/fields/hooks/afterRead/traverseFields.d.ts.map +1 -1
- package/dist/fields/hooks/afterRead/traverseFields.js +2 -1
- package/dist/fields/hooks/afterRead/traverseFields.js.map +1 -1
- package/dist/fields/hooks/beforeChange/promise.d.ts +5 -1
- package/dist/fields/hooks/beforeChange/promise.d.ts.map +1 -1
- package/dist/fields/hooks/beforeChange/promise.js +13 -2
- package/dist/fields/hooks/beforeChange/promise.js.map +1 -1
- package/dist/fields/hooks/beforeChange/traverseFields.d.ts +5 -1
- package/dist/fields/hooks/beforeChange/traverseFields.d.ts.map +1 -1
- package/dist/fields/hooks/beforeChange/traverseFields.js +2 -1
- package/dist/fields/hooks/beforeChange/traverseFields.js.map +1 -1
- package/dist/fields/hooks/beforeDuplicate/promise.d.ts +5 -1
- package/dist/fields/hooks/beforeDuplicate/promise.d.ts.map +1 -1
- package/dist/fields/hooks/beforeDuplicate/promise.js +13 -1
- package/dist/fields/hooks/beforeDuplicate/promise.js.map +1 -1
- package/dist/fields/hooks/beforeDuplicate/traverseFields.d.ts +5 -1
- package/dist/fields/hooks/beforeDuplicate/traverseFields.d.ts.map +1 -1
- package/dist/fields/hooks/beforeDuplicate/traverseFields.js +2 -1
- package/dist/fields/hooks/beforeDuplicate/traverseFields.js.map +1 -1
- package/dist/fields/hooks/beforeValidate/promise.d.ts +5 -1
- package/dist/fields/hooks/beforeValidate/promise.d.ts.map +1 -1
- package/dist/fields/hooks/beforeValidate/promise.js +9 -1
- package/dist/fields/hooks/beforeValidate/promise.js.map +1 -1
- package/dist/fields/hooks/beforeValidate/traverseFields.d.ts +5 -1
- package/dist/fields/hooks/beforeValidate/traverseFields.d.ts.map +1 -1
- package/dist/fields/hooks/beforeValidate/traverseFields.js +2 -1
- package/dist/fields/hooks/beforeValidate/traverseFields.js.map +1 -1
- package/dist/fields/validations.d.ts.map +1 -1
- package/dist/fields/validations.js +2 -1
- package/dist/fields/validations.js.map +1 -1
- package/dist/globals/operations/update.d.ts.map +1 -1
- package/dist/globals/operations/update.js +4 -0
- package/dist/globals/operations/update.js.map +1 -1
- package/dist/utilities/configToJSONSchema.d.ts.map +1 -1
- package/dist/utilities/configToJSONSchema.js +3 -1
- package/dist/utilities/configToJSONSchema.js.map +1 -1
- package/package.json +2 -2
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../src/fields/hooks/afterChange/promise.ts"],"sourcesContent":["import type { RichTextAdapter } from '../../../admin/RichText.js'\nimport type { SanitizedCollectionConfig } from '../../../collections/config/types.js'\nimport type { SanitizedGlobalConfig } from '../../../globals/config/types.js'\nimport type { RequestContext } from '../../../index.js'\nimport type { JsonObject, PayloadRequest } from '../../../types/index.js'\nimport type { Field, TabAsField } from '../../config/types.js'\n\nimport { MissingEditorProp } from '../../../errors/index.js'\nimport { fieldAffectsData, tabHasName } from '../../config/types.js'\nimport { getFieldPathsModified as getFieldPaths } from '../../getFieldPaths.js'\nimport { traverseFields } from './traverseFields.js'\n\ntype Args = {\n collection: null | SanitizedCollectionConfig\n context: RequestContext\n data: JsonObject\n doc: JsonObject\n field: Field | TabAsField\n fieldIndex: number\n global: null | SanitizedGlobalConfig\n operation: 'create' | 'update'\n parentIndexPath: string\n parentPath: string\n parentSchemaPath: string\n previousDoc: JsonObject\n previousSiblingDoc: JsonObject\n req: PayloadRequest\n siblingData: JsonObject\n siblingDoc: JsonObject\n}\n\n// This function is responsible for the following actions, in order:\n// - Execute field hooks\n\nexport const promise = async ({\n collection,\n context,\n data,\n doc,\n field,\n fieldIndex,\n global,\n operation,\n parentIndexPath,\n parentPath,\n parentSchemaPath,\n previousDoc,\n previousSiblingDoc,\n req,\n siblingData,\n siblingDoc,\n}: Args): Promise<void> => {\n const { indexPath, path, schemaPath } = getFieldPaths({\n field,\n index: fieldIndex,\n parentIndexPath,\n parentPath,\n parentSchemaPath,\n })\n\n const pathSegments = path ? path.split('.') : []\n const schemaPathSegments = schemaPath ? schemaPath.split('.') : []\n const indexPathSegments = indexPath ? indexPath.split('-').filter(Boolean)?.map(Number) : []\n\n if (fieldAffectsData(field)) {\n // Execute hooks\n if (field.hooks?.afterChange) {\n await field.hooks.afterChange.reduce(async (priorHook, currentHook) => {\n await priorHook\n\n const hookedValue = await currentHook({\n collection,\n context,\n data,\n field,\n global,\n indexPath: indexPathSegments,\n operation,\n originalDoc: doc,\n path: pathSegments,\n previousDoc,\n previousSiblingDoc,\n previousValue: previousDoc[field.name],\n req,\n schemaPath: schemaPathSegments,\n siblingData,\n value: siblingDoc[field.name],\n })\n\n if (hookedValue !== undefined) {\n siblingDoc[field.name] = hookedValue\n }\n }, Promise.resolve())\n }\n }\n\n // Traverse subfields\n switch (field.type) {\n case 'array': {\n const rows = siblingDoc[field.name]\n\n if (Array.isArray(rows)) {\n const promises = []\n rows.forEach((row, rowIndex) => {\n promises.push(\n traverseFields({\n collection,\n context,\n data,\n doc,\n fields: field.fields,\n global,\n operation,\n parentIndexPath: '',\n parentPath: path + '.' + rowIndex,\n parentSchemaPath: schemaPath,\n previousDoc,\n previousSiblingDoc: previousDoc?.[field.name]?.[rowIndex] || ({} as JsonObject),\n req,\n siblingData: siblingData?.[field.name]?.[rowIndex] || {},\n siblingDoc: row ? { ...row } : {},\n }),\n )\n })\n await Promise.all(promises)\n }\n\n break\n }\n\n case 'blocks': {\n const rows = siblingDoc[field.name]\n\n if (Array.isArray(rows)) {\n const promises = []\n\n rows.forEach((row, rowIndex) => {\n const block = field.blocks.find(\n (blockType) => blockType.slug === (row as JsonObject).blockType,\n )\n\n if (block) {\n promises.push(\n traverseFields({\n collection,\n context,\n data,\n doc,\n fields: block.fields,\n global,\n operation,\n parentIndexPath: '',\n parentPath: path + '.' + rowIndex,\n parentSchemaPath: schemaPath + '.' + block.slug,\n previousDoc,\n previousSiblingDoc: previousDoc?.[field.name]?.[rowIndex] || ({} as JsonObject),\n req,\n siblingData: siblingData?.[field.name]?.[rowIndex] || {},\n siblingDoc: row ? { ...row } : {},\n }),\n )\n }\n })\n\n await Promise.all(promises)\n }\n\n break\n }\n\n case 'collapsible':\n case 'row': {\n await traverseFields({\n collection,\n context,\n data,\n doc,\n fields: field.fields,\n global,\n operation,\n parentIndexPath: indexPath,\n parentPath,\n parentSchemaPath: schemaPath,\n previousDoc,\n previousSiblingDoc: { ...previousSiblingDoc },\n req,\n siblingData: siblingData || {},\n siblingDoc: { ...siblingDoc },\n })\n\n break\n }\n\n case 'group': {\n await traverseFields({\n collection,\n context,\n data,\n doc,\n fields: field.fields,\n global,\n operation,\n parentIndexPath: '',\n parentPath: path,\n parentSchemaPath: schemaPath,\n previousDoc,\n previousSiblingDoc: previousDoc[field.name] as JsonObject,\n req,\n siblingData: (siblingData?.[field.name] as JsonObject) || {},\n siblingDoc: siblingDoc[field.name] as JsonObject,\n })\n\n break\n }\n\n case 'richText': {\n if (!field?.editor) {\n throw new MissingEditorProp(field) // while we allow disabling editor functionality, you should not have any richText fields defined if you do not have an editor\n }\n\n if (typeof field?.editor === 'function') {\n throw new Error('Attempted to access unsanitized rich text editor.')\n }\n\n const editor: RichTextAdapter = field?.editor\n\n if (editor?.hooks?.afterChange?.length) {\n await editor.hooks.afterChange.reduce(async (priorHook, currentHook) => {\n await priorHook\n\n const hookedValue = await currentHook({\n collection,\n context,\n data,\n field,\n global,\n indexPath: indexPathSegments,\n operation,\n originalDoc: doc,\n path: pathSegments,\n previousDoc,\n previousSiblingDoc,\n previousValue: previousDoc[field.name],\n req,\n schemaPath: schemaPathSegments,\n siblingData,\n value: siblingDoc[field.name],\n })\n\n if (hookedValue !== undefined) {\n siblingDoc[field.name] = hookedValue\n }\n }, Promise.resolve())\n }\n break\n }\n\n case 'tab': {\n let tabSiblingData = siblingData\n let tabSiblingDoc = siblingDoc\n let tabPreviousSiblingDoc = siblingDoc\n\n const isNamedTab = tabHasName(field)\n\n if (isNamedTab) {\n tabSiblingData = (siblingData[field.name] as JsonObject) ?? {}\n tabSiblingDoc = (siblingDoc[field.name] as JsonObject) ?? {}\n tabPreviousSiblingDoc = (previousDoc[field.name] as JsonObject) ?? {}\n }\n\n await traverseFields({\n collection,\n context,\n data,\n doc,\n fields: field.fields,\n global,\n operation,\n parentIndexPath: isNamedTab ? '' : indexPath,\n parentPath: isNamedTab ? path : parentPath,\n parentSchemaPath: schemaPath,\n previousDoc,\n previousSiblingDoc: tabPreviousSiblingDoc,\n req,\n siblingData: tabSiblingData,\n siblingDoc: tabSiblingDoc,\n })\n\n break\n }\n\n case 'tabs': {\n await traverseFields({\n collection,\n context,\n data,\n doc,\n fields: field.tabs.map((tab) => ({ ...tab, type: 'tab' })),\n global,\n operation,\n parentIndexPath: indexPath,\n parentPath: path,\n parentSchemaPath: schemaPath,\n previousDoc,\n previousSiblingDoc: { ...previousSiblingDoc },\n req,\n siblingData: siblingData || {},\n siblingDoc: { ...siblingDoc },\n })\n\n break\n }\n\n default: {\n break\n }\n }\n}\n"],"names":["MissingEditorProp","fieldAffectsData","tabHasName","getFieldPathsModified","getFieldPaths","traverseFields","promise","collection","context","data","doc","field","fieldIndex","global","operation","parentIndexPath","parentPath","parentSchemaPath","previousDoc","previousSiblingDoc","req","siblingData","siblingDoc","indexPath","path","schemaPath","index","pathSegments","split","schemaPathSegments","indexPathSegments","filter","Boolean","map","Number","hooks","afterChange","reduce","priorHook","currentHook","hookedValue","originalDoc","previousValue","name","value","undefined","Promise","resolve","type","rows","Array","isArray","promises","forEach","row","rowIndex","push","fields","all","block","blocks","find","blockType","slug","editor","Error","length","tabSiblingData","tabSiblingDoc","tabPreviousSiblingDoc","isNamedTab","tabs","tab"],"mappings":"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"}
|
|
1
|
+
{"version":3,"sources":["../../../../src/fields/hooks/afterChange/promise.ts"],"sourcesContent":["import type { RichTextAdapter } from '../../../admin/RichText.js'\nimport type { SanitizedCollectionConfig } from '../../../collections/config/types.js'\nimport type { SanitizedGlobalConfig } from '../../../globals/config/types.js'\nimport type { RequestContext } from '../../../index.js'\nimport type { JsonObject, PayloadRequest } from '../../../types/index.js'\nimport type { Field, TabAsField } from '../../config/types.js'\n\nimport { MissingEditorProp } from '../../../errors/index.js'\nimport { fieldAffectsData, tabHasName } from '../../config/types.js'\nimport { getFieldPathsModified as getFieldPaths } from '../../getFieldPaths.js'\nimport { traverseFields } from './traverseFields.js'\n\ntype Args = {\n /**\n * Data of the nearest parent block. If no parent block exists, this will be the `undefined`\n */\n blockData?: JsonObject\n collection: null | SanitizedCollectionConfig\n context: RequestContext\n data: JsonObject\n doc: JsonObject\n field: Field | TabAsField\n fieldIndex: number\n global: null | SanitizedGlobalConfig\n operation: 'create' | 'update'\n parentIndexPath: string\n parentPath: string\n parentSchemaPath: string\n previousDoc: JsonObject\n previousSiblingDoc: JsonObject\n req: PayloadRequest\n siblingData: JsonObject\n siblingDoc: JsonObject\n}\n\n// This function is responsible for the following actions, in order:\n// - Execute field hooks\n\nexport const promise = async ({\n blockData,\n collection,\n context,\n data,\n doc,\n field,\n fieldIndex,\n global,\n operation,\n parentIndexPath,\n parentPath,\n parentSchemaPath,\n previousDoc,\n previousSiblingDoc,\n req,\n siblingData,\n siblingDoc,\n}: Args): Promise<void> => {\n const { indexPath, path, schemaPath } = getFieldPaths({\n field,\n index: fieldIndex,\n parentIndexPath,\n parentPath,\n parentSchemaPath,\n })\n\n const pathSegments = path ? path.split('.') : []\n const schemaPathSegments = schemaPath ? schemaPath.split('.') : []\n const indexPathSegments = indexPath ? indexPath.split('-').filter(Boolean)?.map(Number) : []\n\n if (fieldAffectsData(field)) {\n // Execute hooks\n if (field.hooks?.afterChange) {\n await field.hooks.afterChange.reduce(async (priorHook, currentHook) => {\n await priorHook\n\n const hookedValue = await currentHook({\n blockData,\n collection,\n context,\n data,\n field,\n global,\n indexPath: indexPathSegments,\n operation,\n originalDoc: doc,\n path: pathSegments,\n previousDoc,\n previousSiblingDoc,\n previousValue: previousDoc[field.name],\n req,\n schemaPath: schemaPathSegments,\n siblingData,\n value: siblingDoc[field.name],\n })\n\n if (hookedValue !== undefined) {\n siblingDoc[field.name] = hookedValue\n }\n }, Promise.resolve())\n }\n }\n\n // Traverse subfields\n switch (field.type) {\n case 'array': {\n const rows = siblingDoc[field.name]\n\n if (Array.isArray(rows)) {\n const promises = []\n rows.forEach((row, rowIndex) => {\n promises.push(\n traverseFields({\n blockData,\n collection,\n context,\n data,\n doc,\n fields: field.fields,\n global,\n operation,\n parentIndexPath: '',\n parentPath: path + '.' + rowIndex,\n parentSchemaPath: schemaPath,\n previousDoc,\n previousSiblingDoc: previousDoc?.[field.name]?.[rowIndex] || ({} as JsonObject),\n req,\n siblingData: siblingData?.[field.name]?.[rowIndex] || {},\n siblingDoc: row ? { ...row } : {},\n }),\n )\n })\n await Promise.all(promises)\n }\n\n break\n }\n\n case 'blocks': {\n const rows = siblingDoc[field.name]\n\n if (Array.isArray(rows)) {\n const promises = []\n\n rows.forEach((row, rowIndex) => {\n const block = field.blocks.find(\n (blockType) => blockType.slug === (row as JsonObject).blockType,\n )\n\n if (block) {\n promises.push(\n traverseFields({\n blockData: siblingData?.[field.name]?.[rowIndex],\n collection,\n context,\n data,\n doc,\n fields: block.fields,\n global,\n operation,\n parentIndexPath: '',\n parentPath: path + '.' + rowIndex,\n parentSchemaPath: schemaPath + '.' + block.slug,\n previousDoc,\n previousSiblingDoc: previousDoc?.[field.name]?.[rowIndex] || ({} as JsonObject),\n req,\n siblingData: siblingData?.[field.name]?.[rowIndex] || {},\n siblingDoc: row ? { ...row } : {},\n }),\n )\n }\n })\n\n await Promise.all(promises)\n }\n\n break\n }\n\n case 'collapsible':\n case 'row': {\n await traverseFields({\n blockData,\n collection,\n context,\n data,\n doc,\n fields: field.fields,\n global,\n operation,\n parentIndexPath: indexPath,\n parentPath,\n parentSchemaPath: schemaPath,\n previousDoc,\n previousSiblingDoc: { ...previousSiblingDoc },\n req,\n siblingData: siblingData || {},\n siblingDoc: { ...siblingDoc },\n })\n\n break\n }\n\n case 'group': {\n await traverseFields({\n blockData,\n collection,\n context,\n data,\n doc,\n fields: field.fields,\n global,\n operation,\n parentIndexPath: '',\n parentPath: path,\n parentSchemaPath: schemaPath,\n previousDoc,\n previousSiblingDoc: previousDoc[field.name] as JsonObject,\n req,\n siblingData: (siblingData?.[field.name] as JsonObject) || {},\n siblingDoc: siblingDoc[field.name] as JsonObject,\n })\n\n break\n }\n\n case 'richText': {\n if (!field?.editor) {\n throw new MissingEditorProp(field) // while we allow disabling editor functionality, you should not have any richText fields defined if you do not have an editor\n }\n\n if (typeof field?.editor === 'function') {\n throw new Error('Attempted to access unsanitized rich text editor.')\n }\n\n const editor: RichTextAdapter = field?.editor\n\n if (editor?.hooks?.afterChange?.length) {\n await editor.hooks.afterChange.reduce(async (priorHook, currentHook) => {\n await priorHook\n\n const hookedValue = await currentHook({\n collection,\n context,\n data,\n field,\n global,\n indexPath: indexPathSegments,\n operation,\n originalDoc: doc,\n path: pathSegments,\n previousDoc,\n previousSiblingDoc,\n previousValue: previousDoc[field.name],\n req,\n schemaPath: schemaPathSegments,\n siblingData,\n value: siblingDoc[field.name],\n })\n\n if (hookedValue !== undefined) {\n siblingDoc[field.name] = hookedValue\n }\n }, Promise.resolve())\n }\n break\n }\n\n case 'tab': {\n let tabSiblingData = siblingData\n let tabSiblingDoc = siblingDoc\n let tabPreviousSiblingDoc = siblingDoc\n\n const isNamedTab = tabHasName(field)\n\n if (isNamedTab) {\n tabSiblingData = (siblingData[field.name] as JsonObject) ?? {}\n tabSiblingDoc = (siblingDoc[field.name] as JsonObject) ?? {}\n tabPreviousSiblingDoc = (previousDoc[field.name] as JsonObject) ?? {}\n }\n\n await traverseFields({\n blockData,\n collection,\n context,\n data,\n doc,\n fields: field.fields,\n global,\n operation,\n parentIndexPath: isNamedTab ? '' : indexPath,\n parentPath: isNamedTab ? path : parentPath,\n parentSchemaPath: schemaPath,\n previousDoc,\n previousSiblingDoc: tabPreviousSiblingDoc,\n req,\n siblingData: tabSiblingData,\n siblingDoc: tabSiblingDoc,\n })\n\n break\n }\n\n case 'tabs': {\n await traverseFields({\n blockData,\n collection,\n context,\n data,\n doc,\n fields: field.tabs.map((tab) => ({ ...tab, type: 'tab' })),\n global,\n operation,\n parentIndexPath: indexPath,\n parentPath: path,\n parentSchemaPath: schemaPath,\n previousDoc,\n previousSiblingDoc: { ...previousSiblingDoc },\n req,\n siblingData: siblingData || {},\n siblingDoc: { ...siblingDoc },\n })\n\n break\n }\n\n default: {\n break\n }\n }\n}\n"],"names":["MissingEditorProp","fieldAffectsData","tabHasName","getFieldPathsModified","getFieldPaths","traverseFields","promise","blockData","collection","context","data","doc","field","fieldIndex","global","operation","parentIndexPath","parentPath","parentSchemaPath","previousDoc","previousSiblingDoc","req","siblingData","siblingDoc","indexPath","path","schemaPath","index","pathSegments","split","schemaPathSegments","indexPathSegments","filter","Boolean","map","Number","hooks","afterChange","reduce","priorHook","currentHook","hookedValue","originalDoc","previousValue","name","value","undefined","Promise","resolve","type","rows","Array","isArray","promises","forEach","row","rowIndex","push","fields","all","block","blocks","find","blockType","slug","editor","Error","length","tabSiblingData","tabSiblingDoc","tabPreviousSiblingDoc","isNamedTab","tabs","tab"],"mappings":"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"}
|
|
@@ -4,6 +4,10 @@ import type { RequestContext } from '../../../index.js';
|
|
|
4
4
|
import type { JsonObject, PayloadRequest } from '../../../types/index.js';
|
|
5
5
|
import type { Field, TabAsField } from '../../config/types.js';
|
|
6
6
|
type Args = {
|
|
7
|
+
/**
|
|
8
|
+
* Data of the nearest parent block. If no parent block exists, this will be the `undefined`
|
|
9
|
+
*/
|
|
10
|
+
blockData?: JsonObject;
|
|
7
11
|
collection: null | SanitizedCollectionConfig;
|
|
8
12
|
context: RequestContext;
|
|
9
13
|
data: JsonObject;
|
|
@@ -20,6 +24,6 @@ type Args = {
|
|
|
20
24
|
siblingData: JsonObject;
|
|
21
25
|
siblingDoc: JsonObject;
|
|
22
26
|
};
|
|
23
|
-
export declare const traverseFields: ({ collection, context, data, doc, fields, global, operation, parentIndexPath, parentPath, parentSchemaPath, previousDoc, previousSiblingDoc, req, siblingData, siblingDoc, }: Args) => Promise<void>;
|
|
27
|
+
export declare const traverseFields: ({ blockData, collection, context, data, doc, fields, global, operation, parentIndexPath, parentPath, parentSchemaPath, previousDoc, previousSiblingDoc, req, siblingData, siblingDoc, }: Args) => Promise<void>;
|
|
24
28
|
export {};
|
|
25
29
|
//# sourceMappingURL=traverseFields.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"traverseFields.d.ts","sourceRoot":"","sources":["../../../../src/fields/hooks/afterChange/traverseFields.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,sCAAsC,CAAA;AACrF,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,kCAAkC,CAAA;AAC7E,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AACvD,OAAO,KAAK,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAA;AACzE,OAAO,KAAK,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAA;AAI9D,KAAK,IAAI,GAAG;IACV,UAAU,EAAE,IAAI,GAAG,yBAAyB,CAAA;IAC5C,OAAO,EAAE,cAAc,CAAA;IACvB,IAAI,EAAE,UAAU,CAAA;IAChB,GAAG,EAAE,UAAU,CAAA;IACf,MAAM,EAAE,CAAC,KAAK,GAAG,UAAU,CAAC,EAAE,CAAA;IAC9B,MAAM,EAAE,IAAI,GAAG,qBAAqB,CAAA;IACpC,SAAS,EAAE,QAAQ,GAAG,QAAQ,CAAA;IAC9B,eAAe,EAAE,MAAM,CAAA;IACvB,UAAU,EAAE,MAAM,CAAA;IAClB,gBAAgB,EAAE,MAAM,CAAA;IACxB,WAAW,EAAE,UAAU,CAAA;IACvB,kBAAkB,EAAE,UAAU,CAAA;IAC9B,GAAG,EAAE,cAAc,CAAA;IACnB,WAAW,EAAE,UAAU,CAAA;IACvB,UAAU,EAAE,UAAU,CAAA;CACvB,CAAA;AAED,eAAO,MAAM,cAAc,
|
|
1
|
+
{"version":3,"file":"traverseFields.d.ts","sourceRoot":"","sources":["../../../../src/fields/hooks/afterChange/traverseFields.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,sCAAsC,CAAA;AACrF,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,kCAAkC,CAAA;AAC7E,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AACvD,OAAO,KAAK,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAA;AACzE,OAAO,KAAK,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAA;AAI9D,KAAK,IAAI,GAAG;IACV;;OAEG;IACH,SAAS,CAAC,EAAE,UAAU,CAAA;IACtB,UAAU,EAAE,IAAI,GAAG,yBAAyB,CAAA;IAC5C,OAAO,EAAE,cAAc,CAAA;IACvB,IAAI,EAAE,UAAU,CAAA;IAChB,GAAG,EAAE,UAAU,CAAA;IACf,MAAM,EAAE,CAAC,KAAK,GAAG,UAAU,CAAC,EAAE,CAAA;IAC9B,MAAM,EAAE,IAAI,GAAG,qBAAqB,CAAA;IACpC,SAAS,EAAE,QAAQ,GAAG,QAAQ,CAAA;IAC9B,eAAe,EAAE,MAAM,CAAA;IACvB,UAAU,EAAE,MAAM,CAAA;IAClB,gBAAgB,EAAE,MAAM,CAAA;IACxB,WAAW,EAAE,UAAU,CAAA;IACvB,kBAAkB,EAAE,UAAU,CAAA;IAC9B,GAAG,EAAE,cAAc,CAAA;IACnB,WAAW,EAAE,UAAU,CAAA;IACvB,UAAU,EAAE,UAAU,CAAA;CACvB,CAAA;AAED,eAAO,MAAM,cAAc,4LAiBxB,IAAI,KAAG,OAAO,CAAC,IAAI,CA4BrB,CAAA"}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { promise } from './promise.js';
|
|
2
|
-
export const traverseFields = async ({ collection, context, data, doc, fields, global, operation, parentIndexPath, parentPath, parentSchemaPath, previousDoc, previousSiblingDoc, req, siblingData, siblingDoc })=>{
|
|
2
|
+
export const traverseFields = async ({ blockData, collection, context, data, doc, fields, global, operation, parentIndexPath, parentPath, parentSchemaPath, previousDoc, previousSiblingDoc, req, siblingData, siblingDoc })=>{
|
|
3
3
|
const promises = [];
|
|
4
4
|
fields.forEach((field, fieldIndex)=>{
|
|
5
5
|
promises.push(promise({
|
|
6
|
+
blockData,
|
|
6
7
|
collection,
|
|
7
8
|
context,
|
|
8
9
|
data,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../src/fields/hooks/afterChange/traverseFields.ts"],"sourcesContent":["import type { SanitizedCollectionConfig } from '../../../collections/config/types.js'\nimport type { SanitizedGlobalConfig } from '../../../globals/config/types.js'\nimport type { RequestContext } from '../../../index.js'\nimport type { JsonObject, PayloadRequest } from '../../../types/index.js'\nimport type { Field, TabAsField } from '../../config/types.js'\n\nimport { promise } from './promise.js'\n\ntype Args = {\n collection: null | SanitizedCollectionConfig\n context: RequestContext\n data: JsonObject\n doc: JsonObject\n fields: (Field | TabAsField)[]\n global: null | SanitizedGlobalConfig\n operation: 'create' | 'update'\n parentIndexPath: string\n parentPath: string\n parentSchemaPath: string\n previousDoc: JsonObject\n previousSiblingDoc: JsonObject\n req: PayloadRequest\n siblingData: JsonObject\n siblingDoc: JsonObject\n}\n\nexport const traverseFields = async ({\n collection,\n context,\n data,\n doc,\n fields,\n global,\n operation,\n parentIndexPath,\n parentPath,\n parentSchemaPath,\n previousDoc,\n previousSiblingDoc,\n req,\n siblingData,\n siblingDoc,\n}: Args): Promise<void> => {\n const promises = []\n\n fields.forEach((field, fieldIndex) => {\n promises.push(\n promise({\n collection,\n context,\n data,\n doc,\n field,\n fieldIndex,\n global,\n operation,\n parentIndexPath,\n parentPath,\n parentSchemaPath,\n previousDoc,\n previousSiblingDoc,\n req,\n siblingData,\n siblingDoc,\n }),\n )\n })\n\n await Promise.all(promises)\n}\n"],"names":["promise","traverseFields","collection","context","data","doc","fields","global","operation","parentIndexPath","parentPath","parentSchemaPath","previousDoc","previousSiblingDoc","req","siblingData","siblingDoc","promises","forEach","field","fieldIndex","push","Promise","all"],"mappings":"AAMA,SAASA,OAAO,QAAQ,eAAc;
|
|
1
|
+
{"version":3,"sources":["../../../../src/fields/hooks/afterChange/traverseFields.ts"],"sourcesContent":["import type { SanitizedCollectionConfig } from '../../../collections/config/types.js'\nimport type { SanitizedGlobalConfig } from '../../../globals/config/types.js'\nimport type { RequestContext } from '../../../index.js'\nimport type { JsonObject, PayloadRequest } from '../../../types/index.js'\nimport type { Field, TabAsField } from '../../config/types.js'\n\nimport { promise } from './promise.js'\n\ntype Args = {\n /**\n * Data of the nearest parent block. If no parent block exists, this will be the `undefined`\n */\n blockData?: JsonObject\n collection: null | SanitizedCollectionConfig\n context: RequestContext\n data: JsonObject\n doc: JsonObject\n fields: (Field | TabAsField)[]\n global: null | SanitizedGlobalConfig\n operation: 'create' | 'update'\n parentIndexPath: string\n parentPath: string\n parentSchemaPath: string\n previousDoc: JsonObject\n previousSiblingDoc: JsonObject\n req: PayloadRequest\n siblingData: JsonObject\n siblingDoc: JsonObject\n}\n\nexport const traverseFields = async ({\n blockData,\n collection,\n context,\n data,\n doc,\n fields,\n global,\n operation,\n parentIndexPath,\n parentPath,\n parentSchemaPath,\n previousDoc,\n previousSiblingDoc,\n req,\n siblingData,\n siblingDoc,\n}: Args): Promise<void> => {\n const promises = []\n\n fields.forEach((field, fieldIndex) => {\n promises.push(\n promise({\n blockData,\n collection,\n context,\n data,\n doc,\n field,\n fieldIndex,\n global,\n operation,\n parentIndexPath,\n parentPath,\n parentSchemaPath,\n previousDoc,\n previousSiblingDoc,\n req,\n siblingData,\n siblingDoc,\n }),\n )\n })\n\n await Promise.all(promises)\n}\n"],"names":["promise","traverseFields","blockData","collection","context","data","doc","fields","global","operation","parentIndexPath","parentPath","parentSchemaPath","previousDoc","previousSiblingDoc","req","siblingData","siblingDoc","promises","forEach","field","fieldIndex","push","Promise","all"],"mappings":"AAMA,SAASA,OAAO,QAAQ,eAAc;AAwBtC,OAAO,MAAMC,iBAAiB,OAAO,EACnCC,SAAS,EACTC,UAAU,EACVC,OAAO,EACPC,IAAI,EACJC,GAAG,EACHC,MAAM,EACNC,MAAM,EACNC,SAAS,EACTC,eAAe,EACfC,UAAU,EACVC,gBAAgB,EAChBC,WAAW,EACXC,kBAAkB,EAClBC,GAAG,EACHC,WAAW,EACXC,UAAU,EACL;IACL,MAAMC,WAAW,EAAE;IAEnBX,OAAOY,OAAO,CAAC,CAACC,OAAOC;QACrBH,SAASI,IAAI,CACXtB,QAAQ;YACNE;YACAC;YACAC;YACAC;YACAC;YACAc;YACAC;YACAb;YACAC;YACAC;YACAC;YACAC;YACAC;YACAC;YACAC;YACAC;YACAC;QACF;IAEJ;IAEA,MAAMM,QAAQC,GAAG,CAACN;AACpB,EAAC"}
|
|
@@ -4,6 +4,10 @@ import type { RequestContext } from '../../../index.js';
|
|
|
4
4
|
import type { JsonObject, PayloadRequest, PopulateType, SelectMode, SelectType } from '../../../types/index.js';
|
|
5
5
|
import type { Field, TabAsField } from '../../config/types.js';
|
|
6
6
|
type Args = {
|
|
7
|
+
/**
|
|
8
|
+
* Data of the nearest parent block. If no parent block exists, this will be the `undefined`
|
|
9
|
+
*/
|
|
10
|
+
blockData?: JsonObject;
|
|
7
11
|
collection: null | SanitizedCollectionConfig;
|
|
8
12
|
context: RequestContext;
|
|
9
13
|
currentDepth: number;
|
|
@@ -35,6 +39,6 @@ type Args = {
|
|
|
35
39
|
triggerAccessControl?: boolean;
|
|
36
40
|
triggerHooks?: boolean;
|
|
37
41
|
};
|
|
38
|
-
export declare const promise: ({ collection, context, currentDepth, depth, doc, draft, fallbackLocale, field, fieldIndex, fieldPromises, findMany, flattenLocales, global, locale, overrideAccess, parentIndexPath, parentPath, parentSchemaPath, populate, populationPromises, req, select, selectMode, showHiddenFields, siblingDoc, triggerAccessControl, triggerHooks, }: Args) => Promise<void>;
|
|
42
|
+
export declare const promise: ({ blockData, collection, context, currentDepth, depth, doc, draft, fallbackLocale, field, fieldIndex, fieldPromises, findMany, flattenLocales, global, locale, overrideAccess, parentIndexPath, parentPath, parentSchemaPath, populate, populationPromises, req, select, selectMode, showHiddenFields, siblingDoc, triggerAccessControl, triggerHooks, }: Args) => Promise<void>;
|
|
39
43
|
export {};
|
|
40
44
|
//# sourceMappingURL=promise.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"promise.d.ts","sourceRoot":"","sources":["../../../../src/fields/hooks/afterRead/promise.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,sCAAsC,CAAA;AACrF,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,kCAAkC,CAAA;AAC7E,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AACvD,OAAO,KAAK,EACV,UAAU,EACV,cAAc,EACd,YAAY,EACZ,UAAU,EACV,UAAU,EACX,MAAM,yBAAyB,CAAA;AAChC,OAAO,KAAK,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAA;AAS9D,KAAK,IAAI,GAAG;IACV,UAAU,EAAE,IAAI,GAAG,yBAAyB,CAAA;IAC5C,OAAO,EAAE,cAAc,CAAA;IACvB,YAAY,EAAE,MAAM,CAAA;IACpB,KAAK,EAAE,MAAM,CAAA;IACb,GAAG,EAAE,UAAU,CAAA;IACf,KAAK,EAAE,OAAO,CAAA;IACd,cAAc,EAAE,IAAI,GAAG,MAAM,CAAA;IAC7B,KAAK,EAAE,KAAK,GAAG,UAAU,CAAA;IACzB,UAAU,EAAE,MAAM,CAAA;IAClB;;OAEG;IACH,aAAa,EAAE,OAAO,CAAC,IAAI,CAAC,EAAE,CAAA;IAC9B,QAAQ,EAAE,OAAO,CAAA;IACjB,cAAc,EAAE,OAAO,CAAA;IACvB,MAAM,EAAE,IAAI,GAAG,qBAAqB,CAAA;IACpC,MAAM,EAAE,IAAI,GAAG,MAAM,CAAA;IACrB,cAAc,EAAE,OAAO,CAAA;IACvB,eAAe,EAAE,MAAM,CAAA;IACvB,UAAU,EAAE,MAAM,CAAA;IAClB,gBAAgB,EAAE,MAAM,CAAA;IACxB,QAAQ,CAAC,EAAE,YAAY,CAAA;IACvB,kBAAkB,EAAE,OAAO,CAAC,IAAI,CAAC,EAAE,CAAA;IACnC,GAAG,EAAE,cAAc,CAAA;IACnB,MAAM,CAAC,EAAE,UAAU,CAAA;IACnB,UAAU,CAAC,EAAE,UAAU,CAAA;IACvB,gBAAgB,EAAE,OAAO,CAAA;IACzB,UAAU,EAAE,UAAU,CAAA;IACtB,oBAAoB,CAAC,EAAE,OAAO,CAAA;IAC9B,YAAY,CAAC,EAAE,OAAO,CAAA;CACvB,CAAA;AAUD,eAAO,MAAM,OAAO,
|
|
1
|
+
{"version":3,"file":"promise.d.ts","sourceRoot":"","sources":["../../../../src/fields/hooks/afterRead/promise.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,sCAAsC,CAAA;AACrF,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,kCAAkC,CAAA;AAC7E,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AACvD,OAAO,KAAK,EACV,UAAU,EACV,cAAc,EACd,YAAY,EACZ,UAAU,EACV,UAAU,EACX,MAAM,yBAAyB,CAAA;AAChC,OAAO,KAAK,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAA;AAS9D,KAAK,IAAI,GAAG;IACV;;OAEG;IACH,SAAS,CAAC,EAAE,UAAU,CAAA;IACtB,UAAU,EAAE,IAAI,GAAG,yBAAyB,CAAA;IAC5C,OAAO,EAAE,cAAc,CAAA;IACvB,YAAY,EAAE,MAAM,CAAA;IACpB,KAAK,EAAE,MAAM,CAAA;IACb,GAAG,EAAE,UAAU,CAAA;IACf,KAAK,EAAE,OAAO,CAAA;IACd,cAAc,EAAE,IAAI,GAAG,MAAM,CAAA;IAC7B,KAAK,EAAE,KAAK,GAAG,UAAU,CAAA;IACzB,UAAU,EAAE,MAAM,CAAA;IAClB;;OAEG;IACH,aAAa,EAAE,OAAO,CAAC,IAAI,CAAC,EAAE,CAAA;IAC9B,QAAQ,EAAE,OAAO,CAAA;IACjB,cAAc,EAAE,OAAO,CAAA;IACvB,MAAM,EAAE,IAAI,GAAG,qBAAqB,CAAA;IACpC,MAAM,EAAE,IAAI,GAAG,MAAM,CAAA;IACrB,cAAc,EAAE,OAAO,CAAA;IACvB,eAAe,EAAE,MAAM,CAAA;IACvB,UAAU,EAAE,MAAM,CAAA;IAClB,gBAAgB,EAAE,MAAM,CAAA;IACxB,QAAQ,CAAC,EAAE,YAAY,CAAA;IACvB,kBAAkB,EAAE,OAAO,CAAC,IAAI,CAAC,EAAE,CAAA;IACnC,GAAG,EAAE,cAAc,CAAA;IACnB,MAAM,CAAC,EAAE,UAAU,CAAA;IACnB,UAAU,CAAC,EAAE,UAAU,CAAA;IACvB,gBAAgB,EAAE,OAAO,CAAA;IACzB,UAAU,EAAE,UAAU,CAAA;IACtB,oBAAoB,CAAC,EAAE,OAAO,CAAA;IAC9B,YAAY,CAAC,EAAE,OAAO,CAAA;CACvB,CAAA;AAUD,eAAO,MAAM,OAAO,6VA6BjB,IAAI,KAAG,OAAO,CAAC,IAAI,CAkuBrB,CAAA"}
|
|
@@ -11,7 +11,7 @@ import { traverseFields } from './traverseFields.js';
|
|
|
11
11
|
// - Execute field hooks
|
|
12
12
|
// - Execute read access control
|
|
13
13
|
// - Populate relationships
|
|
14
|
-
export const promise = async ({ collection, context, currentDepth, depth, doc, draft, fallbackLocale, field, fieldIndex, fieldPromises, findMany, flattenLocales, global, locale, overrideAccess, parentIndexPath, parentPath, parentSchemaPath, populate, populationPromises, req, select, selectMode, showHiddenFields, siblingDoc, triggerAccessControl = true, triggerHooks = true })=>{
|
|
14
|
+
export const promise = async ({ blockData, collection, context, currentDepth, depth, doc, draft, fallbackLocale, field, fieldIndex, fieldPromises, findMany, flattenLocales, global, locale, overrideAccess, parentIndexPath, parentPath, parentSchemaPath, populate, populationPromises, req, select, selectMode, showHiddenFields, siblingDoc, triggerAccessControl = true, triggerHooks = true })=>{
|
|
15
15
|
const { indexPath, path, schemaPath } = getFieldPaths({
|
|
16
16
|
field,
|
|
17
17
|
index: fieldIndex,
|
|
@@ -126,6 +126,7 @@ export const promise = async ({ collection, context, currentDepth, depth, doc, d
|
|
|
126
126
|
if (shouldRunHookOnAllLocales) {
|
|
127
127
|
const hookPromises = Object.entries(siblingDoc[field.name]).map(([locale, value])=>(async ()=>{
|
|
128
128
|
const hookedValue = await currentHook({
|
|
129
|
+
blockData,
|
|
129
130
|
collection,
|
|
130
131
|
context,
|
|
131
132
|
currentDepth,
|
|
@@ -153,6 +154,7 @@ export const promise = async ({ collection, context, currentDepth, depth, doc, d
|
|
|
153
154
|
await Promise.all(hookPromises);
|
|
154
155
|
} else {
|
|
155
156
|
const hookedValue = await currentHook({
|
|
157
|
+
blockData,
|
|
156
158
|
collection,
|
|
157
159
|
context,
|
|
158
160
|
currentDepth,
|
|
@@ -184,6 +186,7 @@ export const promise = async ({ collection, context, currentDepth, depth, doc, d
|
|
|
184
186
|
if (triggerAccessControl && field.access && field.access.read) {
|
|
185
187
|
const result = overrideAccess ? true : await field.access.read({
|
|
186
188
|
id: doc.id,
|
|
189
|
+
blockData,
|
|
187
190
|
data: doc,
|
|
188
191
|
doc,
|
|
189
192
|
req,
|
|
@@ -235,6 +238,7 @@ export const promise = async ({ collection, context, currentDepth, depth, doc, d
|
|
|
235
238
|
if (Array.isArray(rows)) {
|
|
236
239
|
rows.forEach((row, rowIndex)=>{
|
|
237
240
|
traverseFields({
|
|
241
|
+
blockData,
|
|
238
242
|
collection,
|
|
239
243
|
context,
|
|
240
244
|
currentDepth,
|
|
@@ -268,6 +272,7 @@ export const promise = async ({ collection, context, currentDepth, depth, doc, d
|
|
|
268
272
|
if (Array.isArray(localeRows)) {
|
|
269
273
|
localeRows.forEach((row, rowIndex)=>{
|
|
270
274
|
traverseFields({
|
|
275
|
+
blockData,
|
|
271
276
|
collection,
|
|
272
277
|
context,
|
|
273
278
|
currentDepth,
|
|
@@ -336,6 +341,7 @@ export const promise = async ({ collection, context, currentDepth, depth, doc, d
|
|
|
336
341
|
const blockSelect = blocksSelect?.[block.slug];
|
|
337
342
|
if (block) {
|
|
338
343
|
traverseFields({
|
|
344
|
+
blockData: row,
|
|
339
345
|
collection,
|
|
340
346
|
context,
|
|
341
347
|
currentDepth,
|
|
@@ -372,6 +378,7 @@ export const promise = async ({ collection, context, currentDepth, depth, doc, d
|
|
|
372
378
|
const block = field.blocks.find((blockType)=>blockType.slug === row.blockType);
|
|
373
379
|
if (block) {
|
|
374
380
|
traverseFields({
|
|
381
|
+
blockData: row,
|
|
375
382
|
collection,
|
|
376
383
|
context,
|
|
377
384
|
currentDepth,
|
|
@@ -410,6 +417,7 @@ export const promise = async ({ collection, context, currentDepth, depth, doc, d
|
|
|
410
417
|
case 'row':
|
|
411
418
|
{
|
|
412
419
|
traverseFields({
|
|
420
|
+
blockData,
|
|
413
421
|
collection,
|
|
414
422
|
context,
|
|
415
423
|
currentDepth,
|
|
@@ -447,6 +455,7 @@ export const promise = async ({ collection, context, currentDepth, depth, doc, d
|
|
|
447
455
|
}
|
|
448
456
|
const groupSelect = select?.[field.name];
|
|
449
457
|
traverseFields({
|
|
458
|
+
blockData,
|
|
450
459
|
collection,
|
|
451
460
|
context,
|
|
452
461
|
currentDepth,
|
|
@@ -581,6 +590,7 @@ export const promise = async ({ collection, context, currentDepth, depth, doc, d
|
|
|
581
590
|
tabSelect = select;
|
|
582
591
|
}
|
|
583
592
|
traverseFields({
|
|
593
|
+
blockData,
|
|
584
594
|
collection,
|
|
585
595
|
context,
|
|
586
596
|
currentDepth,
|
|
@@ -613,6 +623,7 @@ export const promise = async ({ collection, context, currentDepth, depth, doc, d
|
|
|
613
623
|
case 'tabs':
|
|
614
624
|
{
|
|
615
625
|
traverseFields({
|
|
626
|
+
blockData,
|
|
616
627
|
collection,
|
|
617
628
|
context,
|
|
618
629
|
currentDepth,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../src/fields/hooks/afterRead/promise.ts"],"sourcesContent":["import type { RichTextAdapter } from '../../../admin/RichText.js'\nimport type { SanitizedCollectionConfig } from '../../../collections/config/types.js'\nimport type { SanitizedGlobalConfig } from '../../../globals/config/types.js'\nimport type { RequestContext } from '../../../index.js'\nimport type {\n JsonObject,\n PayloadRequest,\n PopulateType,\n SelectMode,\n SelectType,\n} from '../../../types/index.js'\nimport type { Field, TabAsField } from '../../config/types.js'\n\nimport { MissingEditorProp } from '../../../errors/index.js'\nimport { fieldAffectsData, tabHasName } from '../../config/types.js'\nimport { getDefaultValue } from '../../getDefaultValue.js'\nimport { getFieldPathsModified as getFieldPaths } from '../../getFieldPaths.js'\nimport { relationshipPopulationPromise } from './relationshipPopulationPromise.js'\nimport { traverseFields } from './traverseFields.js'\n\ntype Args = {\n collection: null | SanitizedCollectionConfig\n context: RequestContext\n currentDepth: number\n depth: number\n doc: JsonObject\n draft: boolean\n fallbackLocale: null | string\n field: Field | TabAsField\n fieldIndex: number\n /**\n * fieldPromises are used for things like field hooks. They should be awaited before awaiting populationPromises\n */\n fieldPromises: Promise<void>[]\n findMany: boolean\n flattenLocales: boolean\n global: null | SanitizedGlobalConfig\n locale: null | string\n overrideAccess: boolean\n parentIndexPath: string\n parentPath: string\n parentSchemaPath: string\n populate?: PopulateType\n populationPromises: Promise<void>[]\n req: PayloadRequest\n select?: SelectType\n selectMode?: SelectMode\n showHiddenFields: boolean\n siblingDoc: JsonObject\n triggerAccessControl?: boolean\n triggerHooks?: boolean\n}\n\n// This function is responsible for the following actions, in order:\n// - Remove hidden fields from response\n// - Flatten locales into requested locale\n// - Sanitize outgoing data (point field, etc.)\n// - Execute field hooks\n// - Execute read access control\n// - Populate relationships\n\nexport const promise = async ({\n collection,\n context,\n currentDepth,\n depth,\n doc,\n draft,\n fallbackLocale,\n field,\n fieldIndex,\n fieldPromises,\n findMany,\n flattenLocales,\n global,\n locale,\n overrideAccess,\n parentIndexPath,\n parentPath,\n parentSchemaPath,\n populate,\n populationPromises,\n req,\n select,\n selectMode,\n showHiddenFields,\n siblingDoc,\n triggerAccessControl = true,\n triggerHooks = true,\n}: Args): Promise<void> => {\n const { indexPath, path, schemaPath } = getFieldPaths({\n field,\n index: fieldIndex,\n parentIndexPath,\n parentPath,\n parentSchemaPath,\n })\n\n const pathSegments = path ? path.split('.') : []\n const schemaPathSegments = schemaPath ? schemaPath.split('.') : []\n const indexPathSegments = indexPath ? indexPath.split('-').filter(Boolean)?.map(Number) : []\n\n if (\n fieldAffectsData(field) &&\n field.hidden &&\n typeof siblingDoc[field.name] !== 'undefined' &&\n !showHiddenFields\n ) {\n delete siblingDoc[field.name]\n }\n\n // Strip unselected fields\n if (fieldAffectsData(field) && select && selectMode) {\n if (selectMode === 'include') {\n if (!select[field.name]) {\n delete siblingDoc[field.name]\n return\n }\n }\n\n if (selectMode === 'exclude') {\n if (select[field.name] === false) {\n delete siblingDoc[field.name]\n return\n }\n }\n }\n\n const shouldHoistLocalizedValue =\n flattenLocales &&\n fieldAffectsData(field) &&\n typeof siblingDoc[field.name] === 'object' &&\n siblingDoc[field.name] !== null &&\n field.localized &&\n locale !== 'all' &&\n req.payload.config.localization\n\n if (shouldHoistLocalizedValue) {\n // replace actual value with localized value before sanitizing\n // { [locale]: fields } -> fields\n const value = siblingDoc[field.name][locale]\n\n let hoistedValue = value\n\n if (fallbackLocale && fallbackLocale !== locale) {\n const fallbackValue = siblingDoc[field.name][fallbackLocale]\n const isNullOrUndefined = typeof value === 'undefined' || value === null\n\n if (fallbackValue) {\n switch (field.type) {\n case 'text':\n case 'textarea': {\n if (value === '' || isNullOrUndefined) {\n hoistedValue = fallbackValue\n }\n break\n }\n\n default: {\n if (isNullOrUndefined) {\n hoistedValue = fallbackValue\n }\n break\n }\n }\n }\n }\n\n siblingDoc[field.name] = hoistedValue\n }\n\n // Sanitize outgoing field value\n switch (field.type) {\n case 'group': {\n // Fill groups with empty objects so fields with hooks within groups can populate\n // themselves virtually as necessary\n if (typeof siblingDoc[field.name] === 'undefined') {\n siblingDoc[field.name] = {}\n }\n\n break\n }\n case 'point': {\n const pointDoc = siblingDoc[field.name] as Record<string, unknown>\n if (Array.isArray(pointDoc?.coordinates) && pointDoc.coordinates.length === 2) {\n siblingDoc[field.name] = pointDoc.coordinates\n } else {\n siblingDoc[field.name] = undefined\n }\n\n break\n }\n\n case 'richText': {\n if (!field?.editor) {\n throw new MissingEditorProp(field) // while we allow disabling editor functionality, you should not have any richText fields defined if you do not have an editor\n }\n if (typeof field?.editor === 'function') {\n throw new Error('Attempted to access unsanitized rich text editor.')\n }\n\n // Rich Text fields should use afterRead hooks to do population. The previous editor.populationPromises have been renamed to editor.graphQLPopulationPromises\n break\n }\n\n case 'tabs': {\n field.tabs.forEach((tab) => {\n if (\n tabHasName(tab) &&\n (typeof siblingDoc[tab.name] === 'undefined' || siblingDoc[tab.name] === null)\n ) {\n siblingDoc[tab.name] = {}\n }\n })\n\n break\n }\n\n default: {\n break\n }\n }\n\n if (fieldAffectsData(field)) {\n // Execute hooks\n if (triggerHooks && field.hooks?.afterRead) {\n await field.hooks.afterRead.reduce(async (priorHook, currentHook) => {\n await priorHook\n\n const shouldRunHookOnAllLocales =\n field.localized &&\n (locale === 'all' || !flattenLocales) &&\n typeof siblingDoc[field.name] === 'object'\n\n if (shouldRunHookOnAllLocales) {\n const hookPromises = Object.entries(siblingDoc[field.name]).map(([locale, value]) =>\n (async () => {\n const hookedValue = await currentHook({\n collection,\n context,\n currentDepth,\n data: doc,\n depth,\n draft,\n field,\n findMany,\n global,\n indexPath: indexPathSegments,\n operation: 'read',\n originalDoc: doc,\n overrideAccess,\n path: pathSegments,\n req,\n schemaPath: schemaPathSegments,\n showHiddenFields,\n siblingData: siblingDoc,\n value,\n })\n\n if (hookedValue !== undefined) {\n siblingDoc[field.name][locale] = hookedValue\n }\n })(),\n )\n\n await Promise.all(hookPromises)\n } else {\n const hookedValue = await currentHook({\n collection,\n context,\n currentDepth,\n data: doc,\n depth,\n draft,\n field,\n findMany,\n global,\n indexPath: indexPathSegments,\n operation: 'read',\n originalDoc: doc,\n overrideAccess,\n path: pathSegments,\n req,\n schemaPath: schemaPathSegments,\n showHiddenFields,\n siblingData: siblingDoc,\n value: siblingDoc[field.name],\n })\n\n if (hookedValue !== undefined) {\n siblingDoc[field.name] = hookedValue\n }\n }\n }, Promise.resolve())\n }\n\n // Execute access control\n let allowDefaultValue = true\n if (triggerAccessControl && field.access && field.access.read) {\n const result = overrideAccess\n ? true\n : await field.access.read({\n id: doc.id as number | string,\n data: doc,\n doc,\n req,\n siblingData: siblingDoc,\n })\n\n if (!result) {\n allowDefaultValue = false\n delete siblingDoc[field.name]\n }\n }\n\n // Set defaultValue on the field for globals being returned without being first created\n // or collection documents created prior to having a default\n if (\n allowDefaultValue &&\n typeof siblingDoc[field.name] === 'undefined' &&\n typeof field.defaultValue !== 'undefined'\n ) {\n siblingDoc[field.name] = await getDefaultValue({\n defaultValue: field.defaultValue,\n locale,\n req,\n user: req.user,\n value: siblingDoc[field.name],\n })\n }\n\n if (field.type === 'relationship' || field.type === 'upload' || field.type === 'join') {\n populationPromises.push(\n relationshipPopulationPromise({\n currentDepth,\n depth,\n draft,\n fallbackLocale,\n field,\n locale,\n overrideAccess,\n populate,\n req,\n showHiddenFields,\n siblingDoc,\n }),\n )\n }\n }\n\n switch (field.type) {\n case 'array': {\n const rows = siblingDoc[field.name] as JsonObject\n\n let arraySelect = select?.[field.name]\n\n if (selectMode === 'include' && typeof arraySelect === 'object') {\n arraySelect = {\n ...arraySelect,\n id: true,\n }\n }\n\n if (Array.isArray(rows)) {\n rows.forEach((row, rowIndex) => {\n traverseFields({\n collection,\n context,\n currentDepth,\n depth,\n doc,\n draft,\n fallbackLocale,\n fieldPromises,\n fields: field.fields,\n findMany,\n flattenLocales,\n global,\n locale,\n overrideAccess,\n parentIndexPath: '',\n parentPath: path + '.' + rowIndex,\n parentSchemaPath: schemaPath,\n populate,\n populationPromises,\n req,\n select: typeof arraySelect === 'object' ? arraySelect : undefined,\n selectMode,\n showHiddenFields,\n siblingDoc: row || {},\n triggerAccessControl,\n triggerHooks,\n })\n })\n } else if (!shouldHoistLocalizedValue && typeof rows === 'object' && rows !== null) {\n Object.values(rows).forEach((localeRows) => {\n if (Array.isArray(localeRows)) {\n localeRows.forEach((row, rowIndex) => {\n traverseFields({\n collection,\n context,\n currentDepth,\n depth,\n doc,\n draft,\n fallbackLocale,\n fieldPromises,\n fields: field.fields,\n findMany,\n flattenLocales,\n global,\n locale,\n overrideAccess,\n parentIndexPath: '',\n parentPath: path + '.' + rowIndex,\n parentSchemaPath: schemaPath,\n populate,\n populationPromises,\n req,\n showHiddenFields,\n siblingDoc: (row as JsonObject) || {},\n triggerAccessControl,\n triggerHooks,\n })\n })\n }\n })\n } else {\n siblingDoc[field.name] = []\n }\n break\n }\n\n case 'blocks': {\n const rows = siblingDoc[field.name]\n\n let blocksSelect = select?.[field.name]\n\n if (Array.isArray(rows)) {\n rows.forEach((row, rowIndex) => {\n const block = field.blocks.find(\n (blockType) => blockType.slug === (row as JsonObject).blockType,\n )\n\n let blockSelectMode = selectMode\n\n if (typeof blocksSelect === 'object') {\n blocksSelect = {\n ...blocksSelect,\n }\n\n // sanitize blocks: {cta: false} to blocks: {cta: {id: true, blockType: true}}\n if (selectMode === 'exclude' && blocksSelect[block.slug] === false) {\n blockSelectMode = 'include'\n blocksSelect[block.slug] = {\n id: true,\n blockType: true,\n }\n } else if (selectMode === 'include') {\n if (!blocksSelect[block.slug]) {\n blocksSelect[block.slug] = {}\n }\n\n if (typeof blocksSelect[block.slug] === 'object') {\n blocksSelect[block.slug] = {\n ...(blocksSelect[block.slug] as object),\n }\n\n blocksSelect[block.slug]['id'] = true\n blocksSelect[block.slug]['blockType'] = true\n }\n }\n }\n\n const blockSelect = blocksSelect?.[block.slug]\n\n if (block) {\n traverseFields({\n collection,\n context,\n currentDepth,\n depth,\n doc,\n draft,\n fallbackLocale,\n fieldPromises,\n fields: block.fields,\n findMany,\n flattenLocales,\n global,\n locale,\n overrideAccess,\n parentIndexPath: '',\n parentPath: path + '.' + rowIndex,\n parentSchemaPath: schemaPath + '.' + block.slug,\n populate,\n populationPromises,\n req,\n select: typeof blockSelect === 'object' ? blockSelect : undefined,\n selectMode: blockSelectMode,\n showHiddenFields,\n siblingDoc: (row as JsonObject) || {},\n triggerAccessControl,\n triggerHooks,\n })\n }\n })\n } else if (!shouldHoistLocalizedValue && typeof rows === 'object' && rows !== null) {\n Object.values(rows).forEach((localeRows) => {\n if (Array.isArray(localeRows)) {\n localeRows.forEach((row, rowIndex) => {\n const block = field.blocks.find(\n (blockType) => blockType.slug === (row as JsonObject).blockType,\n )\n\n if (block) {\n traverseFields({\n collection,\n context,\n currentDepth,\n depth,\n doc,\n draft,\n fallbackLocale,\n fieldPromises,\n fields: block.fields,\n findMany,\n flattenLocales,\n global,\n locale,\n overrideAccess,\n parentIndexPath: '',\n parentPath: path + '.' + rowIndex,\n parentSchemaPath: schemaPath + '.' + block.slug,\n populate,\n populationPromises,\n req,\n showHiddenFields,\n siblingDoc: (row as JsonObject) || {},\n triggerAccessControl,\n triggerHooks,\n })\n }\n })\n }\n })\n } else {\n siblingDoc[field.name] = []\n }\n\n break\n }\n\n case 'collapsible':\n case 'row': {\n traverseFields({\n collection,\n context,\n currentDepth,\n depth,\n doc,\n draft,\n fallbackLocale,\n fieldPromises,\n fields: field.fields,\n findMany,\n flattenLocales,\n global,\n locale,\n overrideAccess,\n parentIndexPath: indexPath,\n parentPath,\n parentSchemaPath: schemaPath,\n populate,\n populationPromises,\n req,\n select,\n selectMode,\n showHiddenFields,\n siblingDoc,\n triggerAccessControl,\n triggerHooks,\n })\n\n break\n }\n\n case 'group': {\n let groupDoc = siblingDoc[field.name] as JsonObject\n\n if (typeof siblingDoc[field.name] !== 'object') {\n groupDoc = {}\n }\n\n const groupSelect = select?.[field.name]\n\n traverseFields({\n collection,\n context,\n currentDepth,\n depth,\n doc,\n draft,\n fallbackLocale,\n fieldPromises,\n fields: field.fields,\n findMany,\n flattenLocales,\n global,\n locale,\n overrideAccess,\n parentIndexPath: '',\n parentPath: path,\n parentSchemaPath: schemaPath,\n populate,\n populationPromises,\n req,\n select: typeof groupSelect === 'object' ? groupSelect : undefined,\n selectMode,\n showHiddenFields,\n siblingDoc: groupDoc,\n triggerAccessControl,\n triggerHooks,\n })\n\n break\n }\n\n case 'richText': {\n if (!field?.editor) {\n throw new MissingEditorProp(field) // while we allow disabling editor functionality, you should not have any richText fields defined if you do not have an editor\n }\n\n if (typeof field?.editor === 'function') {\n throw new Error('Attempted to access unsanitized rich text editor.')\n }\n\n const editor: RichTextAdapter = field?.editor\n\n if (editor?.hooks?.afterRead?.length) {\n await editor.hooks.afterRead.reduce(async (priorHook, currentHook) => {\n await priorHook\n\n const shouldRunHookOnAllLocales =\n field.localized &&\n (locale === 'all' || !flattenLocales) &&\n typeof siblingDoc[field.name] === 'object'\n\n if (shouldRunHookOnAllLocales) {\n const hookPromises = Object.entries(siblingDoc[field.name]).map(([locale, value]) =>\n (async () => {\n const hookedValue = await currentHook({\n collection,\n context,\n currentDepth,\n data: doc,\n depth,\n draft,\n fallbackLocale,\n field,\n fieldPromises,\n findMany,\n flattenLocales,\n global,\n indexPath: indexPathSegments,\n locale,\n operation: 'read',\n originalDoc: doc,\n overrideAccess,\n path: pathSegments,\n populate,\n populationPromises,\n req,\n schemaPath: schemaPathSegments,\n showHiddenFields,\n siblingData: siblingDoc,\n triggerAccessControl,\n triggerHooks,\n value,\n })\n\n if (hookedValue !== undefined) {\n siblingDoc[field.name][locale] = hookedValue\n }\n })(),\n )\n\n await Promise.all(hookPromises)\n } else {\n const hookedValue = await currentHook({\n collection,\n context,\n currentDepth,\n data: doc,\n depth,\n draft,\n fallbackLocale,\n field,\n fieldPromises,\n findMany,\n flattenLocales,\n global,\n indexPath: indexPathSegments,\n locale,\n operation: 'read',\n originalDoc: doc,\n overrideAccess,\n path: pathSegments,\n populate,\n populationPromises,\n req,\n schemaPath: schemaPathSegments,\n showHiddenFields,\n siblingData: siblingDoc,\n triggerAccessControl,\n triggerHooks,\n value: siblingDoc[field.name],\n })\n\n if (hookedValue !== undefined) {\n siblingDoc[field.name] = hookedValue\n }\n }\n }, Promise.resolve())\n }\n break\n }\n\n case 'tab': {\n let tabDoc = siblingDoc\n let tabSelect: SelectType | undefined\n\n const isNamedTab = tabHasName(field)\n\n if (isNamedTab) {\n tabDoc = siblingDoc[field.name] as JsonObject\n\n if (typeof siblingDoc[field.name] !== 'object') {\n tabDoc = {}\n }\n\n if (typeof select?.[field.name] === 'object') {\n tabSelect = select?.[field.name] as SelectType\n }\n } else {\n tabSelect = select\n }\n\n traverseFields({\n collection,\n context,\n currentDepth,\n depth,\n doc,\n draft,\n fallbackLocale,\n fieldPromises,\n fields: field.fields,\n findMany,\n flattenLocales,\n global,\n locale,\n overrideAccess,\n parentIndexPath: isNamedTab ? '' : indexPath,\n parentPath: isNamedTab ? path : parentPath,\n parentSchemaPath: schemaPath,\n populate,\n populationPromises,\n req,\n select: tabSelect,\n selectMode,\n showHiddenFields,\n siblingDoc: tabDoc,\n triggerAccessControl,\n triggerHooks,\n })\n\n break\n }\n\n case 'tabs': {\n traverseFields({\n collection,\n context,\n currentDepth,\n depth,\n doc,\n draft,\n fallbackLocale,\n fieldPromises,\n fields: field.tabs.map((tab) => ({ ...tab, type: 'tab' })),\n findMany,\n flattenLocales,\n global,\n locale,\n overrideAccess,\n parentIndexPath: indexPath,\n parentPath: path,\n parentSchemaPath: schemaPath,\n populate,\n populationPromises,\n req,\n select,\n selectMode,\n showHiddenFields,\n siblingDoc,\n triggerAccessControl,\n triggerHooks,\n })\n\n break\n }\n default: {\n break\n }\n }\n}\n"],"names":["MissingEditorProp","fieldAffectsData","tabHasName","getDefaultValue","getFieldPathsModified","getFieldPaths","relationshipPopulationPromise","traverseFields","promise","collection","context","currentDepth","depth","doc","draft","fallbackLocale","field","fieldIndex","fieldPromises","findMany","flattenLocales","global","locale","overrideAccess","parentIndexPath","parentPath","parentSchemaPath","populate","populationPromises","req","select","selectMode","showHiddenFields","siblingDoc","triggerAccessControl","triggerHooks","indexPath","path","schemaPath","index","pathSegments","split","schemaPathSegments","indexPathSegments","filter","Boolean","map","Number","hidden","name","shouldHoistLocalizedValue","localized","payload","config","localization","value","hoistedValue","fallbackValue","isNullOrUndefined","type","pointDoc","Array","isArray","coordinates","length","undefined","editor","Error","tabs","forEach","tab","hooks","afterRead","reduce","priorHook","currentHook","shouldRunHookOnAllLocales","hookPromises","Object","entries","hookedValue","data","operation","originalDoc","siblingData","Promise","all","resolve","allowDefaultValue","access","read","result","id","defaultValue","user","push","rows","arraySelect","row","rowIndex","fields","values","localeRows","blocksSelect","block","blocks","find","blockType","slug","blockSelectMode","blockSelect","groupDoc","groupSelect","tabDoc","tabSelect","isNamedTab"],"mappings":"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"}
|
|
1
|
+
{"version":3,"sources":["../../../../src/fields/hooks/afterRead/promise.ts"],"sourcesContent":["import type { RichTextAdapter } from '../../../admin/RichText.js'\nimport type { SanitizedCollectionConfig } from '../../../collections/config/types.js'\nimport type { SanitizedGlobalConfig } from '../../../globals/config/types.js'\nimport type { RequestContext } from '../../../index.js'\nimport type {\n JsonObject,\n PayloadRequest,\n PopulateType,\n SelectMode,\n SelectType,\n} from '../../../types/index.js'\nimport type { Field, TabAsField } from '../../config/types.js'\n\nimport { MissingEditorProp } from '../../../errors/index.js'\nimport { fieldAffectsData, tabHasName } from '../../config/types.js'\nimport { getDefaultValue } from '../../getDefaultValue.js'\nimport { getFieldPathsModified as getFieldPaths } from '../../getFieldPaths.js'\nimport { relationshipPopulationPromise } from './relationshipPopulationPromise.js'\nimport { traverseFields } from './traverseFields.js'\n\ntype Args = {\n /**\n * Data of the nearest parent block. If no parent block exists, this will be the `undefined`\n */\n blockData?: JsonObject\n collection: null | SanitizedCollectionConfig\n context: RequestContext\n currentDepth: number\n depth: number\n doc: JsonObject\n draft: boolean\n fallbackLocale: null | string\n field: Field | TabAsField\n fieldIndex: number\n /**\n * fieldPromises are used for things like field hooks. They should be awaited before awaiting populationPromises\n */\n fieldPromises: Promise<void>[]\n findMany: boolean\n flattenLocales: boolean\n global: null | SanitizedGlobalConfig\n locale: null | string\n overrideAccess: boolean\n parentIndexPath: string\n parentPath: string\n parentSchemaPath: string\n populate?: PopulateType\n populationPromises: Promise<void>[]\n req: PayloadRequest\n select?: SelectType\n selectMode?: SelectMode\n showHiddenFields: boolean\n siblingDoc: JsonObject\n triggerAccessControl?: boolean\n triggerHooks?: boolean\n}\n\n// This function is responsible for the following actions, in order:\n// - Remove hidden fields from response\n// - Flatten locales into requested locale\n// - Sanitize outgoing data (point field, etc.)\n// - Execute field hooks\n// - Execute read access control\n// - Populate relationships\n\nexport const promise = async ({\n blockData,\n collection,\n context,\n currentDepth,\n depth,\n doc,\n draft,\n fallbackLocale,\n field,\n fieldIndex,\n fieldPromises,\n findMany,\n flattenLocales,\n global,\n locale,\n overrideAccess,\n parentIndexPath,\n parentPath,\n parentSchemaPath,\n populate,\n populationPromises,\n req,\n select,\n selectMode,\n showHiddenFields,\n siblingDoc,\n triggerAccessControl = true,\n triggerHooks = true,\n}: Args): Promise<void> => {\n const { indexPath, path, schemaPath } = getFieldPaths({\n field,\n index: fieldIndex,\n parentIndexPath,\n parentPath,\n parentSchemaPath,\n })\n\n const pathSegments = path ? path.split('.') : []\n const schemaPathSegments = schemaPath ? schemaPath.split('.') : []\n const indexPathSegments = indexPath ? indexPath.split('-').filter(Boolean)?.map(Number) : []\n\n if (\n fieldAffectsData(field) &&\n field.hidden &&\n typeof siblingDoc[field.name] !== 'undefined' &&\n !showHiddenFields\n ) {\n delete siblingDoc[field.name]\n }\n\n // Strip unselected fields\n if (fieldAffectsData(field) && select && selectMode) {\n if (selectMode === 'include') {\n if (!select[field.name]) {\n delete siblingDoc[field.name]\n return\n }\n }\n\n if (selectMode === 'exclude') {\n if (select[field.name] === false) {\n delete siblingDoc[field.name]\n return\n }\n }\n }\n\n const shouldHoistLocalizedValue =\n flattenLocales &&\n fieldAffectsData(field) &&\n typeof siblingDoc[field.name] === 'object' &&\n siblingDoc[field.name] !== null &&\n field.localized &&\n locale !== 'all' &&\n req.payload.config.localization\n\n if (shouldHoistLocalizedValue) {\n // replace actual value with localized value before sanitizing\n // { [locale]: fields } -> fields\n const value = siblingDoc[field.name][locale]\n\n let hoistedValue = value\n\n if (fallbackLocale && fallbackLocale !== locale) {\n const fallbackValue = siblingDoc[field.name][fallbackLocale]\n const isNullOrUndefined = typeof value === 'undefined' || value === null\n\n if (fallbackValue) {\n switch (field.type) {\n case 'text':\n case 'textarea': {\n if (value === '' || isNullOrUndefined) {\n hoistedValue = fallbackValue\n }\n break\n }\n\n default: {\n if (isNullOrUndefined) {\n hoistedValue = fallbackValue\n }\n break\n }\n }\n }\n }\n\n siblingDoc[field.name] = hoistedValue\n }\n\n // Sanitize outgoing field value\n switch (field.type) {\n case 'group': {\n // Fill groups with empty objects so fields with hooks within groups can populate\n // themselves virtually as necessary\n if (typeof siblingDoc[field.name] === 'undefined') {\n siblingDoc[field.name] = {}\n }\n\n break\n }\n case 'point': {\n const pointDoc = siblingDoc[field.name] as Record<string, unknown>\n if (Array.isArray(pointDoc?.coordinates) && pointDoc.coordinates.length === 2) {\n siblingDoc[field.name] = pointDoc.coordinates\n } else {\n siblingDoc[field.name] = undefined\n }\n\n break\n }\n\n case 'richText': {\n if (!field?.editor) {\n throw new MissingEditorProp(field) // while we allow disabling editor functionality, you should not have any richText fields defined if you do not have an editor\n }\n if (typeof field?.editor === 'function') {\n throw new Error('Attempted to access unsanitized rich text editor.')\n }\n\n // Rich Text fields should use afterRead hooks to do population. The previous editor.populationPromises have been renamed to editor.graphQLPopulationPromises\n break\n }\n\n case 'tabs': {\n field.tabs.forEach((tab) => {\n if (\n tabHasName(tab) &&\n (typeof siblingDoc[tab.name] === 'undefined' || siblingDoc[tab.name] === null)\n ) {\n siblingDoc[tab.name] = {}\n }\n })\n\n break\n }\n\n default: {\n break\n }\n }\n\n if (fieldAffectsData(field)) {\n // Execute hooks\n if (triggerHooks && field.hooks?.afterRead) {\n await field.hooks.afterRead.reduce(async (priorHook, currentHook) => {\n await priorHook\n\n const shouldRunHookOnAllLocales =\n field.localized &&\n (locale === 'all' || !flattenLocales) &&\n typeof siblingDoc[field.name] === 'object'\n\n if (shouldRunHookOnAllLocales) {\n const hookPromises = Object.entries(siblingDoc[field.name]).map(([locale, value]) =>\n (async () => {\n const hookedValue = await currentHook({\n blockData,\n collection,\n context,\n currentDepth,\n data: doc,\n depth,\n draft,\n field,\n findMany,\n global,\n indexPath: indexPathSegments,\n operation: 'read',\n originalDoc: doc,\n overrideAccess,\n path: pathSegments,\n req,\n schemaPath: schemaPathSegments,\n showHiddenFields,\n siblingData: siblingDoc,\n value,\n })\n\n if (hookedValue !== undefined) {\n siblingDoc[field.name][locale] = hookedValue\n }\n })(),\n )\n\n await Promise.all(hookPromises)\n } else {\n const hookedValue = await currentHook({\n blockData,\n collection,\n context,\n currentDepth,\n data: doc,\n depth,\n draft,\n field,\n findMany,\n global,\n indexPath: indexPathSegments,\n operation: 'read',\n originalDoc: doc,\n overrideAccess,\n path: pathSegments,\n req,\n schemaPath: schemaPathSegments,\n showHiddenFields,\n siblingData: siblingDoc,\n value: siblingDoc[field.name],\n })\n\n if (hookedValue !== undefined) {\n siblingDoc[field.name] = hookedValue\n }\n }\n }, Promise.resolve())\n }\n\n // Execute access control\n let allowDefaultValue = true\n if (triggerAccessControl && field.access && field.access.read) {\n const result = overrideAccess\n ? true\n : await field.access.read({\n id: doc.id as number | string,\n blockData,\n data: doc,\n doc,\n req,\n siblingData: siblingDoc,\n })\n\n if (!result) {\n allowDefaultValue = false\n delete siblingDoc[field.name]\n }\n }\n\n // Set defaultValue on the field for globals being returned without being first created\n // or collection documents created prior to having a default\n if (\n allowDefaultValue &&\n typeof siblingDoc[field.name] === 'undefined' &&\n typeof field.defaultValue !== 'undefined'\n ) {\n siblingDoc[field.name] = await getDefaultValue({\n defaultValue: field.defaultValue,\n locale,\n req,\n user: req.user,\n value: siblingDoc[field.name],\n })\n }\n\n if (field.type === 'relationship' || field.type === 'upload' || field.type === 'join') {\n populationPromises.push(\n relationshipPopulationPromise({\n currentDepth,\n depth,\n draft,\n fallbackLocale,\n field,\n locale,\n overrideAccess,\n populate,\n req,\n showHiddenFields,\n siblingDoc,\n }),\n )\n }\n }\n\n switch (field.type) {\n case 'array': {\n const rows = siblingDoc[field.name] as JsonObject\n\n let arraySelect = select?.[field.name]\n\n if (selectMode === 'include' && typeof arraySelect === 'object') {\n arraySelect = {\n ...arraySelect,\n id: true,\n }\n }\n\n if (Array.isArray(rows)) {\n rows.forEach((row, rowIndex) => {\n traverseFields({\n blockData,\n collection,\n context,\n currentDepth,\n depth,\n doc,\n draft,\n fallbackLocale,\n fieldPromises,\n fields: field.fields,\n findMany,\n flattenLocales,\n global,\n locale,\n overrideAccess,\n parentIndexPath: '',\n parentPath: path + '.' + rowIndex,\n parentSchemaPath: schemaPath,\n populate,\n populationPromises,\n req,\n select: typeof arraySelect === 'object' ? arraySelect : undefined,\n selectMode,\n showHiddenFields,\n siblingDoc: row || {},\n triggerAccessControl,\n triggerHooks,\n })\n })\n } else if (!shouldHoistLocalizedValue && typeof rows === 'object' && rows !== null) {\n Object.values(rows).forEach((localeRows) => {\n if (Array.isArray(localeRows)) {\n localeRows.forEach((row, rowIndex) => {\n traverseFields({\n blockData,\n collection,\n context,\n currentDepth,\n depth,\n doc,\n draft,\n fallbackLocale,\n fieldPromises,\n fields: field.fields,\n findMany,\n flattenLocales,\n global,\n locale,\n overrideAccess,\n parentIndexPath: '',\n parentPath: path + '.' + rowIndex,\n parentSchemaPath: schemaPath,\n populate,\n populationPromises,\n req,\n showHiddenFields,\n siblingDoc: (row as JsonObject) || {},\n triggerAccessControl,\n triggerHooks,\n })\n })\n }\n })\n } else {\n siblingDoc[field.name] = []\n }\n break\n }\n\n case 'blocks': {\n const rows = siblingDoc[field.name]\n\n let blocksSelect = select?.[field.name]\n\n if (Array.isArray(rows)) {\n rows.forEach((row, rowIndex) => {\n const block = field.blocks.find(\n (blockType) => blockType.slug === (row as JsonObject).blockType,\n )\n\n let blockSelectMode = selectMode\n\n if (typeof blocksSelect === 'object') {\n blocksSelect = {\n ...blocksSelect,\n }\n\n // sanitize blocks: {cta: false} to blocks: {cta: {id: true, blockType: true}}\n if (selectMode === 'exclude' && blocksSelect[block.slug] === false) {\n blockSelectMode = 'include'\n blocksSelect[block.slug] = {\n id: true,\n blockType: true,\n }\n } else if (selectMode === 'include') {\n if (!blocksSelect[block.slug]) {\n blocksSelect[block.slug] = {}\n }\n\n if (typeof blocksSelect[block.slug] === 'object') {\n blocksSelect[block.slug] = {\n ...(blocksSelect[block.slug] as object),\n }\n\n blocksSelect[block.slug]['id'] = true\n blocksSelect[block.slug]['blockType'] = true\n }\n }\n }\n\n const blockSelect = blocksSelect?.[block.slug]\n\n if (block) {\n traverseFields({\n blockData: row,\n collection,\n context,\n currentDepth,\n depth,\n doc,\n draft,\n fallbackLocale,\n fieldPromises,\n fields: block.fields,\n findMany,\n flattenLocales,\n global,\n locale,\n overrideAccess,\n parentIndexPath: '',\n parentPath: path + '.' + rowIndex,\n parentSchemaPath: schemaPath + '.' + block.slug,\n populate,\n populationPromises,\n req,\n select: typeof blockSelect === 'object' ? blockSelect : undefined,\n selectMode: blockSelectMode,\n showHiddenFields,\n siblingDoc: (row as JsonObject) || {},\n triggerAccessControl,\n triggerHooks,\n })\n }\n })\n } else if (!shouldHoistLocalizedValue && typeof rows === 'object' && rows !== null) {\n Object.values(rows).forEach((localeRows) => {\n if (Array.isArray(localeRows)) {\n localeRows.forEach((row, rowIndex) => {\n const block = field.blocks.find(\n (blockType) => blockType.slug === (row as JsonObject).blockType,\n )\n\n if (block) {\n traverseFields({\n blockData: row,\n collection,\n context,\n currentDepth,\n depth,\n doc,\n draft,\n fallbackLocale,\n fieldPromises,\n fields: block.fields,\n findMany,\n flattenLocales,\n global,\n locale,\n overrideAccess,\n parentIndexPath: '',\n parentPath: path + '.' + rowIndex,\n parentSchemaPath: schemaPath + '.' + block.slug,\n populate,\n populationPromises,\n req,\n showHiddenFields,\n siblingDoc: (row as JsonObject) || {},\n triggerAccessControl,\n triggerHooks,\n })\n }\n })\n }\n })\n } else {\n siblingDoc[field.name] = []\n }\n\n break\n }\n\n case 'collapsible':\n case 'row': {\n traverseFields({\n blockData,\n collection,\n context,\n currentDepth,\n depth,\n doc,\n draft,\n fallbackLocale,\n fieldPromises,\n fields: field.fields,\n findMany,\n flattenLocales,\n global,\n locale,\n overrideAccess,\n parentIndexPath: indexPath,\n parentPath,\n parentSchemaPath: schemaPath,\n populate,\n populationPromises,\n req,\n select,\n selectMode,\n showHiddenFields,\n siblingDoc,\n triggerAccessControl,\n triggerHooks,\n })\n\n break\n }\n\n case 'group': {\n let groupDoc = siblingDoc[field.name] as JsonObject\n\n if (typeof siblingDoc[field.name] !== 'object') {\n groupDoc = {}\n }\n\n const groupSelect = select?.[field.name]\n\n traverseFields({\n blockData,\n collection,\n context,\n currentDepth,\n depth,\n doc,\n draft,\n fallbackLocale,\n fieldPromises,\n fields: field.fields,\n findMany,\n flattenLocales,\n global,\n locale,\n overrideAccess,\n parentIndexPath: '',\n parentPath: path,\n parentSchemaPath: schemaPath,\n populate,\n populationPromises,\n req,\n select: typeof groupSelect === 'object' ? groupSelect : undefined,\n selectMode,\n showHiddenFields,\n siblingDoc: groupDoc,\n triggerAccessControl,\n triggerHooks,\n })\n\n break\n }\n\n case 'richText': {\n if (!field?.editor) {\n throw new MissingEditorProp(field) // while we allow disabling editor functionality, you should not have any richText fields defined if you do not have an editor\n }\n\n if (typeof field?.editor === 'function') {\n throw new Error('Attempted to access unsanitized rich text editor.')\n }\n\n const editor: RichTextAdapter = field?.editor\n\n if (editor?.hooks?.afterRead?.length) {\n await editor.hooks.afterRead.reduce(async (priorHook, currentHook) => {\n await priorHook\n\n const shouldRunHookOnAllLocales =\n field.localized &&\n (locale === 'all' || !flattenLocales) &&\n typeof siblingDoc[field.name] === 'object'\n\n if (shouldRunHookOnAllLocales) {\n const hookPromises = Object.entries(siblingDoc[field.name]).map(([locale, value]) =>\n (async () => {\n const hookedValue = await currentHook({\n collection,\n context,\n currentDepth,\n data: doc,\n depth,\n draft,\n fallbackLocale,\n field,\n fieldPromises,\n findMany,\n flattenLocales,\n global,\n indexPath: indexPathSegments,\n locale,\n operation: 'read',\n originalDoc: doc,\n overrideAccess,\n path: pathSegments,\n populate,\n populationPromises,\n req,\n schemaPath: schemaPathSegments,\n showHiddenFields,\n siblingData: siblingDoc,\n triggerAccessControl,\n triggerHooks,\n value,\n })\n\n if (hookedValue !== undefined) {\n siblingDoc[field.name][locale] = hookedValue\n }\n })(),\n )\n\n await Promise.all(hookPromises)\n } else {\n const hookedValue = await currentHook({\n collection,\n context,\n currentDepth,\n data: doc,\n depth,\n draft,\n fallbackLocale,\n field,\n fieldPromises,\n findMany,\n flattenLocales,\n global,\n indexPath: indexPathSegments,\n locale,\n operation: 'read',\n originalDoc: doc,\n overrideAccess,\n path: pathSegments,\n populate,\n populationPromises,\n req,\n schemaPath: schemaPathSegments,\n showHiddenFields,\n siblingData: siblingDoc,\n triggerAccessControl,\n triggerHooks,\n value: siblingDoc[field.name],\n })\n\n if (hookedValue !== undefined) {\n siblingDoc[field.name] = hookedValue\n }\n }\n }, Promise.resolve())\n }\n break\n }\n\n case 'tab': {\n let tabDoc = siblingDoc\n let tabSelect: SelectType | undefined\n\n const isNamedTab = tabHasName(field)\n\n if (isNamedTab) {\n tabDoc = siblingDoc[field.name] as JsonObject\n\n if (typeof siblingDoc[field.name] !== 'object') {\n tabDoc = {}\n }\n\n if (typeof select?.[field.name] === 'object') {\n tabSelect = select?.[field.name] as SelectType\n }\n } else {\n tabSelect = select\n }\n\n traverseFields({\n blockData,\n collection,\n context,\n currentDepth,\n depth,\n doc,\n draft,\n fallbackLocale,\n fieldPromises,\n fields: field.fields,\n findMany,\n flattenLocales,\n global,\n locale,\n overrideAccess,\n parentIndexPath: isNamedTab ? '' : indexPath,\n parentPath: isNamedTab ? path : parentPath,\n parentSchemaPath: schemaPath,\n populate,\n populationPromises,\n req,\n select: tabSelect,\n selectMode,\n showHiddenFields,\n siblingDoc: tabDoc,\n triggerAccessControl,\n triggerHooks,\n })\n\n break\n }\n\n case 'tabs': {\n traverseFields({\n blockData,\n collection,\n context,\n currentDepth,\n depth,\n doc,\n draft,\n fallbackLocale,\n fieldPromises,\n fields: field.tabs.map((tab) => ({ ...tab, type: 'tab' })),\n findMany,\n flattenLocales,\n global,\n locale,\n overrideAccess,\n parentIndexPath: indexPath,\n parentPath: path,\n parentSchemaPath: schemaPath,\n populate,\n populationPromises,\n req,\n select,\n selectMode,\n showHiddenFields,\n siblingDoc,\n triggerAccessControl,\n triggerHooks,\n })\n\n break\n }\n default: {\n break\n }\n }\n}\n"],"names":["MissingEditorProp","fieldAffectsData","tabHasName","getDefaultValue","getFieldPathsModified","getFieldPaths","relationshipPopulationPromise","traverseFields","promise","blockData","collection","context","currentDepth","depth","doc","draft","fallbackLocale","field","fieldIndex","fieldPromises","findMany","flattenLocales","global","locale","overrideAccess","parentIndexPath","parentPath","parentSchemaPath","populate","populationPromises","req","select","selectMode","showHiddenFields","siblingDoc","triggerAccessControl","triggerHooks","indexPath","path","schemaPath","index","pathSegments","split","schemaPathSegments","indexPathSegments","filter","Boolean","map","Number","hidden","name","shouldHoistLocalizedValue","localized","payload","config","localization","value","hoistedValue","fallbackValue","isNullOrUndefined","type","pointDoc","Array","isArray","coordinates","length","undefined","editor","Error","tabs","forEach","tab","hooks","afterRead","reduce","priorHook","currentHook","shouldRunHookOnAllLocales","hookPromises","Object","entries","hookedValue","data","operation","originalDoc","siblingData","Promise","all","resolve","allowDefaultValue","access","read","result","id","defaultValue","user","push","rows","arraySelect","row","rowIndex","fields","values","localeRows","blocksSelect","block","blocks","find","blockType","slug","blockSelectMode","blockSelect","groupDoc","groupSelect","tabDoc","tabSelect","isNamedTab"],"mappings":"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"}
|
|
@@ -4,6 +4,10 @@ import type { RequestContext } from '../../../index.js';
|
|
|
4
4
|
import type { JsonObject, PayloadRequest, PopulateType, SelectMode, SelectType } from '../../../types/index.js';
|
|
5
5
|
import type { Field, TabAsField } from '../../config/types.js';
|
|
6
6
|
type Args = {
|
|
7
|
+
/**
|
|
8
|
+
* Data of the nearest parent block. If no parent block exists, this will be the `undefined`
|
|
9
|
+
*/
|
|
10
|
+
blockData?: JsonObject;
|
|
7
11
|
collection: null | SanitizedCollectionConfig;
|
|
8
12
|
context: RequestContext;
|
|
9
13
|
currentDepth: number;
|
|
@@ -34,6 +38,6 @@ type Args = {
|
|
|
34
38
|
triggerAccessControl?: boolean;
|
|
35
39
|
triggerHooks?: boolean;
|
|
36
40
|
};
|
|
37
|
-
export declare const traverseFields: ({ collection, context, currentDepth, depth, doc, draft, fallbackLocale, fieldPromises, fields, findMany, flattenLocales, global, locale, overrideAccess, parentIndexPath, parentPath, parentSchemaPath, populate, populationPromises, req, select, selectMode, showHiddenFields, siblingDoc, triggerAccessControl, triggerHooks, }: Args) => void;
|
|
41
|
+
export declare const traverseFields: ({ blockData, collection, context, currentDepth, depth, doc, draft, fallbackLocale, fieldPromises, fields, findMany, flattenLocales, global, locale, overrideAccess, parentIndexPath, parentPath, parentSchemaPath, populate, populationPromises, req, select, selectMode, showHiddenFields, siblingDoc, triggerAccessControl, triggerHooks, }: Args) => void;
|
|
38
42
|
export {};
|
|
39
43
|
//# sourceMappingURL=traverseFields.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"traverseFields.d.ts","sourceRoot":"","sources":["../../../../src/fields/hooks/afterRead/traverseFields.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,sCAAsC,CAAA;AACrF,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,kCAAkC,CAAA;AAC7E,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AACvD,OAAO,KAAK,EACV,UAAU,EACV,cAAc,EACd,YAAY,EACZ,UAAU,EACV,UAAU,EACX,MAAM,yBAAyB,CAAA;AAChC,OAAO,KAAK,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAA;AAI9D,KAAK,IAAI,GAAG;IACV,UAAU,EAAE,IAAI,GAAG,yBAAyB,CAAA;IAC5C,OAAO,EAAE,cAAc,CAAA;IACvB,YAAY,EAAE,MAAM,CAAA;IACpB,KAAK,EAAE,MAAM,CAAA;IACb,GAAG,EAAE,UAAU,CAAA;IACf,KAAK,EAAE,OAAO,CAAA;IACd,cAAc,EAAE,IAAI,GAAG,MAAM,CAAA;IAC7B;;OAEG;IACH,aAAa,EAAE,OAAO,CAAC,IAAI,CAAC,EAAE,CAAA;IAC9B,MAAM,EAAE,CAAC,KAAK,GAAG,UAAU,CAAC,EAAE,CAAA;IAC9B,QAAQ,EAAE,OAAO,CAAA;IACjB,cAAc,EAAE,OAAO,CAAA;IACvB,MAAM,EAAE,IAAI,GAAG,qBAAqB,CAAA;IACpC,MAAM,EAAE,IAAI,GAAG,MAAM,CAAA;IACrB,cAAc,EAAE,OAAO,CAAA;IACvB,eAAe,EAAE,MAAM,CAAA;IACvB,UAAU,EAAE,MAAM,CAAA;IAClB,gBAAgB,EAAE,MAAM,CAAA;IACxB,QAAQ,CAAC,EAAE,YAAY,CAAA;IACvB,kBAAkB,EAAE,OAAO,CAAC,IAAI,CAAC,EAAE,CAAA;IACnC,GAAG,EAAE,cAAc,CAAA;IACnB,MAAM,CAAC,EAAE,UAAU,CAAA;IACnB,UAAU,CAAC,EAAE,UAAU,CAAA;IACvB,gBAAgB,EAAE,OAAO,CAAA;IACzB,UAAU,EAAE,UAAU,CAAA;IACtB,oBAAoB,CAAC,EAAE,OAAO,CAAA;IAC9B,YAAY,CAAC,EAAE,OAAO,CAAA;CACvB,CAAA;AAED,eAAO,MAAM,cAAc,
|
|
1
|
+
{"version":3,"file":"traverseFields.d.ts","sourceRoot":"","sources":["../../../../src/fields/hooks/afterRead/traverseFields.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,sCAAsC,CAAA;AACrF,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,kCAAkC,CAAA;AAC7E,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AACvD,OAAO,KAAK,EACV,UAAU,EACV,cAAc,EACd,YAAY,EACZ,UAAU,EACV,UAAU,EACX,MAAM,yBAAyB,CAAA;AAChC,OAAO,KAAK,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAA;AAI9D,KAAK,IAAI,GAAG;IACV;;OAEG;IACH,SAAS,CAAC,EAAE,UAAU,CAAA;IACtB,UAAU,EAAE,IAAI,GAAG,yBAAyB,CAAA;IAC5C,OAAO,EAAE,cAAc,CAAA;IACvB,YAAY,EAAE,MAAM,CAAA;IACpB,KAAK,EAAE,MAAM,CAAA;IACb,GAAG,EAAE,UAAU,CAAA;IACf,KAAK,EAAE,OAAO,CAAA;IACd,cAAc,EAAE,IAAI,GAAG,MAAM,CAAA;IAC7B;;OAEG;IACH,aAAa,EAAE,OAAO,CAAC,IAAI,CAAC,EAAE,CAAA;IAC9B,MAAM,EAAE,CAAC,KAAK,GAAG,UAAU,CAAC,EAAE,CAAA;IAC9B,QAAQ,EAAE,OAAO,CAAA;IACjB,cAAc,EAAE,OAAO,CAAA;IACvB,MAAM,EAAE,IAAI,GAAG,qBAAqB,CAAA;IACpC,MAAM,EAAE,IAAI,GAAG,MAAM,CAAA;IACrB,cAAc,EAAE,OAAO,CAAA;IACvB,eAAe,EAAE,MAAM,CAAA;IACvB,UAAU,EAAE,MAAM,CAAA;IAClB,gBAAgB,EAAE,MAAM,CAAA;IACxB,QAAQ,CAAC,EAAE,YAAY,CAAA;IACvB,kBAAkB,EAAE,OAAO,CAAC,IAAI,CAAC,EAAE,CAAA;IACnC,GAAG,EAAE,cAAc,CAAA;IACnB,MAAM,CAAC,EAAE,UAAU,CAAA;IACnB,UAAU,CAAC,EAAE,UAAU,CAAA;IACvB,gBAAgB,EAAE,OAAO,CAAA;IACzB,UAAU,EAAE,UAAU,CAAA;IACtB,oBAAoB,CAAC,EAAE,OAAO,CAAA;IAC9B,YAAY,CAAC,EAAE,OAAO,CAAA;CACvB,CAAA;AAED,eAAO,MAAM,cAAc,kVA4BxB,IAAI,KAAG,IAmCT,CAAA"}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { promise } from './promise.js';
|
|
2
|
-
export const traverseFields = ({ collection, context, currentDepth, depth, doc, draft, fallbackLocale, fieldPromises, fields, findMany, flattenLocales, global, locale, overrideAccess, parentIndexPath, parentPath, parentSchemaPath, populate, populationPromises, req, select, selectMode, showHiddenFields, siblingDoc, triggerAccessControl = true, triggerHooks = true })=>{
|
|
2
|
+
export const traverseFields = ({ blockData, collection, context, currentDepth, depth, doc, draft, fallbackLocale, fieldPromises, fields, findMany, flattenLocales, global, locale, overrideAccess, parentIndexPath, parentPath, parentSchemaPath, populate, populationPromises, req, select, selectMode, showHiddenFields, siblingDoc, triggerAccessControl = true, triggerHooks = true })=>{
|
|
3
3
|
fields.forEach((field, fieldIndex)=>{
|
|
4
4
|
fieldPromises.push(promise({
|
|
5
|
+
blockData,
|
|
5
6
|
collection,
|
|
6
7
|
context,
|
|
7
8
|
currentDepth,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../src/fields/hooks/afterRead/traverseFields.ts"],"sourcesContent":["import type { SanitizedCollectionConfig } from '../../../collections/config/types.js'\nimport type { SanitizedGlobalConfig } from '../../../globals/config/types.js'\nimport type { RequestContext } from '../../../index.js'\nimport type {\n JsonObject,\n PayloadRequest,\n PopulateType,\n SelectMode,\n SelectType,\n} from '../../../types/index.js'\nimport type { Field, TabAsField } from '../../config/types.js'\n\nimport { promise } from './promise.js'\n\ntype Args = {\n collection: null | SanitizedCollectionConfig\n context: RequestContext\n currentDepth: number\n depth: number\n doc: JsonObject\n draft: boolean\n fallbackLocale: null | string\n /**\n * fieldPromises are used for things like field hooks. They should be awaited before awaiting populationPromises\n */\n fieldPromises: Promise<void>[]\n fields: (Field | TabAsField)[]\n findMany: boolean\n flattenLocales: boolean\n global: null | SanitizedGlobalConfig\n locale: null | string\n overrideAccess: boolean\n parentIndexPath: string\n parentPath: string\n parentSchemaPath: string\n populate?: PopulateType\n populationPromises: Promise<void>[]\n req: PayloadRequest\n select?: SelectType\n selectMode?: SelectMode\n showHiddenFields: boolean\n siblingDoc: JsonObject\n triggerAccessControl?: boolean\n triggerHooks?: boolean\n}\n\nexport const traverseFields = ({\n collection,\n context,\n currentDepth,\n depth,\n doc,\n draft,\n fallbackLocale,\n fieldPromises,\n fields,\n findMany,\n flattenLocales,\n global,\n locale,\n overrideAccess,\n parentIndexPath,\n parentPath,\n parentSchemaPath,\n populate,\n populationPromises,\n req,\n select,\n selectMode,\n showHiddenFields,\n siblingDoc,\n triggerAccessControl = true,\n triggerHooks = true,\n}: Args): void => {\n fields.forEach((field, fieldIndex) => {\n fieldPromises.push(\n promise({\n collection,\n context,\n currentDepth,\n depth,\n doc,\n draft,\n fallbackLocale,\n field,\n fieldIndex,\n fieldPromises,\n findMany,\n flattenLocales,\n global,\n locale,\n overrideAccess,\n parentIndexPath,\n parentPath,\n parentSchemaPath,\n populate,\n populationPromises,\n req,\n select,\n selectMode,\n showHiddenFields,\n siblingDoc,\n triggerAccessControl,\n triggerHooks,\n }),\n )\n })\n}\n"],"names":["promise","traverseFields","collection","context","currentDepth","depth","doc","draft","fallbackLocale","fieldPromises","fields","findMany","flattenLocales","global","locale","overrideAccess","parentIndexPath","parentPath","parentSchemaPath","populate","populationPromises","req","select","selectMode","showHiddenFields","siblingDoc","triggerAccessControl","triggerHooks","forEach","field","fieldIndex","push"],"mappings":"AAYA,SAASA,OAAO,QAAQ,eAAc;
|
|
1
|
+
{"version":3,"sources":["../../../../src/fields/hooks/afterRead/traverseFields.ts"],"sourcesContent":["import type { SanitizedCollectionConfig } from '../../../collections/config/types.js'\nimport type { SanitizedGlobalConfig } from '../../../globals/config/types.js'\nimport type { RequestContext } from '../../../index.js'\nimport type {\n JsonObject,\n PayloadRequest,\n PopulateType,\n SelectMode,\n SelectType,\n} from '../../../types/index.js'\nimport type { Field, TabAsField } from '../../config/types.js'\n\nimport { promise } from './promise.js'\n\ntype Args = {\n /**\n * Data of the nearest parent block. If no parent block exists, this will be the `undefined`\n */\n blockData?: JsonObject\n collection: null | SanitizedCollectionConfig\n context: RequestContext\n currentDepth: number\n depth: number\n doc: JsonObject\n draft: boolean\n fallbackLocale: null | string\n /**\n * fieldPromises are used for things like field hooks. They should be awaited before awaiting populationPromises\n */\n fieldPromises: Promise<void>[]\n fields: (Field | TabAsField)[]\n findMany: boolean\n flattenLocales: boolean\n global: null | SanitizedGlobalConfig\n locale: null | string\n overrideAccess: boolean\n parentIndexPath: string\n parentPath: string\n parentSchemaPath: string\n populate?: PopulateType\n populationPromises: Promise<void>[]\n req: PayloadRequest\n select?: SelectType\n selectMode?: SelectMode\n showHiddenFields: boolean\n siblingDoc: JsonObject\n triggerAccessControl?: boolean\n triggerHooks?: boolean\n}\n\nexport const traverseFields = ({\n blockData,\n collection,\n context,\n currentDepth,\n depth,\n doc,\n draft,\n fallbackLocale,\n fieldPromises,\n fields,\n findMany,\n flattenLocales,\n global,\n locale,\n overrideAccess,\n parentIndexPath,\n parentPath,\n parentSchemaPath,\n populate,\n populationPromises,\n req,\n select,\n selectMode,\n showHiddenFields,\n siblingDoc,\n triggerAccessControl = true,\n triggerHooks = true,\n}: Args): void => {\n fields.forEach((field, fieldIndex) => {\n fieldPromises.push(\n promise({\n blockData,\n collection,\n context,\n currentDepth,\n depth,\n doc,\n draft,\n fallbackLocale,\n field,\n fieldIndex,\n fieldPromises,\n findMany,\n flattenLocales,\n global,\n locale,\n overrideAccess,\n parentIndexPath,\n parentPath,\n parentSchemaPath,\n populate,\n populationPromises,\n req,\n select,\n selectMode,\n showHiddenFields,\n siblingDoc,\n triggerAccessControl,\n triggerHooks,\n }),\n )\n })\n}\n"],"names":["promise","traverseFields","blockData","collection","context","currentDepth","depth","doc","draft","fallbackLocale","fieldPromises","fields","findMany","flattenLocales","global","locale","overrideAccess","parentIndexPath","parentPath","parentSchemaPath","populate","populationPromises","req","select","selectMode","showHiddenFields","siblingDoc","triggerAccessControl","triggerHooks","forEach","field","fieldIndex","push"],"mappings":"AAYA,SAASA,OAAO,QAAQ,eAAc;AAsCtC,OAAO,MAAMC,iBAAiB,CAAC,EAC7BC,SAAS,EACTC,UAAU,EACVC,OAAO,EACPC,YAAY,EACZC,KAAK,EACLC,GAAG,EACHC,KAAK,EACLC,cAAc,EACdC,aAAa,EACbC,MAAM,EACNC,QAAQ,EACRC,cAAc,EACdC,MAAM,EACNC,MAAM,EACNC,cAAc,EACdC,eAAe,EACfC,UAAU,EACVC,gBAAgB,EAChBC,QAAQ,EACRC,kBAAkB,EAClBC,GAAG,EACHC,MAAM,EACNC,UAAU,EACVC,gBAAgB,EAChBC,UAAU,EACVC,uBAAuB,IAAI,EAC3BC,eAAe,IAAI,EACd;IACLjB,OAAOkB,OAAO,CAAC,CAACC,OAAOC;QACrBrB,cAAcsB,IAAI,CAChBhC,QAAQ;YACNE;YACAC;YACAC;YACAC;YACAC;YACAC;YACAC;YACAC;YACAqB;YACAC;YACArB;YACAE;YACAC;YACAC;YACAC;YACAC;YACAC;YACAC;YACAC;YACAC;YACAC;YACAC;YACAC;YACAC;YACAC;YACAC;YACAC;YACAC;QACF;IAEJ;AACF,EAAC"}
|
|
@@ -5,6 +5,10 @@ import type { RequestContext } from '../../../index.js';
|
|
|
5
5
|
import type { JsonObject, Operation, PayloadRequest } from '../../../types/index.js';
|
|
6
6
|
import type { Field, TabAsField } from '../../config/types.js';
|
|
7
7
|
type Args = {
|
|
8
|
+
/**
|
|
9
|
+
* Data of the nearest parent block. If no parent block exists, this will be the `undefined`
|
|
10
|
+
*/
|
|
11
|
+
blockData?: JsonObject;
|
|
8
12
|
collection: null | SanitizedCollectionConfig;
|
|
9
13
|
context: RequestContext;
|
|
10
14
|
data: JsonObject;
|
|
@@ -26,6 +30,6 @@ type Args = {
|
|
|
26
30
|
siblingDocWithLocales?: JsonObject;
|
|
27
31
|
skipValidation: boolean;
|
|
28
32
|
};
|
|
29
|
-
export declare const promise: ({ id, collection, context, data, doc, docWithLocales, errors, field, fieldIndex, global, mergeLocaleActions, operation, parentIndexPath, parentPath, parentSchemaPath, req, siblingData, siblingDoc, siblingDocWithLocales, skipValidation, }: Args) => Promise<void>;
|
|
33
|
+
export declare const promise: ({ id, blockData, collection, context, data, doc, docWithLocales, errors, field, fieldIndex, global, mergeLocaleActions, operation, parentIndexPath, parentPath, parentSchemaPath, req, siblingData, siblingDoc, siblingDocWithLocales, skipValidation, }: Args) => Promise<void>;
|
|
30
34
|
export {};
|
|
31
35
|
//# sourceMappingURL=promise.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"promise.d.ts","sourceRoot":"","sources":["../../../../src/fields/hooks/beforeChange/promise.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,sCAAsC,CAAA;AACrF,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAA;AACpE,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,kCAAkC,CAAA;AAC7E,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AACvD,OAAO,KAAK,EAAE,UAAU,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAA;AACpF,OAAO,KAAK,EAAE,KAAK,EAAE,UAAU,
|
|
1
|
+
{"version":3,"file":"promise.d.ts","sourceRoot":"","sources":["../../../../src/fields/hooks/beforeChange/promise.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,sCAAsC,CAAA;AACrF,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAA;AACpE,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,kCAAkC,CAAA;AAC7E,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AACvD,OAAO,KAAK,EAAE,UAAU,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAA;AACpF,OAAO,KAAK,EAAE,KAAK,EAAE,UAAU,EAAY,MAAM,uBAAuB,CAAA;AAWxE,KAAK,IAAI,GAAG;IACV;;OAEG;IACH,SAAS,CAAC,EAAE,UAAU,CAAA;IACtB,UAAU,EAAE,IAAI,GAAG,yBAAyB,CAAA;IAC5C,OAAO,EAAE,cAAc,CAAA;IACvB,IAAI,EAAE,UAAU,CAAA;IAChB,GAAG,EAAE,UAAU,CAAA;IACf,cAAc,EAAE,UAAU,CAAA;IAC1B,MAAM,EAAE,oBAAoB,EAAE,CAAA;IAC9B,KAAK,EAAE,KAAK,GAAG,UAAU,CAAA;IACzB,UAAU,EAAE,MAAM,CAAA;IAClB,MAAM,EAAE,IAAI,GAAG,qBAAqB,CAAA;IACpC,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACpB,kBAAkB,EAAE,CAAC,MAAM,OAAO,CAAC,IAAI,CAAC,CAAC,EAAE,CAAA;IAC3C,SAAS,EAAE,SAAS,CAAA;IACpB,eAAe,EAAE,MAAM,CAAA;IACvB,UAAU,EAAE,MAAM,CAAA;IAClB,gBAAgB,EAAE,MAAM,CAAA;IACxB,GAAG,EAAE,cAAc,CAAA;IACnB,WAAW,EAAE,UAAU,CAAA;IACvB,UAAU,EAAE,UAAU,CAAA;IACtB,qBAAqB,CAAC,EAAE,UAAU,CAAA;IAClC,cAAc,EAAE,OAAO,CAAA;CACxB,CAAA;AAUD,eAAO,MAAM,OAAO,6PAsBjB,IAAI,KAAG,OAAO,CAAC,IAAI,CAqcrB,CAAA"}
|