@ainsleydev/payload-helper 0.0.26 → 0.0.28

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/gen/types.js CHANGED
@@ -8,14 +8,17 @@ import { fieldMapper, schemas } from '../plugin/schema.js';
8
8
  const outputFile = (process.env.PAYLOAD_TS_OUTPUT_PATH || config.typescript.outputFile).replace('.ts', '.json');
9
9
  config.typescript = {
10
10
  ...config.typescript,
11
- schema: schemas(opts)
11
+ schema: [
12
+ ...config.typescript.schema,
13
+ ...schemas(opts)
14
+ ]
12
15
  };
13
16
  // biome-ignore lint/style/noParameterAssign: Need to change field mapper.
14
17
  config = fieldMapper(config, opts);
15
18
  const payload = await getPayload({
16
19
  config
17
20
  });
18
- const jsonSchema = configToJSONSchema(payload.config, payload.db.defaultIDType);
21
+ const jsonSchema = configToJSONSchema(config, payload.db.defaultIDType);
19
22
  const prettyJSON = JSON.stringify(jsonSchema, null, 4);
20
23
  fs.writeFileSync(outputFile, prettyJSON);
21
24
  console.log(`JSON types written to: ${outputFile}`);
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/gen/types.ts"],"sourcesContent":["import * as fs from 'node:fs';\nimport { type SanitizedConfig, configToJSONSchema, getPayload } from 'payload';\nimport { type SchemaOptions, fieldMapper, schemas } from '../plugin/schema.js';\n\n/**\n * Creates JSON schema types of Payloads Collections & Globals\n */\nexport async function generateTypes(config: SanitizedConfig, opts: SchemaOptions): Promise<void> {\n\tconsole.log('Compiling JSON types for Collections and Globals...');\n\n\tconst outputFile = (process.env.PAYLOAD_TS_OUTPUT_PATH || config.typescript.outputFile).replace(\n\t\t'.ts',\n\t\t'.json',\n\t);\n\n\tconfig.typescript = {\n\t\t...config.typescript,\n\t\tschema: schemas(opts),\n\t};\n\n\t// biome-ignore lint/style/noParameterAssign: Need to change field mapper.\n\tconfig = fieldMapper(config, opts);\n\n\tconst payload = await getPayload({\n\t\tconfig,\n\t\t//disableDBConnect: true,\n\t\t//disableOnInit: true,\n\t});\n\n\tconst jsonSchema = configToJSONSchema(payload.config, payload.db.defaultIDType);\n\tconst prettyJSON = JSON.stringify(jsonSchema, null, 4);\n\n\tfs.writeFileSync(outputFile, prettyJSON);\n\n\tconsole.log(`JSON types written to: ${outputFile}`);\n\n\tdelete process.env.GEN_GOLANG;\n}\n"],"names":["fs","configToJSONSchema","getPayload","fieldMapper","schemas","generateTypes","config","opts","console","log","outputFile","process","env","PAYLOAD_TS_OUTPUT_PATH","typescript","replace","schema","payload","jsonSchema","db","defaultIDType","prettyJSON","JSON","stringify","writeFileSync","GEN_GOLANG"],"mappings":"AAAA,YAAYA,QAAQ,UAAU;AAC9B,SAA+BC,kBAAkB,EAAEC,UAAU,QAAQ,UAAU;AAC/E,SAA6BC,WAAW,EAAEC,OAAO,QAAQ,sBAAsB;AAE/E;;CAEC,GACD,OAAO,eAAeC,cAAcC,MAAuB,EAAEC,IAAmB;IAC/EC,QAAQC,GAAG,CAAC;IAEZ,MAAMC,aAAa,AAACC,CAAAA,QAAQC,GAAG,CAACC,sBAAsB,IAAIP,OAAOQ,UAAU,CAACJ,UAAU,AAAD,EAAGK,OAAO,CAC9F,OACA;IAGDT,OAAOQ,UAAU,GAAG;QACnB,GAAGR,OAAOQ,UAAU;QACpBE,QAAQZ,QAAQG;IACjB;IAEA,0EAA0E;IAC1ED,SAASH,YAAYG,QAAQC;IAE7B,MAAMU,UAAU,MAAMf,WAAW;QAChCI;IAGD;IAEA,MAAMY,aAAajB,mBAAmBgB,QAAQX,MAAM,EAAEW,QAAQE,EAAE,CAACC,aAAa;IAC9E,MAAMC,aAAaC,KAAKC,SAAS,CAACL,YAAY,MAAM;IAEpDlB,GAAGwB,aAAa,CAACd,YAAYW;IAE7Bb,QAAQC,GAAG,CAAC,CAAC,uBAAuB,EAAEC,YAAY;IAElD,OAAOC,QAAQC,GAAG,CAACa,UAAU;AAC9B"}
1
+ {"version":3,"sources":["../../src/gen/types.ts"],"sourcesContent":["import * as fs from 'node:fs';\nimport { type SanitizedConfig, configToJSONSchema, getPayload } from 'payload';\nimport { type SchemaOptions, fieldMapper, schemas } from '../plugin/schema.js';\n\n/**\n * Creates JSON schema types of Payloads Collections & Globals\n */\nexport async function generateTypes(config: SanitizedConfig, opts: SchemaOptions): Promise<void> {\n\tconsole.log('Compiling JSON types for Collections and Globals...');\n\n\tconst outputFile = (process.env.PAYLOAD_TS_OUTPUT_PATH || config.typescript.outputFile).replace(\n\t\t'.ts',\n\t\t'.json',\n\t);\n\n\tconfig.typescript = {\n\t\t...config.typescript,\n\t\tschema: [...config.typescript.schema, ...schemas(opts)],\n\t};\n\n\t// biome-ignore lint/style/noParameterAssign: Need to change field mapper.\n\tconfig = fieldMapper(config, opts);\n\n\tconst payload = await getPayload({\n\t\tconfig,\n\t\t//disableDBConnect: true,\n\t\t//disableOnInit: true,\n\t});\n\n\tconst jsonSchema = configToJSONSchema(config, payload.db.defaultIDType);\n\tconst prettyJSON = JSON.stringify(jsonSchema, null, 4);\n\n\tfs.writeFileSync(outputFile, prettyJSON);\n\n\tconsole.log(`JSON types written to: ${outputFile}`);\n\n\tdelete process.env.GEN_GOLANG;\n}\n"],"names":["fs","configToJSONSchema","getPayload","fieldMapper","schemas","generateTypes","config","opts","console","log","outputFile","process","env","PAYLOAD_TS_OUTPUT_PATH","typescript","replace","schema","payload","jsonSchema","db","defaultIDType","prettyJSON","JSON","stringify","writeFileSync","GEN_GOLANG"],"mappings":"AAAA,YAAYA,QAAQ,UAAU;AAC9B,SAA+BC,kBAAkB,EAAEC,UAAU,QAAQ,UAAU;AAC/E,SAA6BC,WAAW,EAAEC,OAAO,QAAQ,sBAAsB;AAE/E;;CAEC,GACD,OAAO,eAAeC,cAAcC,MAAuB,EAAEC,IAAmB;IAC/EC,QAAQC,GAAG,CAAC;IAEZ,MAAMC,aAAa,AAACC,CAAAA,QAAQC,GAAG,CAACC,sBAAsB,IAAIP,OAAOQ,UAAU,CAACJ,UAAU,AAAD,EAAGK,OAAO,CAC9F,OACA;IAGDT,OAAOQ,UAAU,GAAG;QACnB,GAAGR,OAAOQ,UAAU;QACpBE,QAAQ;eAAIV,OAAOQ,UAAU,CAACE,MAAM;eAAKZ,QAAQG;SAAM;IACxD;IAEA,0EAA0E;IAC1ED,SAASH,YAAYG,QAAQC;IAE7B,MAAMU,UAAU,MAAMf,WAAW;QAChCI;IAGD;IAEA,MAAMY,aAAajB,mBAAmBK,QAAQW,QAAQE,EAAE,CAACC,aAAa;IACtE,MAAMC,aAAaC,KAAKC,SAAS,CAACL,YAAY,MAAM;IAEpDlB,GAAGwB,aAAa,CAACd,YAAYW;IAE7Bb,QAAQC,GAAG,CAAC,CAAC,uBAAuB,EAAEC,YAAY;IAElD,OAAOC,QAAQC,GAAG,CAACa,UAAU;AAC9B"}
@@ -66,9 +66,17 @@
66
66
  break;
67
67
  case 'upload':
68
68
  if (opts.useWebKitMedia) {
69
+ const isArray = field.hasMany; // Assuming `hasMany` indicates an array of uploads
69
70
  field.typescriptSchema = [
70
71
  ()=>({
71
- ...addGoJSONSchema('payload.Media', field.required === true)
72
+ ...isArray ? {
73
+ type: 'array',
74
+ items: {
75
+ ...addGoJSONSchema('payload.Media', field.required === true)
76
+ }
77
+ } : {
78
+ ...addGoJSONSchema('payload.Media', field.required === true)
79
+ }
72
80
  })
73
81
  ];
74
82
  }
@@ -114,7 +122,7 @@
114
122
  break;
115
123
  }
