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

@appigram/react-editor-js

v1.0.11

Published

Unofficial react component for editorjs (https://editorjs.io/)

Downloads

17

Readme

react-editor-js

npm version Build Status Cypress.io tests Commitizen friendly Netlify Status

Unofficial react component for Editor.js (https://editorjs.io/).

Demo

You can see react-editor-js in action on both codesandbox and netlify.

Getting started

npm i @appigram/react-editor-js --save

# or
yarn add @appigram/react-editor-js

PeerDependencies

You have to install the required peerDependencies (eg. React >= 16.8), which are listed by the command:

npm info "@appigram/react-editor-js@latest" peerDependencies

If using npm 5+, use this shortcut:

npx install-peerdeps --dev @appigram/react-editor-js

# or
yarn add @appigram/react-editor-js -D --peer

Usage

// index.js
import EditorJs from '@appigram/react-editor-js'

const App = () => {
  return <EditorJs data={data} />
}

Whereas data looks similar to this example. It is based on the example output presented on editorjs.io.

Configuration

EditorJs passes all given props straight to the editorjs instance. It is basically just a wrapper component in React. Take a look at the configuration page in the editor.js documentation for more details.

Advanced example with callbacks, custom element and instance access

// index.js
import EditorJs from '@appigram/react-editor-js'

const App = () => {
  const editor = null

  const onReady = () => {
    // https://editorjs.io/configuration#editor-modifications-callback
    console.log('Editor.js is ready to work!')
  }

  const onChange = () => {
    // https://editorjs.io/configuration#editor-modifications-callback
    console.log("Now I know that Editor's content changed!")
  }

  const onSave = async () => {
    // https://editorjs.io/saving-data
    try {
      const outputData = await editor.save()
      console.log('Article data: ', outputData)
    } catch (e) {
      console.log('Saving failed: ', e)
    }
  }

  return (
    <div>
      <button onClick={onSave}>Save</button>
      {/* docs: https://editorjs.io/configuration */}
      <EditorJs
        data={data}
        // will be `editorjs` by default
        holder="custom-editor-container"
        onReady={onReady}
        onChange={onChange}
        editorInstance={editorInstance => {
          // invoked once the editorInstance is ready
          editor = editorInstance
        }}
      >
        <div id="custom-editor-container" />
      </EditorJs>
    </div>
  )
}

Plugins / Tools

If you want to add more tools simply pass a tools property to the EditorJs component:

// index.js
import EditorJs from '@appigram/react-editor-js'
import Header from '@editorjs/header'

const App = () => {
  return <EditorJs data={data} tools={{ header: Header }} />
}

EditorJs already comes with a basic config for @editorjs/paragraph and @editorjs/header. Take a look on their Github page to find more available plugins (or take a look at the storybook example).

Additional Props

| Name | Type | Default | Description | | :------------------------ | :-------: | :-----: | :----------------------------------------------------------------------------------------------------------------------- | | reinitializeOnPropsChange | boolean | false | editor-js is initialised again on componentDidUpdate |

References

Licence

MIT

This project is not affiliated, associated, authorized, endorsed by or in any way officially connected to EditorJS (editorjs.io).

Contributors ✨

Thanks goes to these wonderful people (emoji key):

This project follows the all-contributors specification. Contributions of any kind welcome!