@pie-lib/render-ui 4.12.3 → 4.12.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/lib/preview-prompt.js +31 -6
- package/lib/preview-prompt.js.map +1 -1
- package/package.json +2 -2
- package/src/preview-prompt.jsx +20 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [4.12.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.12.3...@pie-lib/render-ui@4.12.4) (2021-12-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [4.12.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.12.2...@pie-lib/render-ui@4.12.3) (2021-11-29)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @pie-lib/render-ui
|
package/lib/preview-prompt.js
CHANGED
|
@@ -27,10 +27,10 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
27
27
|
|
|
28
28
|
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
|
29
29
|
|
|
30
|
-
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
31
|
-
|
|
32
30
|
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
33
31
|
|
|
32
|
+
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
33
|
+
|
|
34
34
|
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
35
35
|
|
|
36
36
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
@@ -47,9 +47,36 @@ function (_Component) {
|
|
|
47
47
|
_inherits(PreviewPrompt, _Component);
|
|
48
48
|
|
|
49
49
|
function PreviewPrompt() {
|
|
50
|
+
var _getPrototypeOf2;
|
|
51
|
+
|
|
52
|
+
var _this;
|
|
53
|
+
|
|
50
54
|
_classCallCheck(this, PreviewPrompt);
|
|
51
55
|
|
|
52
|
-
|
|
56
|
+
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
57
|
+
args[_key] = arguments[_key];
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
_this = _possibleConstructorReturn(this, (_getPrototypeOf2 = _getPrototypeOf(PreviewPrompt)).call.apply(_getPrototypeOf2, [this].concat(args)));
|
|
61
|
+
|
|
62
|
+
_defineProperty(_assertThisInitialized(_this), "parsedText", function (text) {
|
|
63
|
+
// fix imported audio content for Safari PD-1419
|
|
64
|
+
var div = document.createElement('div');
|
|
65
|
+
div.innerHTML = text;
|
|
66
|
+
var audio = div.querySelector('audio');
|
|
67
|
+
|
|
68
|
+
if (audio) {
|
|
69
|
+
var source = document.createElement('source');
|
|
70
|
+
source.setAttribute('type', 'audio/mp3');
|
|
71
|
+
source.setAttribute('src', audio.getAttribute('src'));
|
|
72
|
+
audio.removeAttribute('src');
|
|
73
|
+
audio.appendChild(source);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
return div.innerHTML;
|
|
77
|
+
});
|
|
78
|
+
|
|
79
|
+
return _this;
|
|
53
80
|
}
|
|
54
81
|
|
|
55
82
|
_createClass(PreviewPrompt, [{
|
|
@@ -68,7 +95,7 @@ function (_Component) {
|
|
|
68
95
|
onClick: onClick,
|
|
69
96
|
className: customClasses,
|
|
70
97
|
dangerouslySetInnerHTML: {
|
|
71
|
-
__html: (prompt || '').replace(NEWLINE_BLOCK_REGEX, NEWLINE_LATEX)
|
|
98
|
+
__html: this.parsedText(prompt || '').replace(NEWLINE_BLOCK_REGEX, NEWLINE_LATEX)
|
|
72
99
|
}
|
|
73
100
|
});
|
|
74
101
|
}
|
|
@@ -113,13 +140,11 @@ var styles = function styles(theme) {
|
|
|
113
140
|
borderCollapse: 'collapse'
|
|
114
141
|
},
|
|
115
142
|
'&:not(.MathJax) > table tr': {
|
|
116
|
-
borderTop: '1px solid #dfe2e5',
|
|
117
143
|
'&:nth-child(2n)': {
|
|
118
144
|
backgroundColor: '#f6f8fa'
|
|
119
145
|
}
|
|
120
146
|
},
|
|
121
147
|
'&:not(.MathJax) > table td, &:not(.MathJax) > table th': {
|
|
122
|
-
border: '1px solid #dfe2e5',
|
|
123
148
|
padding: '.6em 1em',
|
|
124
149
|
textAlign: 'center'
|
|
125
150
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/preview-prompt.jsx"],"names":["NEWLINE_BLOCK_REGEX","NEWLINE_LATEX","PreviewPrompt","props","prompt","classes","tagName","className","onClick","defaultClassName","CustomTag","customClasses","promptTable","__html","replace","Component","PropTypes","object","string","func","styles","theme","verticalAlign","color","
|
|
1
|
+
{"version":3,"sources":["../src/preview-prompt.jsx"],"names":["NEWLINE_BLOCK_REGEX","NEWLINE_LATEX","PreviewPrompt","text","div","document","createElement","innerHTML","audio","querySelector","source","setAttribute","getAttribute","removeAttribute","appendChild","props","prompt","classes","tagName","className","onClick","defaultClassName","CustomTag","customClasses","promptTable","__html","parsedText","replace","Component","PropTypes","object","string","func","styles","theme","verticalAlign","color","rationale","paddingLeft","spacing","unit","label","display","cursor","borderCollapse","backgroundColor","padding","textAlign"],"mappings":"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","sourcesContent":["import React, { Component } from 'react';\nimport { withStyles } from '@material-ui/core/styles';\nimport PropTypes from 'prop-types';\nimport * as color from './color';\n\n//Used these below to replace \\\\embed{newLine} with \\\\newline from prompt which will get parsed in MathJax\nconst NEWLINE_BLOCK_REGEX = /\\\\embed\\{newLine\\}\\[\\]/g;\nconst NEWLINE_LATEX = '\\\\newline ';\n\nexport class PreviewPrompt extends Component {\n static propTypes = {\n classes: PropTypes.object,\n prompt: PropTypes.string,\n tagName: PropTypes.string,\n className: PropTypes.string,\n onClick: PropTypes.func,\n defaultClassName: PropTypes.string\n };\n\n static defaultProps = {\n onClick: () => {}\n };\n\n parsedText = text => {\n // fix imported audio content for Safari PD-1419\n const div = document.createElement('div');\n div.innerHTML = text;\n\n const audio = div.querySelector('audio');\n if (audio) {\n const source = document.createElement('source');\n\n source.setAttribute('type', 'audio/mp3');\n source.setAttribute('src', audio.getAttribute('src'));\n\n audio.removeAttribute('src');\n audio.appendChild(source);\n }\n\n return div.innerHTML;\n };\n\n render() {\n const { prompt, classes, tagName, className, onClick, defaultClassName } = this.props;\n const CustomTag = tagName || 'div';\n const customClasses = `${classes.promptTable} ${classes[className] || ''} ${defaultClassName ||\n ''}`;\n\n return (\n <CustomTag\n onClick={onClick}\n className={customClasses}\n dangerouslySetInnerHTML={{\n __html: this.parsedText(prompt || '').replace(NEWLINE_BLOCK_REGEX, NEWLINE_LATEX)\n }}\n />\n );\n }\n}\n\nconst styles = theme => ({\n prompt: {\n verticalAlign: 'middle',\n color: color.text()\n },\n rationale: {\n paddingLeft: theme.spacing.unit * 16\n },\n label: {\n color: `${color.text()} !important`, //'var(--choice-input-color, black)',\n display: 'inline-block',\n verticalAlign: 'middle',\n cursor: 'pointer'\n },\n promptTable: {\n '&:not(.MathJax) > table': {\n borderCollapse: 'collapse'\n },\n '&:not(.MathJax) > table tr': {\n '&:nth-child(2n)': {\n backgroundColor: '#f6f8fa'\n }\n },\n '&:not(.MathJax) > table td, &:not(.MathJax) > table th': {\n padding: '.6em 1em',\n textAlign: 'center'\n }\n }\n});\nexport default withStyles(styles)(PreviewPrompt);\n"],"file":"preview-prompt.js"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pie-lib/render-ui",
|
|
3
|
-
"version": "4.12.
|
|
3
|
+
"version": "4.12.4",
|
|
4
4
|
"description": "Some shared ui elements when rendering - but not worthy of their own package yet.",
|
|
5
5
|
"module": "src/index.js",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
"react": "^16.8.1",
|
|
27
27
|
"react-dom": "^16.8.1"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "0fa7d2eea7cc8d058c396cbb3b74adaaf924b2fe"
|
|
30
30
|
}
|
package/src/preview-prompt.jsx
CHANGED
|
@@ -21,6 +21,25 @@ export class PreviewPrompt extends Component {
|
|
|
21
21
|
onClick: () => {}
|
|
22
22
|
};
|
|
23
23
|
|
|
24
|
+
parsedText = text => {
|
|
25
|
+
// fix imported audio content for Safari PD-1419
|
|
26
|
+
const div = document.createElement('div');
|
|
27
|
+
div.innerHTML = text;
|
|
28
|
+
|
|
29
|
+
const audio = div.querySelector('audio');
|
|
30
|
+
if (audio) {
|
|
31
|
+
const source = document.createElement('source');
|
|
32
|
+
|
|
33
|
+
source.setAttribute('type', 'audio/mp3');
|
|
34
|
+
source.setAttribute('src', audio.getAttribute('src'));
|
|
35
|
+
|
|
36
|
+
audio.removeAttribute('src');
|
|
37
|
+
audio.appendChild(source);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
return div.innerHTML;
|
|
41
|
+
};
|
|
42
|
+
|
|
24
43
|
render() {
|
|
25
44
|
const { prompt, classes, tagName, className, onClick, defaultClassName } = this.props;
|
|
26
45
|
const CustomTag = tagName || 'div';
|
|
@@ -32,7 +51,7 @@ export class PreviewPrompt extends Component {
|
|
|
32
51
|
onClick={onClick}
|
|
33
52
|
className={customClasses}
|
|
34
53
|
dangerouslySetInnerHTML={{
|
|
35
|
-
__html: (prompt || '').replace(NEWLINE_BLOCK_REGEX, NEWLINE_LATEX)
|
|
54
|
+
__html: this.parsedText(prompt || '').replace(NEWLINE_BLOCK_REGEX, NEWLINE_LATEX)
|
|
36
55
|
}}
|
|
37
56
|
/>
|
|
38
57
|
);
|
|
@@ -58,13 +77,11 @@ const styles = theme => ({
|
|
|
58
77
|
borderCollapse: 'collapse'
|
|
59
78
|
},
|
|
60
79
|
'&:not(.MathJax) > table tr': {
|
|
61
|
-
borderTop: '1px solid #dfe2e5',
|
|
62
80
|
'&:nth-child(2n)': {
|
|
63
81
|
backgroundColor: '#f6f8fa'
|
|
64
82
|
}
|
|
65
83
|
},
|
|
66
84
|
'&:not(.MathJax) > table td, &:not(.MathJax) > table th': {
|
|
67
|
-
border: '1px solid #dfe2e5',
|
|
68
85
|
padding: '.6em 1em',
|
|
69
86
|
textAlign: 'center'
|
|
70
87
|
}
|