Skip to content

Commit

Permalink
gh-84: Addition additional states of contenteditable
Browse files Browse the repository at this point in the history
This fixes #84
  • Loading branch information
dinukadesilva committed Mar 31, 2018
1 parent aa9a487 commit 6d9974a
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 8 deletions.
36 changes: 29 additions & 7 deletions lib/react-contenteditable.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,35 @@ var ContentEditable = function (_React$Component) {
html = _props.html,
props = _objectWithoutProperties(_props, ['tagName', 'html']);

var contentEditableState = true;

if (this.props.plaintextOnly) {
contentEditableState = "plaintext-only";
}

if (this.props.typing) {
contentEditableState = "typing";
}

if (this.props.caret) {
contentEditableState = "caret";
}

if (this.props.events) {
contentEditableState = "events";
}

if (this.props.disabled) {
contentEditableState = false;
}

return _react2.default.createElement(tagName || 'div', _extends({}, props, {
ref: function ref(e) {
return _this2.htmlEl = e;
},
onInput: this.emitChange,
onBlur: this.props.onBlur || this.emitChange,
contentEditable: !this.props.disabled,
contentEditable: contentEditableState,
dangerouslySetInnerHTML: { __html: html }
}), this.props.children);
}
Expand Down Expand Up @@ -100,12 +122,12 @@ var ContentEditable = function (_React$Component) {
if (!this.htmlEl) return;
var html = this.htmlEl.innerHTML;
if (this.props.onChange && html !== this.lastHtml) {
// Clone event with Object.assign to avoid
// Clone event with Object.assign to avoid
// "Cannot assign to read only property 'target' of object"
var evt = Object.assign({}, evt, {
target: {
value: html
}
var evt = Object.assign({}, evt, {
target: {
value: html
}
});
this.props.onChange(evt);
}
Expand All @@ -117,4 +139,4 @@ var ContentEditable = function (_React$Component) {
}(_react2.default.Component);

exports.default = ContentEditable;
module.exports = exports['default'];
module.exports = exports['default'];
24 changes: 23 additions & 1 deletion src/react-contenteditable.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,36 @@ export default class ContentEditable extends React.Component {
render() {
var { tagName, html, ...props } = this.props;

var contentEditableState = true;

if (this.props.plaintextOnly) {
contentEditableState = "plaintext-only"
}

if (this.props.typing) {
contentEditableState = "typing"
}

if (this.props.caret) {
contentEditableState = "caret"
}

if (this.props.events) {
contentEditableState = "events"
}

if (this.props.disabled) {
contentEditableState = false
}

return React.createElement(
tagName || 'div',
{
...props,
ref: (e) => this.htmlEl = e,
onInput: this.emitChange,
onBlur: this.props.onBlur || this.emitChange,
contentEditable: !this.props.disabled,
contentEditable: contentEditableState,
dangerouslySetInnerHTML: {__html: html}
},
this.props.children);
Expand Down

0 comments on commit 6d9974a

Please sign in to comment.