@pie-lib/config-ui 13.0.4-next.31 → 13.0.4-next.36

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.
Files changed (190) hide show
  1. package/CHANGELOG.json +32 -0
  2. package/CHANGELOG.md +2419 -0
  3. package/LICENSE.md +5 -0
  4. package/lib/alert-dialog.js +68 -0
  5. package/lib/alert-dialog.js.map +1 -0
  6. package/lib/checkbox.js +84 -0
  7. package/lib/checkbox.js.map +1 -0
  8. package/lib/choice-configuration/feedback-menu.js +129 -0
  9. package/lib/choice-configuration/feedback-menu.js.map +1 -0
  10. package/lib/choice-configuration/index.js +381 -0
  11. package/lib/choice-configuration/index.js.map +1 -0
  12. package/lib/choice-utils.js +42 -0
  13. package/lib/choice-utils.js.map +1 -0
  14. package/lib/feedback-config/feedback-selector.js +155 -0
  15. package/lib/feedback-config/feedback-selector.js.map +1 -0
  16. package/lib/feedback-config/group.js +61 -0
  17. package/lib/feedback-config/group.js.map +1 -0
  18. package/lib/feedback-config/index.js +146 -0
  19. package/lib/feedback-config/index.js.map +1 -0
  20. package/lib/form-section.js +44 -0
  21. package/lib/form-section.js.map +1 -0
  22. package/lib/help.js +106 -0
  23. package/lib/help.js.map +1 -0
  24. package/lib/index.js +186 -0
  25. package/lib/index.js.map +1 -0
  26. package/lib/input.js +106 -0
  27. package/lib/input.js.map +1 -0
  28. package/lib/inputs.js +105 -0
  29. package/lib/inputs.js.map +1 -0
  30. package/lib/langs.js +136 -0
  31. package/lib/langs.js.map +1 -0
  32. package/lib/layout/config-layout.js +137 -0
  33. package/lib/layout/config-layout.js.map +1 -0
  34. package/lib/layout/index.js +21 -0
  35. package/lib/layout/index.js.map +1 -0
  36. package/lib/layout/layout-contents.js +160 -0
  37. package/lib/layout/layout-contents.js.map +1 -0
  38. package/lib/layout/settings-box.js +57 -0
  39. package/lib/layout/settings-box.js.map +1 -0
  40. package/lib/mui-box/index.js +63 -0
  41. package/lib/mui-box/index.js.map +1 -0
  42. package/lib/number-text-field-custom.js +376 -0
  43. package/lib/number-text-field-custom.js.map +1 -0
  44. package/lib/number-text-field.js +229 -0
  45. package/lib/number-text-field.js.map +1 -0
  46. package/lib/radio-with-label.js +48 -0
  47. package/lib/radio-with-label.js.map +1 -0
  48. package/lib/settings/display-size.js +61 -0
  49. package/lib/settings/display-size.js.map +1 -0
  50. package/lib/settings/index.js +110 -0
  51. package/lib/settings/index.js.map +1 -0
  52. package/lib/settings/panel.js +392 -0
  53. package/lib/settings/panel.js.map +1 -0
  54. package/lib/settings/settings-radio-label.js +51 -0
  55. package/lib/settings/settings-radio-label.js.map +1 -0
  56. package/lib/settings/toggle.js +63 -0
  57. package/lib/settings/toggle.js.map +1 -0
  58. package/lib/tabs/index.js +75 -0
  59. package/lib/tabs/index.js.map +1 -0
  60. package/lib/tags-input/index.js +149 -0
  61. package/lib/tags-input/index.js.map +1 -0
  62. package/lib/two-choice.js +136 -0
  63. package/lib/two-choice.js.map +1 -0
  64. package/lib/with-stateful-model.js +61 -0
  65. package/lib/with-stateful-model.js.map +1 -0
  66. package/package.json +19 -33
  67. package/src/__tests__/alert-dialog.test.jsx +183 -0
  68. package/src/__tests__/checkbox.test.jsx +152 -0
  69. package/src/__tests__/choice-utils.test.js +12 -0
  70. package/src/__tests__/form-section.test.jsx +328 -0
  71. package/src/__tests__/help.test.jsx +184 -0
  72. package/src/__tests__/input.test.jsx +156 -0
  73. package/src/__tests__/langs.test.jsx +376 -0
  74. package/src/__tests__/number-text-field-custom.test.jsx +255 -0
  75. package/src/__tests__/number-text-field.test.jsx +263 -0
  76. package/src/__tests__/radio-with-label.test.jsx +155 -0
  77. package/src/__tests__/settings-panel.test.js +187 -0
  78. package/src/__tests__/settings.test.jsx +452 -0
  79. package/src/__tests__/tabs.test.jsx +188 -0
  80. package/src/__tests__/two-choice.test.js +110 -0
  81. package/src/__tests__/with-stateful-model.test.jsx +139 -0
  82. package/src/alert-dialog.jsx +75 -0
  83. package/src/checkbox.jsx +61 -0
  84. package/src/choice-configuration/__tests__/feedback-menu.test.jsx +151 -0
  85. package/src/choice-configuration/__tests__/index.test.jsx +234 -0
  86. package/src/choice-configuration/feedback-menu.jsx +96 -0
  87. package/src/choice-configuration/index.jsx +357 -0
  88. package/src/choice-utils.js +30 -0
  89. package/src/feedback-config/__tests__/feedback-config.test.jsx +141 -0
  90. package/src/feedback-config/__tests__/feedback-selector.test.jsx +97 -0
  91. package/src/feedback-config/feedback-selector.jsx +112 -0
  92. package/src/feedback-config/group.jsx +51 -0
  93. package/src/feedback-config/index.jsx +111 -0
  94. package/src/form-section.jsx +31 -0
  95. package/src/help.jsx +79 -0
  96. package/src/index.js +55 -0
  97. package/src/input.jsx +72 -0
  98. package/src/inputs.jsx +69 -0
  99. package/src/langs.jsx +111 -0
  100. package/src/layout/__tests__/config.layout.test.jsx +59 -0
  101. package/src/layout/__tests__/layout-content.test.jsx +3 -0
  102. package/src/layout/config-layout.jsx +103 -0
  103. package/src/layout/index.js +4 -0
  104. package/src/layout/layout-contents.jsx +117 -0
  105. package/src/layout/settings-box.jsx +32 -0
  106. package/src/mui-box/index.jsx +56 -0
  107. package/src/number-text-field-custom.jsx +333 -0
  108. package/src/number-text-field.jsx +215 -0
  109. package/src/radio-with-label.jsx +30 -0
  110. package/src/settings/display-size.jsx +53 -0
  111. package/src/settings/index.js +83 -0
  112. package/src/settings/panel.jsx +333 -0
  113. package/src/settings/settings-radio-label.jsx +32 -0
  114. package/src/settings/toggle.jsx +46 -0
  115. package/src/tabs/index.jsx +47 -0
  116. package/src/tags-input/__tests__/index.test.jsx +113 -0
  117. package/src/tags-input/index.jsx +116 -0
  118. package/src/two-choice.jsx +90 -0
  119. package/src/with-stateful-model.jsx +36 -0
  120. package/dist/_virtual/_rolldown/runtime.js +0 -11
  121. package/dist/alert-dialog.d.ts +0 -44
  122. package/dist/alert-dialog.js +0 -47
  123. package/dist/checkbox.d.ts +0 -34
  124. package/dist/checkbox.js +0 -57
  125. package/dist/choice-configuration/feedback-menu.d.ts +0 -32
  126. package/dist/choice-configuration/feedback-menu.js +0 -85
  127. package/dist/choice-configuration/index.d.ts +0 -62
  128. package/dist/choice-configuration/index.js +0 -240
  129. package/dist/choice-utils.d.ts +0 -21
  130. package/dist/choice-utils.js +0 -15
  131. package/dist/feedback-config/feedback-selector.d.ts +0 -33
  132. package/dist/feedback-config/feedback-selector.js +0 -92
  133. package/dist/feedback-config/group.d.ts +0 -21
  134. package/dist/feedback-config/group.js +0 -33
  135. package/dist/feedback-config/index.d.ts +0 -48
  136. package/dist/feedback-config/index.js +0 -96
  137. package/dist/form-section.d.ts +0 -25
  138. package/dist/form-section.js +0 -25
  139. package/dist/fraction-to-number.d.ts +0 -7
  140. package/dist/fraction-to-number.js +0 -9
  141. package/dist/help.d.ts +0 -41
  142. package/dist/help.js +0 -61
  143. package/dist/index.d.ts +0 -31
  144. package/dist/index.js +0 -34
  145. package/dist/input.d.ts +0 -29
  146. package/dist/input.js +0 -65
  147. package/dist/inputs.d.ts +0 -63
  148. package/dist/inputs.js +0 -70
  149. package/dist/langs.d.ts +0 -41
  150. package/dist/langs.js +0 -76
  151. package/dist/layout/config-layout.d.ts +0 -10
  152. package/dist/layout/config-layout.js +0 -75
  153. package/dist/layout/index.d.ts +0 -11
  154. package/dist/layout/index.js +0 -10
  155. package/dist/layout/layout-contents.d.ts +0 -21
  156. package/dist/layout/layout-contents.js +0 -70
  157. package/dist/layout/settings-box.d.ts +0 -19
  158. package/dist/layout/settings-box.js +0 -31
  159. package/dist/mui-box/index.d.ts +0 -21
  160. package/dist/mui-box/index.js +0 -47
  161. package/dist/node_modules/.bun/@babel_runtime@7.28.6/node_modules/@babel/runtime/helpers/esm/extends.js +0 -12
  162. package/dist/node_modules/.bun/@babel_runtime@7.28.6/node_modules/@babel/runtime/helpers/esm/inheritsLoose.js +0 -7
  163. package/dist/node_modules/.bun/@babel_runtime@7.28.6/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js +0 -12
  164. package/dist/node_modules/.bun/@babel_runtime@7.28.6/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js +0 -8
  165. package/dist/node_modules/.bun/react-measure@2.5.2_6dbf9a050bc9aadb/node_modules/react-measure/dist/index.esm.js +0 -122
  166. package/dist/node_modules/.bun/resize-observer-polyfill@1.5.1/node_modules/resize-observer-polyfill/dist/ResizeObserver.es.js +0 -276
  167. package/dist/number-text-field-custom.d.ts +0 -51
  168. package/dist/number-text-field-custom.js +0 -192
  169. package/dist/number-text-field.d.ts +0 -47
  170. package/dist/number-text-field.js +0 -122
  171. package/dist/radio-with-label.d.ts +0 -25
  172. package/dist/radio-with-label.js +0 -27
  173. package/dist/settings/display-size.d.ts +0 -26
  174. package/dist/settings/display-size.js +0 -45
  175. package/dist/settings/index.d.ts +0 -45
  176. package/dist/settings/index.js +0 -63
  177. package/dist/settings/panel.d.ts +0 -27
  178. package/dist/settings/panel.js +0 -201
  179. package/dist/settings/settings-radio-label.d.ts +0 -25
  180. package/dist/settings/settings-radio-label.js +0 -29
  181. package/dist/settings/toggle.d.ts +0 -25
  182. package/dist/settings/toggle.js +0 -33
  183. package/dist/tabs/index.d.ts +0 -22
  184. package/dist/tabs/index.js +0 -39
  185. package/dist/tags-input/index.d.ts +0 -21
  186. package/dist/tags-input/index.js +0 -83
  187. package/dist/two-choice.d.ts +0 -43
  188. package/dist/two-choice.js +0 -79
  189. package/dist/with-stateful-model.d.ts +0 -42
  190. package/dist/with-stateful-model.js +0 -32
