New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

react-trix-editor

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-trix-editor

A React component for Basecamp's Trix text editor

latest
Source
npmnpm
Version
1.0.3
Version published
Maintainers
1
Created
Source

react-trix-editor

npm version MIT Licence

A React component for Trix.

Getting Started

Install via npm: npm install react-trix-editor.

Import from react-trix-editor.

If you would like to use the component without styling, import from react-trix-editor/ReactTrixEditor.

Usage

Example:

import ReactTrixEditor from 'react-trix-editor';

class ReactTrixEditorDemo extends Component {

  constructor() {
    super();
    this.onChange = this.onChange.bind(this);
  }

  state = {
    value: ''
  }

  onChange(value) {
    this.setState({
      value
    });
  }

  render() {
    const testProps = {
      onChange: this.onChange,
      onEditor(editor) { console.log(`Editor callback: `, editor); },
      initialValue: 'Hello World',
      placeholder: 'A placeholder shown when the text editor is empty'
    };

    return <ReactTrixEditor {...testProps} />;
  }
}

Props

NameTypeDescriptionRequiredDefault
onChangefuncPasses editor's state when input is receivedtrue
onEditorfuncProvides a Trix editor obj on initialisation (see docs)
autofocusboolShould the editor have autofocusfalse
inputstringA unique ID for the editor'react-trix-editor'
placeholderstringPlaceholder for the text editor'Enter text here...'
initialValuestringText to insert into the text editor on initialisation

Notes

  • onEditor passes a Trix editor object that can be used to programmatically change the text editor.
  • input is a unique ID for a hidden input element used by Trix. You only need to ensure this is unique if you have multiple instances of this component on a single page.

Keywords

react

FAQs

Package last updated on 25 Nov 2016

Did you know?

Socket

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.

Install

Related posts