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

letterpad-editor

v1.1.9

Published

The letterpad editor - A high level abstraction of draftjs with plugin architecture

Downloads

10

Readme

Letterpad Editor

This editor is an extract from the Letterpad CMS.

This editor gives a high level api of the draft editor along with a flexible plugin architecture.

How to use

# using yarn
yarn add letterpad-editor

# using npm
npm install letterpad-editor

Now you can use this in your react project

import React from "react";
import LetterpadEditor from "letterpad-editor";

const MyEditor = () => {
  return (
    <LetterpadEditor
      theme="dark"
      html="Hello World"
      onChange={(html: string) => {
        console.log(html);
      }}
    />
  );
};

export default MyEditor;

Parameters

  • theme: string

    default: dark

    Set the theme. Options - light | dark

  • setHelpers: (props: Helpers) => void

    You may want to store these props in some state, so that you can access them anytime. See below:

    import { Helpers } from "letterpad-editor/dist/types";
    import LetterpadEditor from "letterpad-editor";
    
    const MyEditor = () => {
      const [helpers, setHelpers] = useState<Helpers>();
    
      const insertImage = () => {
        helpers.pluginHelpers.imagePlugin.insertImage({
          src: "https://example.com/image.jpg",
          caption: "caption",
          width: 300,
          height: 200,
          placeholderSrc: "https://example.com/1x1.jpg"
        });
      };
    
      return (
        <div>
          <LetterpadEditor
            theme="dark"
            html="Hello World"
            setHelpers={setHelpers}
            onChange={(html: string) => {
              console.log(html);
            }}
          />
          <button onClick={insertImage}>Insert Image</button>
        </div>
      );
    };
    // Helpers
    {
      pluginHelpers, // instance of each plugin by name
      getPlugins, // a function returning a list of all the plugins
      getProps, // a function returning a list of all the props pass into the Editor
      setEditorState, // a function to update the EditorState
      getEditorState, // a function to get the current EditorState
      getReadOnly, // a function returning of the Editor is set to readOnly
      setReadOnly, // a function which allows to set the Editor to readOnly
      getEditorRef, // a function to get the editor reference
    }
  • onImageClick: ((insert: TypeInsertImageFn) => void)

    insert is a callback function to insert the image in the editor.

      ...
      onImageClick={insert => {
        // display file explorer
        // on select image, get the urls and some additional info
        insert({
          src,
          caption,
          width,
          height,
          placeholderSrc
        })
      }}
      ...

    Scenario: If a user is uploading an image, you might want to show some sort of a loading placeholder in the editor. And then when the image has uploaded, you will have to replace the placeholder. You can do so in this way.

    import { Helpers } from "letterpad-editor/dist/types";
    import LetterpadEditor from "letterpad-editor";
    
    const MyEditor = () => {
    const [helpers, setHelpers] = useState<Helpers>();
    
    const insertImage = () => {
      const image = getImageFromUser(); // implement this method.
      const {insertImage, updateImageBlock} = helpers.pluginHelpers.imagePlugin;
    
      const key = insertImage({
        src: "https://example.com/placeholder.svg"
      });
    
      const uploadedSrc = await uploadImageToServer(image);
    
      updateImageBlock(key, {
        src: uploadedSrc
      });
    };
    
    return (
      <div>
        <LetterpadEditor
          theme="dark"
          onChange={(html: string) => {
            console.log(html);
          }}
          html="Hello World"
          setHelpers={setHelpers}
        />
        <button onClick={insertImage}>Insert Image</button>
      </div>
    );
    };
  • onVideoClick: ((insert: (url:string) => void) => void)

  • onChange(html: string): (html:string) => void

    Receive html whenever there is a change in the editor.

  • html - string

    Load the initial html. If you want empty page, the enter empty string. If its null, it will load sample data.

Development

If you would like to contribute then setup your dev environment this way.

git clone [email protected]:letterpad/editor.git
cd editor
yarn install
yarn dev