
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
draft-js-richbuttons-plugin
Advanced tools
This is a plugin for the draft-js-plugins-editor
.
This plugin allows you to add essential rich formatting buttons (inline and block styles) to your plugins-enabled editor.
First instantiate the plugin:
import createRichButtonsPlugin from 'draft-js-richbuttons-plugin';
const richButtonsPlugin = createRichButtonsPlugin();
Now get any desired components for inline or block formatting buttons from the instance:
/* import only the ones you need; all available shown */
const {
// inline buttons
ItalicButton, BoldButton, MonospaceButton, UnderlineButton,
// block buttons
ParagraphButton, BlockquoteButton, CodeButton, OLButton, ULButton, H1Button, H2Button, H3Button, H4Button, H5Button, H6Button
} = richButtonsPlugin;
Render these where desired in your component:
<div className="myToolbar">
<BoldButton/>
<ItalicButton/>
<H2Button/>
<ULButton/>
<OLButton/>
</div>
The default buttons are intentionally plain, but will pass the needed props down to their child, allowing you to customize rendering to your needs.
Props passed to both inline and block buttons:
Props unique to inline buttons:
Props unique to block buttons:
Example:
/*
Stateless component for inline style buttons, using the passed props as well as a custom prop "iconName"
*/
const MyIconButton = ({iconName, toggleInlineStyle, isActive, label, inlineStyle, onMouseDown, title}) =>
<a onClick={toggleInlineStyle} onMouseDown={onMouseDown}>
<span
className={`fa fa-${iconName}`}
title={title ? title : label}
style={{ color: isActive ? '#000' : '#777' }}
/>
</a>;
The above presentational component could then be used this way:
<BoldButton>
<MyIconButton iconName="bold"/>
</BoldButton>
<ItalicButton>
<MyIconButton iconName="italic" title="Italicize" />
</ItalicButton>
The draft-js-plugins
project is approaching a v2 milestone, currently in beta. Use the 2.x branch of this repository if moving to the lastest version of that project; otherwise, 1.x is stable for the current release of draft-js-plugins
.
The plugin automatically applies default key bindings from draft's RichUtils
, including Tab / Shift-Tab behavior for nested lists.
MIT
2.1.0 - 2017-06-22
Updated key handling code to use new signature from recent draft-js changes; move to latest release candidate of draft-js-plugins.
FAQs
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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.