0.1.2 • Published 8 years ago

draft-js-gutter v0.1.2

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

Draft.js Gutter

A component that compliments Draft.js with a line number/letter gutter.

To Use

Install:

npm install draft-js draft-js-gutter --save

Example:

import React from 'react';
import ReactDOM from 'react-dom';
import { EditorGutter } from './Draft-js-gutter';

ReactDOM.render(
  <EditorGutter
    style={{border: '1px solid black'}}
    styleList={{background: '#eee'}} />
, document.getElementById('root'));

Props:

  • editor {object} - Spreads all props to the editor
  • editorState - Accepts whatever you want the editor component's default state to be. Creates empty editorState if no property specified.
  • list {object} - List object accepts all html attributes for ol elements as properties
  • style {object}
  • styleEditor {object}
  • styleList {object}
  • styleListItem {object}

To Contribute

To Develop:

git clone https://github.com/yepnamesjames/draft-js-gutter.git
cd draft-js-gutter
npm install
npm start

Navigate to localhost:3000.

To Build:

npm run build

Things that could make this better:

  • Accept the editor as a child component
  • Manipulate the editor's onChange to accept a prop and append necessary function
  • Default themes for styling

License

MIT

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago