• Stars
    star
    115
  • Rank 295,167 (Top 6 %)
  • Language
    JavaScript
  • License
    Apache License 2.0
  • Created almost 8 years ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Build extensible Draft.js editors with configurable plugins and integrated serialization.

draft-extend

npm version License

Build extensible Draft.js editors with configurable plugins and integrated serialization


Jump to:

Overview

Draft Extend is a platform to build a full-featured Draft.js editor using modular plugins that can integrate with draft-convert to serialize with HTML. The higher-order function API makes it extremely easy to use any number of plugins for rendering and conversion.

Usage:

import React from 'react';
import ReactDOM from 'react-dom';
import {EditorState} from 'draft-js';
import {Editor, compose} from 'draft-extend';
import {convertFromHTML, convertToHTML} from 'draft-convert';

const plugins = compose(
    FirstPlugin,
    SecondPlugin,
    ThirdPlugin
);

const EditorWithPlugins = plugins(Editor); // Rich text editor component with plugin functionality
const toHTML = plugins(convertFromHTML); // function to convert from HTML including plugin functionality
const fromHTML = plugins(convertToHTML); // function to convert to HTML including plugin functionality

const MyEditor = React.createClass({
    getInitialState() {
        return {
            editorState: EditorState.createWithContent(fromHTML('<div></div>'))
        };
    },

    onChange(editorState) {
        const html = toHTML(editorState.getCurrentContent());
        console.log(html); // don't actually convert to HTML on every change!
        this.setState({editorState});
    },

    render() {
        return (
            <EditorWithPlugins
                editorState={this.state.editorState}
                onChange={this.onChange}
            />
        );
    }
});

ReactDOM.render(
    <MyEditor />,
    document.querySelector('.app')
);

Examples

Examples of how to build plugins of different types are included in the example directory. To run the examples locally:

  1. run npm install in the draft-extend directory
  2. open any HTML file in the examples directory in your web browser - no local server is necessary

Editor

Editor component on which to extend functionality with plugins created by createPlugin.

Props

The most important two props are:

  • editorState - Draft.js EditorState instance to be rendered.
  • onChange: function(editorState: EditorState): void - Like with vanilla Draft.js, function called on any editor change passing the EditorState.

Other props are used by plugins composed around Editor. See Building Plugins for more information. These should generally not be used outside of the context of a plugin:

  • buttons: Array<Component> Array of React components to add to the controls of the editor.
  • overlays: Array<Component> Array of React components to add as overlays to the editor.
  • decorators: Array<DraftDecorator> Array of Draft.js decorator objects used to render the EditorState. They are added to the EditorState as a CompositeDecorator within the component and are of shape {strategy, component}.
  • baseDecorator: DraftDecoratorType Replacement decorator object to override the built-in CompositeDecorator's behavior. See the "Beyond CompositeDecorator" section on this page of the Draft.js docs for more information.
  • styleMap: Object Object map from Draft.js inline style type to style object. Used for the Draft.js Editor's customStyleMap prop.

All other props are passed down to the Draft.js Editor component and to any buttons and overlays added by plugins.


compose

Since the API of plugins is based around composition, a basic compose function is provided to make it easy to apply plugins to the component as well as conversion functions and provides a single source of truth for plugin configuration.

// without compose
const EditorWithPlugins = FirstPlugin(SecondPlugin(ThirdPlugin(Editor)));
const fromHTML = FirstPlugin(SecondPlugin(ThirdPlugin(convertFromHTML)));
const toHTML = FirstPlugin(SecondPlugin(ThirdPlugin(convertToHTML)));

// with compose
const plugins = compose(
    FirstPlugin,
    SecondPlugin,
    ThirdPlugin
);

const EditorWithPlugins = plugins(Editor);
const toHTML = plugins(convertToHTML);
const fromHTML = plugins(convertFromHTML);

KeyCommandController

Higher-order component to consolidate key command listeners across the component tree

An increasingly common pattern for rich text editors is a toolbar detached from the main Editor component. This toolbar will be outside of the Editor component subtree, but will often need to respond to key commands that would otherwise be encapsulated by the Editor. KeyCommandController is a higher-order component that allows the subscription to key commands to move up the React tree so that components outside that subtree may listen and emit changes to editor state. KeyCommandController. It may be used with any component, but a good example is the Toolbar component:

import {Editor, Toolbar, KeyCommandController, compose} from 'draft-extend';

const plugins = compose(
  FirstPlugin,
  SecondPlugin
);

const WrappedEditor = plugins(Editor);
const WrappedToolbar = plugins(Toolbar);

const Parent = ({editorState, onChange, handleKeyCommand, addKeyCommandListener, removeKeyCommandListener}) => {
  return (
    <div>
      <WrappedEditor
        editorState={editorState}
        onChange={onChange}
        handleKeyCommand={handleKeyCommand}
        addKeyCommandListener={addKeyCommandListener}
        removeKeyCommandListener={removeKeyCommandListener}
      />
      <WrappedToolbar
        editorState={editorState}
        onChange={onChange}
        addKeyCommandListener={addKeyCommandListener}
        removeKeyCommandListener={removeKeyCommandListener}
      />
    </div>
  );
};