116
124
  }
117
- if (field.type !== 'ui' && opts.assignRelationships) {
125
+ if (field.type !== 'ui' && (opts.assignRelationships || field.custom?.webkitUseSchema)) {
118
126
  if (!Array.isArray(field.typescriptSchema)) {
119
127
  field.typescriptSchema = [];
120
128
  }
@@ -172,6 +180,17 @@
172
180
  delete jsonSchema.properties?.collections?.properties?.['payload-locked-documents'];
173
181
  delete jsonSchema.definitions.redirects;
174
182
  delete jsonSchema.properties?.collections?.properties?.redirects;
183
+ // I don't know why but Payload duplicates types and adds Select?
184
+ for(const key in jsonSchema.definitions){
185
+ if (key.endsWith('select') || key.endsWith('Select')) {
186
+ delete jsonSchema.definitions[key];
187
+ }
188
+ }
189
+ for(const key in jsonSchema.properties){
190
+ if (key.endsWith('select') || key.endsWith('Select')) {
191
+ delete jsonSchema.properties[key];
192
+ }
193
+ }
175
194
  return jsonSchema;
176
195
  },
177
196
  /**
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/plugin/schema.ts"],"sourcesContent":["import type { JSONSchema4 } from 'json-schema';\nimport type { Config, Field, SanitizedConfig } from 'payload';\n\n/**\n * General Options for Generating Schema\n */\nexport interface SchemaOptions {\n\tuseWebKitMedia?: boolean;\n\tassignRelationships?: boolean;\n}\n\n/**\n * This function iterates over properties in JSON schema definitions,\n * passing each property and its key to a callback function.\n */\nconst loopJSONSchemaProperties = (\n\tjsonSchema: JSONSchema4,\n\tcallback: (args: { key: string; property: JSONSchema4 }) => void,\n): JSONSchema4 => {\n\tif (!jsonSchema.definitions) {\n\t\treturn jsonSchema;\n\t}\n\tObject.entries(jsonSchema.definitions).forEach(([definitionKey, definition]) => {\n\t\tif (definition.properties) {\n\t\t\tObject.entries(definition.properties).forEach(([propertyKey, property]) => {\n\t\t\t\tcallback({ key: propertyKey, property });\n\t\t\t});\n\t\t}\n\t});\n\treturn jsonSchema;\n};\n\n/**\n * Adds the necessary GoLang type conversions as a helper func.\n */\nexport const addGoJSONSchema = (type: string, nillable: boolean): Record<string, unknown> => {\n\treturn {\n\t\tgoJSONSchema: {\n\t\t\timports: ['github.com/ainsleydev/webkit/pkg/adapters/payload'],\n\t\t\tnillable: nillable,\n\t\t\ttype: type,\n\t\t},\n\t};\n};\n\n/**\n * Iterates over all the fields within the config, for both collections\n * and globals, and transforms the JSON schema\n * to include the necessary GoLang schema.\n *\n * @param config\n */\nexport const fieldMapper = (config: SanitizedConfig, opts: SchemaOptions) => {\n\tconst mapper = (field: Field): Field => {\n\t\tswitch (field.type) {\n\t\t\tcase 'blocks':\n\t\t\t\tfield.typescriptSchema = [() => ({ ...addGoJSONSchema('payload.Blocks', false) })];\n\t\t\t\tfield.blocks.forEach((block) => {\n\t\t\t\t\tblock.fields = block.fields.map((f) => mapper(f));\n\t\t\t\t});\n\t\t\t\tbreak;\n\t\t\tcase 'json':\n\t\t\t\tfield.typescriptSchema = [() => ({ ...addGoJSONSchema('payload.JSON', false) })];\n\t\t\t\tbreak;\n\t\t\tcase 'richText':\n\t\t\t\tfield.typescriptSchema = [\n\t\t\t\t\t() => ({\n\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t...addGoJSONSchema('payload.RichText', false),\n\t\t\t\t\t}),\n\t\t\t\t];\n\t\t\t\tbreak;\n\t\t\tcase 'upload':\n\t\t\t\tif (opts.useWebKitMedia) {\n\t\t\t\t\tfield.typescriptSchema = [\n\t\t\t\t\t\t() => ({ ...addGoJSONSchema('payload.Media', field.required === true) }),\n\t\t\t\t\t];\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\tcase 'point':\n\t\t\t\tfield.typescriptSchema = [\n\t\t\t\t\t() => ({\n\t\t\t\t\t\t...addGoJSONSchema('payload.Point', field.required === true),\n\t\t\t\t\t}),\n\t\t\t\t];\n\t\t\t\tbreak;\n\t\t\tcase 'tabs': {\n\t\t\t\tfield.tabs.forEach((tab) => {\n\t\t\t\t\ttab.fields = tab.fields.map((f) => mapper(f));\n\t\t\t\t});\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tcase 'relationship': {\n\t\t\t\tif (field.relationTo === 'forms') {\n\t\t\t\t\tfield.typescriptSchema = [\n\t\t\t\t\t\t() => ({ ...addGoJSONSchema('payload.Form', field.required === true) }),\n\t\t\t\t\t];\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\tcase 'group':\n\t\t\tcase 'array':\n\t\t\tcase 'row':\n\t\t\tcase 'collapsible': {\n\t\t\t\tif (field.type === 'group' && field.name === 'meta') {\n\t\t\t\t\tfield.typescriptSchema = [\n\t\t\t\t\t\t() => ({ ...addGoJSONSchema('payload.SettingsMeta', true) }),\n\t\t\t\t\t];\n\t\t\t\t}\n\t\t\t\tfield.fields = field.fields.map((f) => mapper(f));\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\t// SEE: https://github.com/ainsleydev/webkit/blob/cdfa078605bec4ee92f2424f69271a0bf6b71366/packages/payload-helper/src/gen/schema.ts#L235\n\t\t}\n\n\t\tif (field.type !== 'ui' && opts.assignRelationships) {\n\t\t\tif (!Array.isArray(field.typescriptSchema)) {\n\t\t\t\tfield.typescriptSchema = [];\n\t\t\t}\n\n\t\t\tif (field.type !== 'tabs' && field.type !== 'row' && field.type !== 'collapsible') {\n\t\t\t\tfield.typescriptSchema.push(({ jsonSchema }) => {\n\t\t\t\t\tconst payload = {\n\t\t\t\t\t\tname: field.name,\n\t\t\t\t\t\ttype: field.type,\n\t\t\t\t\t\tlabel: field.label,\n\t\t\t\t\t} as Record<string, unknown>;\n\n\t\t\t\t\tif (field.type === 'relationship') {\n\t\t\t\t\t\tpayload.hasMany = field.hasMany;\n\t\t\t\t\t\tpayload.relationTo = field.relationTo;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn {\n\t\t\t\t\t\t...jsonSchema,\n\t\t\t\t\t\tpayload,\n\t\t\t\t\t};\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\n\t\treturn field;\n\t};\n\n\tif (config.collections) {\n\t\tconfig.collections.forEach((collection) => {\n\t\t\tcollection.fields = collection.fields.map((field) => mapper(field));\n\t\t});\n\t}\n\n\tif (config.globals) {\n\t\tconfig.globals.forEach((global, index) => {\n\t\t\tglobal.fields = global.fields.map((field) => mapper(field));\n\t\t});\n\t}\n\n\treturn config;\n};\n\n/**\n * Adjusts the JSON schema to include the necessary GoLang schema\n *\n */\nexport const schemas = (\n\topts: SchemaOptions,\n): Array<(args: { jsonSchema: JSONSchema4 }) => JSONSchema4> => [\n\t/**\n\t * Removes the auth & uneeded definitions from the schema.\n\t */\n\t({ jsonSchema }): JSONSchema4 => {\n\t\tif (!jsonSchema.properties) {\n\t\t\tjsonSchema.properties = {};\n\t\t}\n\t\tif (!jsonSchema.definitions) {\n\t\t\tjsonSchema.definitions = {};\n\t\t}\n\n\t\tif (opts.useWebKitMedia) {\n\t\t\tdelete jsonSchema.definitions.media;\n\t\t\tdelete jsonSchema.properties?.collections?.properties?.media;\n\t\t}\n\n\t\tdelete jsonSchema.properties.auth;\n\t\tdelete jsonSchema.definitions['payload-locked-documents'];\n\t\tdelete jsonSchema.properties?.collections?.properties?.['payload-locked-documents'];\n\t\tdelete jsonSchema.definitions.redirects;\n\t\tdelete jsonSchema.properties?.collections?.properties?.redirects;\n\t\treturn jsonSchema;\n\t},\n\t/**\n\t * Adds the settings and media definitions to the schema\n\t */\n\t({ jsonSchema }): JSONSchema4 => {\n\t\tif (!jsonSchema.definitions) {\n\t\t\tjsonSchema.definitions = {};\n\t\t}\n\n\t\tif ('settings' in jsonSchema.definitions) {\n\t\t\tjsonSchema.definitions.settings = {\n\t\t\t\ttype: 'object',\n\t\t\t\tfields: [],\n\t\t\t\t...addGoJSONSchema('payload.Settings', false),\n\t\t\t};\n\t\t}\n\n\t\tif ('forms' in jsonSchema.definitions) {\n\t\t\tjsonSchema.definitions.forms = {\n\t\t\t\ttype: 'object',\n\t\t\t\t...addGoJSONSchema('payload.Form', false),\n\t\t\t\tfields: [],\n\t\t\t};\n\t\t}\n\n\t\tif ('form-submissions' in jsonSchema.definitions) {\n\t\t\tjsonSchema.definitions['form-submissions'] = {\n\t\t\t\ttype: 'object',\n\t\t\t\t...addGoJSONSchema('payload.FormSubmission', false),\n\t\t\t\tfields: [],\n\t\t\t};\n\t\t}\n\n\t\treturn jsonSchema;\n\t},\n\t/**\n\t * Updates the JSON schema so that it doesn't feature oneOf, so Go doesn't\n\t * output it as an interface{}.\n\t */\n\t({ jsonSchema }): JSONSchema4 => {\n\t\tconst updateRelationship = (property: JSONSchema4) => {\n\t\t\tconst payload = property.payload;\n\t\t\tif (!payload) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif (payload.type === 'relationship') {\n\t\t\t\tif (payload.hasMany) {\n\t\t\t\t\tproperty.type = 'array';\n\t\t\t\t\tproperty.items = {\n\t\t\t\t\t\t$ref: `#/definitions/${payload.relationTo}`,\n\t\t\t\t\t};\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tdelete property.oneOf;\n\t\t\t\tproperty.$ref = `#/definitions/${property.payload.relationTo}`;\n\t\t\t}\n\n\t\t\tconst pType = payload.type;\n\t\t\tif (\n\t\t\t\tpType === 'group' ||\n\t\t\t\tpType === 'row' ||\n\t\t\t\tpType === 'collapsible' ||\n\t\t\t\tpType === 'array'\n\t\t\t) {\n\t\t\t\tif (property.properties) {\n\t\t\t\t\tfor (const k in property.properties) {\n\t\t\t\t\t\tupdateRelationship(property.properties[k]);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn;\n\t\t\t}\n\t\t};\n\n\t\tloopJSONSchemaProperties(jsonSchema, ({ property }) => {\n\t\t\tupdateRelationship(property);\n\t\t});\n\t\treturn jsonSchema;\n\t},\n\t/**\n\t * Changes blockType to a string so it's not an *interface{} when\n\t * comparing block types in Go.\n\t */\n\t({ jsonSchema }): JSONSchema4 => {\n\t\tloopJSONSchemaProperties(jsonSchema, ({ property, key }) => {\n\t\t\tif (key === 'blockType') {\n\t\t\t\tproperty.type = 'string';\n\t\t\t\tdelete property.const;\n\t\t\t}\n\t\t});\n\t\treturn jsonSchema;\n\t},\n\t/**\n\t * Changes blockType to a string so it's not an *interface{} when\n\t * comparing block types in Go.\n\t */\n\t({ jsonSchema }): JSONSchema4 => {\n\t\tloopJSONSchemaProperties(jsonSchema, ({ property, key }) => {\n\t\t\tconst payload = property.payload;\n\t\t\tif (payload && payload.type === 'relationship' && payload.name === 'form') {\n\t\t\t\tdelete property.$ref;\n\t\t\t}\n\t\t});\n\t\treturn jsonSchema;\n\t},\n];\n"],"names":["loopJSONSchemaProperties","jsonSchema","callback","definitions","Object","entries","forEach","definitionKey","definition","properties","propertyKey","property","key","addGoJSONSchema","type","nillable","goJSONSchema","imports","fieldMapper","config","opts","mapper","field","typescriptSchema","blocks","block","fields","map","f","useWebKitMedia","required","tabs","tab","relationTo","name","assignRelationships","Array","isArray","push","payload","label","hasMany","collections","collection","globals","global","index","schemas","media","auth","redirects","settings","forms","updateRelationship","items","$ref","oneOf","pType","k","const"],"mappings":"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"}
1
+ {"version":3,"sources":["../../src/plugin/schema.ts"],"sourcesContent":["import type { JSONSchema4 } from 'json-schema';\nimport type { Config, Field, SanitizedConfig } from 'payload';\n\n/**\n * General Options for Generating Schema\n */\nexport interface SchemaOptions {\n\tuseWebKitMedia?: boolean;\n\tassignRelationships?: boolean;\n}\n\n/**\n * This function iterates over properties in JSON schema definitions,\n * passing each property and its key to a callback function.\n */\nconst loopJSONSchemaProperties = (\n\tjsonSchema: JSONSchema4,\n\tcallback: (args: { key: string; property: JSONSchema4 }) => void,\n): JSONSchema4 => {\n\tif (!jsonSchema.definitions) {\n\t\treturn jsonSchema;\n\t}\n\tObject.entries(jsonSchema.definitions).forEach(([definitionKey, definition]) => {\n\t\tif (definition.properties) {\n\t\t\tObject.entries(definition.properties).forEach(([propertyKey, property]) => {\n\t\t\t\tcallback({ key: propertyKey, property });\n\t\t\t});\n\t\t}\n\t});\n\treturn jsonSchema;\n};\n\n/**\n * Adds the necessary GoLang type conversions as a helper func.\n */\nexport const addGoJSONSchema = (type: string, nillable: boolean): Record<string, unknown> => {\n\treturn {\n\t\tgoJSONSchema: {\n\t\t\timports: ['github.com/ainsleydev/webkit/pkg/adapters/payload'],\n\t\t\tnillable: nillable,\n\t\t\ttype: type,\n\t\t},\n\t};\n};\n\n/**\n * Iterates over all the fields within the config, for both collections\n * and globals, and transforms the JSON schema\n * to include the necessary GoLang schema.\n *\n * @param config\n */\nexport const fieldMapper = (config: SanitizedConfig, opts: SchemaOptions) => {\n\tconst mapper = (field: Field): Field => {\n\t\tswitch (field.type) {\n\t\t\tcase 'blocks':\n\t\t\t\tfield.typescriptSchema = [() => ({ ...addGoJSONSchema('payload.Blocks', false) })];\n\t\t\t\tfield.blocks.forEach((block) => {\n\t\t\t\t\tblock.fields = block.fields.map((f) => mapper(f));\n\t\t\t\t});\n\t\t\t\tbreak;\n\t\t\tcase 'json':\n\t\t\t\tfield.typescriptSchema = [() => ({ ...addGoJSONSchema('payload.JSON', false) })];\n\t\t\t\tbreak;\n\t\t\tcase 'richText':\n\t\t\t\tfield.typescriptSchema = [\n\t\t\t\t\t() => ({\n\t\t\t\t\t\ttype: 'string',\n\t\t\t\t\t\t...addGoJSONSchema('payload.RichText', false),\n\t\t\t\t\t}),\n\t\t\t\t];\n\t\t\t\tbreak;\n\t\t\tcase 'upload':\n\t\t\t\tif (opts.useWebKitMedia) {\n\t\t\t\t\tconst isArray = field.hasMany; // Assuming `hasMany` indicates an array of uploads\n\t\t\t\t\tfield.typescriptSchema = [\n\t\t\t\t\t\t() => ({\n\t\t\t\t\t\t\t...(isArray\n\t\t\t\t\t\t\t\t? {\n\t\t\t\t\t\t\t\t\t\ttype: 'array',\n\t\t\t\t\t\t\t\t\t\titems: {\n\t\t\t\t\t\t\t\t\t\t\t...addGoJSONSchema(\n\t\t\t\t\t\t\t\t\t\t\t\t'payload.Media',\n\t\t\t\t\t\t\t\t\t\t\t\tfield.required === true,\n\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t: { ...addGoJSONSchema('payload.Media', field.required === true) }),\n\t\t\t\t\t\t}),\n\t\t\t\t\t];\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\tcase 'point':\n\t\t\t\tfield.typescriptSchema = [\n\t\t\t\t\t() => ({\n\t\t\t\t\t\t...addGoJSONSchema('payload.Point', field.required === true),\n\t\t\t\t\t}),\n\t\t\t\t];\n\t\t\t\tbreak;\n\t\t\tcase 'tabs': {\n\t\t\t\tfield.tabs.forEach((tab) => {\n\t\t\t\t\ttab.fields = tab.fields.map((f) => mapper(f));\n\t\t\t\t});\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tcase 'relationship': {\n\t\t\t\tif (field.relationTo === 'forms') {\n\t\t\t\t\tfield.typescriptSchema = [\n\t\t\t\t\t\t() => ({ ...addGoJSONSchema('payload.Form', field.required === true) }),\n\t\t\t\t\t];\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\tcase 'group':\n\t\t\tcase 'array':\n\t\t\tcase 'row':\n\t\t\tcase 'collapsible': {\n\t\t\t\tif (field.type === 'group' && field.name === 'meta') {\n\t\t\t\t\tfield.typescriptSchema = [\n\t\t\t\t\t\t() => ({ ...addGoJSONSchema('payload.SettingsMeta', true) }),\n\t\t\t\t\t];\n\t\t\t\t}\n\t\t\t\tfield.fields = field.fields.map((f) => mapper(f));\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\t// SEE: https://github.com/ainsleydev/webkit/blob/cdfa078605bec4ee92f2424f69271a0bf6b71366/packages/payload-helper/src/gen/schema.ts#L235\n\t\t}\n\n\t\tif (field.type !== 'ui' && (opts.assignRelationships || field.custom?.webkitUseSchema)) {\n\t\t\tif (!Array.isArray(field.typescriptSchema)) {\n\t\t\t\tfield.typescriptSchema = [];\n\t\t\t}\n\n\t\t\tif (field.type !== 'tabs' && field.type !== 'row' && field.type !== 'collapsible') {\n\t\t\t\tfield.typescriptSchema.push(({ jsonSchema }) => {\n\t\t\t\t\tconst payload = {\n\t\t\t\t\t\tname: field.name,\n\t\t\t\t\t\ttype: field.type,\n\t\t\t\t\t\tlabel: field.label,\n\t\t\t\t\t} as Record<string, unknown>;\n\n\t\t\t\t\tif (field.type === 'relationship') {\n\t\t\t\t\t\tpayload.hasMany = field.hasMany;\n\t\t\t\t\t\tpayload.relationTo = field.relationTo;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn {\n\t\t\t\t\t\t...jsonSchema,\n\t\t\t\t\t\tpayload,\n\t\t\t\t\t};\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\t\treturn field;\n\t};\n\n\tif (config.collections) {\n\t\tconfig.collections.forEach((collection) => {\n\t\t\tcollection.fields = collection.fields.map((field) => mapper(field));\n\t\t});\n\t}\n\n\tif (config.globals) {\n\t\tconfig.globals.forEach((global, index) => {\n\t\t\tglobal.fields = global.fields.map((field) => mapper(field));\n\t\t});\n\t}\n\n\treturn config;\n};\n\n/**\n * Adjusts the JSON schema to include the necessary GoLang schema\n *\n */\nexport const schemas = (\n\topts: SchemaOptions,\n): Array<(args: { jsonSchema: JSONSchema4 }) => JSONSchema4> => [\n\t/**\n\t * Removes the auth & uneeded definitions from the schema.\n\t */\n\t({ jsonSchema }): JSONSchema4 => {\n\t\tif (!jsonSchema.properties) {\n\t\t\tjsonSchema.properties = {};\n\t\t}\n\t\tif (!jsonSchema.definitions) {\n\t\t\tjsonSchema.definitions = {};\n\t\t}\n\n\t\tif (opts.useWebKitMedia) {\n\t\t\tdelete jsonSchema.definitions.media;\n\t\t\tdelete jsonSchema.properties?.collections?.properties?.media;\n\t\t}\n\n\t\tdelete jsonSchema.properties.auth;\n\t\tdelete jsonSchema.definitions['payload-locked-documents'];\n\t\tdelete jsonSchema.properties?.collections?.properties?.['payload-locked-documents'];\n\t\tdelete jsonSchema.definitions.redirects;\n\t\tdelete jsonSchema.properties?.collections?.properties?.redirects;\n\n\t\t// I don't know why but Payload duplicates types and adds Select?\n\n\t\tfor (const key in jsonSchema.definitions) {\n\t\t\tif (key.endsWith('select') || key.endsWith('Select')) {\n\t\t\t\tdelete jsonSchema.definitions[key];\n\t\t\t}\n\t\t}\n\n\t\tfor (const key in jsonSchema.properties) {\n\t\t\tif (key.endsWith('select') || key.endsWith('Select')) {\n\t\t\t\tdelete jsonSchema.properties[key];\n\t\t\t}\n\t\t}\n\n\t\treturn jsonSchema;\n\t},\n\t/**\n\t * Adds the settings and media definitions to the schema\n\t */\n\t({ jsonSchema }): JSONSchema4 => {\n\t\tif (!jsonSchema.definitions) {\n\t\t\tjsonSchema.definitions = {};\n\t\t}\n\n\t\tif ('settings' in jsonSchema.definitions) {\n\t\t\tjsonSchema.definitions.settings = {\n\t\t\t\ttype: 'object',\n\t\t\t\tfields: [],\n\t\t\t\t...addGoJSONSchema('payload.Settings', false),\n\t\t\t};\n\t\t}\n\n\t\tif ('forms' in jsonSchema.definitions) {\n\t\t\tjsonSchema.definitions.forms = {\n\t\t\t\ttype: 'object',\n\t\t\t\t...addGoJSONSchema('payload.Form', false),\n\t\t\t\tfields: [],\n\t\t\t};\n\t\t}\n\n\t\tif ('form-submissions' in jsonSchema.definitions) {\n\t\t\tjsonSchema.definitions['form-submissions'] = {\n\t\t\t\ttype: 'object',\n\t\t\t\t...addGoJSONSchema('payload.FormSubmission', false),\n\t\t\t\tfields: [],\n\t\t\t};\n\t\t}\n\n\t\treturn jsonSchema;\n\t},\n\t/**\n\t * Updates the JSON schema so that it doesn't feature oneOf, so Go doesn't\n\t * output it as an interface{}.\n\t */\n\t({ jsonSchema }): JSONSchema4 => {\n\t\tconst updateRelationship = (property: JSONSchema4) => {\n\t\t\tconst payload = property.payload;\n\t\t\tif (!payload) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif (payload.type === 'relationship') {\n\t\t\t\tif (payload.hasMany) {\n\t\t\t\t\tproperty.type = 'array';\n\t\t\t\t\tproperty.items = {\n\t\t\t\t\t\t$ref: `#/definitions/${payload.relationTo}`,\n\t\t\t\t\t};\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tdelete property.oneOf;\n\t\t\t\tproperty.$ref = `#/definitions/${property.payload.relationTo}`;\n\t\t\t}\n\n\t\t\tconst pType = payload.type;\n\t\t\tif (\n\t\t\t\tpType === 'group' ||\n\t\t\t\tpType === 'row' ||\n\t\t\t\tpType === 'collapsible' ||\n\t\t\t\tpType === 'array'\n\t\t\t) {\n\t\t\t\tif (property.properties) {\n\t\t\t\t\tfor (const k in property.properties) {\n\t\t\t\t\t\tupdateRelationship(property.properties[k]);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn;\n\t\t\t}\n\t\t};\n\n\t\tloopJSONSchemaProperties(jsonSchema, ({ property }) => {\n\t\t\tupdateRelationship(property);\n\t\t});\n\t\treturn jsonSchema;\n\t},\n\t/**\n\t * Changes blockType to a string so it's not an *interface{} when\n\t * comparing block types in Go.\n\t */\n\t({ jsonSchema }): JSONSchema4 => {\n\t\tloopJSONSchemaProperties(jsonSchema, ({ property, key }) => {\n\t\t\tif (key === 'blockType') {\n\t\t\t\tproperty.type = 'string';\n\t\t\t\tdelete property.const;\n\t\t\t}\n\t\t});\n\t\treturn jsonSchema;\n\t},\n\t/**\n\t * Changes blockType to a string so it's not an *interface{} when\n\t * comparing block types in Go.\n\t */\n\t({ jsonSchema }): JSONSchema4 => {\n\t\tloopJSONSchemaProperties(jsonSchema, ({ property, key }) => {\n\t\t\tconst payload = property.payload;\n\t\t\tif (payload && payload.type === 'relationship' && payload.name === 'form') {\n\t\t\t\tdelete property.$ref;\n\t\t\t}\n\t\t});\n\t\treturn jsonSchema;\n\t},\n];\n"],"names":["loopJSONSchemaProperties","jsonSchema","callback","definitions","Object","entries","forEach","definitionKey","definition","properties","propertyKey","property","key","addGoJSONSchema","type","nillable","goJSONSchema","imports","fieldMapper","config","opts","mapper","field","typescriptSchema","blocks","block","fields","map","f","useWebKitMedia","isArray","hasMany","items","required","tabs","tab","relationTo","name","assignRelationships","custom","webkitUseSchema","Array","push","payload","label","collections","collection","globals","global","index","schemas","media","auth","redirects","endsWith","settings","forms","updateRelationship","$ref","oneOf","pType","k","const"],"mappings":"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"}
@@ -10,7 +10,7 @@ import { htmlToLexical } from '../util/lexical.js';
10
10
  */ export const uploadMedia = async (req, payload, dirname, media)=>{
11
11
  try {
12
12
  const image = await getFileByPath(path.resolve(dirname, media.path));
13
- const caption = media.caption ? await htmlToLexical(media.caption) : null;
13
+ const caption = media.caption ? htmlToLexical(media.caption) : null;
14
14
  return await payload.create({
15
15
  collection: 'media',
16
16
  file: image,
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/seed/media.ts"],"sourcesContent":["import path from 'node:path';\nimport type { Payload, PayloadRequest } from 'payload';\nimport { getFileByPath } from 'payload';\nimport { htmlToLexical } from '../util/lexical.js';\nimport type { Media, MediaSeed } from './types.js';\n\n/**\n *\n * @param req\n * @param payload\n * @param dirname\n * @param media\n */\nexport const uploadMedia = async (\n\treq: PayloadRequest,\n\tpayload: Payload,\n\tdirname: string,\n\tmedia: MediaSeed,\n): Promise<Media> => {\n\ttry {\n\t\tconst image = await getFileByPath(path.resolve(dirname, media.path));\n\t\tconst caption = media.caption ? await htmlToLexical(media.caption) : null;\n\n\t\treturn (await payload.create({\n\t\t\tcollection: 'media',\n\t\t\tfile: image,\n\t\t\tdata: {\n\t\t\t\talt: media.alt,\n\t\t\t\tcaption: caption,\n\t\t\t},\n\t\t\treq,\n\t\t})) as unknown as Media;\n\t} catch (error) {\n\t\tpayload.logger.error(`Uploading media: ${error}`);\n\t\tthrow error;\n\t}\n};\n"],"names":["path","getFileByPath","htmlToLexical","uploadMedia","req","payload","dirname","media","image","resolve","caption","create","collection","file","data","alt","error","logger"],"mappings":"AAAA,OAAOA,UAAU,YAAY;AAE7B,SAASC,aAAa,QAAQ,UAAU;AACxC,SAASC,aAAa,QAAQ,qBAAqB;AAGnD;;;;;;CAMC,GACD,OAAO,MAAMC,cAAc,OAC1BC,KACAC,SACAC,SACAC;IAEA,IAAI;QACH,MAAMC,QAAQ,MAAMP,cAAcD,KAAKS,OAAO,CAACH,SAASC,MAAMP,IAAI;QAClE,MAAMU,UAAUH,MAAMG,OAAO,GAAG,MAAMR,cAAcK,MAAMG,OAAO,IAAI;QAErE,OAAQ,MAAML,QAAQM,MAAM,CAAC;YAC5BC,YAAY;YACZC,MAAML;YACNM,MAAM;gBACLC,KAAKR,MAAMQ,GAAG;gBACdL,SAASA;YACV;YACAN;QACD;IACD,EAAE,OAAOY,OAAO;QACfX,QAAQY,MAAM,CAACD,KAAK,CAAC,CAAC,iBAAiB,EAAEA,OAAO;QAChD,MAAMA;IACP;AACD,EAAE"}
1
+ {"version":3,"sources":["../../src/seed/media.ts"],"sourcesContent":["import path from 'node:path';\nimport type { Payload, PayloadRequest } from 'payload';\nimport { getFileByPath } from 'payload';\nimport { htmlToLexical } from '../util/lexical.js';\nimport type { Media, MediaSeed } from './types.js';\n\n/**\n *\n * @param req\n * @param payload\n * @param dirname\n * @param media\n */\nexport const uploadMedia = async (\n\treq: PayloadRequest,\n\tpayload: Payload,\n\tdirname: string,\n\tmedia: MediaSeed,\n): Promise<Media> => {\n\ttry {\n\t\tconst image = await getFileByPath(path.resolve(dirname, media.path));\n\t\tconst caption = media.caption ? htmlToLexical(media.caption) : null;\n\n\t\treturn (await payload.create({\n\t\t\tcollection: 'media',\n\t\t\tfile: image,\n\t\t\tdata: {\n\t\t\t\talt: media.alt,\n\t\t\t\tcaption: caption,\n\t\t\t},\n\t\t\treq,\n\t\t})) as unknown as Media;\n\t} catch (error) {\n\t\tpayload.logger.error(`Uploading media: ${error}`);\n\t\tthrow error;\n\t}\n};\n"],"names":["path","getFileByPath","htmlToLexical","uploadMedia","req","payload","dirname","media","image","resolve","caption","create","collection","file","data","alt","error","logger"],"mappings":"AAAA,OAAOA,UAAU,YAAY;AAE7B,SAASC,aAAa,QAAQ,UAAU;AACxC,SAASC,aAAa,QAAQ,qBAAqB;AAGnD;;;;;;CAMC,GACD,OAAO,MAAMC,cAAc,OAC1BC,KACAC,SACAC,SACAC;IAEA,IAAI;QACH,MAAMC,QAAQ,MAAMP,cAAcD,KAAKS,OAAO,CAACH,SAASC,MAAMP,IAAI;QAClE,MAAMU,UAAUH,MAAMG,OAAO,GAAGR,cAAcK,MAAMG,OAAO,IAAI;QAE/D,OAAQ,MAAML,QAAQM,MAAM,CAAC;YAC5BC,YAAY;YACZC,MAAML;YACNM,MAAM;gBACLC,KAAKR,MAAMQ,GAAG;gBACdL,SAASA;YACV;YACAN;QACD;IACD,EAAE,OAAOY,OAAO;QACfX,QAAQY,MAAM,CAACD,KAAK,CAAC,CAAC,iBAAiB,EAAEA,OAAO;QAChD,MAAMA;IACP;AACD,EAAE"}
@@ -59,7 +59,7 @@ import { $getRoot, $getSelection } from 'lexical';
59
59
  $getRoot().select();
60
60
  // Insert them at a selection.
61
61
  const selection = $getSelection();
62
- if (selection) selection.insertNodes(nodes);
62
+ //if (selection) selection.insertNodes(nodes);
63
63
  }, {
64
64
  discrete: true
65
65
  });
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/util/lexical.ts"],"sourcesContent":["import { createHeadlessEditor } from '@lexical/headless';\nimport { $generateHtmlFromNodes, $generateNodesFromDOM } from '@lexical/html';\n// import { sqliteAdapter } from '@payloadcms/db-sqlite';\n// import {\n// \tdefaultEditorConfig,\n// \tgetEnabledNodes,\n// \tlexicalEditor,\n// \tsanitizeServerEditorConfig,\n// } from '@payloadcms/richtext-lexical';\nimport { JSDOM } from 'jsdom';\nimport { $getRoot, $getSelection, type LexicalEditor } from 'lexical';\nimport type { SerializedEditorState } from 'lexical';\n// import { buildConfig, getPayload } from 'payload';\n// import { importWithoutClientFiles } from 'payload/node';\n\n// const loadEditor = async (): Promise<LexicalEditor> => {\n// \tconst config = {\n// \t\tsecret: 'testing',\n// \t\teditor: lexicalEditor({\n// \t\t\tadmin: {\n// \t\t\t\thideGutter: false,\n// \t\t\t},\n// \t\t}),\n// \t\tdb: sqliteAdapter({\n// \t\t\tclient: {\n// \t\t\t\turl: 'file:./local.db',\n// \t\t\t},\n// \t\t}),\n// \t};\n//\n// \tconst instance = await getPayload({\n// \t\tconfig: buildConfig(config),\n// \t});\n//\n// \tconst editorConfig = await sanitizeServerEditorConfig(defaultEditorConfig, instance.config);\n//\n// \treturn createHeadlessEditor({\n// \t\tnodes: getEnabledNodes({\n// \t\t\teditorConfig,\n// \t\t}),\n// \t});\n// };\n\n/**\n * Converts an HTML string to a Lexical editor state.\n *\n * @param {string} html - The HTML string to convert.\n * @returns {SerializedEditorState} The serialized editor state.\n */\nexport const htmlToLexical = (html: string): SerializedEditorState => {\n\tconst editor = createHeadlessEditor({\n\t\tnodes: [],\n\t\tonError: (error) => {\n\t\t\tconsole.error(error);\n\t\t},\n\t});\n\n\teditor.update(\n\t\t() => {\n\t\t\t// In a headless environment you can use a package such as JSDom to parse the HTML string.\n\t\t\tconst dom = new JSDOM(`<!DOCTYPE html><body>${html}</body>`);\n\n\t\t\t// Once you have the DOM instance it's easy to generate LexicalNodes.\n\t\t\tconst nodes = $generateNodesFromDOM(editor, dom.window.document);\n\n\t\t\t// Select the root\n\t\t\t$getRoot().select();\n\n\t\t\t// Insert them at a selection.\n\t\t\tconst selection = $getSelection();\n\n\t\t\tif (selection) selection.insertNodes(nodes);\n\t\t},\n\t\t{ discrete: true },\n\t);\n\n\treturn editor.getEditorState().toJSON();\n\n\t// let state = {};\n\t//\n\t// loadEditor().then((editor) => {\n\t// \teditor.update(\n\t// \t\t() => {\n\t// \t\t\t// In a headless environment you can use a package such as JSDom to parse the HTML string.\n\t// \t\t\tconst dom = new JSDOM(`<!DOCTYPE html><body>${html}</body>`);\n\t//\n\t// \t\t\t// Once you have the DOM instance it's easy to generate LexicalNodes.\n\t// \t\t\tconst nodes = $generateNodesFromDOM(editor, dom.window.document);\n\t//\n\t// \t\t\t// Select the root\n\t// \t\t\t$getRoot().select();\n\t//\n\t// \t\t\t// Insert them at a selection.\n\t// \t\t\tconst selection = $getSelection();\n\t//\n\t// \t\t\tif (selection) selection.insertNodes(nodes);\n\t// \t\t},\n\t// \t\t{ discrete: true },\n\t// \t);\n\t//\n\t// \tstate = editor.getEditorState().toJSON();\n\t// });\n\t//\n\t// return state as SerializedEditorState;\n};\n\n/**\n * Converts a Lexical editor state to an HTML string.\n *\n * @param {SerializedEditorState} json - The serialized editor state to convert.\n * @returns {string} The HTML string.\n */\nexport const lexicalToHtml = (json: SerializedEditorState): string => {\n\tconst editor = createHeadlessEditor({\n\t\tnodes: [],\n\t\tonError: (error) => {\n\t\t\tconsole.error(error);\n\t\t},\n\t});\n\n\t// Initialize a JSDOM instance\n\tconst dom = new JSDOM('');\n\n\t// @ts-ignore\n\tglobalThis.window = dom.window;\n\tglobalThis.document = dom.window.document;\n\n\teditor.update(() => {\n\t\tconst editorState = editor.parseEditorState(json);\n\t\teditor.setEditorState(editorState);\n\t});\n\n\t// Convert the editor state to HTML\n\tlet html = '';\n\teditor.getEditorState().read(() => {\n\t\thtml = $generateHtmlFromNodes(editor);\n\t});\n\n\treturn html;\n};\n"],"names":["createHeadlessEditor","$generateHtmlFromNodes","$generateNodesFromDOM","JSDOM","$getRoot","$getSelection","htmlToLexical","html","editor","nodes","onError","error","console","update","dom","window","document","select","selection","insertNodes","discrete","getEditorState","toJSON","lexicalToHtml","json","globalThis","editorState","parseEditorState","setEditorState","read"],"mappings":"AAAA,SAASA,oBAAoB,QAAQ,oBAAoB;AACzD,SAASC,sBAAsB,EAAEC,qBAAqB,QAAQ,gBAAgB;AAC9E,yDAAyD;AACzD,WAAW;AACX,wBAAwB;AACxB,oBAAoB;AACpB,kBAAkB;AAClB,+BAA+B;AAC/B,yCAAyC;AACzC,SAASC,KAAK,QAAQ,QAAQ;AAC9B,SAASC,QAAQ,EAAEC,aAAa,QAA4B,UAAU;AAEtE,qDAAqD;AACrD,2DAA2D;AAE3D,2DAA2D;AAC3D,oBAAoB;AACpB,uBAAuB;AACvB,4BAA4B;AAC5B,cAAc;AACd,yBAAyB;AACzB,QAAQ;AACR,QAAQ;AACR,wBAAwB;AACxB,eAAe;AACf,8BAA8B;AAC9B,QAAQ;AACR,QAAQ;AACR,MAAM;AACN,EAAE;AACF,uCAAuC;AACvC,iCAAiC;AACjC,OAAO;AACP,EAAE;AACF,gGAAgG;AAChG,EAAE;AACF,iCAAiC;AACjC,6BAA6B;AAC7B,mBAAmB;AACnB,QAAQ;AACR,OAAO;AACP,KAAK;AAEL;;;;;CAKC,GACD,OAAO,MAAMC,gBAAgB,CAACC;IAC7B,MAAMC,SAASR,qBAAqB;QACnCS,OAAO,EAAE;QACTC,SAAS,CAACC;YACTC,QAAQD,KAAK,CAACA;QACf;IACD;IAEAH,OAAOK,MAAM,CACZ;QACC,0FAA0F;QAC1F,MAAMC,MAAM,IAAIX,MAAM,CAAC,qBAAqB,EAAEI,KAAK,OAAO,CAAC;QAE3D,qEAAqE;QACrE,MAAME,QAAQP,sBAAsBM,QAAQM,IAAIC,MAAM,CAACC,QAAQ;QAE/D,kBAAkB;QAClBZ,WAAWa,MAAM;QAEjB,8BAA8B;QAC9B,MAAMC,YAAYb;QAElB,IAAIa,WAAWA,UAAUC,WAAW,CAACV;IACtC,GACA;QAAEW,UAAU;IAAK;IAGlB,OAAOZ,OAAOa,cAAc,GAAGC,MAAM;AAErC,kBAAkB;AAClB,EAAE;AACF,kCAAkC;AAClC,kBAAkB;AAClB,YAAY;AACZ,gGAAgG;AAChG,mEAAmE;AACnE,EAAE;AACF,2EAA2E;AAC3E,uEAAuE;AACvE,EAAE;AACF,wBAAwB;AACxB,0BAA0B;AAC1B,EAAE;AACF,oCAAoC;AACpC,wCAAwC;AACxC,EAAE;AACF,kDAAkD;AAClD,OAAO;AACP,wBAAwB;AACxB,MAAM;AACN,EAAE;AACF,6CAA6C;AAC7C,MAAM;AACN,EAAE;AACF,yCAAyC;AAC1C,EAAE;AAEF;;;;;CAKC,GACD,OAAO,MAAMC,gBAAgB,CAACC;IAC7B,MAAMhB,SAASR,qBAAqB;QACnCS,OAAO,EAAE;QACTC,SAAS,CAACC;YACTC,QAAQD,KAAK,CAACA;QACf;IACD;IAEA,8BAA8B;IAC9B,MAAMG,MAAM,IAAIX,MAAM;IAEtB,aAAa;IACbsB,WAAWV,MAAM,GAAGD,IAAIC,MAAM;IAC9BU,WAAWT,QAAQ,GAAGF,IAAIC,MAAM,CAACC,QAAQ;IAEzCR,OAAOK,MAAM,CAAC;QACb,MAAMa,cAAclB,OAAOmB,gBAAgB,CAACH;QAC5ChB,OAAOoB,cAAc,CAACF;IACvB;IAEA,mCAAmC;IACnC,IAAInB,OAAO;IACXC,OAAOa,cAAc,GAAGQ,IAAI,CAAC;QAC5BtB,OAAON,uBAAuBO;IAC/B;IAEA,OAAOD;AACR,EAAE"}
1
+ {"version":3,"sources":["../../src/util/lexical.ts"],"sourcesContent":["import { createHeadlessEditor } from '@lexical/headless';\nimport { $generateHtmlFromNodes, $generateNodesFromDOM } from '@lexical/html';\n// import { sqliteAdapter } from '@payloadcms/db-sqlite';\n// import {\n// \tdefaultEditorConfig,\n// \tgetEnabledNodes,\n// \tlexicalEditor,\n// \tsanitizeServerEditorConfig,\n// } from '@payloadcms/richtext-lexical';\nimport { JSDOM } from 'jsdom';\nimport { $getRoot, $getSelection, type LexicalEditor } from 'lexical';\nimport type { SerializedEditorState } from 'lexical';\n// import { buildConfig, getPayload } from 'payload';\n// import { importWithoutClientFiles } from 'payload/node';\n\n// const loadEditor = async (): Promise<LexicalEditor> => {\n// \tconst config = {\n// \t\tsecret: 'testing',\n// \t\teditor: lexicalEditor({\n// \t\t\tadmin: {\n// \t\t\t\thideGutter: false,\n// \t\t\t},\n// \t\t}),\n// \t\tdb: sqliteAdapter({\n// \t\t\tclient: {\n// \t\t\t\turl: 'file:./local.db',\n// \t\t\t},\n// \t\t}),\n// \t};\n//\n// \tconst instance = await getPayload({\n// \t\tconfig: buildConfig(config),\n// \t});\n//\n// \tconst editorConfig = await sanitizeServerEditorConfig(defaultEditorConfig, instance.config);\n//\n// \treturn createHeadlessEditor({\n// \t\tnodes: getEnabledNodes({\n// \t\t\teditorConfig,\n// \t\t}),\n// \t});\n// };\n\n/**\n * Converts an HTML string to a Lexical editor state.\n *\n * @param {string} html - The HTML string to convert.\n * @returns {SerializedEditorState} The serialized editor state.\n */\nexport const htmlToLexical = (html: string): SerializedEditorState => {\n\tconst editor = createHeadlessEditor({\n\t\tnodes: [],\n\t\tonError: (error) => {\n\t\t\tconsole.error(error);\n\t\t},\n\t});\n\n\teditor.update(\n\t\t() => {\n\t\t\t// In a headless environment you can use a package such as JSDom to parse the HTML string.\n\t\t\tconst dom = new JSDOM(`<!DOCTYPE html><body>${html}</body>`);\n\n\t\t\t// Once you have the DOM instance it's easy to generate LexicalNodes.\n\t\t\tconst nodes = $generateNodesFromDOM(editor, dom.window.document);\n\n\t\t\t// Select the root\n\t\t\t$getRoot().select();\n\n\t\t\t// Insert them at a selection.\n\t\t\tconst selection = $getSelection();\n\n\t\t\t//if (selection) selection.insertNodes(nodes);\n\t\t},\n\t\t{ discrete: true },\n\t);\n\n\treturn editor.getEditorState().toJSON();\n\n\t// let state = {};\n\t//\n\t// loadEditor().then((editor) => {\n\t// \teditor.update(\n\t// \t\t() => {\n\t// \t\t\t// In a headless environment you can use a package such as JSDom to parse the HTML string.\n\t// \t\t\tconst dom = new JSDOM(`<!DOCTYPE html><body>${html}</body>`);\n\t//\n\t// \t\t\t// Once you have the DOM instance it's easy to generate LexicalNodes.\n\t// \t\t\tconst nodes = $generateNodesFromDOM(editor, dom.window.document);\n\t//\n\t// \t\t\t// Select the root\n\t// \t\t\t$getRoot().select();\n\t//\n\t// \t\t\t// Insert them at a selection.\n\t// \t\t\tconst selection = $getSelection();\n\t//\n\t// \t\t\tif (selection) selection.insertNodes(nodes);\n\t// \t\t},\n\t// \t\t{ discrete: true },\n\t// \t);\n\t//\n\t// \tstate = editor.getEditorState().toJSON();\n\t// });\n\t//\n\t// return state as SerializedEditorState;\n};\n\n/**\n * Converts a Lexical editor state to an HTML string.\n *\n * @param {SerializedEditorState} json - The serialized editor state to convert.\n * @returns {string} The HTML string.\n */\nexport const lexicalToHtml = (json: SerializedEditorState): string => {\n\tconst editor = createHeadlessEditor({\n\t\tnodes: [],\n\t\tonError: (error) => {\n\t\t\tconsole.error(error);\n\t\t},\n\t});\n\n\t// Initialize a JSDOM instance\n\tconst dom = new JSDOM('');\n\n\t// @ts-ignore\n\tglobalThis.window = dom.window;\n\tglobalThis.document = dom.window.document;\n\n\teditor.update(() => {\n\t\tconst editorState = editor.parseEditorState(json);\n\t\teditor.setEditorState(editorState);\n\t});\n\n\t// Convert the editor state to HTML\n\tlet html = '';\n\teditor.getEditorState().read(() => {\n\t\thtml = $generateHtmlFromNodes(editor);\n\t});\n\n\treturn html;\n};\n"],"names":["createHeadlessEditor","$generateHtmlFromNodes","$generateNodesFromDOM","JSDOM","$getRoot","$getSelection","htmlToLexical","html","editor","nodes","onError","error","console","update","dom","window","document","select","selection","discrete","getEditorState","toJSON","lexicalToHtml","json","globalThis","editorState","parseEditorState","setEditorState","read"],"mappings":"AAAA,SAASA,oBAAoB,QAAQ,oBAAoB;AACzD,SAASC,sBAAsB,EAAEC,qBAAqB,QAAQ,gBAAgB;AAC9E,yDAAyD;AACzD,WAAW;AACX,wBAAwB;AACxB,oBAAoB;AACpB,kBAAkB;AAClB,+BAA+B;AAC/B,yCAAyC;AACzC,SAASC,KAAK,QAAQ,QAAQ;AAC9B,SAASC,QAAQ,EAAEC,aAAa,QAA4B,UAAU;AAEtE,qDAAqD;AACrD,2DAA2D;AAE3D,2DAA2D;AAC3D,oBAAoB;AACpB,uBAAuB;AACvB,4BAA4B;AAC5B,cAAc;AACd,yBAAyB;AACzB,QAAQ;AACR,QAAQ;AACR,wBAAwB;AACxB,eAAe;AACf,8BAA8B;AAC9B,QAAQ;AACR,QAAQ;AACR,MAAM;AACN,EAAE;AACF,uCAAuC;AACvC,iCAAiC;AACjC,OAAO;AACP,EAAE;AACF,gGAAgG;AAChG,EAAE;AACF,iCAAiC;AACjC,6BAA6B;AAC7B,mBAAmB;AACnB,QAAQ;AACR,OAAO;AACP,KAAK;AAEL;;;;;CAKC,GACD,OAAO,MAAMC,gBAAgB,CAACC;IAC7B,MAAMC,SAASR,qBAAqB;QACnCS,OAAO,EAAE;QACTC,SAAS,CAACC;YACTC,QAAQD,KAAK,CAACA;QACf;IACD;IAEAH,OAAOK,MAAM,CACZ;QACC,0FAA0F;QAC1F,MAAMC,MAAM,IAAIX,MAAM,CAAC,qBAAqB,EAAEI,KAAK,OAAO,CAAC;QAE3D,qEAAqE;QACrE,MAAME,QAAQP,sBAAsBM,QAAQM,IAAIC,MAAM,CAACC,QAAQ;QAE/D,kBAAkB;QAClBZ,WAAWa,MAAM;QAEjB,8BAA8B;QAC9B,MAAMC,YAAYb;IAElB,8CAA8C;IAC/C,GACA;QAAEc,UAAU;IAAK;IAGlB,OAAOX,OAAOY,cAAc,GAAGC,MAAM;AAErC,kBAAkB;AAClB,EAAE;AACF,kCAAkC;AAClC,kBAAkB;AAClB,YAAY;AACZ,gGAAgG;AAChG,mEAAmE;AACnE,EAAE;AACF,2EAA2E;AAC3E,uEAAuE;AACvE,EAAE;AACF,wBAAwB;AACxB,0BAA0B;AAC1B,EAAE;AACF,oCAAoC;AACpC,wCAAwC;AACxC,EAAE;AACF,kDAAkD;AAClD,OAAO;AACP,wBAAwB;AACxB,MAAM;AACN,EAAE;AACF,6CAA6C;AAC7C,MAAM;AACN,EAAE;AACF,yCAAyC;AAC1C,EAAE;AAEF;;;;;CAKC,GACD,OAAO,MAAMC,gBAAgB,CAACC;IAC7B,MAAMf,SAASR,qBAAqB;QACnCS,OAAO,EAAE;QACTC,SAAS,CAACC;YACTC,QAAQD,KAAK,CAACA;QACf;IACD;IAEA,8BAA8B;IAC9B,MAAMG,MAAM,IAAIX,MAAM;IAEtB,aAAa;IACbqB,WAAWT,MAAM,GAAGD,IAAIC,MAAM;IAC9BS,WAAWR,QAAQ,GAAGF,IAAIC,MAAM,CAACC,QAAQ;IAEzCR,OAAOK,MAAM,CAAC;QACb,MAAMY,cAAcjB,OAAOkB,gBAAgB,CAACH;QAC5Cf,OAAOmB,cAAc,CAACF;IACvB;IAEA,mCAAmC;IACnC,IAAIlB,OAAO;IACXC,OAAOY,cAAc,GAAGQ,IAAI,CAAC;QAC5BrB,OAAON,uBAAuBO;IAC/B;IAEA,OAAOD;AACR,EAAE"}
@@ -1,2 +1,3 @@
1
- export declare const validateURL: (value: string) => Promise<true | "Please enter a valid URL">;
2
- export declare const validatePostcode: (value: string) => Promise<true | "Invalid postcode format">;
1
+ import type { TextFieldSingleValidation } from 'payload';
2
+ export declare const validateURL: TextFieldSingleValidation;
3
+ export declare const validatePostcode: TextFieldSingleValidation;
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/util/validation.ts"],"sourcesContent":["export const validateURL = async (value: string) => {\n\tif (!value) {\n\t\treturn true;\n\t}\n\ttry {\n\t\tnew URL(value);\n\t\treturn true;\n\t} catch (error) {\n\t\treturn 'Please enter a valid URL';\n\t}\n};\n\nexport const validatePostcode = async (value: string) => {\n\tif (!value) {\n\t\treturn true;\n\t}\n\tconst postcodeRegex = /^[A-Z]{1,2}\\d[A-Z\\d]? ?\\d[A-Z]{2}$/i;\n\tif (!postcodeRegex.test(value)) {\n\t\treturn 'Invalid postcode format';\n\t}\n\treturn true;\n};\n"],"names":["validateURL","value","URL","error","validatePostcode","postcodeRegex","test"],"mappings":"AAAA,OAAO,MAAMA,cAAc,OAAOC;IACjC,IAAI,CAACA,OAAO;QACX,OAAO;IACR;IACA,IAAI;QACH,IAAIC,IAAID;QACR,OAAO;IACR,EAAE,OAAOE,OAAO;QACf,OAAO;IACR;AACD,EAAE;AAEF,OAAO,MAAMC,mBAAmB,OAAOH;IACtC,IAAI,CAACA,OAAO;QACX,OAAO;IACR;IACA,MAAMI,gBAAgB;IACtB,IAAI,CAACA,cAAcC,IAAI,CAACL,QAAQ;QAC/B,OAAO;IACR;IACA,OAAO;AACR,EAAE"}
1
+ {"version":3,"sources":["../../src/util/validation.ts"],"sourcesContent":["import type { TextFieldSingleValidation } from 'payload';\n\nexport const validateURL: TextFieldSingleValidation = async (value) => {\n\tif (!value) {\n\t\treturn true;\n\t}\n\ttry {\n\t\tnew URL(value);\n\t\treturn true;\n\t} catch (error) {\n\t\treturn 'Please enter a valid URL';\n\t}\n};\n\nexport const validatePostcode: TextFieldSingleValidation = async (value) => {\n\tif (!value) {\n\t\treturn true;\n\t}\n\tconst postcodeRegex = /^[A-Z]{1,2}\\d[A-Z\\d]? ?\\d[A-Z]{2}$/i;\n\tif (!postcodeRegex.test(value)) {\n\t\treturn 'Invalid postcode format';\n\t}\n\treturn true;\n};\n"],"names":["validateURL","value","URL","error","validatePostcode","postcodeRegex","test"],"mappings":"AAEA,OAAO,MAAMA,cAAyC,OAAOC;IAC5D,IAAI,CAACA,OAAO;QACX,OAAO;IACR;IACA,IAAI;QACH,IAAIC,IAAID;QACR,OAAO;IACR,EAAE,OAAOE,OAAO;QACf,OAAO;IACR;AACD,EAAE;AAEF,OAAO,MAAMC,mBAA8C,OAAOH;IACjE,IAAI,CAACA,OAAO;QACX,OAAO;IACR;IACA,MAAMI,gBAAgB;IACtB,IAAI,CAACA,cAAcC,IAAI,CAACL,QAAQ;QAC/B,OAAO;IACR;IACA,OAAO;AACR,EAAE"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ainsleydev/payload-helper",
3
- "version": "0.0.26",
3
+ "version": "0.0.28",
4
4
  "description": "Payload CMS utilities, collections and global types for ainsley.dev builds",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -32,21 +32,21 @@
32
32
  },
33
33
  "files": ["dist", "bin.js", "types.js", "types.ts", "types.d.ts"],
34
34
  "dependencies": {
35
- "@lexical/headless": "0.20.0",
36
- "@lexical/html": "0.20.0",
35
+ "payload": "3.23.0",
36
+ "@payloadcms/db-sqlite": "3.23.0",
37
+ "@payloadcms/richtext-lexical": "3.23.0",
38
+ "@payloadcms/plugin-form-builder": "3.23.0",
39
+ "@payloadcms/plugin-seo": "3.23.0",
40
+ "@lexical/headless": "0.21.0",
41
+ "@lexical/html": "0.21.0",
37
42
  "@nouance/payload-better-fields-plugin": "^1.4.1",
38
- "@payloadcms/db-sqlite": "3.5.0",
39
- "@payloadcms/richtext-lexical": "3.5.0",
40
- "@payloadcms/plugin-form-builder": "3.5.0",
41
- "@payloadcms/plugin-seo": "3.5.0",
42
43
  "@types/json-schema": "^7.0.15",
43
44
  "chalk": "^5.3.0",
44
45
  "commander": "^12.1.0",
45
46
  "dotenv": "^16.4.5",
46
47
  "jsdom": "^24.1.1",
47
- "lexical": "0.20.0",
48
- "mime-types": "^2.1.35",
49
- "payload": "3.5.0"
48
+ "lexical": "0.21.0",
49
+ "mime-types": "^2.1.35"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@ainsleydev/eslint-config": "workspace:*",
@@ -66,5 +66,11 @@
66
66
  "engines": {
67
67
  "node": ">=18",
68
68
  "pnpm": ">=9"
69
+ },
70
+ "pnpm": {
71
+ "onlyBuiltDependencies": ["sharp"],
72
+ "overrides": {
73
+ "lexical": "0.21.0"
74
+ }
69
75
  }
70
76
  }