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

draft-js-autosave-plugin

v0.1.0

Published

Autosave Plugin for DraftJS Plugins Editor

Downloads

10

Readme

DraftJS Autosave Plugin

npm version volkswagen status

This is a plugin for the draft-js-plugins-editor.

This plugin allows you to add autosave functionality via a callback function to your plugins-enabled editor.

Usage

First instantiate the plugin, passing the necessary props in the config:

import createAutosavePlugin from 'draft-js-autosave-plugin';

const autosavePlugin = createAutosavePlugin(config);

And then pass the plugin into a draft-js-plugins-editor component:

import Editor from 'draft-js-plugins-editor'

<Editor plugins={[autosavePlugin]} />

Config

The plugin requires a config with a saveFunction property, and a few optional properties:


const mySaveFunction = () => { /* A function that does something */ }

const config = {
  saveFunction: mySaveFunction,
  debounceTime: 3000,
  saveAlways: true
}
const autosavePlugin = createAutosavePlugin(config)

The config options and their defaults are:

| Option | Type | Description | Default | Required | | --- | --- | --- | --- | --- | | saveFunction | Function | Required callback function that will be called upon a save event | none | * | debounceTime | integer | Time, in milliseconds, to debounce the firing of save events after changes | 2000 | | saveAlways | Boolean | Whether or not to call saveFunction callback for both selection and content changes, rather than just content changes (DraftJS fires onChange events for both) | false | | savingComponent | React Component | A custom react component to display the saving status; will receive props from plugin | SavingComponent |

Component

You can get the saving status component (or your own supplied custom component, decorated with props) from the instance:

const {
  SavingComponent
} = autosavePlugin;

Render this in your component wherever you'd like:

<div className="toolbar">
  <SavingComponent />
</div>

The component has a couple optional props:

| Prop | Type | Description | Default | | --- | --- | --- | --- | | saving | Boolean | If you're using an asynchronous saving function, the component needs to be made aware of the in-flight request to render saving status appropriately (otherwise it will be considered saved upon calling the saveFunction callback) | none | theme | object | Object of css classNames that will be applied to the saving component. Default theming classes are replaced entirely (see here for more details) if property provided. | styles.css |

Importing the default styles

The plugin ships with a default styling available at this location in the installed package: node_modules/draft-js-autosave-plugin/lib/plugin.css.

Webpack Usage

Follow the steps below to import the css file by using Webpack's style-loader and css-loader.

  1. Install Webpack loaders: npm install style-loader css-loader --save-dev

  2. Add the below section to Webpack config (if your Webpack already has loaders array, simply add the below loader object({test:foo, loaders:bar[]}) as an item in the array).

    module: {
      loaders: [{
        test: /\.css$/,
        loaders: [
          'style', 'css'
        ]
      }]
    }
  3. Add the below import line to your component to tell Webpack to inject style to your component.

    import 'draft-js-mention-plugin/lib/plugin.css';
  4. Restart Webpack.

Browserify Usage

TODO: PR welcome

Specifying Your Own SavingComponent

If you'd like, you can specify your own custom SavingComponent to handle the saving status. Your component will be decorated with a few props and become available on the plugin instance.

Props that will be passed to your component:

  • getIsClean (func) - returns a boolean indicating whether or not the plugin has any pending changes to be saved
  • theme (object) - object of css classNames, see default here

Example:


const MySavingComponent = ({ saving, getIsClean, theme }) => {
  const saved = getIsClean() && !saving;
  return (
    <div className={saved ? theme.container : `${theme.container} ${theme.containerSaving}`}>
      <span
        className={saved ? theme.textSaved : theme.textSaving}
      >
        {!saved && 'Saving...'}
        {saved && 'All Changes Saved.'}
      </span>
      <span style={{ marginLeft: '0.2em' }}>{'🖫'}</span>
    </div>
  );
};

The above presentational component must then be passed into the config:

const autosavePlugin = createAutosavePlugin({ ...config, savingComponent: MySavingComponent });

draft-js-plugins-editor version info

This plugin is built for draft-js-plugins-editor version 2.0.0-beta10 and should be considered to be in beta until draft-js-plugins-editor and/or this plugin reach a full 2.0.0 release

License

MIT

TODO

  • [ ] Remove extraneous packages from package.json
  • [ ] Add testing