1.0.0 • Published 8 years ago

react-ace-wrapper-2 v1.0.0

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

React Ace Wrapper

A react wrapper component for Ace / Brace code editor.

This is an enhanced fork of react-ace package. Main difference is that this package publishes ES5 code that can be required without any pre-processing. This package works equally fine with both Browserify and Webpack.

Install

npm install react-ace-wrapper

Usage

var React = require('react');
var AceEditor  = require('react-ace-wrapper');

require('brace/mode/java');
require('brace/theme/github');

function onChange(newValue) {
  console.log('change',newValue)
}

// render a first
React.render(
  <AceEditor
    mode="java"
    theme="github"
    onChange={onChange}
    name="UNIQUE_ID_OF_DIV"
  />,
  document.getElementById('example')
);

Available Props

PropDescription
nameUnique Id to be used for the editor
modeLanguage for parsing and code highlighting
themetheme to use
heightCSS value for height
widthCSS value for width
fontSizepixel value for font-size
showGutterboolean
showPrintMarginboolean
highlightActiveLineboolean
selectFirstLineboolean
wrapEnabledboolean
readOnlyboolean
maxLinesMaximum number of lines to be displayed
defaultValueString value you want to populate in the code highlighter upon creation
valueString value you want to populate in the code highlighter (overrides defaultValue if present)
onLoadFunction onLoad
onChangefunction that occurs on document change it has 1 argument value. see the example above

Modes and Themes

All modes and themes should be required through brace directly. Browserify will grab these modes / themes through brace and will be available at run time. See the example above. This prevents bloating the compiled javascript with extra modes and themes for your application.