npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

quill-2-image-uploader-base64-off

v1.4.9

Published

A module for Quill rich text editor to allow images to be uploaded to a server instead of being base64 encoded

Downloads

1,081

Readme

Quill-2 TS Image Uploader

quill-2-image-uploader-base64-off

- Replacing base64 Image after uploading with img src="your-link"

Adaptation for using Quill-2 and react-quill-new

A module for Quill rich text editor to allow images to be uploaded to a server instead of being base64 encoded. Adds a button to the toolbar for users to click, also handles drag,dropped and pasted images.

Image of Yaktocat

Quickstart (React with react-quill-new)

Install

Install with npm:

```bash
    npm i quill-2-image-uploader-base64-off
    npm i quill
    npm i react-quill-new
import ReactQuill, { Quill } from 'react-quill-new';
import ImageUploader from 'quill-2-image-uploader-base64-off';
import Emitter from 'quill/core/emitter';

import 'quill-image-uploader/dist/quill.imageUploader.min.css';
import { useRef } from 'react';

Quill.register('modules/imageUploader', ImageUploader);

const Scroll = Quill.import('blots/scroll') as any;

// Fix for Quill-2 to dnd inside textarea after paste or drop
class DraggableScroll extends Scroll {
  constructor(
    registry: { attributes: any; classes: any; tags: any; types: any },
    domNode: HTMLElement,
    { emitter }: { emitter: Emitter }
  ) {
    super(registry, domNode, { emitter });

    this.domNode?.addEventListener('drop', (e: DragEvent) => this.handleDrop(e), true);
  }

  handleDrop(e: DragEvent) {
    if (!e.dataTransfer?.files.length) e.stopImmediatePropagation();
  }

  handleDragStart() {}
}

// @ts-ignore
Quill.register(DraggableScroll);

interface IProps {
  classes?: string;
  theme?: string;
  text?: string;
  placeholder?: string;
  setContent?: (content: string) => void;
}

export const MyComponent = ({ classes, theme, text, placeholder, setContent }: IProps) => {
  const ref = useRef(null)
  return (
    <ReactQuill
      className={classes}
      theme={theme}
      value={text}
      onChange={(text, delta, source) => {
        if (source === 'user') {
          setContent?.(text);
        }
      }}
      modules={{
        toolbar: {
          container: [['link'], ['image']],
        },
        clipboard: {
          matchVisual: false,
        },
        imageResize: {
          parchment: Quill.import('parchment'),
            // U can add custom ImageResizeModuleToolbar
            modules: ['Resize', 'DisplaySize'], 
        },
        imageUploader: {
          upload: async (file: File) => {
            // pass your img link or set showBase64Image true to see base64img inside textarea
            return { imageLink: 'img link', showBase64Image: false };
          },
        },
      }}
      formats={['header', 'font', 'size']}
      ref={ref}
      readOnly={false}
      placeholder={placeholder}
    />
  );
};

If warnings in console, check this formats:

'imageBlot', // #5 Optinal if using custom formats

'sub',

'super',

'width',

'alt',

'bullet',