@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
@@ -0,0 +1,298 @@
1
+ /**
2
+ * Copyright 2018-2023 Denis Haev (bluefox) <dogafox@gmail.com>
3
+ *
4
+ * MIT License
5
+ *
6
+ * */
7
+ // please do not delete React, as without it other projects could not be compiled: ReferenceError: React is not defined
8
+ import React, { Component } from 'react';
9
+
10
+ import {
11
+ Button,
12
+ DialogTitle,
13
+ DialogContent,
14
+ DialogActions,
15
+ Dialog,
16
+ } from '@mui/material';
17
+
18
+ import {
19
+ Cancel as IconCancel,
20
+ Check as IconOk,
21
+ } from '@mui/icons-material';
22
+
23
+ import type Connection from '../Connection';
24
+
25
+ import I18n from '../i18n';
26
+ import ObjectBrowser, { ObjectBrowserFilter } from '../Components/ObjectBrowser';
27
+ import { ObjectBrowserColumn, ObjectBrowserCustomFilter, ObjectBrowserType } from '../Components/types';
28
+ import { IobTheme } from '../types';
29
+
30
+ export interface SelectIDFilters {
31
+ id?: string;
32
+ name?: string;
33
+ room?: string;
34
+ func?: string;
35
+ role?: string;
36
+ type?: string;
37
+ custom?: string;
38
+ }
39
+
40
+ interface DialogSelectIDProps {
41
+ /** The internal name of the dialog; default: "default". Used to store settings in local storage */
42
+ dialogName?: string;
43
+ /** The dialog title; default: Please select object ID... (translated) */
44
+ title?: string;
45
+ /** Set to true to allow the selection of multiple IDs. */
46
+ multiSelect?: boolean;
47
+ /** Show folders before any leaves. */
48
+ foldersFirst?: boolean;
49
+ /** Path prefix for images (default: '.') */
50
+ imagePrefix?: string;
51
+ /** @deprecated: same as imagePrefix */
52
+ prefix?: string;
53
+ /** Show the expert button */
54
+ showExpertButton?: boolean;
55
+ /** Force expert mode */
56
+ expertMode?: boolean;
57
+ /** optional ['name', 'type', 'role', 'room', 'func', 'val', 'buttons'] */
58
+ columns?: ObjectBrowserColumn[];
59
+ /** Object types to show; default: 'state' only */
60
+ types?: ObjectBrowserType | ObjectBrowserType[];
61
+ /** The language. */
62
+ lang?: ioBroker.Languages;
63
+ /** The socket connection. */
64
+ socket: Connection;
65
+ /** Can't objects be edited? (default: true) */
66
+ notEditable?: boolean;
67
+ /** Theme name. */
68
+ themeName?: string;
69
+ /** Theme type: dark or light */
70
+ themeType?: string;
71
+ /** The theme object */
72
+ theme: IobTheme;
73
+ /** The date format for the date columns */
74
+ dateFormat?: string;
75
+ /** Is use comma or point for displaying of float numbers */
76
+ isFloatComma?: boolean;
77
+ /** Custom filter. */
78
+ customFilter?: ObjectBrowserCustomFilter;
79
+ /** The selected IDs. */
80
+ selected?: string | string[];
81
+ /** The ok button text; default: OK (translated) */
82
+ ok?: string;
83
+ /** The cancel button text; default: Cancel (translated) */
84
+ cancel?: string;
85
+ /** Close handler that is always called when the dialog is closed. */
86
+ onClose: () => void;
87
+ /** Handler that is called when the user presses OK. */
88
+ onOk: (selected: string | string[] | undefined, name: string) => void;
89
+ /** Function to filter out all unnecessary objects. Can be string or function.
90
+ It cannot be used together with "types".
91
+ Example for function: `obj => obj.common?.type === 'boolean'` to show only boolean states
92
+ In case of string, it must look like `obj.common && obj.common.type === 'boolean'` */
93
+ filterFunc?: string | ((obj: ioBroker.Object) => boolean);
94
+ /** predefined filter fields, like {"id":"","name":"","room":"","func":"","role":"level","type":"","custom":""} */
95
+ filters?: SelectIDFilters;
96
+ /** Show elements only of this root ID */
97
+ root?: string;
98
+ }
99
+
100
+ interface DialogSelectIDState {
101
+ selected: string[];
102
+ name: string;
103
+ }
104
+
105
+ class DialogSelectID extends Component<DialogSelectIDProps, DialogSelectIDState> {
106
+ private readonly dialogName: string;
107
+
108
+ private filters: ObjectBrowserFilter;
109
+
110
+ private readonly filterFunc?: (obj: ioBroker.Object) => boolean;
111
+
112
+ constructor(props: DialogSelectIDProps) {
113
+ super(props);
114
+ this.dialogName = this.props.dialogName || 'default';
115
+ this.dialogName = `SelectID.${this.dialogName}`;
116
+
117
+ const filters: string = ((window as any)._localStorage || window.localStorage).getItem(this.dialogName) || '{}';
118
+
119
+ try {
120
+ this.filters = JSON.parse(filters);
121
+ } catch (e) {
122
+ this.filters = {};
123
+ }
124
+
125
+ if (props.filters) {
126
+ this.filters = { ...this.filters, ...(props.filters || {}) };
127
+ }
128
+
129
+ let selected = this.props.selected || [];
130
+ if (!Array.isArray(selected)) {
131
+ selected = [selected];
132
+ }
133
+ selected = selected.filter(id => id);
134
+
135
+ if (props.filterFunc) {
136
+ if (typeof props.filterFunc === 'string') {
137
+ try {
138
+ // eslint-disable-next-line no-new-func
139
+ this.filterFunc = new Function('obj', props.filterFunc) as (obj: ioBroker.Object) => boolean;
140
+ } catch (e) {
141
+ console.error(`Cannot parse filter function: "obj => ${props.filterFunc}"`);
142
+ this.filterFunc = undefined;
143
+ }
144
+ } else {
145
+ this.filterFunc = props.filterFunc;
146
+ }
147
+ }
148
+
149
+ this.state = {
150
+ selected,
151
+ name: '',
152
+ };
153
+ }
154
+
155
+ handleCancel() {
156
+ this.props.onClose();
157
+ }
158
+
159
+ handleOk() {
160
+ this.props.onOk(this.props.multiSelect ? this.state.selected : this.state.selected[0] || '', this.state.name);
161
+ this.props.onClose();
162
+ }
163
+
164
+ render() {
165
+ let title;
166
+ if (this.state.name || this.state.selected.length) {
167
+ if (this.state.selected.length === 1) {
168
+ title = [
169
+ <span key="selected">
170
+ {I18n.t('ra_Selected')}
171
+ &nbsp;
172
+ </span>,
173
+ <span key="id" style={{ fontWeight: 'bold', fontStyle: 'italic' }}>
174
+ {(this.state.name || this.state.selected) + (this.state.name ? ` [${this.state.selected}]` : '')}
175
+ </span>,
176
+ ];
177
+ } else {
178
+ title = [
179
+ <span key="selected">
180
+ {I18n.t('ra_Selected')}
181
+ &nbsp;
182
+ </span>,
183
+ <span key="id" style={{ fontWeight: 'bold', fontStyle: 'italic' }}>
184
+ {I18n.t('%s items', this.state.selected.length.toString())}
185
+ </span>,
186
+ ];
187
+ }
188
+ } else {
189
+ title = this.props.title || I18n.t('ra_Please select object ID...');
190
+ }
191
+
192
+ return <Dialog
193
+ onClose={() => {}}
194
+ maxWidth={false}
195
+ sx={{
196
+ '& .MuiDialog-paper': {
197
+ height: '95%',
198
+ p: '4px',
199
+ width: '100%',
200
+ maxWidth: '100%',
201
+ maxHeight: 'calc(100% - 16px)',
202
+ },
203
+ }}
204
+ fullWidth
205
+ open={!0}
206
+ aria-labelledby="ar_dialog_selectid_title"
207
+ >
208
+ <DialogTitle
209
+ id="ar_dialog_selectid_title"
210
+ style={{
211
+ whiteSpace: 'nowrap',
212
+ width: 'calc(100% - 72px)',
213
+ overflow: 'hidden',
214
+ display: 'inline-block',
215
+ textOverflow: 'ellipsis',
216
+ }}
217
+ >
218
+ {title}
219
+ </DialogTitle>
220
+ <DialogContent
221
+ style={{
222
+ height: '100%',
223
+ overflow: 'hidden',
224
+ padding: '8px 4px',
225
+ }}
226
+ >
227
+ <ObjectBrowser
228
+ foldersFirst={this.props.foldersFirst}
229
+ imagePrefix={this.props.imagePrefix || this.props.prefix} // prefix is for back compatibility
230
+ dateFormat={this.props.dateFormat}
231
+ defaultFilters={this.filters}
232
+ dialogName={this.dialogName}
233
+ isFloatComma={this.props.isFloatComma}
234
+ showExpertButton={this.props.showExpertButton !== undefined ? this.props.showExpertButton : true}
235
+ expertMode={this.props.expertMode}
236
+ // style={{ width: '100%', height: '100%' }}
237
+ columns={this.props.columns || ['name', 'type', 'role', 'room', 'func', 'val']}
238
+ types={this.props.types ? (Array.isArray(this.props.types) ? this.props.types : [this.props.types]) : ['state']}
239
+ root={this.props.root}
240
+ t={I18n.t}
241
+ lang={this.props.lang || I18n.getLanguage()}
242
+ socket={this.props.socket}
243
+ selected={this.state.selected}
244
+ multiSelect={this.props.multiSelect}
245
+ notEditable={this.props.notEditable === undefined ? true : this.props.notEditable}
246
+ // name={this.state.name}
247
+ themeName={this.props.themeName}
248
+ themeType={this.props.themeType}
249
+ theme={this.props.theme}
250
+ customFilter={this.props.customFilter}
251
+ onFilterChanged={(filterConfig: ObjectBrowserFilter) => {
252
+ this.filters = filterConfig;
253
+ ((window as any)._localStorage || window.localStorage).setItem(this.dialogName, JSON.stringify(filterConfig));
254
+ }}
255
+ onSelect={(_selected: string | string[], name: string, isDouble?: boolean) => {
256
+ let selected: string[];
257
+ if (!Array.isArray(_selected)) {
258
+ selected = [_selected];
259
+ } else {
260
+ selected = _selected;
261
+ }
262
+ if (JSON.stringify(selected) !== JSON.stringify(this.state.selected)) {
263
+ this.setState({ selected, name }, () => isDouble && this.handleOk());
264
+ } else if (isDouble) {
265
+ this.handleOk();
266
+ }
267
+ }}
268
+ filterFunc={this.filterFunc}
269
+ title=""
270
+ classes={{ }}
271
+ />
272
+ </DialogContent>
273
+ <DialogActions>
274
+ <Button
275
+ id={`ar_dialog_selectid_ok_${this.props.dialogName || ''}`}
276
+ variant="contained"
277
+ onClick={() => this.handleOk()}
278
+ startIcon={<IconOk />}
279
+ disabled={!this.state.selected.length}
280
+ color="primary"
281
+ >
282
+ {this.props.ok || I18n.t('ra_Ok')}
283
+ </Button>
284
+ <Button
285
+ id={`ar_dialog_selectid_cancel_${this.props.dialogName || ''}`}
286
+ color="grey"
287
+ variant="contained"
288
+ onClick={() => this.handleCancel()}
289
+ startIcon={<IconCancel />}
290
+ >
291
+ {this.props.cancel || I18n.t('ra_Cancel')}
292
+ </Button>
293
+ </DialogActions>
294
+ </Dialog>;
295
+ }
296
+ }
297
+
298
+ export default DialogSelectID;
@@ -0,0 +1,100 @@
1
+ import React from 'react';
2
+ import {
3
+ Button,
4
+ DialogTitle,
5
+ DialogContent,
6
+ DialogActions,
7
+ Dialog,
8
+ } from '@mui/material';
9
+
10
+ import {
11
+ Check as IconOk,
12
+ Cancel as IconCancel,
13
+ } from '@mui/icons-material';
14
+
15
+ import SimpleCron from '../Components/SimpleCron';
16
+
17
+ import I18n from '../i18n';
18
+
19
+ // Generates cron expression
20
+
21
+ const styles: Record<string, React.CSSProperties> = {
22
+ dialogPaper: {
23
+ height: 'calc(100% - 96px)',
24
+ },
25
+ };
26
+
27
+ interface DialogCronProps {
28
+ onClose: () => void;
29
+ onOk: (cron: string) => void;
30
+ title?: string;
31
+ cron?: string;
32
+ cancel?: string;
33
+ ok?: string;
34
+ }
35
+
36
+ interface DialogCronState {
37
+ cron: string;
38
+ }
39
+
40
+ class DialogSimpleCron extends React.Component<DialogCronProps, DialogCronState> {
41
+ constructor(props: DialogCronProps) {
42
+ super(props);
43
+
44
+ let cron;
45
+ if (this.props.cron && typeof this.props.cron === 'string' && this.props.cron.replace(/^["']/, '')[0] !== '{') {
46
+ cron = this.props.cron.replace(/['"]/g, '').trim();
47
+ } else {
48
+ cron = this.props.cron || '{}';
49
+ if (typeof cron === 'string') {
50
+ cron = cron.replace(/^["']/, '').replace(/["']\n?$/, '');
51
+ }
52
+ }
53
+
54
+ this.state = {
55
+ cron,
56
+ };
57
+ }
58
+
59
+ handleCancel() {
60
+ this.props.onClose();
61
+ }
62
+
63
+ handleOk() {
64
+ this.props.onOk(this.state.cron);
65
+ this.props.onClose();
66
+ }
67
+
68
+ render() {
69
+ return <Dialog
70
+ onClose={() => {}}
71
+ maxWidth="md"
72
+ fullWidth
73
+ sx={{ '& .MuiDialog-paper': styles.dialogPaper }}
74
+ open={!0}
75
+ aria-labelledby="cron-dialog-title"
76
+ >
77
+ <DialogTitle id="cron-dialog-title">{this.props.title || I18n.t('ra_Define CRON...')}</DialogTitle>
78
+ <DialogContent style={{ height: '100%', overflow: 'hidden' }}>
79
+ <SimpleCron
80
+ cronExpression={this.state.cron}
81
+ onChange={cron => this.setState({ cron })}
82
+ language={I18n.getLanguage()}
83
+ />
84
+ </DialogContent>
85
+ <DialogActions>
86
+ <Button variant="contained" onClick={() => this.handleOk()} color="primary" startIcon={<IconOk />}>{this.props.ok || I18n.t('ra_Ok')}</Button>
87
+ <Button
88
+ variant="contained"
89
+ onClick={() => this.handleCancel()}
90
+ color="grey"
91
+ startIcon={<IconCancel />}
92
+ >
93
+ {this.props.cancel || I18n.t('ra_Cancel')}
94
+ </Button>
95
+ </DialogActions>
96
+ </Dialog>;
97
+ }
98
+ }
99
+
100
+ export default DialogSimpleCron;
@@ -0,0 +1,107 @@
1
+ import React from 'react';
2
+
3
+ import {
4
+ Button,
5
+ TextField,
6
+ Dialog,
7
+ DialogActions,
8
+ DialogContent,
9
+ DialogContentText,
10
+ DialogTitle,
11
+ } from '@mui/material';
12
+
13
+ import { Close as IconClose, Check as IconCheck } from '@mui/icons-material';
14
+
15
+ import I18n from '../i18n';
16
+
17
+ import withWidth from '../Components/withWidth';
18
+
19
+ interface TextInputProps {
20
+ /** The dialog close callback */
21
+ onClose: (text: string | null) => void;
22
+ /** The title text */
23
+ titleText: string;
24
+ /** Prompt text (default: empty) */
25
+ promptText?: string;
26
+ /** Label text (default: empty) */
27
+ labelText?: string;
28
+ /** The text of the cancel button */
29
+ cancelText: string;
30
+ /** The text of the "apply" button */
31
+ applyText: string;
32
+ /** The verification callback. Return a non-empty string if there was an error */
33
+ verify?: (text: string) => string;
34
+ /** The text replacement callback */
35
+ rule?: (text: string) => string;
36
+ /** The type of the textbox (default: text) */
37
+ type?: 'text' | 'number' | 'password' | 'email';
38
+ /** The intial input value when opening the dialog */
39
+ value?: string;
40
+ /** @deprecated Use value. The input when opening the dialog */
41
+ input?: string;
42
+ /** If true, the dialog will be full width */
43
+ fullWidth?: boolean;
44
+ }
45
+ function TextInput(props: TextInputProps) {
46
+ const [text, setText] = React.useState<string>(props.input || props.value || '');
47
+ const [error, setError] = React.useState<string | boolean>('');
48
+ return <Dialog
49
+ open={!0}
50
+ onClose={() => props.onClose(null)}
51
+ aria-labelledby="form-dialog-title"
52
+ fullWidth={props.fullWidth !== undefined ? props.fullWidth : false}
53
+ >
54
+ <DialogTitle id="form-dialog-title">{props.titleText}</DialogTitle>
55
+ <DialogContent>
56
+ <DialogContentText>
57
+ {props.promptText}
58
+ </DialogContentText>
59
+ <TextField
60
+ variant="standard"
61
+ autoFocus
62
+ margin="dense"
63
+ error={!!error}
64
+ helperText={error === true || !error ? '' : error}
65
+ value={text}
66
+ label={props.labelText || ''}
67
+ type={props.type || 'text'}
68
+ onKeyUp={e => e.charCode === 13 && text && props.onClose(text)}
69
+ onChange={e => {
70
+ let _error: string | boolean = '';
71
+ if (props.verify) {
72
+ _error = !props.verify(e.target.value);
73
+ }
74
+
75
+ if (props.rule) {
76
+ setText(props.rule(e.target.value));
77
+ } else {
78
+ setText(e.target.value);
79
+ }
80
+ setError(_error);
81
+ }}
82
+ fullWidth
83
+ />
84
+ </DialogContent>
85
+ <DialogActions>
86
+ <Button
87
+ variant="contained"
88
+ disabled={!text || !!error}
89
+ onClick={() => props.onClose(text)}
90
+ color="primary"
91
+ startIcon={<IconCheck />}
92
+ >
93
+ {props.applyText || I18n.t('ra_Ok')}
94
+ </Button>
95
+ <Button
96
+ color="grey"
97
+ variant="contained"
98
+ onClick={() => props.onClose(null)}
99
+ startIcon={<IconClose />}
100
+ >
101
+ {props.cancelText || I18n.t('ra_Cancel')}
102
+ </Button>
103
+ </DialogActions>
104
+ </Dialog>;
105
+ }
106
+
107
+ export default withWidth()(TextInput);