This PR adds support for inserting images into the rich text editor via both **copy & paste** and **drag & drop**, whether from local files or image DOM nodes. It leverages the bulk uploads UI to provide a smooth workflow for: - Selecting the target collection - Filling in any required fields defined on the uploads collection - Uploading multiple images at once This significantly improves the UX for adding images to rich text, and also works seamlessly when pasting images from external editors like Google Docs or Microsoft Word. Test pre-release: `3.57.0-internal.801ab5a` ## Showcase - drag & drop images from computer https://github.com/user-attachments/assets/c558c034-d2e4-40d8-9035-c0681389fb7b ## Showcase - copy & paste images from computer https://github.com/user-attachments/assets/f36faf94-5274-4151-b141-00aff2b0efa4 ## Showcase - copy & paste image DOM nodes https://github.com/user-attachments/assets/2839ed0f-3f28-4e8d-8b47-01d0cb947edc --- - To see the specific tasks where the Asana app for GitHub is being used, see below: - https://app.asana.com/0/0/1211217132290841
92 lines
2.9 KiB
TypeScript
92 lines
2.9 KiB
TypeScript
import { fileURLToPath } from 'node:url'
|
|
import path from 'path'
|
|
import { type Config } from 'payload'
|
|
|
|
import { LexicalFullyFeatured } from './collections/_LexicalFullyFeatured/index.js'
|
|
import ArrayFields from './collections/Array/index.js'
|
|
import {
|
|
getLexicalFieldsCollection,
|
|
lexicalBlocks,
|
|
lexicalInlineBlocks,
|
|
} from './collections/Lexical/index.js'
|
|
import { LexicalAccessControl } from './collections/LexicalAccessControl/index.js'
|
|
import { LexicalHeadingFeature } from './collections/LexicalHeadingFeature/index.js'
|
|
import { LexicalInBlock } from './collections/LexicalInBlock/index.js'
|
|
import { LexicalJSXConverter } from './collections/LexicalJSXConverter/index.js'
|
|
import { LexicalLinkFeature } from './collections/LexicalLinkFeature/index.js'
|
|
import { LexicalLocalizedFields } from './collections/LexicalLocalized/index.js'
|
|
import { LexicalMigrateFields } from './collections/LexicalMigrate/index.js'
|
|
import { LexicalObjectReferenceBugCollection } from './collections/LexicalObjectReferenceBug/index.js'
|
|
import { LexicalRelationshipsFields } from './collections/LexicalRelationships/index.js'
|
|
import { OnDemandForm } from './collections/OnDemandForm/index.js'
|
|
import { OnDemandOutsideForm } from './collections/OnDemandOutsideForm/index.js'
|
|
import RichTextFields from './collections/RichText/index.js'
|
|
import TextFields from './collections/Text/index.js'
|
|
import { Uploads, Uploads2 } from './collections/Upload/index.js'
|
|
import TabsWithRichText from './globals/TabsWithRichText.js'
|
|
import { seed } from './seed.js'
|
|
|
|
const filename = fileURLToPath(import.meta.url)
|
|
const dirname = path.dirname(filename)
|
|
|
|
export const baseConfig: Partial<Config> = {
|
|
// ...extend config here
|
|
collections: [
|
|
LexicalFullyFeatured,
|
|
LexicalLinkFeature,
|
|
LexicalHeadingFeature,
|
|
LexicalJSXConverter,
|
|
getLexicalFieldsCollection({
|
|
blocks: lexicalBlocks,
|
|
inlineBlocks: lexicalInlineBlocks,
|
|
}),
|
|
LexicalMigrateFields,
|
|
LexicalLocalizedFields,
|
|
LexicalObjectReferenceBugCollection,
|
|
LexicalInBlock,
|
|
LexicalAccessControl,
|
|
LexicalRelationshipsFields,
|
|
RichTextFields,
|
|
TextFields,
|
|
Uploads,
|
|
Uploads2,
|
|
ArrayFields,
|
|
OnDemandForm,
|
|
OnDemandOutsideForm,
|
|
],
|
|
globals: [TabsWithRichText],
|
|
|
|
admin: {
|
|
importMap: {
|
|
baseDir: path.resolve(dirname),
|
|
},
|
|
components: {
|
|
views: {
|
|
custom: {
|
|
Component: './components/Image.js#Image',
|
|
path: '/custom-image',
|
|
},
|
|
},
|
|
beforeDashboard: [
|
|
{
|
|
path: './components/CollectionsExplained.js#CollectionsExplained',
|
|
},
|
|
],
|
|
},
|
|
},
|
|
onInit: async (payload) => {
|
|
// IMPORTANT: This should only seed, not clear the database.
|
|
if (process.env.SEED_IN_CONFIG_ONINIT !== 'false') {
|
|
await seed(payload)
|
|
}
|
|
},
|
|
localization: {
|
|
defaultLocale: 'en',
|
|
fallback: true,
|
|
locales: ['en', 'es'],
|
|
},
|
|
typescript: {
|
|
outputFile: path.resolve(dirname, 'payload-types.ts'),
|
|
},
|
|
}
|