@iobroker/adapter-react-v5 6.1.3 → 6.1.6

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 (74) hide show
  1. package/README.md +6 -0
  2. package/craco-module-federation.js +1 -1
  3. package/package.json +1 -1
  4. package/src/AdminConnection.tsx +3 -0
  5. package/src/Components/404.tsx +121 -0
  6. package/src/Components/ColorPicker.tsx +315 -0
  7. package/src/Components/ComplexCron.tsx +507 -0
  8. package/src/Components/CopyToClipboard.tsx +165 -0
  9. package/src/Components/CustomModal.tsx +163 -0
  10. package/src/Components/FileBrowser.tsx +2394 -0
  11. package/src/Components/FileViewer.tsx +384 -0
  12. package/src/Components/Icon.tsx +210 -0
  13. package/src/Components/IconPicker.tsx +149 -0
  14. package/src/Components/IconSelector.tsx +2202 -0
  15. package/src/Components/Image.tsx +176 -0
  16. package/src/Components/Loader.tsx +304 -0
  17. package/src/Components/Logo.tsx +166 -0
  18. package/src/Components/MDUtils.tsx +100 -0
  19. package/src/Components/ObjectBrowser.tsx +7915 -0
  20. package/src/Components/Router.tsx +90 -0
  21. package/src/Components/SaveCloseButtons.tsx +113 -0
  22. package/src/Components/Schedule.tsx +1724 -0
  23. package/src/Components/SelectWithIcon.tsx +197 -0
  24. package/src/Components/TabContainer.tsx +55 -0
  25. package/src/Components/TabContent.tsx +37 -0
  26. package/src/Components/TabHeader.tsx +19 -0
  27. package/src/Components/TableResize.tsx +259 -0
  28. package/src/Components/TextWithIcon.tsx +148 -0
  29. package/src/Components/ToggleThemeMenu.tsx +34 -0
  30. package/src/Components/TreeTable.tsx +919 -0
  31. package/src/Components/UploadImage.tsx +599 -0
  32. package/src/Components/Utils.tsx +1794 -0
  33. package/src/Components/loader.css +222 -0
  34. package/src/Components/withWidth.tsx +21 -0
  35. package/src/Connection.tsx +7 -0
  36. package/src/Dialogs/ComplexCron.tsx +129 -0
  37. package/src/Dialogs/Confirm.tsx +162 -0
  38. package/src/Dialogs/Cron.tsx +182 -0
  39. package/src/Dialogs/Error.tsx +72 -0
  40. package/src/Dialogs/Message.tsx +71 -0
  41. package/src/Dialogs/SelectFile.tsx +270 -0
  42. package/src/Dialogs/SelectID.tsx +298 -0
  43. package/src/Dialogs/SimpleCron.tsx +100 -0
  44. package/src/Dialogs/TextInput.tsx +107 -0
  45. package/src/GenericApp.tsx +976 -0
  46. package/src/LegacyConnection.tsx +3589 -0
  47. package/src/Prompt.tsx +20 -0
  48. package/src/Theme.tsx +479 -0
  49. package/src/icons/IconAdapter.tsx +20 -0
  50. package/src/icons/IconAlias.tsx +20 -0
  51. package/src/icons/IconChannel.tsx +21 -0
  52. package/src/icons/IconClearFilter.tsx +22 -0
  53. package/src/icons/IconClosed.tsx +17 -0
  54. package/src/icons/IconCopy.tsx +16 -0
  55. package/src/icons/IconDevice.tsx +27 -0
  56. package/src/icons/IconDocument.tsx +17 -0
  57. package/src/icons/IconDocumentReadOnly.tsx +18 -0
  58. package/src/icons/IconExpert.tsx +18 -0
  59. package/src/icons/IconFx.tsx +36 -0
  60. package/src/icons/IconInstance.tsx +20 -0
  61. package/src/icons/IconLogout.tsx +30 -0
  62. package/src/icons/IconNoIcon.tsx +19 -0
  63. package/src/icons/IconOpen.tsx +17 -0
  64. package/src/icons/IconProps.tsx +15 -0
  65. package/src/icons/IconState.tsx +17 -0
  66. package/src/index.css +55 -0
  67. package/assets/devices/list.json +0 -994
  68. package/assets/devices/names.txt +0 -63
  69. package/assets/devices/parseNames.d.ts +0 -0
  70. package/assets/devices/parseNames.js +0 -34
  71. package/assets/rooms/list.json +0 -946
  72. package/assets/rooms/names.txt +0 -60
  73. package/assets/rooms/parseNames.d.ts +0 -0
  74. package/assets/rooms/parseNames.js +0 -34
