react-quill icon indicating copy to clipboard operation
react-quill copied to clipboard

how do i implement custom functionality of uploading an image in the react quill ?

Open rohan2734 opened this issue 3 years ago • 1 comments

how do i implement custom functionality of uploading an image in the react quill ?

possible features

  1. drag and drop
  2. insert file
  3. insert link

rohan2734 avatar Feb 24 '22 17:02 rohan2734

I used this plug in Quill.register("modules/imageUploader", ImageUploader);

const modules = { imageUploader: { upload: uploadImage, }, };

you then implement your own code in uploadImage function

<ReactQuill {...props} modules={modules} />;

chriscastlework avatar Mar 03 '22 10:03 chriscastlework