export default KeyCommandController(Parent);

KeyCommandController provides the final handleKeyCommand to use in the Editor component as well as subscribe/unsubscribe functions. As long as these props are passed from some common parent wrapped with KeyCommandController that also receives editorState and onChange props, other components may subscribe and emit chagnes to the editor state.

Additionally, KeyCommandControllers are composable and will defer to the highest parent instance. That is, if a KeyCommandController receives handleKeyCommand, addKeyCommandListener, and removeKeyCommandListener props (presumably from another controller) it will delegate to that controller's record of subscribed functions, keeping all listeners in one place.

More Repositories

1

youmightnotneedjquery

Astro
14,118
star
2

offline

Automatically display online/offline indication to your users
CSS
8,679
star
3

odometer

Smoothly transitions numbers with ease. #hubspot-open-source
CSS
7,259
star
4

vex

A modern dialog library which is highly configurable and easy to style. #hubspot-open-source
CSS
6,932
star
5

messenger

Growl-style alerts and messages for your app. #hubspot-open-source
JavaScript
4,035
star
6

drop

A library for creating dropdowns and other floating elements. #hubspot-open-source
CSS
2,360
star
7

BuckyClient

Collect performance data from the client
CoffeeScript
1,738
star
8

sortable

Drop-in script to make tables sortable
CSS
1,322
star
9

select

Styleable select elements built on Tether. #hubspot-open-source
JavaScript
1,197
star
10

humanize

A simple utility library for making the web more humane. #hubspot-open-source
JavaScript
907
star
11

Singularity

Scheduler (HTTP API and webapp) for running Mesos tasks—long running processes, one-off tasks, and scheduled jobs. #hubspot-open-source
Java
816
star
12

tooltip

CSS Tooltips built on Tether. #hubspot-open-source
CSS
711
star
13

jinjava

Jinja template engine for Java
Java
653
star
14

signet

Display a unique seal in the developer console of your page
CoffeeScript
564
star
15

draft-convert

Extensibly serialize & deserialize Draft.js ContentState with HTML.
JavaScript
483
star
16

hubspot-php

HubSpot PHP API Client
PHP
342
star
17

cms-theme-boilerplate

A straight-forward starting point for building a great website on the HubSpot CMS
HTML
320
star
18

react-select-plus

Fork of https://github.com/JedWatson/react-select with option group support
JavaScript
281
star
19

hubspot-api-python

HubSpot API Python Client Libraries for V3 version of the API
Python
278
star
20

hubspot-api-nodejs

HubSpot API NodeJS Client Libraries for V3 version of the API
TypeScript
278
star
21

SlimFast

Slimming down jars since 2016
Java
270
star
22

dropwizard-guice

Adds support for Guice to Dropwizard
Java
268
star
23

gc_log_visualizer

Generate multiple gnuplot graphs from java gc log data
Python
200
star
24

BuckyServer

Node server that receives metric data over HTTP & forwards to your service of choice
CoffeeScript
195
star
25

hubspot-api-php

HubSpot API PHP Client Libraries for V3 version of the API
PHP
176
star
26

general-store

Simple, flexible store implementation for Flux. #hubspot-open-source
JavaScript
173
star
27

hubspot-cli

A CLI for HubSpot
JavaScript
142
star
28

facewall

Grid visualization of Gravatars for an organization
CoffeeScript
138
star
29

jackson-datatype-protobuf

Java
116
star
30

slack-client

An asynchronous HTTP client for Slack's web API
Java
112
star
31

prettier-maven-plugin

Java
112
star
32

Rosetta

Java library that leverages Jackson to take the pain out of mapping objects to/from the DB, designed to integrate seamlessly with jDBI
Java
110
star
33

hubspot-api-ruby

HubSpot API Ruby Client Libraries for V3 version of the API
Ruby
107
star
34

Baragon

Load balancer API
Java
105
star
35

mixen

Combine Javascript classes on the fly
CoffeeScript
85
star
36

jquery-zoomer

Zoom up your iFrames
JavaScript
81
star
37

hapipy

A Python wrapper for the HubSpot APIs #hubspot-open-source
Python
78
star
38

oauth-quickstart-nodejs

A Node JS app to get up and running with the HubSpot API using OAuth 2.0
JavaScript
74
star
39

oneforty-data

Open data on 4,000+ social media apps from oneforty.com #hubspot-open-source
Ruby
70
star
40

cms-react-boilerplate

JavaScript
65
star
41

Blazar-Archive

An out-of-this world build system!
Java
62
star
42

haPiHP

An updated PHP client for the HubSpot API
PHP
61
star
43

sanetime

A sane date/time python interface #hubspot-open-source
Python
60
star
44

sample-workflow-custom-code

Sample code snippets for the custom code workflow action.
60
star
45

hubspot-cms-vscode

A HubL language extension for the Visual Studio Code IDE, allowing for 🚀 fast local HubSpot CMS Platform development.
TypeScript
56
star
46