package/README.md CHANGED
@@ -781,6 +781,12 @@ The best practice is to replace `padding` with `p` and `margin` with `m`, so you
781
781
  -->
782
782
 
783
783
  ## Changelog
784
+ ### 6.1.6 (2024-07-23)
785
+ * (bluefox) Optimize package
786
+
787
+ ### 6.1.5 (2024-07-20)
788
+ * (bluefox) Added sources to package
789
+
784
790
  ### 6.1.3 (2024-07-20)
785
791
  * (bluefox) Better typing of legacy connection
786
792
 
@@ -29,7 +29,7 @@ module.exports = {
29
29
  }
30
30
 
31
31
  const htmlWebpackPlugin = webpackConfig.plugins.find(
32
- plugin => plugin.constructor.name === 'HtmlWebpackPlugin'
32
+ plugin => plugin.constructor.name === 'HtmlWebpackPlugin',
33
33
  );
34
34
 
35
35
  const myModule = require(moduleFederationConfigPath);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iobroker/adapter-react-v5",
3
- "version": "6.1.3",
3
+ "version": "6.1.6",
4
4
  "description": "React classes to develop admin interfaces for ioBroker with react.",
5
5
  "author": {
6
6
  "name": "Denis Haev (bluefox)",
@@ -0,0 +1,3 @@
1
+ import { AdminConnection } from '@iobroker/socket-client';
2
+
3
+ export default AdminConnection;
@@ -0,0 +1,121 @@
1
+ import React from 'react';
2
+ import { Box } from '@mui/material';
3
+
4
+ /*
5
+ Copyright 2019 Robin Selmer
6
+ https://codepen.io/robinselmer/pen/vJjbOZ
7
+ */
8
+
9
+ import I18n from '../i18n';
10
+
11
+ const styles: Record<string, any> = {
12
+ content: {
13
+ background: 'black',
14
+ position: 'absolute',
15
+ top: 0,
16
+ bottom: 0,
17
+ left: 0,
18
+ right: 0,
19
+ },
20
+ root: {
21
+ boxSizing: 'border-box',
22
+ height: '100%',
23
+ width: '100%',
24
+ backgroundColor: '#000000',
25
+ backgroundImage: 'radial-gradient(#104254 , #05181c)',
26
+ fontFamily: "'Inconsolata', Helvetica, sans-serif",
27
+ fontSize: '1.5rem',
28
+ color: 'rgba(128, 175, 255, 0.8)',
29
+ textShadow:
30
+ `0 0 1ex rgba(51, 70, 255, 1),
31
+ 0 0 2px rgba(255, 255, 255, 0.8)`,
32
+ },
33
+ overlay: {
34
+ pointerEvents: 'none',
35
+ width: '100%',
36
+ height: '100%',
37
+ background:
38
+ `repeating-linear-gradient(
39
+ 180deg,
40
+ rgba(0, 0, 0, 0) 0,
41
+ rgba(0, 0, 0, 0.3) 50%,
42
+ rgba(0, 0, 0, 0) 100%)`,
43
+ backgroundSize: 'auto 4px',
44
+ zIndex: 99,
45
+ '&::before': {
46
+ content: '""',
47
+ pointerEvents: 'none',
48
+ position: 'absolute',
49
+ display: 'block',
50
+ top: 0,
51
+ left: 0,
52
+ right: 0,
53
+ bottom: 0,
54
+ width: '100%',
55
+ height: '100%',
56
+ backgroundImage: `linear-gradient(
57
+ 0deg,
58
+ transparent 0%,
59
+ rgba(32, 50, 128, 0.2) 2%,
60
+ rgba(32, 50, 128, 0.8) 3%,
61
+ rgba(32, 50, 128, 0.2) 3%,
62
+ transparent 100%)`,
63
+ backgroundRepeat: 'no-repeat',
64
+ animation: 'scan 7.5s linear 0s infinite',
65
+ },
66
+ },
67
+
68
+ terminal: {
69
+ boxSizing: 'inherit',
70
+ position: 'absolute',
71
+ height: '100%',
72
+ width: 'calc(100% - 8rem)',
73
+ maxWidth: '100%',
74
+ padding: '4rem',
75
+ textTransform: 'uppercase',
76
+ },
77
+ output: {
78
+ color: 'rgba(128, 175, 255, 0.8)',
79
+ textShadow: `
80
+ 0 0 1px rgba(51, 70, 255, 0.4),
81
+ 0 0 2px rgba(255, 255, 255, 0.8)`,
82
+ '&::before': {
83
+ content: '"> "',
84
+ },
85
+ },
86
+ errorCode: {
87
+ color: 'white',
88
+ },
89
+ };
90
+
91
+ function Page404() {
92
+ return <div
93
+ style={styles.content}
94
+ >
95
+ <div
96
+ style={styles.root}
97
+ >
98
+ <Box
99
+ component="div"
100
+ sx={styles.overlay}
101
+ >
102
+ <div
103
+ style={styles.terminal}
104
+ >
105
+ <h1>
106
+ {I18n.t('ra_Error')}
107
+ <span style={styles.errorCode}>404</span>
108
+ </h1>
109
+ <Box component="p" sx={styles.output}>
110
+ {I18n.t('ra_The page you are looking for was not found')}
111
+ </Box>
112
+ <Box component="p" sx={styles.output}>
113
+ {I18n.t('ra_Good luck')}
114
+ </Box>
115
+ </div>
116
+ </Box>
117
+ </div>
118
+ </div>;
119
+ }
120
+
121
+ export default Page404;
@@ -0,0 +1,315 @@
1
+ /**
2
+ * Copyright 2018-2024 Denis Haev (bluefox) <dogafox@gmail.com>
3
+ *
4
+ * Licensed under the Creative Commons Attribution-NonCommercial License, Version 4.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * https://creativecommons.org/licenses/by-nc/4.0/legalcode.txt
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+ import React, { Component } from 'react';
17
+ import { ChromePicker, type RGBColor } from 'react-color';
18
+
19
+ import {
20
+ TextField, Menu,
21
+ IconButton, Button,
22
+ Box,
23
+ } from '@mui/material';
24
+
25
+ import {
26
+ Delete as IconDelete,
27
+ Close as IconClose,
28
+ } from '@mui/icons-material';
29
+
30
+ import I18n from '../i18n';
31
+
32
+ import { IobTheme } from '../types';
33
+
34
+ const styles: Record<string, any> = {
35
+ color: {
36
+ width: 36,
37
+ height: 14,
38
+ borderRadius: 2,
39
+ },
40
+ delButton: {
41
+ marginTop: 16,
42
+ },
43
+ swatch: {
44
+ mt: '16px',
45
+ p: '5px',
46
+ backgroundColor: 'background.paper',
47
+ borderRadius: '1px',
48
+ boxShadow: '0 0 0 1px rgba(0,0,0,.1)',
49
+ display: 'inline-block',
50
+ cursor: 'pointer',
51
+ verticalAlign: 'middle',
52
+ },
53
+ swatchDisabled: {
54
+ opacity: 0.5,
55
+ cursor: 'default',
56
+ },
57
+ popover: {
58
+ '& .MuiPaper-root': {
59
+ textAlign: 'right',
60
+ backgroundColor: '#00000000',
61
+ boxShadow: 'none',
62
+ },
63
+ },
64
+ popoverList: {
65
+ padding: 0,
66
+ },
67
+ closeButton: (theme: IobTheme) => ({
68
+ backgroundColor: `${theme.palette.background.paper} !important`,
69
+ borderRadius: '0 0 25% 25%',
70
+ '&:hover': {
71
+ backgroundColor: `${theme.palette.secondary.main} !important`,
72
+ },
73
+ }),
74
+ cover: {
75
+ position: 'fixed',
76
+ top: 0,
77
+ right: 0,
78
+ bottom: 0,
79
+ left: 0,
80
+ },
81
+ textDense: {
82
+ mt: 0,
83
+ mb: 0,
84
+ },
85
+ picker: (theme: IobTheme) => ({
86
+ background: `${theme.palette.background.paper} !important`,
87
+ }),
88
+ iconButton: {
89
+ width: 16,
90
+ height: 16,
91
+ },
92
+ button: {
93
+ width: 32,
94
+ height: 32,
95
+ minWidth: 32,
96
+ minHeight: 32,
97
+ },
98
+ };
99
+
100
+ interface ColorPickerProps {
101
+ /** Set to true to disable the color picker. */
102
+ disabled?: boolean;
103
+ /** The currently selected color. */
104
+ value?: string;
105
+ /** @deprecated The currently selected color use value */
106
+ color?: string;
107
+ /** The color change callback. */
108
+ onChange: (rgba: string) => void;
109
+ /** Label of the color picker. */
110
+ label?: string;
111
+ /** @deprecated TLabel of the color picker use label */
112
+ name?: string;
113
+ /** Additional styling for this component. */
114
+ style?: React.CSSProperties;
115
+ /** The CSS class name. */
116
+ className?: string;
117
+ customPalette?: string[];
118
+ noInputField?: boolean;
119
+ barWidth?: number;
120
+ sx?: Record<string, any>;
121
+ theme?: IobTheme;
122
+ }
123
+
124
+ interface ColorPickerState {
125
+ displayColorPicker: boolean;
126
+ color: string | RGBColor;
127
+ anchorEl: HTMLDivElement | null;
128
+ }
129
+
130
+ class ColorPicker extends Component<ColorPickerProps, ColorPickerState> {
131
+ constructor(props: ColorPickerProps) {
132
+ super(props);
133
+ this.state = {
134
+ displayColorPicker: false,
135
+ color: this.props.value || this.props.color || '',
136
+ anchorEl: null,
137
+ };
138
+ }
139
+
140
+ private handleClick = (e: React.MouseEvent<HTMLDivElement>) => {
141
+ this.setState({
142
+ displayColorPicker: !this.state.displayColorPicker,
143
+ anchorEl: this.state.displayColorPicker ? null : e.currentTarget,
144
+ });
145
+ };
146
+
147
+ private handleClose = () => {
148
+ this.setState({ displayColorPicker: false, anchorEl: null });
149
+ };
150
+
151
+ /**
152
+ * Convert the given color to hex ('#rrggbb') or rgba ('rgba(r,g,b,a)') format.
153
+ * @returns the hex or rgba representation of the given color.
154
+ */
155
+ static getColor(
156
+ color: string | { rgb: RGBColor } | RGBColor,
157
+ /** The returning string should be in hex format */
158
+ isHex?: boolean,
159
+ ): string {
160
+ if (color && typeof color === 'object') {
161
+ const oColor = color as { rgb: RGBColor };
162
+ if (oColor.rgb) {
163
+ if (isHex) {
164
+ return `#${oColor.rgb.r.toString(16).padStart(2, '0')}${oColor.rgb.g.toString(16).padStart(2, '0')}${oColor.rgb.b.toString(16).padStart(2, '0')}`;
165
+ }
166
+ return `rgba(${oColor.rgb.r},${oColor.rgb.g},${oColor.rgb.b},${oColor.rgb.a})`;
167
+ }
168
+ const rColor = color as RGBColor;
169
+ if (isHex) {
170
+ return `#${rColor.r.toString(16).padStart(2, '0')}${rColor.g.toString(16).padStart(2, '0')}${rColor.b.toString(16).padStart(2, '0')}`;
171
+ }
172
+ return `rgba(${rColor.r},${rColor.g},${rColor.b},${rColor.a})`;
173
+ }
174
+ return isHex ? ColorPicker.rgb2hex(color as string || '') : color as string || '';
175
+ }
176
+
177
+ /**
178
+ * Convert rgb() or rgba() format to hex format #rrggbb.
179
+ */
180
+ static rgb2hex(rgb: string): string {
181
+ const m = rgb.match(/^rgba?[\s+]?\([\s+]?(\d+)[\s+]?,[\s+]?(\d+)[\s+]?,[\s+]?(\d+)[\s+]?/i);
182
+
183
+ if (m) {
184
+ const r = parseInt(m[1], 10).toString(16).padStart(2, '0');
185
+ const g = parseInt(m[2], 10).toString(16).padStart(2, '0');
186
+ const b = parseInt(m[3], 10).toString(16).padStart(2, '0');
187
+
188
+ return m?.length === 4 ? `#${r}${g}${b}` : rgb;
189
+ }
190
+ return rgb;
191
+ }
192
+
193
+ private handleChange = (color: string | RGBColor) => {
194
+ this.setState({ color }, () =>
195
+ this.props.onChange && this.props.onChange(ColorPicker.getColor(color)));
196
+ };
197
+
198
+ /**
199
+ * IF the props are updated from outside, they should override the state
200
+ */
201
+ componentDidUpdate(_prevProps: ColorPickerProps, prevState: ColorPickerState) {
202
+ const color = ColorPicker.getColor(this.props.color || this.props.value || '');
203
+
204
+ if (color !== prevState.color) {
205
+ this.setState({ color });
206
+ }
207
+ }
208
+
209
+ renderCustomPalette() {
210
+ if (!this.props.customPalette) {
211
+ return null;
212
+ }
213
+ return <div style={{ width: '100%', display: 'flex', flexWrap: 'wrap' }}>
214
+ {this.props.customPalette.map(color => <Button
215
+ style={styles.button}
216
+ key={color}
217
+ onClick={() => {
218
+ this.handleChange(color);
219
+ setTimeout(() => this.handleClose(), 300);
220
+ }}
221
+ >
222
+ <div
223
+ style={{ ...styles.iconButton, background: color }}
224
+ />
225
+ </Button>)}
226
+ </div>;
227
+ }
228
+
229
+ render() {
230
+ const style = { ...(this.props.style || {}) };
231
+ style.position = 'relative';
232
+ const { color } = this.state;
233
+
234
+ return <Box
235
+ component="div"
236
+ style={style}
237
+ sx={this.props.sx || undefined}
238
+ className={this.props.className || ''}
239
+ >
240
+ {this.props.noInputField ? null : <TextField
241
+ disabled={this.props.disabled}
242
+ variant="standard"
243
+ id="ar_color_picker_name"
244
+ label={this.props.label || this.props.name}
245
+ value={color || ''}
246
+ margin="dense"
247
+ sx={{
248
+ '&.MuiFormControl-root': styles.textDense,
249
+ width: color ? 'calc(100% - 80px)' : 'calc(100% - 56px)',
250
+ mr: color ? undefined : 1,
251
+ }}
252
+ onChange={e => this.handleChange(e.target.value)}
253
+ />}
254
+ {!this.props.noInputField && color ? <IconButton
255
+ disabled={this.props.disabled}
256
+ onClick={() => this.handleChange('')}
257
+ size="small"
258
+ style={{ ...(this.props.label || this.props.name ? styles.delButton : undefined), ...(color ? undefined : { opacity: 0, cursor: 'default' }) }}
259
+ >
260
+ <IconDelete />
261
+ </IconButton> : null}
262
+ <Box
263
+ component="div"
264
+ onClick={e => !this.props.disabled && this.handleClick(e)}
265
+ title={I18n.t('ra_Select color')}
266
+ sx={{
267
+ ...styles.swatch,
268
+ ...(this.props.disabled ? styles.swatchDisabled : undefined),
269
+ background: color ? undefined : 'transparent',
270
+ border: color ? undefined : '1px dashed #ccc',
271
+ boxSizing: 'border-box',
272
+ marginTop: this.props.noInputField || !(this.props.label || this.props.name) ? 0 : undefined,
273
+ }}
274
+ >
275
+ <div
276
+ style={{
277
+ ...styles.color,
278
+ background: ColorPicker.getColor(color),
279
+ width: this.props.noInputField ? (this.props.barWidth || 16) : this.props.barWidth || 36,
280
+ }}
281
+ />
282
+ </Box>
283
+ {this.state.displayColorPicker && !this.props.disabled ? <Menu
284
+ sx={{
285
+ ...styles.popover,
286
+ '&. MuiMenu-list': styles.popoverList,
287
+ }}
288
+ anchorEl={this.state.anchorEl}
289
+ open={!0}
290
+ onClose={() => this.handleClose()}
291
+ >
292
+ <ChromePicker
293
+ color={this.state.color || undefined}
294
+ onChangeComplete={(_color: { rgb: RGBColor }) => this.handleChange(_color.rgb)}
295
+ styles={{
296
+ default: {
297
+ picker: {
298
+ backgroundColor: this.props.theme?.palette.background.paper || '#888',
299
+ },
300
+ },
301
+ }}
302
+ />
303
+ {color && this.props.noInputField ? <IconButton sx={styles.closeButton} onClick={() => this.handleChange('')}>
304
+ <IconDelete />
305
+ </IconButton> : null}
306
+ <IconButton sx={styles.closeButton} onClick={() => this.handleClose()}>
307
+ <IconClose />
308
+ </IconButton>
309
+ {this.renderCustomPalette()}
310
+ </Menu> : null}
311
+ </Box>;
312
+ }
313
+ }
314
+
315
+ export default ColorPicker;