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

aurora-mutate-rich-styling

v1.4.26

Published

Adds rich sytling (bold, italics, underline) to any editor

Downloads

47

Readme

Aurora-mutate-rich-styling

Mutation that adds rich styling to the base editor.

Mutating BaseEditor

To mutate BaseEditor, we put at the end of the file:

module.exports.mutations = {
  BaseEditor: RichStyling
};

Where RichStyling corresponds to the mutating function.

Mutation function

The beginning of the mutation function matches the above mutation declaration.

function RichStyling(Editor) {
  return class extends React.Component {

The Editor parameter is the BaseEditor we are mutating. We will use it in this new component.

The render() function simply returns our original editor but with additionall functions.

render() {
  // add our plugin to existing list of plugins
  let plugs = [];
  if (this.props.plugins) {
    plugs = this.props.plugins;
  }
  plugs.push(inlineToolbarPlugin);

  // extract handleKeyCommand prop because we want to replace it with our own.
  const { handleKeyCommand, plugins, ...props } = this.props;
  return (
    <div>
      <Editor
        handleKeyCommand={this.handleKeyCommand}
        plugins={plugs}
        {...props}
      />
      <InlineToolbar />
    </div>
  );
}

We pass in an additional prop for handleKeyCommand, which we will write to include rich styling. Note the line:

const { handleKeyCommand, plugins, ...props } = this.props;

This extracts the handleKeyCommand and plugins props from all props, if they exists. We do this because we do not want the original handleKeyCommand function to be called. We are writing our own version of this function. Additionally, we add to plugins, adding our own inlineToolbarPlugin and then passing that new plugin list to the Editor.

inlineToolbarPlugin comes from a draft-js library. We import it and instantiate it like:

// add inline toolbar for styling
const inlineToolbarPlugin = createInlineToolbarPlugin({
  structure: [
    BoldButton,
    ItalicButton,
    UnderlineButton,
    CodeButton,
    UnorderedListButton,
    OrderedListButton,
    BlockquoteButton,
    CodeBlockButton
  ]
});
const { InlineToolbar } = inlineToolbarPlugin;

Here, we define which buttons are in the toolbar and the order of them. When using plugin, make sure to instantiate it outside of the render() function so it is only instantiated once.

Next, we write our handleKeyCommand function.

handleKeyCommand(command, editorState) {
  const newState = RichUtils.handleKeyCommand(editorState, command);
  if (newState) {
    this.props.onChangeEx(newState);
    return "handled";
  }
  if (this.props.handleKeyCommand) {
    return this.props.handleKeyCommand(command, editorState);
  }
  return "not-handled";
}

This function takes in the command and current editor state and modifies it using the draftjs RichUtils. With the new state, we can pass it into this.props.onChangeEx. For editors, we call this function when the editors state changes. It also takes the additional parameters of updated serializedContent, serializedPreview, and searchableText. But in our case, changing the styling does not affect any of these items, so we can omit them.

If our rich styling does not handle the key command, we want to make sure that the original handleKeyCommand function of the editor we mutated has a chance to handle it. This allows for multiple mutations of BaseEditor to handle different key commands and be layered. We achieve this by:

if (this.props.handleKeyCommand) {
  return this.props.handleKeyCommand(command, editorState);
}

In general, anytime you replace a prop function, inside your new function, you should check to see if that function exists and execute it if it makes sense. This is how functionality can be layered between mutations.

Finally, don't forget to bind the function!

this.handleKeyCommand = this.handleKeyCommand.bind(this);