@webscopeio/react-console
Advanced tools
Comparing version
@@ -29,2 +29,3 @@ /** | ||
onAddHistoryItem?: (entry: string) => void; | ||
onSanitizeOutputLine?: (line: string) => string; | ||
}; | ||
@@ -31,0 +32,0 @@ declare type ReactConsoleState = { |
@@ -472,4 +472,13 @@ import React from 'react'; | ||
var _a = this.props, wrapperClassName = _a.wrapperClassName, promptWrapperClassName = _a.promptWrapperClassName, promptClassName = _a.promptClassName, lineClassName = _a.lineClassName, inputClassName = _a.inputClassName, wrapperStyle = _a.wrapperStyle, promptWrapperStyle = _a.promptWrapperStyle, promptStyle = _a.promptStyle, lineStyle = _a.lineStyle, inputStyle = _a.inputStyle, prompt = _a.prompt, autoFocus = _a.autoFocus; | ||
var sanitizeOutputLine = function (line) { | ||
var onSanitizeOutputLine = _this.props.onSanitizeOutputLine; | ||
if (typeof onSanitizeOutputLine === 'function') { | ||
return onSanitizeOutputLine(line); | ||
} | ||
return line; | ||
}; | ||
return (React.createElement("div", { className: classnames(styles.wrapper, wrapperClassName), style: __assign({ overflowY: isIE11 ? "scroll" : "auto" }, wrapperStyle), onClick: this.focusConsole, ref: function (ref) { return _this.wrapperRef = ref; } }, | ||
React.createElement("div", null, this.state.output.map(function (line, key) { | ||
React.createElement("div", null, this.state.output | ||
.map(function (line) { return sanitizeOutputLine(line); }) | ||
.map(function (line, key) { | ||
return React.createElement("pre", { key: key, className: classnames(styles.line, lineClassName), style: lineStyle, dangerouslySetInnerHTML: { __html: line } }); | ||
@@ -476,0 +485,0 @@ })), |
@@ -478,4 +478,13 @@ 'use strict'; | ||
var _a = this.props, wrapperClassName = _a.wrapperClassName, promptWrapperClassName = _a.promptWrapperClassName, promptClassName = _a.promptClassName, lineClassName = _a.lineClassName, inputClassName = _a.inputClassName, wrapperStyle = _a.wrapperStyle, promptWrapperStyle = _a.promptWrapperStyle, promptStyle = _a.promptStyle, lineStyle = _a.lineStyle, inputStyle = _a.inputStyle, prompt = _a.prompt, autoFocus = _a.autoFocus; | ||
var sanitizeOutputLine = function (line) { | ||
var onSanitizeOutputLine = _this.props.onSanitizeOutputLine; | ||
if (typeof onSanitizeOutputLine === 'function') { | ||
return onSanitizeOutputLine(line); | ||
} | ||
return line; | ||
}; | ||
return (React.createElement("div", { className: classnames(styles.wrapper, wrapperClassName), style: __assign({ overflowY: isIE11 ? "scroll" : "auto" }, wrapperStyle), onClick: this.focusConsole, ref: function (ref) { return _this.wrapperRef = ref; } }, | ||
React.createElement("div", null, this.state.output.map(function (line, key) { | ||
React.createElement("div", null, this.state.output | ||
.map(function (line) { return sanitizeOutputLine(line); }) | ||
.map(function (line, key) { | ||
return React.createElement("pre", { key: key, className: classnames(styles.line, lineClassName), style: lineStyle, dangerouslySetInnerHTML: { __html: line } }); | ||
@@ -482,0 +491,0 @@ })), |
{ | ||
"name": "@webscopeio/react-console", | ||
"version": "1.2.0", | ||
"version": "1.2.1", | ||
"description": "React component that emulates console behaviour", | ||
@@ -5,0 +5,0 @@ "author": "jvorcak", |
@@ -7,4 +7,7 @@ MIT-licensed console emulator in React. Documentation and more advanced features coming soon! | ||
[](https://www.npmjs.com/package/react-console) [](https://standardjs.com) | ||
[](https://www.npmjs.com/package/react-console) | ||
[](https://standardjs.com) | ||
 | ||
## Install | ||
@@ -46,2 +49,3 @@ | ||
| onAddHistoryItem | (entry: string) => void | callback called when a new history entry is created | | ||
| onSanitizeOutputLine | (line: string) => string | callback called before a new output line is inserted to DOM | | ||
@@ -48,0 +52,0 @@ \*_are mandatory_ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
141419
1.76%1117
1.73%118
3.51%0
-100%