react-wysiwyg-typescript
TypeScript icon, indicating that this package has built-in type declarations

1.0.2 • Public • Published

react-wysiwyg-typescript

GitHub issues GitHub forks GitHub stars GitHub license Twitter

banner

A wrapper Component for react-draft-wysiwyg written in Typescript

This package require a css file, make sure you use webpack or similar tools for handler this file type.

Table of Contents

Install

npm i react-wysiwyg-typescript -S
 
# or 
 
yarn add react-wysiwyg-typescript
 

Usage

import Draft, { htmlToDraft, draftToHtml, EmptyState, rawToDraft, draftToRaw , draftStateToHTML} from 'react-wysiwyg-typescript'
 
state = {
    editorState: htmlToDraft('Your html contents') // or use an EmptyState
}
 
<Draft
    editorState={this.state.editorState}
    onEditorStateChange={(editorState) => { this.setState({ editorState }) }}
/>
 
// save html to server
 
const html = draftToHtml(content)
 
// convert raw to draft
 
const toDraft = rawToDraft(content)
 
// convert draft to raw
 
const toRaw = draftToRaw(content)
 
// convert rawToDraft file to HTML
 
const toHTML = draftStateToHTML(content)
 

If you use antd's Form Component and you are ready to go.

 
<FormItem label="Contents" {...alignProps} wrapperCol={{ span: 16 }}>
    {getFieldDecorator('Content', {
        rules: [{ required: true, message: 'Please leave a message...' }],
    })(
        <Draft
            editorState={this.state.editorState}
            onEditorStateChange={(editorState) => { this.setState({ editorState }) }}
        />
        )}
</FormItem>
 
// convert state to html
 
this.props.form.validateFields((err, data) => {
    if (err) {
        return
    }
    /**
    * do more check here.
    */
    if (data.Content) {
        data.Content = draftToHtml(data.Content)
    }
    // Now you have your html contents and ready to post to your server.
})
 

Contribute

Small note: If editing the README, please conform to the standard-readme specification.

License

MIT © sumn2u

Dependencies (7)

Dev Dependencies (3)

Package Sidebar

Install

npm i react-wysiwyg-typescript

Weekly Downloads

157

Version

1.0.2

License

MIT

Unpacked Size

36.5 kB

Total Files

9

Last publish

Collaborators

  • iamsuman