Socket
Socket
Sign inDemoInstall

react-sane-contenteditable

Package Overview
Dependencies
20
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-sane-contenteditable

React component with sane defaults to make any element contentEditable


Version published
Maintainers
1
Install size
3.42 MB
Created

Readme

Source

react-sane-contenteditable

React component with sane defaults to make any element contentEditable

Why?

ContentEditable has some known issues, the purpose of this component is to avoid some of its problems:

  • Allow plaintext-only mode;
  • Prevent cursor jumping to the beginning of the field.

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
          className="my-class"
          tagName="h1"
          mode="plaintext"
          content={this.state.title}
          editable={true}
          maxLength={140}
          onChange={ this.handleChange }
        />
      </div>
    );
  }
}

FAQs

Last updated on 12 Oct 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • 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