@@ -0,0 +1,333 @@
1
+ import PropTypes from 'prop-types';
2
+ import React from 'react';
3
+ import TextField from '@mui/material/TextField';
4
+ import { styled } from '@mui/material/styles';
5
+ import { isFinite } from 'lodash-es';
6
+ import IconButton from '@mui/material/IconButton';
7
+ import InputAdornment from '@mui/material/InputAdornment';
8
+ import Remove from '@mui/icons-material/Remove';
9
+ import Add from '@mui/icons-material/Add';
10
+ import * as math from 'mathjs';
11
+
12
+ const StyledTextField = styled(TextField)(() => ({
13
+ '& input[type=number]': {
14
+ MozAppearance: 'textfield',
15
+ },
16
+ '& input[type=number]::-webkit-outer-spin-button': {
17
+ WebkitAppearance: 'none',
18
+ margin: 0,
19
+ },
20
+ '& input[type=number]::-webkit-inner-spin-button': {
21
+ WebkitAppearance: 'none',
22
+ margin: 0,
23
+ },
24
+ }));
25
+
26
+ const StyledIconButton = styled(IconButton)(() => ({
27
+ padding: '2px',
28
+ }));
29
+
30
+ const fallbackNumber = (min, max) => {
31
+ if (!isFinite(min) && !isFinite(max)) {
32
+ return 0;
33
+ }
34
+
35
+ if (!isFinite(min) && isFinite(max)) {
36
+ return max;
37
+ }
38
+
39
+ if (isFinite(min)) {
40
+ return min;
41
+ }
42
+ };
43
+
44
+ export class NumberTextFieldCustom extends React.Component {
45
+ static propTypes = {
46
+ className: PropTypes.string,
47
+ customValues: PropTypes.array,
48
+ disabled: PropTypes.bool,
49
+ error: PropTypes.bool,
50
+ inputClassName: PropTypes.string,
51
+ helperText: PropTypes.string,
52
+ onChange: PropTypes.func.isRequired,
53
+ onlyIntegersAllowed: PropTypes.bool,
54
+ value: PropTypes.any,
55
+ min: PropTypes.number,
56
+ max: PropTypes.number,
57
+ step: PropTypes.number,
58
+ label: PropTypes.string,
59
+ disableUnderline: PropTypes.bool,
60
+ textAlign: PropTypes.string,
61
+ variant: PropTypes.string,
62
+ type: PropTypes.string,
63
+ };
64
+
65
+ static defaultProps = {
66
+ step: 1,
67
+ customValues: [],
68
+ textAlign: 'center',
69
+ variant: 'standard',
70
+ onlyIntegersAllowed: false,
71
+ };
72
+
73
+ constructor(props) {
74
+ super(props);
75
+
76
+ const { value, currentIndex } = this.normalizeValueAndIndex(props.customValues, props.value);
77
+
78
+ this.state = {
79
+ value,
80
+ currentIndex,
81
+ };
82
+
83
+ if (value !== props.value) {
84
+ this.props.onChange({}, value);
85
+ }
86
+
87
+ this.onChange = this.onChange.bind(this);
88
+ }
89
+
90
+ UNSAFE_componentWillReceiveProps(props) {
91
+ const { value, currentIndex } = this.normalizeValueAndIndex(props.customValues, props.value, props.min, props.max);
92
+
93
+ this.setState({ value, currentIndex });
94
+ }
95
+
96
+ clamp(value, min = this.props.min, max = this.props.max) {
97
+ const { customValues } = this.props;
98
+
99
+ if ((customValues || []).length > 0) {
100
+ return value;
101
+ }
102
+
103
+ if (!isFinite(value)) {
104
+ return fallbackNumber(min, max);
105
+ }
106
+
107
+ if (isFinite(max)) {
108
+ value = Math.min(value, max);
109
+ }
110
+
111
+ if (isFinite(min)) {
112
+ value = Math.max(value, min);
113
+ }
114
+
115
+ return value;
116
+ }
117
+
118
+ normalizeValueAndIndex = (customValues, number, min, max) => {
119
+ const { type } = this.props;
120
+ const value = this.clamp(number, min, max);
121
+ const currentIndex = (customValues || []).findIndex((val) => val === value);
122
+
123
+ if ((customValues || []).length > 0 && currentIndex === -1) {
124
+ const closestValue =
125
+ type === 'text' ? this.getClosestFractionValue(customValues, value) : this.getClosestValue(customValues, value);
126
+
127
+ return { value: closestValue.value, currentIndex: closestValue.index };
128
+ }
129
+
130
+ return { value, currentIndex };
131
+ };
132
+
133
+ getClosestValue = (customValues, number) =>
134
+ customValues.reduce(
135
+ (closest, value, index) =>
136
+ Math.abs(value - number) < Math.abs(closest.value - number) ? { value, index } : closest,
137
+ { value: customValues[0], index: 0 },
138
+ );
139
+
140
+ getClosestFractionValue = (customValues, number) =>
141
+ customValues.reduce(
142
+ (closest, value, index) =>
143
+ Math.abs(math.number(math.fraction(value)) - math.number(math.fraction(number))) <
144
+ Math.abs(math.number(math.fraction(closest.value)) - math.number(math.fraction(number)))
145
+ ? { value, index }
146
+ : closest,
147
+ { value: customValues[0], index: 0 },
148
+ );
149
+
150
+ getValidFraction = (value) => {
151
+ if (this.isPositiveInteger(value.trim())) {
152
+ return value.trim();
153
+ }
154
+ if (value.trim() === '' || value.trim().split('/').length !== 2) {
155
+ return false;
156
+ }
157
+ let [numerator, denominator] = value.trim().split('/');
158
+ if (isNaN(numerator) || isNaN(denominator)) {
159
+ return false;
160
+ }
161
+ numerator = parseFloat(numerator);
162
+ denominator = parseFloat(denominator);
163
+ if (!Number.isInteger(numerator) || !Number.isInteger(denominator)) {
164
+ return false;
165
+ }
166
+ if (numerator < 0 || denominator < 1) {
167
+ return false;
168
+ }
169
+ return numerator + '/' + denominator;
170
+ };
171
+
172
+ isPositiveInteger = (n) => {
173
+ return n >>> 0 === parseFloat(n);
174
+ };
175
+
176
+ onBlur = (event) => {
177
+ const { customValues, onlyIntegersAllowed, type } = this.props;
178
+ let { value } = event.target;
179
+ if (type === 'text') {
180
+ let tempValue = this.getValidFraction(value);
181
+ if (tempValue) {
182
+ value = tempValue;
183
+ } else {
184
+ value = this.props.value;
185
+ }
186
+ }
187
+ let rawNumber = onlyIntegersAllowed ? Math.round(parseFloat(value)) : parseFloat(value);
188
+ if (type === 'text') {
189
+ rawNumber = value.trim();
190
+ }
191
+ const { value: number, currentIndex } = this.normalizeValueAndIndex(customValues, rawNumber);
192
+ this.setState(
193
+ {
194
+ value: number.toString(),
195
+ currentIndex,
196
+ },
197
+ () => this.props.onChange(event, number),
198
+ );
199
+ };
200
+
201
+ onChange(event) {
202
+ const { type } = this.props;
203
+ const { value } = event.target;
204
+ if (type !== 'text' && typeof value === 'string' && value.trim() === '') {
205
+ return;
206
+ }
207
+ this.setState({ value });
208
+ }
209
+
210
+ changeValue(event, sign = 1, shouldUpdate = false) {
211
+ event.preventDefault();
212
+ const { customValues, step, onlyIntegersAllowed, onChange } = this.props;
213
+ const { currentIndex, value } = this.state;
214
+ const updatedIndex = currentIndex + sign * 1;
215
+ let number;
216
+ if (customValues.length > 0) {
217
+ if (updatedIndex < 0 || updatedIndex >= customValues.length) {
218
+ return;
219
+ }
220
+ number = customValues[updatedIndex];
221
+ } else {
222
+ const rawNumber = onlyIntegersAllowed ? parseInt(value) : parseFloat(value);
223
+ const updatedValue = (rawNumber * 10000 + step * sign * 10000) / 10000;
224
+ number = this.clamp(updatedValue);
225
+ }
226
+ this.setState(
227
+ {
228
+ value: number.toString(),
229
+ currentIndex: updatedIndex,
230
+ },
231
+ () => {
232
+ if (shouldUpdate) {
233
+ onChange(event, number);
234
+ }
235
+ },
236
+ );
237
+ }
238
+
239
+ render() {
240
+ const {
241
+ className,
242
+ label,
243
+ disabled,
244
+ error,
245
+ min,
246
+ max,
247
+ customValues,
248
+ inputClassName,
249
+ disableUnderline,
250
+ helperText,
251
+ variant,
252
+ textAlign,
253
+ type = 'number',
254
+ } = this.props;
255
+ const { value } = this.state;
256
+ const names = className;
257
+ //Logic to disable the increment and decrement buttons
258
+ let disabledStart = false;
259
+ let disabledEnd = false;
260
+ if (customValues.length > 0) {
261
+ disabledStart = value === customValues[0];
262
+ disabledEnd = value === customValues[customValues.length - 1];
263
+ } else if (isFinite(min) && isFinite(max)) {
264
+ disabledStart = value === min;
265
+ disabledEnd = value === max;
266
+ }
267
+
268
+ return (
269
+ <StyledTextField
270
+ variant={variant}
271
+ inputRef={(ref) => (this.inputRef = ref)}
272
+ disabled={disabled}
273
+ label={label}
274
+ value={value}
275
+ error={error}
276
+ helperText={helperText}
277
+ onChange={this.onChange}
278
+ onBlur={this.onBlur}
279
+ onKeyPress={(e) => {
280
+ // once the Enter key is pressed, we force input blur
281
+ if (e.key === 'Enter' && this.inputRef) {
282
+ this.inputRef.blur();
283
+ }
284
+ }}
285
+ onKeyDown={(e) => {
286
+ if (e.key === 'ArrowUp') {
287
+ this.changeValue(e);
288
+ }
289
+
290
+ if (e.key === 'ArrowDown') {
291
+ this.changeValue(e, -1);
292
+ }
293
+ }}
294
+ title={''}
295
+ type={type}
296
+ className={names}
297
+ InputProps={{
298
+ className: inputClassName,
299
+ disableUnderline: disableUnderline,
300
+ startAdornment: (
301
+ <InputAdornment position="start">
302
+ <StyledIconButton
303
+ disabled={disabled ? disabled : disabledStart}
304
+ onClick={(e) => this.changeValue(e, -1, true)}
305
+ size="large"
306
+ >
307
+ <Remove fontSize="small" />
308
+ </StyledIconButton>
309
+ </InputAdornment>
310
+ ),
311
+ endAdornment: (
312
+ <InputAdornment position="end">
313
+ <StyledIconButton
314
+ disabled={disabled ? disabled : disabledEnd}
315
+ onClick={(e) => this.changeValue(e, 1, true)}
316
+ size="large"
317
+ >
318
+ <Add fontSize="small" />
319
+ </StyledIconButton>
320
+ </InputAdornment>
321
+ ),
322
+ }}
323
+ inputProps={{
324
+ style: { textAlign },
325
+ min,
326
+ max,
327
+ }}
328
+ />
329
+ );
330
+ }
331
+ }
332
+
333
+ export default NumberTextFieldCustom;
@@ -0,0 +1,215 @@
1
+ import PropTypes from 'prop-types';
2
+ import React from 'react';
3
+ import TextField from '@mui/material/TextField';
4
+ import { styled } from '@mui/material/styles';
5
+ import debug from 'debug';
6
+ import { isFinite } from 'lodash-es';
7
+ import InputAdornment from '@mui/material/InputAdornment';
8
+
9
+ const log = debug('@pie-lib:config-ui:number-text-field');
10
+
11
+ const StyledTextField = styled(TextField)(({ theme }) => ({
12
+ marginRight: theme.spacing(1),
13
+ '& .MuiInputLabel-root': {
14
+ width: 'auto',
15
+ minWidth: 'max-content',
16
+ maxWidth: 'none',
17
+ whiteSpace: 'nowrap',
18
+ overflow: 'visible',
19
+ transform: 'translate(0, 8px) scale(0.75)',
20
+ transformOrigin: 'top left',
21
+ position: 'relative',
22
+ },
23
+ '& .MuiInputBase-root, & .MuiInput-root, & .MuiFilledInput-root, & .MuiOutlinedInput-root': {
24
+ height: 'auto',
25
+ minHeight: 'auto',
26
+ marginTop: 0,
27
+ },
28
+ '& .MuiInputBase-input': {
29
+ height: 'auto',
30
+ minHeight: 'auto',
31
+ padding: '6px 0 7px',
32
+ },
33
+ }));
34
+
35
+ const fallbackNumber = (min, max) => {
36
+ if (!isFinite(min) && !isFinite(max)) {
37
+ return 0;
38
+ }
39
+ if (!isFinite(min) && isFinite(max)) {
40
+ return max;
41
+ }
42
+
43
+ if (isFinite(min)) {
44
+ return min;
45
+ }
46
+ };
47
+
48
+ export class NumberTextField extends React.Component {
49
+ static propTypes = {
50
+ disabled: PropTypes.bool,
51
+ className: PropTypes.string,
52
+ inputClassName: PropTypes.string,
53
+ onChange: PropTypes.func.isRequired,
54
+ value: PropTypes.number,
55
+ min: PropTypes.number,
56
+ max: PropTypes.number,
57
+ label: PropTypes.string,
58
+ suffix: PropTypes.string,
59
+ showErrorWhenOutsideRange: PropTypes.bool,
60
+ disableUnderline: PropTypes.bool,
61
+ variant: PropTypes.string,
62
+ };
63
+
64
+ static defaultProps = {
65
+ showErrorWhenOutsideRange: false,
66
+ };
67
+
68
+ constructor(props) {
69
+ super(props);
70
+
71
+ const value = this.clamp(props.value);
72
+
73
+ this.state = {
74
+ value,
75
+ };
76
+
77
+ if (value !== props.value) {
78
+ this.props.onChange({}, value);
79
+ }
80
+
81
+ this.onChange = this.onChange.bind(this);
82
+ }
83
+
84
+ UNSAFE_componentWillReceiveProps(props) {
85
+ const value = this.clamp(props.value, props.min, props.max);
86
+
87
+ this.setState({ value });
88
+ }
89
+
90
+ clamp(value, min = this.props.min, max = this.props.max) {
91
+ if (!isFinite(value)) {
92
+ return fallbackNumber(min, max);
93
+ }
94
+
95
+ if (isFinite(max)) {
96
+ value = Math.min(value, max);
97
+ }
98
+
99
+ if (isFinite(min)) {
100
+ value = Math.max(value, min);
101
+ }
102
+
103
+ return value;
104
+ }
105
+
106
+ /**
107
+ * on Blur (this can be triggered by pressing Enter, see below)
108
+ * we check the entered value and reset it if needed
109
+ */
110
+ onBlur = (event) => {
111
+ const value = event.target.value;
112
+
113
+ const rawNumber = parseFloat(value);
114
+ log('rawNumber: ', rawNumber);
115
+
116
+ const number = this.clamp(rawNumber);
117
+ log('number: ', number);
118
+
119
+ if (number !== this.state.value) {
120
+ log('trigger update...');
121
+ this.setState({ value: number.toString() }, () => {
122
+ this.props.onChange(event, number);
123
+ });
124
+ }
125
+ };
126
+
127
+ onChange(event) {
128
+ const value = event.target.value;
129
+ this.setState({ value });
130
+ }
131
+
132
+ errorMessage = () => {
133
+ const { min, max } = this.props;
134
+ if (min && max) {
135
+ return `The value must be between ${min} and ${max}`;
136
+ }
137
+ if (min) {
138
+ return `The value must be greater than ${min}`;
139
+ }
140
+ if (max) {
141
+ return `The value must be less than ${max}`;
142
+ }
143
+ };
144
+
145
+ /**
146
+ * if the input has to show error when outside range,
147
+ * and the entered value is not matching the requirements
148
+ * we display error message
149
+ */
150
+
151
+ getError = () => {
152
+ const { value } = this.state;
153
+ const float = parseFloat(value);
154
+ const clamped = this.clamp(float);
155
+ if (clamped !== float) {
156
+ return this.errorMessage();
157
+ }
158
+ };
159
+
160
+ render() {
161
+ const {
162
+ className,
163
+ label,
164
+ disabled,
165
+ suffix,
166
+ min,
167
+ max,
168
+ inputClassName,
169
+ disableUnderline,
170
+ showErrorWhenOutsideRange,
171
+ variant,
172
+ } = this.props;
173
+
174
+ const error = showErrorWhenOutsideRange && this.getError();
175
+ return (
176
+ <StyledTextField
177
+ variant={disableUnderline ? 'filled' : variant || 'standard'}
178
+ inputRef={(ref) => {
179
+ this.inputRef = ref;
180
+ }}
181
+ disabled={disabled}
182
+ label={label}
183
+ InputLabelProps={{
184
+ shrink: true,
185
+ }}
186
+ value={this.state.value}
187
+ error={!!error}
188
+ helperText={error}
189
+ onChange={this.onChange}
190
+ onBlur={this.onBlur}
191
+ onKeyDown={(e) => {
192
+ // once the Enter key is pressed, we force input blur
193
+ if (e.key === 'Enter' && this.inputRef) {
194
+ this.inputRef.blur();
195
+ }
196
+ }}
197
+ type="number"
198
+ className={className}
199
+ slotProps={{
200
+ input: {
201
+ endAdornment: suffix && <InputAdornment position="end">{suffix}</InputAdornment>,
202
+ className: inputClassName,
203
+ inputProps: {
204
+ min,
205
+ max,
206
+ },
207
+ },
208
+ }}
209
+ margin="normal"
210
+ />
211
+ );
212
+ }
213
+ }
214
+
215
+ export default NumberTextField;
@@ -0,0 +1,30 @@
1
+ import FormControlLabel from '@mui/material/FormControlLabel';
2
+ import Radio from '@mui/material/Radio';
3
+ import React from 'react';
4
+ import PropTypes from 'prop-types';
5
+ import { styled } from '@mui/material/styles';
6
+ import { color } from '@pie-lib/render-ui';
7
+
8
+ const StyledFormControlLabel = styled(FormControlLabel)(() => ({
9
+ '& .MuiFormControlLabel-label': {
10
+ left: '-5px',
11
+ position: 'relative',
12
+ },
13
+ }));
14
+
15
+ const StyledRadio = styled(Radio)(() => ({
16
+ color: `${color.tertiary()} !important`,
17
+ }));
18
+
19
+ const RadioWithLabel = ({ label, value, checked, onChange }) => (
20
+ <StyledFormControlLabel value={value} control={<StyledRadio checked={checked} onChange={onChange} />} label={label} />
21
+ );
22
+
23
+ RadioWithLabel.propTypes = {
24
+ label: PropTypes.string,
25
+ value: PropTypes.string,
26
+ checked: PropTypes.bool,
27
+ onChange: PropTypes.func,
28
+ };
29
+
30
+ export default RadioWithLabel;
@@ -0,0 +1,53 @@
1
+ import React from 'react';
2
+ import PropTypes from 'prop-types';
3
+ import Typography from '@mui/material/Typography';
4
+ import { styled } from '@mui/material/styles';
5
+ import NumberTextField from '../number-text-field';
6
+
7
+ const StyledDisplaySize = styled('div')(({ theme }) => ({
8
+ display: 'flex',
9
+ paddingTop: theme.spacing(1),
10
+ }));
11
+
12
+ const DisplaySize = ({ size, label, onChange }) => {
13
+ const updateSize = (key, v) => {
14
+ onChange({ ...size, [key]: v });
15
+ };
16
+
17
+ return (
18
+ <div>
19
+ <Typography>{label}</Typography>
20
+ <StyledDisplaySize>
21
+ <NumberTextField
22
+ label="Width"
23
+ type="number"
24
+ variant="outlined"
25
+ value={size.width}
26
+ min={150}
27
+ max={1000}
28
+ onChange={(e, v) => updateSize('width', v)}
29
+ />
30
+ <NumberTextField
31
+ label="Height"
32
+ type="number"
33
+ variant="outlined"
34
+ min={150}
35
+ max={1000}
36
+ value={size.height}
37
+ onChange={(e, v) => updateSize('height', v)}
38
+ />
39
+ </StyledDisplaySize>
40
+ </div>
41
+ );
42
+ };
43
+
44
+ DisplaySize.propTypes = {
45
+ size: PropTypes.shape({
46
+ width: PropTypes.number.isRequired,
47
+ height: PropTypes.number.isRequired,
48
+ }).isRequired,
49
+ label: PropTypes.string.isRequired,
50
+ onChange: PropTypes.func,
51
+ };
52
+
53
+ export default DisplaySize;
@@ -0,0 +1,83 @@
1
+ import Panel from './panel';
2
+
3
+ export { Panel };
4
+
5
+ export const textField = (label, isConfigProperty = true) => ({
6
+ label,
7
+ type: 'textField',
8
+ isConfigProperty,
9
+ });
10
+
11
+ export const toggle = (label, isConfigProperty = false, disabled = false) => ({
12
+ type: 'toggle',
13
+ label,
14
+ isConfigProperty,
15
+ disabled,
16
+ });
17
+
18
+ const toChoice = (opt) => {
19
+ if (typeof opt === 'string') {
20
+ return { label: opt, value: opt };
21
+ } else {
22
+ return opt;
23
+ }
24
+ };
25
+
26
+ export const radio = function () {
27
+ const args = Array.prototype.slice.call(arguments);
28
+ const [label, choices, isConfigProperty = false] = args;
29
+
30
+ return {
31
+ type: 'radio',
32
+ label,
33
+ choices: choices && choices.map((o) => toChoice(o)),
34
+ isConfigProperty,
35
+ };
36
+ };
37
+
38
+ export const dropdown = (label, choices, isConfigProperty = false) => {
39
+ return {
40
+ type: 'dropdown',
41
+ label,
42
+ choices,
43
+ isConfigProperty,
44
+ };
45
+ };
46
+
47
+ export const numberField = (label, options, isConfigProperty = false) => ({
48
+ ...options,
49
+ label,
50
+ type: 'numberField',
51
+ isConfigProperty,
52
+ });
53
+
54
+ export const numberFields = (label, fields, isConfigProperty = false) => {
55
+ Object.keys(fields).map((key) => {
56
+ fields[key] = numberField(fields[key].label, fields[key], isConfigProperty);
57
+ });
58
+
59
+ return {
60
+ type: 'numberFields',
61
+ label,
62
+ fields,
63
+ };
64
+ };
65
+
66
+ export const checkbox = (label, settings, isConfigProperty = false) => ({
67
+ ...settings,
68
+ label,
69
+ type: 'checkbox',
70
+ isConfigProperty,
71
+ });
72
+
73
+ export const checkboxes = (label, choices, isConfigProperty = false) => {
74
+ Object.keys(choices).map((key) => {
75
+ choices[key] = checkbox(choices[key].label, choices[key], isConfigProperty);
76
+ });
77
+
78
+ return {
79
+ type: 'checkboxes',
80
+ label,
81
+ choices,
82
+ };
83
+ };