Socket
Socket
Sign inDemoInstall

draft-js-single-line-plugin

Package Overview
Dependencies
23
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    draft-js-single-line-plugin

Restrict a draft-js editor to a single line of input.


Version published
Weekly downloads
2.8K
decreased by-0.86%
Maintainers
1
Install size
449 kB
Created
Weekly downloads
 

Changelog

Source

v2.0.5 2019-07-23

  • Allow more flexible immutable dependency range to avoid conflicts with the draft-js specified version

Readme

Source

Draft.js Single Line plugin

This is a plugin for the draft-js-plugins-editor, a plugin system that sits on top of Draft.js.

This plugin adds support restricting Facebook’s Draft.js editor to a single line of content. It will condense any blocks into a single block, and (optionally) strip any rich entities.

What, why?!

Madness I know, however there places you want to allow some rich styling yet the underlying value should still be a single line. Allowing titles for things like blog posts or pages to contain strong/emphasis is our main use-case.

Usage

import createSingleLinePlugin from 'draft-js-single-line-plugin'
const singleLinePlugin = createSingleLinePlugin()

This can then be passed into a draft-js-plugins-editor component:

import createSingleLinePlugin from 'draft-js-single-line-plugin'
const singleLinePlugin = createSingleLinePlugin()
import Editor from 'draft-js-plugins-editor'

const plugins = [singleLinePlugin]

<Editor plugins={plugins}
    blockRenderMap={singleLinePlugin.blockRenderMap} />

The plugin export a custom blockRenderMap that overrides the draft-js defaults and restricts the editor from rendering anything except an unstyled block. You’ll need to manually pass it as above as the draft-js-plugins-editor doesn’t yet support this.

Options

You can pass options to the plugin as you call it:

const options = {
  stripEntities: false
}
const singleLinePlugin = createSingleLinePlugin(options)

There’s only one option so far: stripEntities: true/false.

Developing

npm install
npm install react react-dom draft-js
npm run test

Keywords

FAQs

Last updated on 22 Jul 2019

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