simple-text-editor-react

0.0.6 • Public • Published

simple-text-editor-react

A simple text editor with image upload functionality.

NPM JavaScript Style Guide

Install

npm install --save simple-text-editor-react

Usage

import React, { Component } from 'react'
 
import SimpleEditor from 'simple-text-editor-react'
 
class Example extends Component {
  render() {
    return (
      <SimpleEditor 
      onChange={(value)=>{
        // value contains the html value and all keystroke events 
      }}
      onImageUpload={(image, callback)=>{
        //upload image then return the url in callback
        //callback(url)
      }}
      containerStyle={{
        width: '100%',
        height: '100%',
        border: '1px solid #cec7c7',
        position: 'relative' // position relative is required if showWordCharCount !== false
      }}
      value={value} //pass initial value / updated value .
      id={id} // not required but can be useful in some usecases.
      showWordCharCount // if true word and char count will be shownDefault value is true.
      />
    )
  }
}

License

MIT © bikrambhattacharya

/simple-text-editor-react/

    Package Sidebar

    Install

    npm i simple-text-editor-react

    Weekly Downloads

    11

    Version

    0.0.6

    License

    MIT

    Unpacked Size

    50.3 kB

    Total Files

    6

    Last publish

    Collaborators

    • bikrambhattacharya