Exciting release!Introducing "safe npm". Learn more
Socket
Log inDemoInstall

react-sane-contenteditable

Package Overview
Dependencies
2
Maintainers
4
Versions
23
Issues
File Explorer

Advanced tools

react-sane-contenteditable

React component with sane defaults to make any element contentEditable

    1.6.1latest
    GitHub

Version published
Maintainers
4
Weekly downloads
715
decreased by-5.55%

Weekly downloads

Readme

Source

react-sane-contenteditable

npm version

React component with sane defaults to make any element contentEditable

DEMO: https://jsfiddle.net/zp2v824s/show

Why?

ContentEditable has some well known issues, and the purpose of this component is to deal with them in a sane manner so we don't have to continue re-inventing the wheel! 🔥

  • Clean and sanitise the output
  • Remove rich text formatting when pasting
  • Prevent the cursor from jumping around

Example

import React, { Component } from 'react'; import ContentEditable from 'react-sane-contenteditable'; class App extends Component { constructor(props) { super(props); this.state = { title: 'Title here', }; } handleChange = (ev, value) => { this.setState({ title: value }); }; render() { return ( <div className="App"> <ContentEditable tagName="h1" className="my-class" content={this.state.title} editable={true} maxLength={140} multiLine={false} onChange={this.handleChange} /> </div> ); } }

Develop

Tests

yarn test

Linting

yarn run lint

Dev

Runs the rollup dev server with file watching on both the src and demo

yarn run dev

Keywords

FAQs

Last updated on 22 Oct 2019

Did you know?

Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.

Install Socket
Socket
support@socket.devSocket SOC 2 Logo

Product

  • Package Issues
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc