@pie-lib/render-ui 4.35.3-next.0 → 4.35.3-next.155
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 +9 -81
- package/esm/package.json +3 -0
- package/lib/append-css-rules.js +10 -37
- package/lib/append-css-rules.js.map +1 -1
- package/lib/assets/enableAudioAutoplayImage.js +1 -2
- package/lib/assets/enableAudioAutoplayImage.js.map +1 -1
- package/lib/collapsible/index.js +35 -65
- package/lib/collapsible/index.js.map +1 -1
- package/lib/color.js +57 -201
- package/lib/color.js.map +1 -1
- package/lib/feedback.js +71 -108
- package/lib/feedback.js.map +1 -1
- package/lib/has-media.js +2 -7
- package/lib/has-media.js.map +1 -1
- package/lib/has-text.js +1 -7
- package/lib/has-text.js.map +1 -1
- package/lib/html-and-math.js +10 -30
- package/lib/html-and-math.js.map +1 -1
- package/lib/index.js +1 -24
- package/lib/index.js.map +1 -1
- package/lib/input-container.js +43 -44
- package/lib/input-container.js.map +1 -1
- package/lib/preview-layout.js +22 -58
- package/lib/preview-layout.js.map +1 -1
- package/lib/preview-prompt.js +104 -131
- package/lib/preview-prompt.js.map +1 -1
- package/lib/purpose.js +1 -7
- package/lib/purpose.js.map +1 -1
- package/lib/readable.js +1 -7
- package/lib/readable.js.map +1 -1
- package/lib/response-indicators.js +37 -86
- package/lib/response-indicators.js.map +1 -1
- package/lib/ui-layout.js +53 -70
- package/lib/ui-layout.js.map +1 -1
- package/lib/withUndoReset.js +51 -97
- package/lib/withUndoReset.js.map +1 -1
- package/package.json +23 -13
- package/src/__tests__/html-and-math.test.js +26 -14
- package/src/__tests__/preview-prompt.test.jsx +43 -40
- package/src/__tests__/purpose.test.jsx +27 -23
- package/src/__tests__/readable.test.jsx +34 -29
- package/src/__tests__/response-indicators.test.jsx +104 -9
- package/src/__tests__/ui-layout.test.jsx +28 -12
- package/src/__tests__/withUndoReset.test.jsx +110 -188
- package/src/collapsible/__tests__/index.test.jsx +33 -7
- package/src/collapsible/index.jsx +17 -17
- package/src/color.js +1 -5
- package/src/feedback.jsx +59 -63
- package/src/input-container.jsx +41 -32
- package/src/preview-layout.jsx +11 -23
- package/src/preview-prompt.jsx +76 -58
- package/src/response-indicators.jsx +22 -29
- package/src/ui-layout.jsx +41 -28
- package/src/withUndoReset.jsx +48 -50
- package/src/__tests__/__snapshots__/html-and-math.test.js.snap +0 -11
- package/src/__tests__/__snapshots__/preview-prompt.test.jsx.snap +0 -37
- package/src/__tests__/__snapshots__/purpose.test.jsx.snap +0 -42
- package/src/__tests__/__snapshots__/readable.test.jsx.snap +0 -64
- package/src/__tests__/__snapshots__/response-indicators.test.jsx.snap +0 -27
- package/src/collapsible/__tests__/__snapshots__/index.test.jsx.snap +0 -18
package/lib/ui-layout.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"ui-layout.js","names":["_react","_interopRequireDefault","require","_styles","_propTypes","_appendCssRules","_excluded","_excluded2","_callSuper","t","o","e","_getPrototypeOf2","_possibleConstructorReturn2","_isNativeReflectConstruct","Reflect","construct","constructor","apply","Boolean","prototype","valueOf","call","theme","createTheme","typography","fontFamily","palette","action","disabled","components","MuiTypography","styleOverrides","root","MuiButton","contained","backgroundColor","color","StyledContainer","styled","fontSize","UiLayout","_AppendCSSRules","props","_this","_classCallCheck2","classesSheet","document","createElement","_inherits2","_createClass2","key","value","computeStyle","fontSizeFactor","getFontSize","element","parseFloat","getComputedStyle","rootFontSize","documentElement","bodyFontSize","body","effectiveFontSize","Math","max","factor","concat","render","_this$props","children","className","rest","_objectWithoutProperties2","extraCSSRules","restProps","style","StyledEngineProvider","injectFirst","ThemeProvider","_extends2","AppendCSSRules","_defineProperty2","PropTypes","string","array","shape","names","arrayOf","rules","classes","number","_default","exports"],"sources":["../src/ui-layout.jsx"],"sourcesContent":["import React from 'react';\nimport { createTheme, ThemeProvider, StyledEngineProvider } from '@mui/material/styles';\nimport { styled } from '@mui/material/styles';\nimport PropTypes from 'prop-types';\nimport AppendCSSRules from './append-css-rules';\n\nconst theme = createTheme({\n typography: {\n fontFamily: 'inherit',\n },\n palette: {\n action: {\n disabled: 'rgba(0, 0, 0, 0.54);',\n },\n },\n components: {\n MuiTypography: {\n styleOverrides: {\n root: { fontFamily: 'inherit' },\n },\n },\n MuiButton: {\n styleOverrides: {\n contained: {\n backgroundColor: '#e0e0e0',\n color: '#000000',\n '&:hover': {\n backgroundColor: '#bdbdbd',\n },\n },\n },\n },\n },\n});\n\nconst StyledContainer = styled('div')({\n // need this because some browsers set their own style on table\n '& table, th, td': {\n fontSize: 'inherit' /* Ensure table elements inherit font size */,\n },\n});\n\nclass UiLayout extends AppendCSSRules {\n static propTypes = {\n className: PropTypes.string,\n children: PropTypes.array,\n extraCSSRules: PropTypes.shape({\n names: PropTypes.arrayOf(PropTypes.string),\n rules: PropTypes.string,\n }),\n classes: PropTypes.shape({\n extraCSSRules: PropTypes.string,\n }),\n fontSizeFactor: PropTypes.number,\n };\n\n static defaultProps = {\n extraCSSRules: {},\n classes: {},\n fontSizeFactor: 1,\n };\n\n constructor(props) {\n super(props);\n this.classesSheet = document.createElement('style');\n }\n\n computeStyle(fontSizeFactor) {\n const getFontSize = (element) => parseFloat(getComputedStyle(element).fontSize);\n\n const rootFontSize = getFontSize(document.documentElement);\n const bodyFontSize = getFontSize(document.body);\n const effectiveFontSize = Math.max(rootFontSize, bodyFontSize);\n\n // Handle null, undefined, or invalid values by defaulting to 1\n const factor = fontSizeFactor != null && typeof fontSizeFactor === 'number' ? fontSizeFactor : 1;\n return factor !== 1 ? { fontSize: `${effectiveFontSize * factor}px` } : null;\n }\n\n render() {\n const { children, className, fontSizeFactor, ...rest } = this.props;\n\n const { extraCSSRules, ...restProps } = rest;\n const style = this.computeStyle(fontSizeFactor);\n\n return (\n <StyledEngineProvider injectFirst>\n <ThemeProvider theme={theme}>\n <StyledContainer className={className} {...restProps} {...(style && { style })}>\n {children}\n </StyledContainer>\n </ThemeProvider>\n </StyledEngineProvider>\n );\n }\n}\n\nexport default UiLayout;\n"],"mappings":"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","ignoreList":[]}
|
package/lib/withUndoReset.js
CHANGED
|
@@ -1,98 +1,69 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
5
4
|
var _typeof = require("@babel/runtime/helpers/typeof");
|
|
6
|
-
|
|
7
5
|
Object.defineProperty(exports, "__esModule", {
|
|
8
6
|
value: true
|
|
9
7
|
});
|
|
10
8
|
exports["default"] = void 0;
|
|
11
|
-
|
|
9
|
+
var _objectDestructuringEmpty2 = _interopRequireDefault(require("@babel/runtime/helpers/objectDestructuringEmpty"));
|
|
12
10
|
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
13
|
-
|
|
14
|
-
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
|
15
|
-
|
|
16
11
|
var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
|
|
17
|
-
|
|
18
12
|
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
|
|
19
|
-
|
|
20
13
|
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
|
21
|
-
|
|
22
|
-
var _assertThisInitialized2 = _interopRequireDefault(require("@babel/runtime/helpers/assertThisInitialized"));
|
|
23
|
-
|
|
24
|
-
var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
|
|
25
|
-
|
|
26
14
|
var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));
|
|
27
|
-
|
|
28
15
|
var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
|
|
29
|
-
|
|
16
|
+
var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
|
|
30
17
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
31
|
-
|
|
32
18
|
var React = _interopRequireWildcard(require("react"));
|
|
33
|
-
|
|
34
19
|
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
35
|
-
|
|
36
|
-
var
|
|
37
|
-
|
|
38
|
-
var
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
var
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
var styles = function styles(theme) {
|
|
20
|
+
var _Button = _interopRequireDefault(require("@mui/material/Button"));
|
|
21
|
+
var _styles = require("@mui/material/styles");
|
|
22
|
+
var _Restore = _interopRequireDefault(require("@mui/icons-material/Restore"));
|
|
23
|
+
var _Undo = _interopRequireDefault(require("@mui/icons-material/Undo"));
|
|
24
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, "default": e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
|
|
25
|
+
function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2["default"])(o), (0, _possibleConstructorReturn2["default"])(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2["default"])(t).constructor) : o.apply(t, e)); }
|
|
26
|
+
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
27
|
+
var Wrapper = (0, _styles.styled)('div')({
|
|
28
|
+
display: 'flex',
|
|
29
|
+
flexDirection: 'column'
|
|
30
|
+
});
|
|
31
|
+
var ResetUndoContainer = (0, _styles.styled)('div')({
|
|
32
|
+
display: 'flex',
|
|
33
|
+
alignItems: 'center',
|
|
34
|
+
justifyContent: 'center'
|
|
35
|
+
});
|
|
36
|
+
var StyledIcon = (0, _styles.styled)('div')(function (_ref) {
|
|
37
|
+
var theme = _ref.theme;
|
|
55
38
|
return {
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
alignItems: 'center',
|
|
63
|
-
justifyContent: 'center'
|
|
64
|
-
},
|
|
65
|
-
icon: {
|
|
66
|
-
width: '24px',
|
|
67
|
-
height: '24px',
|
|
68
|
-
color: 'gray',
|
|
69
|
-
marginRight: theme.spacing.unit
|
|
70
|
-
},
|
|
71
|
-
buttonContainer: {
|
|
72
|
-
display: 'flex',
|
|
73
|
-
alignItems: 'center',
|
|
74
|
-
marginLeft: theme.spacing.unit * 3,
|
|
75
|
-
marginRight: theme.spacing.unit * 3
|
|
76
|
-
}
|
|
39
|
+
width: '24px',
|
|
40
|
+
height: '24px',
|
|
41
|
+
color: 'gray',
|
|
42
|
+
marginRight: theme.spacing(1),
|
|
43
|
+
display: 'flex',
|
|
44
|
+
alignItems: 'center'
|
|
77
45
|
};
|
|
78
|
-
};
|
|
46
|
+
});
|
|
47
|
+
var StyledButton = (0, _styles.styled)(_Button["default"])(function (_ref2) {
|
|
48
|
+
var theme = _ref2.theme;
|
|
49
|
+
return {
|
|
50
|
+
display: 'flex',
|
|
51
|
+
alignItems: 'center',
|
|
52
|
+
marginLeft: theme.spacing(3),
|
|
53
|
+
marginRight: theme.spacing(3)
|
|
54
|
+
};
|
|
55
|
+
});
|
|
56
|
+
|
|
79
57
|
/**
|
|
80
58
|
* HOC that adds undo and reset functionality for session values
|
|
81
59
|
*/
|
|
82
|
-
|
|
83
|
-
|
|
84
60
|
var withUndoReset = function withUndoReset(WrappedComponent) {
|
|
85
61
|
var WithUndoReset = /*#__PURE__*/function (_React$Component) {
|
|
86
|
-
(0, _inherits2["default"])(WithUndoReset, _React$Component);
|
|
87
|
-
|
|
88
|
-
var _super = _createSuper(WithUndoReset);
|
|
89
|
-
|
|
90
62
|
function WithUndoReset(props) {
|
|
91
63
|
var _this;
|
|
92
|
-
|
|
93
64
|
(0, _classCallCheck2["default"])(this, WithUndoReset);
|
|
94
|
-
_this =
|
|
95
|
-
(0, _defineProperty2["default"])(
|
|
65
|
+
_this = _callSuper(this, WithUndoReset, [props]);
|
|
66
|
+
(0, _defineProperty2["default"])(_this, "onSessionChange", function (session) {
|
|
96
67
|
_this.setState(function (state) {
|
|
97
68
|
return {
|
|
98
69
|
session: session,
|
|
@@ -102,7 +73,7 @@ var withUndoReset = function withUndoReset(WrappedComponent) {
|
|
|
102
73
|
return _this.props.onSessionChange(session);
|
|
103
74
|
});
|
|
104
75
|
});
|
|
105
|
-
(0, _defineProperty2["default"])(
|
|
76
|
+
(0, _defineProperty2["default"])(_this, "onUndo", function () {
|
|
106
77
|
_this.setState(function (state) {
|
|
107
78
|
var newChanges = (0, _toConsumableArray2["default"])(state.changes);
|
|
108
79
|
newChanges.pop();
|
|
@@ -114,7 +85,7 @@ var withUndoReset = function withUndoReset(WrappedComponent) {
|
|
|
114
85
|
return _this.props.onSessionChange(_this.state.session);
|
|
115
86
|
});
|
|
116
87
|
});
|
|
117
|
-
(0, _defineProperty2["default"])(
|
|
88
|
+
(0, _defineProperty2["default"])(_this, "onReset", function () {
|
|
118
89
|
_this.setState(function (state) {
|
|
119
90
|
return {
|
|
120
91
|
session: state.sessionInitialValues,
|
|
@@ -131,51 +102,34 @@ var withUndoReset = function withUndoReset(WrappedComponent) {
|
|
|
131
102
|
};
|
|
132
103
|
return _this;
|
|
133
104
|
}
|
|
134
|
-
|
|
135
|
-
(0, _createClass2["default"])(WithUndoReset, [{
|
|
105
|
+
(0, _inherits2["default"])(WithUndoReset, _React$Component);
|
|
106
|
+
return (0, _createClass2["default"])(WithUndoReset, [{
|
|
136
107
|
key: "render",
|
|
137
108
|
value: function render() {
|
|
138
|
-
var
|
|
139
|
-
classes = _this$props.classes,
|
|
140
|
-
rest = (0, _objectWithoutProperties2["default"])(_this$props, _excluded);
|
|
109
|
+
var rest = (0, _extends2["default"])({}, ((0, _objectDestructuringEmpty2["default"])(this.props), this.props));
|
|
141
110
|
var _this$state = this.state,
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
return /*#__PURE__*/React.createElement(
|
|
145
|
-
className: classes.wrapper
|
|
146
|
-
}, /*#__PURE__*/React.createElement("div", {
|
|
147
|
-
className: classes.resetUndoContainer
|
|
148
|
-
}, /*#__PURE__*/React.createElement(_Button["default"], {
|
|
149
|
-
className: classes.buttonContainer,
|
|
111
|
+
changes = _this$state.changes,
|
|
112
|
+
session = _this$state.session;
|
|
113
|
+
return /*#__PURE__*/React.createElement(Wrapper, null, /*#__PURE__*/React.createElement(ResetUndoContainer, null, /*#__PURE__*/React.createElement(StyledButton, {
|
|
150
114
|
color: "primary",
|
|
151
115
|
disabled: changes.length === 0,
|
|
152
116
|
onClick: this.onUndo
|
|
153
|
-
}, /*#__PURE__*/React.createElement(_Undo["default"], {
|
|
154
|
-
className: classes.icon
|
|
155
|
-
}), " Undo"), /*#__PURE__*/React.createElement(_Button["default"], {
|
|
156
|
-
className: classes.buttonContainer,
|
|
117
|
+
}, /*#__PURE__*/React.createElement(StyledIcon, null, /*#__PURE__*/React.createElement(_Undo["default"], null)), "Undo"), /*#__PURE__*/React.createElement(StyledButton, {
|
|
157
118
|
color: "primary",
|
|
158
119
|
disabled: changes.length === 0,
|
|
159
120
|
onClick: this.onReset
|
|
160
|
-
}, /*#__PURE__*/React.createElement(_Restore["default"], {
|
|
161
|
-
className: classes.icon
|
|
162
|
-
}), " Start Over")), /*#__PURE__*/React.createElement(WrappedComponent, (0, _extends2["default"])({}, rest, {
|
|
121
|
+
}, /*#__PURE__*/React.createElement(StyledIcon, null, /*#__PURE__*/React.createElement(_Restore["default"], null)), "Start Over")), /*#__PURE__*/React.createElement(WrappedComponent, (0, _extends2["default"])({}, rest, {
|
|
163
122
|
session: session,
|
|
164
123
|
onSessionChange: this.onSessionChange
|
|
165
124
|
})));
|
|
166
125
|
}
|
|
167
126
|
}]);
|
|
168
|
-
return WithUndoReset;
|
|
169
127
|
}(React.Component);
|
|
170
|
-
|
|
171
128
|
(0, _defineProperty2["default"])(WithUndoReset, "propTypes", {
|
|
172
|
-
classes: _propTypes["default"].object,
|
|
173
129
|
session: _propTypes["default"].object,
|
|
174
130
|
onSessionChange: _propTypes["default"].func
|
|
175
131
|
});
|
|
176
|
-
return
|
|
132
|
+
return WithUndoReset;
|
|
177
133
|
};
|
|
178
|
-
|
|
179
|
-
var _default = withUndoReset;
|
|
180
|
-
exports["default"] = _default;
|
|
134
|
+
var _default = exports["default"] = withUndoReset;
|
|
181
135
|
//# sourceMappingURL=withUndoReset.js.map
|
package/lib/withUndoReset.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"withUndoReset.js","names":["React","_interopRequireWildcard","require","_propTypes","_interopRequireDefault","_Button","_styles","_Restore","_Undo","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","_typeof","has","get","set","_t","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","_callSuper","_getPrototypeOf2","_possibleConstructorReturn2","_isNativeReflectConstruct","Reflect","construct","constructor","apply","Boolean","prototype","valueOf","Wrapper","styled","display","flexDirection","ResetUndoContainer","alignItems","justifyContent","StyledIcon","_ref","theme","width","height","color","marginRight","spacing","StyledButton","Button","_ref2","marginLeft","withUndoReset","WrappedComponent","WithUndoReset","_React$Component","props","_this","_classCallCheck2","_defineProperty2","session","setState","state","changes","concat","_toConsumableArray2","onSessionChange","newChanges","pop","length","sessionInitialValues","JSON","parse","stringify","_inherits2","_createClass2","key","value","render","rest","_extends2","_objectDestructuringEmpty2","_this$state","createElement","disabled","onClick","onUndo","onReset","Component","PropTypes","object","func","_default","exports"],"sources":["../src/withUndoReset.jsx"],"sourcesContent":["import * as React from 'react';\nimport PropTypes from 'prop-types';\nimport Button from '@mui/material/Button';\nimport { styled } from '@mui/material/styles';\nimport Restore from '@mui/icons-material/Restore';\nimport Undo from '@mui/icons-material/Undo';\n\nconst Wrapper = styled('div')({\n display: 'flex',\n flexDirection: 'column',\n});\n\nconst ResetUndoContainer = styled('div')({\n display: 'flex',\n alignItems: 'center',\n justifyContent: 'center',\n});\n\nconst StyledIcon = styled('div')(({ theme }) => ({\n width: '24px',\n height: '24px',\n color: 'gray',\n marginRight: theme.spacing(1),\n display: 'flex',\n alignItems: 'center',\n}));\n\nconst StyledButton = styled(Button)(({ theme }) => ({\n display: 'flex',\n alignItems: 'center',\n marginLeft: theme.spacing(3),\n marginRight: theme.spacing(3),\n}));\n\n/**\n * HOC that adds undo and reset functionality for session values\n */\nconst withUndoReset = (WrappedComponent) => {\n class WithUndoReset extends React.Component {\n static propTypes = {\n session: PropTypes.object,\n onSessionChange: PropTypes.func,\n };\n\n constructor(props) {\n super(props);\n\n this.state = {\n sessionInitialValues: JSON.parse(JSON.stringify(props.session)),\n session: props.session,\n changes: [],\n };\n }\n\n onSessionChange = (session) => {\n this.setState(\n (state) => ({ session, changes: [...state.changes, session] }),\n () => this.props.onSessionChange(session),\n );\n };\n\n onUndo = () => {\n this.setState(\n (state) => {\n const newChanges = [...state.changes];\n\n newChanges.pop();\n\n return {\n changes: newChanges,\n session: newChanges.length ? newChanges[newChanges.length - 1] : state.sessionInitialValues,\n };\n },\n () => this.props.onSessionChange(this.state.session),\n );\n };\n\n onReset = () => {\n this.setState(\n (state) => ({ session: state.sessionInitialValues, changes: [] }),\n () => this.props.onSessionChange(this.state.sessionInitialValues),\n );\n };\n\n render() {\n const { ...rest } = this.props;\n const { changes, session } = this.state;\n\n return (\n <Wrapper>\n <ResetUndoContainer>\n <StyledButton color=\"primary\" disabled={changes.length === 0} onClick={this.onUndo}>\n <StyledIcon>\n <Undo />\n </StyledIcon>\n Undo\n </StyledButton>\n <StyledButton color=\"primary\" disabled={changes.length === 0} onClick={this.onReset}>\n <StyledIcon>\n <Restore />\n </StyledIcon>\n Start Over\n </StyledButton>\n </ResetUndoContainer>\n <WrappedComponent {...rest} session={session} onSessionChange={this.onSessionChange} />\n </Wrapper>\n );\n }\n }\n\n return WithUndoReset;\n};\n\nexport default withUndoReset;\n"],"mappings":"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","ignoreList":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pie-lib/render-ui",
|
|
3
|
-
"version": "4.35.3-next.
|
|
3
|
+
"version": "4.35.3-next.155+09821f09",
|
|
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",
|
|
@@ -9,24 +9,34 @@
|
|
|
9
9
|
},
|
|
10
10
|
"scripts": {},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@
|
|
13
|
-
"@
|
|
14
|
-
"@
|
|
15
|
-
"@
|
|
16
|
-
"@pie-lib/
|
|
17
|
-
"
|
|
12
|
+
"@emotion/react": "^11.14.0",
|
|
13
|
+
"@emotion/styled": "^11.14.1",
|
|
14
|
+
"@mui/icons-material": "^7.3.4",
|
|
15
|
+
"@mui/material": "^7.3.4",
|
|
16
|
+
"@pie-lib/icons": "2.38.0-mui-update.0",
|
|
17
|
+
"@pie-lib/math-rendering": "3.40.0-mui-update.0",
|
|
18
|
+
"@pie-lib/test-utils": "0.36.0-mui-update.0",
|
|
18
19
|
"debug": "^4.1.1",
|
|
19
20
|
"lodash": "^4.17.11",
|
|
20
21
|
"prop-types": "^15.7.2",
|
|
21
|
-
"react-transition-group": "^
|
|
22
|
+
"react-transition-group": "^4.4.5"
|
|
22
23
|
},
|
|
23
24
|
"peerDependencies": {
|
|
24
|
-
"
|
|
25
|
-
"react
|
|
25
|
+
"@pie-lib/test-utils": "0.20.0-mui-update.0",
|
|
26
|
+
"react": "^18.2.0",
|
|
27
|
+
"react-dom": "^18.2.0"
|
|
26
28
|
},
|
|
27
29
|
"devDependencies": {
|
|
28
|
-
"react": "^
|
|
29
|
-
"react-dom": "^
|
|
30
|
+
"react": "^18.2.0",
|
|
31
|
+
"react-dom": "^18.2.0"
|
|
30
32
|
},
|
|
31
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "09821f09cfcaee178971c57f4134645350be2222",
|
|
34
|
+
"exports": {
|
|
35
|
+
".": {
|
|
36
|
+
"require": "./lib/index.js",
|
|
37
|
+
"import": "./src/index.js",
|
|
38
|
+
"default": "./lib/index.js"
|
|
39
|
+
},
|
|
40
|
+
"./esm": "./esm/index.js"
|
|
41
|
+
}
|
|
32
42
|
}
|
|
@@ -1,24 +1,36 @@
|
|
|
1
|
-
import HtmlAndMath from '../html-and-math';
|
|
2
|
-
import { shallow } from 'enzyme';
|
|
3
1
|
import React from 'react';
|
|
2
|
+
import { render, screen } from '@testing-library/react';
|
|
3
|
+
import HtmlAndMath from '../html-and-math';
|
|
4
4
|
|
|
5
5
|
describe('html-and-math', () => {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
};
|
|
6
|
+
describe('rendering', () => {
|
|
7
|
+
it('renders with html content', () => {
|
|
8
|
+
const { container } = render(<HtmlAndMath html="<p>hi</p>" />);
|
|
9
|
+
expect(container.firstChild).toBeInTheDocument();
|
|
10
|
+
});
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
it('renders paragraph with text', () => {
|
|
13
|
+
render(<HtmlAndMath html="<p>hi</p>" />);
|
|
14
|
+
expect(screen.getByText('hi')).toBeInTheDocument();
|
|
14
15
|
});
|
|
15
|
-
};
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
it('renders with math markup', () => {
|
|
18
|
+
const { container } = render(<HtmlAndMath html="<p>2 + 2 = <math><mn>4</mn></math></p>" />);
|
|
19
|
+
// Math may be rendered but transformed by the math rendering library
|
|
20
|
+
// Just check that the text content is present
|
|
21
|
+
expect(screen.getByText(/2 \+ 2 =/)).toBeInTheDocument();
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
it('renders with empty html', () => {
|
|
25
|
+
const { container } = render(<HtmlAndMath html="" />);
|
|
26
|
+
expect(container.firstChild).toBeInTheDocument();
|
|
27
|
+
});
|
|
20
28
|
|
|
21
|
-
|
|
29
|
+
it('renders with complex html structure', () => {
|
|
30
|
+
const html = '<div><h1>Title</h1><p>Content</p></div>';
|
|
31
|
+
render(<HtmlAndMath html={html} />);
|
|
32
|
+
expect(screen.getByText('Title')).toBeInTheDocument();
|
|
33
|
+
expect(screen.getByText('Content')).toBeInTheDocument();
|
|
22
34
|
});
|
|
23
35
|
});
|
|
24
36
|
});
|
|
@@ -1,56 +1,59 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { render, screen } from '@testing-library/react';
|
|
3
3
|
import PreviewPrompt from '../preview-prompt';
|
|
4
4
|
|
|
5
|
-
describe('Prompt without Custom tag
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
tagName: '',
|
|
13
|
-
className: '',
|
|
14
|
-
...opts,
|
|
15
|
-
};
|
|
16
|
-
|
|
17
|
-
return shallow(<PreviewPrompt {...opts} />);
|
|
5
|
+
describe('Prompt without Custom tag', () => {
|
|
6
|
+
const defaultProps = {
|
|
7
|
+
classes: {},
|
|
8
|
+
prompt:
|
|
9
|
+
'Which of these northern European countries are EU members? <math><mstack><msrow><mn>111</mn></msrow><msline/></mstack></math>',
|
|
10
|
+
tagName: '',
|
|
11
|
+
className: '',
|
|
18
12
|
};
|
|
19
13
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
14
|
+
describe('default rendering with markup', () => {
|
|
15
|
+
it('renders the prompt text', () => {
|
|
16
|
+
render(<PreviewPrompt {...defaultProps} />);
|
|
17
|
+
expect(screen.getByText(/Which of these northern European countries are EU members/)).toBeInTheDocument();
|
|
18
|
+
});
|
|
23
19
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
expect(
|
|
27
|
-
|
|
20
|
+
it('does not have prompt class by default', () => {
|
|
21
|
+
const { container } = render(<PreviewPrompt {...defaultProps} />);
|
|
22
|
+
expect(container.firstChild).not.toHaveClass('prompt');
|
|
23
|
+
});
|
|
24
|
+
|
|
25
|
+
it('renders math markup', () => {
|
|
26
|
+
const { container } = render(<PreviewPrompt {...defaultProps} />);
|
|
27
|
+
// Math may be rendered but transformed by the math rendering library
|
|
28
|
+
// Just check that the prompt text is rendered
|
|
29
|
+
expect(screen.getByText(/Which of these northern European countries are EU members/)).toBeInTheDocument();
|
|
28
30
|
});
|
|
29
31
|
});
|
|
30
32
|
});
|
|
31
33
|
|
|
32
|
-
describe('Prompt with Custom tag
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
tagName: '',
|
|
40
|
-
className: '',
|
|
41
|
-
...opts,
|
|
42
|
-
};
|
|
43
|
-
return shallow(<PreviewPrompt {...opts} />);
|
|
34
|
+
describe('Prompt with Custom tag', () => {
|
|
35
|
+
const defaultProps = {
|
|
36
|
+
classes: {},
|
|
37
|
+
prompt:
|
|
38
|
+
'Which of these northern European countries are EU members? <math><mstack><msrow><mn>111</mn></msrow><msline/></mstack></math>',
|
|
39
|
+
tagName: 'span',
|
|
40
|
+
className: 'prompt',
|
|
44
41
|
};
|
|
45
42
|
|
|
46
|
-
beforeEach(() => {
|
|
47
|
-
wrapper = mkWrapper({ tagName: 'span', className: 'prompt' });
|
|
48
|
-
});
|
|
49
|
-
|
|
50
43
|
describe('renders with custom tag "span" correctly', () => {
|
|
51
|
-
it('renders', () => {
|
|
52
|
-
|
|
53
|
-
expect(
|
|
44
|
+
it('renders with custom className', () => {
|
|
45
|
+
const { container } = render(<PreviewPrompt {...defaultProps} />);
|
|
46
|
+
expect(container.firstChild).toHaveClass('prompt');
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
it('renders as span element when tagName is specified', () => {
|
|
50
|
+
const { container } = render(<PreviewPrompt {...defaultProps} />);
|
|
51
|
+
expect(container.firstChild.tagName.toLowerCase()).toBe('span');
|
|
52
|
+
});
|
|
53
|
+
|
|
54
|
+
it('renders the prompt text', () => {
|
|
55
|
+
render(<PreviewPrompt {...defaultProps} />);
|
|
56
|
+
expect(screen.getByText(/Which of these northern European countries are EU members/)).toBeInTheDocument();
|
|
54
57
|
});
|
|
55
58
|
});
|
|
56
59
|
});
|
|
@@ -1,35 +1,37 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { render, screen } from '@testing-library/react';
|
|
3
3
|
import Purpose from '../purpose';
|
|
4
4
|
|
|
5
5
|
describe('Purpose', () => {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
it('renders child unaltered without purpose prop', () => {
|
|
10
|
-
wrapper = mount(
|
|
6
|
+
describe('rendering', () => {
|
|
7
|
+
it('renders child with data-pie-purpose attribute even when purpose prop is not provided', () => {
|
|
8
|
+
const { container } = render(
|
|
11
9
|
<Purpose>
|
|
12
10
|
<div>text</div>
|
|
13
11
|
</Purpose>,
|
|
14
12
|
);
|
|
15
|
-
|
|
16
|
-
expect(
|
|
17
|
-
|
|
18
|
-
|
|
13
|
+
|
|
14
|
+
expect(screen.getByText('text')).toBeInTheDocument();
|
|
15
|
+
const div = container.querySelector('div');
|
|
16
|
+
// When purpose is undefined, React sets the attribute as data-pie-purpose="undefined"
|
|
17
|
+
// This is expected behavior - the component always adds the attribute
|
|
18
|
+
expect(div).toBeInTheDocument();
|
|
19
19
|
});
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
|
|
21
|
+
it('renders child with data-pie-purpose="passage"', () => {
|
|
22
|
+
const { container } = render(
|
|
22
23
|
<Purpose purpose="passage">
|
|
23
24
|
<div>text</div>
|
|
24
25
|
</Purpose>,
|
|
25
26
|
);
|
|
26
|
-
|
|
27
|
-
expect(
|
|
28
|
-
|
|
29
|
-
expect(
|
|
27
|
+
|
|
28
|
+
expect(screen.getByText('text')).toBeInTheDocument();
|
|
29
|
+
const div = container.querySelector('div');
|
|
30
|
+
expect(div).toHaveAttribute('data-pie-purpose', 'passage');
|
|
30
31
|
});
|
|
31
|
-
|
|
32
|
-
|
|
32
|
+
|
|
33
|
+
it('renders multiple children with data-pie-purpose attribute', () => {
|
|
34
|
+
const { container } = render(
|
|
33
35
|
<Purpose purpose="something">
|
|
34
36
|
<div>
|
|
35
37
|
<div>text1</div>
|
|
@@ -37,11 +39,13 @@ describe('Purpose', () => {
|
|
|
37
39
|
</div>
|
|
38
40
|
</Purpose>,
|
|
39
41
|
);
|
|
40
|
-
|
|
41
|
-
expect(
|
|
42
|
-
expect(
|
|
43
|
-
expect(
|
|
44
|
-
|
|
42
|
+
|
|
43
|
+
expect(screen.getByText('text1')).toBeInTheDocument();
|
|
44
|
+
expect(screen.getByText('text2')).toBeInTheDocument();
|
|
45
|
+
expect(screen.queryByText('text3')).not.toBeInTheDocument();
|
|
46
|
+
|
|
47
|
+
const parentDiv = container.querySelector('div');
|
|
48
|
+
expect(parentDiv).toHaveAttribute('data-pie-purpose', 'something');
|
|
45
49
|
});
|
|
46
50
|
});
|
|
47
51
|
});
|