Open matteo-naif opened 2 months ago
This is currently expected, as the converter cannot auto-upload those images for you. Probably won't add this functionality - don't want this function to perform any modifications to your payload db.
Though there are other strategies to convert html images => lexical (work with JSON, or deploy your own script first that performs those auto-uploads). I've marked this issue as documentation
and will add something to our docs
This is currently expected, as the converter cannot auto-upload those images for you. Probably won't add this functionality - don't want this function to perform any modifications to your payload db.
Though there are other strategies to convert html images => lexical (work with JSON, or deploy your own script first that performs those auto-uploads). I've marked this issue as
documentation
and will add something to our docs
Thanks Alessio for the reply. I can intercept the url of the images and load them with a script in parallel but I don't understand how to insert the image node with the correct id in the correct location of the Lexical JSON. Is there a way to sneak into the conversion script?
Hi @matteo-naif, I'm having trouble getting the headless editor to parse A-nodes. On line 7 you import from @paylod-config. Could you share that file with me? 🙏
Hi @madsbertelsen , the import is an alias that refers to my payload.config.ts
import { layoutBlocks } from '@/app/(payload)/_config/fields/layout/layoutBlocks'
import { mongooseAdapter } from '@payloadcms/db-mongodb'
import { BlocksFeature, lexicalEditor } from '@payloadcms/richtext-lexical'
import { locales } from 'locale.config'
import path from 'path'
import { buildConfig } from 'payload'
import { en } from 'payload/i18n/en'
import { it } from 'payload/i18n/it'
import sharp from 'sharp'
import { fileURLToPath } from 'url'
export default buildConfig({
editor: lexicalEditor({
features: ({ defaultFeatures }) => [
...defaultFeatures,
BlocksFeature({
blocks: layoutBlocks,
}),
]
}),
collections: [
// Collections
],
globals: [
// Globals
],
secret: process.env.PAYLOAD_SECRET || '',
typescript: {
outputFile: path.resolve(dirname, 'payload-types.ts'),
},
db: mongooseAdapter({
url: process.env.MONGODB_URI || '',
}),
i18n: {
supportedLanguages: { it, en },
},
localization: {
locales: locales.map(l => ({ label: l.label, code: l.code })),
defaultLocale: locales[0].code,
fallback: false,
},
debug: process.env.NODE_ENV === 'development',
sharp,
plugins: [
// Plugins
]
})
Thanks @matteo-naif! Passing the payload config as argument made it work for me 🥳
@AlessioGr any updates?
Link to reproduction
-
Payload Version
3.0.0-beta.90
Node Version
v20
Next.js Version
15.0.0-canary.121
Describe the Bug
When I convert HTML to Lexical the images are not converted. There is a way to handle it?
Reproduction Steps
Code I'm using to convert HTML -> Lexical
Original HTML
Converted Lexical (JSON) without image
Adapters and Plugins