ui-extensions-examples

This repository contains code examples of UI extensions built with HubSpot CRM development tools beta
TypeScript
56
star
47

BidHub-CloudCode

The Parse-based brains behind BidHub, our open-source silent auction app.
JavaScript
50
star
48

teeble

A tiny table plugin
JavaScript
49
star
49

hubspot.github.com

HubSpot Open Source projects.
JavaScript
46
star
50

BidHub-iOS

iOS client for BidHub, our open-source silent auction app.
Objective-C
44
star
51

calling-extensions-sdk

A JavaScript SDK for integrating calling apps into HubSpot.
JavaScript
43
star
52

dropwizard-guicier

Java
42
star
53

live-config

Live configuration for Java applications #hubspot-open-source
Java
37
star
54

hubspot-cms-deploy-action

GitHub Action to deploy HubSpot CMS projects
HTML
36
star
55

executr

Let your users execute the CoffeeScript in your documentation
JavaScript
35
star
56

transmute

kind of like lodash but works with Immutable
JavaScript
35
star
57

NioImapClient

High performance, async IMAP client implementation
Java
33
star
58

colorshare

Style up your social share buttons
CSS
32
star
59

cms-event-registration

JavaScript
32
star
60

ChromeDevToolsClient

A java websocket client for the Chrome DevTools Protocol
Java
31
star
61

integration-examples-php

PHP
31
star
62

recruiting-agency-graphql-theme

A theme based off of the HubSpot CMS Boilerplate. This theme includes modules and templates that demonstrate how to utilize GraphQL as part of a website built with HubSpot CMS and Custom CRM Objects.
HTML
30
star
63

canvas

HubSpot Canvas is the design system that we at HubSpot use to build our products.
JavaScript
29
star
64

vee

A personal proxy server for web developers
CoffeeScript
28
star
65

cms-js-building-block-examples

DEPRECATED, go to https://github.com/HubSpot/cms-react instead
JavaScript
28
star
66

integration-examples-nodejs

JavaScript
27
star
67

NioSmtpClient

Smtp Client based on Netty
Java
26
star
68

sample-apps-list

The list of Sample applications using HubSpot Public API
25
star
69

jackson-jaxrs-propertyfiltering

Java
25
star
70

local-cms-server-cli

Command line tools for local cms development
CSS
22
star
71

astack

Simple stacktrace analysis tool for the JVM
Python
22
star
72

prettier-plugin-hubl

JavaScript
20
star
73

Horizon

Java
20
star
74

rHAPI

Ruby wrapper for the HubSpot API (HAPI)
Ruby
20
star
75

integrate

Confirm that your application works.
CoffeeScript
20
star
76

moxie

A TCP proxy guaranteed to make you smile. #hubspot-open-source
Python
18
star
77

BidHub-WebAdmin

Keep an eye on BidHub while it's doing its thing.
HTML
18
star
78

hbase-support

Supporting configs and tools for HBase at HubSpot
Java
17
star
79

sprocket

A better REST API framework for django
Python
17
star
80

react-decorate

Build composable, stateful decorators for React.
JavaScript
16
star
81

cms-custom-objects-example

CSS
16
star
82

hubspot-immutables

Java
16
star
83

hubspot-academy-tutorials

JavaScript
16
star
84

cms-vue-boilerplate

Boilerplate Vue project for creating apps using modules on the HubSpot CMS
JavaScript
16
star
85

maven-snapshot-accelerator

System to speed up dependency resolution when using Maven snapshots #hubspot-open-source
Java
16
star
86

httpQL

A small library for converting URL query arguments into SQL queries.
Java
15
star
87

sample-apps-webhooks

Sample code and reference for processing HubSpot webhooks
JavaScript
13
star
88

algebra

Simple abstract data types (wrapping derive4j) in Java
Java
13
star
89

sample-apps-oauth

Sample application demonstrating OAuth 2.0 flow with HubSpot API
Ruby
13
star
90

cms-webpack-serverless-boilerplate

Boilerplate for bundling serverless functions with webpack locally, prior to uploading to the CMS.
JavaScript
13
star
91

cms-react

A repo to expose CMS react examples, React defaults modules, and more to CMS devs
TypeScript
13
star
92

sample-apps-manage-crm-objects

Sample application in PHP, Python, Ruby and JavaScript demonstrating HubSpot API to manage CRM Objects
JavaScript
12
star
93

HubspotEmailTemplate

How to convert a regular html coded email template into ones that use HubSpot jinja tags.
12
star
94

hubstar

CSS
12
star
95

virtualenvchdir

Easily chdir into different virtualenvs #hubspot-open-source
Shell
12
star
96

cos_uploader

A python script for syncing a file tree to the HubSpot COS
Python
11
star
97

chrome_extension_workshop

Chrome extension workshop
JavaScript
10
star
98

collectd-gcmetrics

Python
10
star
99

guice-transactional

Java
10
star
100

private-app-starter

Boilerplates apps using HubSpot API
PHP
10
star