@iobroker/adapter-react-v5 4.7.3 → 4.7.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -24,11 +24,11 @@ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbol
24
24
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2["default"])(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
25
25
  function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2["default"])(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2["default"])(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2["default"])(this, result); }; }
26
26
  function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } } /**
27
- * Copyright 2022-2023, Denis Haev <dogafox@gmail.com>
28
- *
29
- * MIT License
30
- *
31
- **/
27
+ * Copyright 2022-2023, Denis Haev <dogafox@gmail.com>
28
+ *
29
+ * MIT License
30
+ *
31
+ **/
32
32
  var styles = function styles() {
33
33
  return {
34
34
  table: {
@@ -26,11 +26,11 @@ var _Close = _interopRequireDefault(require("@mui/icons-material/Close"));
26
26
  var _i18n = _interopRequireDefault(require("../i18n"));
27
27
  function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2["default"])(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2["default"])(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2["default"])(this, result); }; }
28
28
  function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } } /**
29
- * Copyright 2019-2023 Denis Haev (bluefox) <dogafox@gmail.com>
30
- *
31
- * MIT License
32
- *
33
- **/ // please do not delete React, as without it other projects could not be compiled: ReferenceError: React is not defined
29
+ * Copyright 2019-2023 Denis Haev (bluefox) <dogafox@gmail.com>
30
+ *
31
+ * MIT License
32
+ *
33
+ **/ // please do not delete React, as without it other projects could not be compiled: ReferenceError: React is not defined
34
34
  var styles = {
35
35
  suppress: {
36
36
  fontSize: 12
@@ -1 +1 @@
1
- {"version":3,"file":"Confirm.js","names":["_react","_interopRequireDefault","require","_propTypes","_styles","_Button","_Dialog","_DialogActions","_DialogContent","_DialogContentText","_DialogTitle","_FormControlLabel","_Checkbox","_Check","_Close","_i18n","_createSuper","Derived","hasNativeReflectConstruct","_isNativeReflectConstruct","_createSuperInternal","Super","_getPrototypeOf2","result","NewTarget","constructor","Reflect","construct","arguments","apply","_possibleConstructorReturn2","sham","Proxy","Boolean","prototype","valueOf","call","e","styles","suppress","fontSize","suppressRoot","marginTop","DialogConfirm","_React$Component","_inherits2","_super","props","_this","_classCallCheck2","dialogName","suppressQuestionMinutes","Error","parseInt","window","_localStorage","localStorage","getItem","Date","now","removeItem","state","_createClass2","key","value","handleOk","setItem","onClose","handleCancel","render","_this2","setTimeout","createElement","open","maxWidth","fullWidth","undefined","event","reason","id","title","I18n","t","icon","text","classes","label","root","control","concat","checked","onChange","setState","suppressText","variant","onClick","color","autoFocus","startIcon","ok","cancel","React","Component","propTypes","PropTypes","func","isRequired","bool","string","object","number","_export","withStyles","_default","exports"],"sources":["Confirm.js"],"sourcesContent":["/**\n * Copyright 2019-2023 Denis Haev (bluefox) <dogafox@gmail.com>\n *\n * MIT License\n *\n **/\n\n// please do not delete React, as without it other projects could not be compiled: ReferenceError: React is not defined\nimport React from 'react';\nimport PropTypes from 'prop-types';\nimport { withStyles } from '@mui/styles';\n\nimport Button from '@mui/material/Button';\nimport Dialog from '@mui/material/Dialog';\nimport DialogActions from '@mui/material/DialogActions';\nimport DialogContent from '@mui/material/DialogContent';\nimport DialogContentText from '@mui/material/DialogContentText';\nimport DialogTitle from '@mui/material/DialogTitle';\nimport FormControlLabel from '@mui/material/FormControlLabel';\nimport Checkbox from '@mui/material/Checkbox';\n\nimport IconCheck from '@mui/icons-material/Check';\nimport IconClose from '@mui/icons-material/Close';\n\nimport I18n from '../i18n';\n\nconst styles = {\n suppress: {\n fontSize: 12,\n },\n suppressRoot: {\n marginTop: 16,\n },\n};\n\n/**\n * @typedef {object} DialogConfirmProps\n * @property {string} [title] The dialog title; default: Are you sure? (translated)\n * @property {string} text The dialog text.\n * @property {string} [ok] The ok button text; default: OK (translated)\n * @property {string} [cancel] The cancel button text; default: Cancel (translated)\n * @property {string} [suppressQuestionMinutes] interval in minutes for which the confirm dialog will be suppressed if activated.\n * @property {string} [suppressText] The suppress checkbox text; default: Suppress question for next %s minutes (translated)\n * @property {string} [dialogName] Name of the dialog. Used only with suppressQuestionMinutes to store the user choice\n * @property {(ok: boolean) => void} [onClose] Close handler.\n *\n * @extends {React.Component<DialogConfirmProps>}\n */\nclass DialogConfirm extends React.Component {\n constructor(props) {\n super(props);\n\n if (!this.props.dialogName && this.props.suppressQuestionMinutes) {\n throw new Error('dialogName required if suppressQuestionMinutes used');\n }\n let suppress = false;\n\n if (this.props.suppressQuestionMinutes) {\n suppress = parseInt((window._localStorage || window.localStorage).getItem(this.props.dialogName), 10) || 0;\n\n if (!suppress) {\n suppress = false;\n } else if (Date.now() > suppress) {\n (window._localStorage || window.localStorage).removeItem(this.props.dialogName);\n suppress = false;\n }\n }\n\n this.state = {\n suppress,\n };\n }\n\n handleOk() {\n if (this.state.suppress) {\n (window._localStorage || window.localStorage).setItem(this.props.dialogName, Date.now() + this.props.suppressQuestionMinutes * 60000);\n }\n this.props.onClose && this.props.onClose(true);\n }\n\n handleCancel() {\n this.props.onClose && this.props.onClose(false);\n }\n\n render() {\n if (typeof this.state.suppress === 'number') {\n setTimeout(() => this.props.onClose && this.props.onClose(true), 100);\n return null;\n }\n\n return <Dialog\n open={!0}\n maxWidth=\"md\"\n fullWidth={this.props.fullWidth !== undefined ? this.props.fullWidth : true}\n onClose={(event, reason) => {\n if (reason !== 'backdropClick' && reason !== 'escapeKeyDown') {\n this.handleCancel();\n }\n }}\n aria-labelledby=\"ar_confirmation_dialog_title\"\n aria-describedby=\"ar_confirmation_dialog_description\"\n >\n <DialogTitle id=\"ar_confirmation_dialog_title\">{this.props.title || I18n.t('ra_Are you sure?')}</DialogTitle>\n <DialogContent>\n <DialogContentText id=\"ar_confirmation_dialog_description\">\n {this.props.icon || null}\n {this.props.text}\n {this.props.suppressQuestionMinutes ? <br /> : null}\n {this.props.suppressQuestionMinutes ? <FormControlLabel\n classes={{ label: this.props.classes.suppress, root: this.props.classes.suppressRoot }}\n control={<Checkbox id={`ar_dialog_confirm_suppress_${this.props.dialogName || ''}`} checked={!!this.state.suppress} onChange={() => this.setState({ suppress: !this.state.suppress })} />}\n label={this.props.suppressText || I18n.t('ra_Suppress question for next %s minutes', this.props.suppressQuestionMinutes)}\n /> : null}\n </DialogContentText>\n </DialogContent>\n <DialogActions>\n <Button\n id={`ar_dialog_confirm_ok_${this.props.dialogName || ''}`}\n variant=\"contained\"\n onClick={() => this.handleOk()}\n color=\"primary\"\n autoFocus\n startIcon={<IconCheck />}\n >\n {this.props.ok || I18n.t('ra_Ok')}\n </Button>\n <Button\n id={`ar_dialog_confirm_cancel_${this.props.dialogName || ''}`}\n variant=\"contained\"\n onClick={() => this.handleCancel()}\n color=\"grey\"\n startIcon={<IconClose />}\n >\n {this.props.cancel || I18n.t('ra_Cancel')}\n </Button>\n </DialogActions>\n </Dialog>;\n }\n}\n\nDialogConfirm.propTypes = {\n onClose: PropTypes.func.isRequired,\n fullWidth: PropTypes.bool,\n title: PropTypes.string,\n text: PropTypes.string,\n ok: PropTypes.string,\n cancel: PropTypes.string,\n icon: PropTypes.object,\n suppressQuestionMinutes: PropTypes.number,\n suppressText: PropTypes.string,\n dialogName: PropTypes.string,\n};\n\nconst _export = withStyles(styles)(DialogConfirm);\nexport default _export;\n"],"mappings":"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"}
1
+ {"version":3,"file":"Confirm.js","names":["_react","_interopRequireDefault","require","_propTypes","_styles","_Button","_Dialog","_DialogActions","_DialogContent","_DialogContentText","_DialogTitle","_FormControlLabel","_Checkbox","_Check","_Close","_i18n","_createSuper","Derived","hasNativeReflectConstruct","_isNativeReflectConstruct","_createSuperInternal","Super","_getPrototypeOf2","result","NewTarget","constructor","Reflect","construct","arguments","apply","_possibleConstructorReturn2","sham","Proxy","Boolean","prototype","valueOf","call","e","styles","suppress","fontSize","suppressRoot","marginTop","DialogConfirm","_React$Component","_inherits2","_super","props","_this","_classCallCheck2","dialogName","suppressQuestionMinutes","Error","parseInt","window","_localStorage","localStorage","getItem","Date","now","removeItem","state","_createClass2","key","value","handleOk","setItem","onClose","handleCancel","render","_this2","setTimeout","createElement","open","maxWidth","fullWidth","undefined","event","reason","id","title","I18n","t","icon","text","classes","label","root","control","concat","checked","onChange","setState","suppressText","variant","onClick","color","autoFocus","startIcon","ok","cancel","React","Component","propTypes","PropTypes","func","isRequired","bool","string","object","number","_export","withStyles","_default","exports"],"sources":["Confirm.js"],"sourcesContent":["/**\n * Copyright 2019-2023 Denis Haev (bluefox) <dogafox@gmail.com>\n *\n * MIT License\n *\n **/\n\n// please do not delete React, as without it other projects could not be compiled: ReferenceError: React is not defined\nimport React from 'react';\nimport PropTypes from 'prop-types';\nimport { withStyles } from '@mui/styles';\n\nimport Button from '@mui/material/Button';\nimport Dialog from '@mui/material/Dialog';\nimport DialogActions from '@mui/material/DialogActions';\nimport DialogContent from '@mui/material/DialogContent';\nimport DialogContentText from '@mui/material/DialogContentText';\nimport DialogTitle from '@mui/material/DialogTitle';\nimport FormControlLabel from '@mui/material/FormControlLabel';\nimport Checkbox from '@mui/material/Checkbox';\n\nimport IconCheck from '@mui/icons-material/Check';\nimport IconClose from '@mui/icons-material/Close';\n\nimport I18n from '../i18n';\n\nconst styles = {\n suppress: {\n fontSize: 12,\n },\n suppressRoot: {\n marginTop: 16,\n },\n};\n\n/**\n * @typedef {object} DialogConfirmProps\n * @property {string} [title] The dialog title; default: Are you sure? (translated)\n * @property {string} text The dialog text.\n * @property {string} [ok] The ok button text; default: OK (translated)\n * @property {string} [cancel] The cancel button text; default: Cancel (translated)\n * @property {string} [suppressQuestionMinutes] interval in minutes for which the confirm dialog will be suppressed if activated.\n * @property {string} [suppressText] The suppress checkbox text; default: Suppress question for next %s minutes (translated)\n * @property {string} [dialogName] Name of the dialog. Used only with suppressQuestionMinutes to store the user choice\n * @property {(ok: boolean) => void} [onClose] Close handler.\n *\n * @extends {React.Component<DialogConfirmProps>}\n */\nclass DialogConfirm extends React.Component {\n constructor(props) {\n super(props);\n\n if (!this.props.dialogName && this.props.suppressQuestionMinutes) {\n throw new Error('dialogName required if suppressQuestionMinutes used');\n }\n let suppress = false;\n\n if (this.props.suppressQuestionMinutes) {\n suppress = parseInt((window._localStorage || window.localStorage).getItem(this.props.dialogName), 10) || 0;\n\n if (!suppress) {\n suppress = false;\n } else if (Date.now() > suppress) {\n (window._localStorage || window.localStorage).removeItem(this.props.dialogName);\n suppress = false;\n }\n }\n\n this.state = {\n suppress,\n };\n }\n\n handleOk() {\n if (this.state.suppress) {\n (window._localStorage || window.localStorage).setItem(this.props.dialogName, Date.now() + this.props.suppressQuestionMinutes * 60000);\n }\n this.props.onClose && this.props.onClose(true);\n }\n\n handleCancel() {\n this.props.onClose && this.props.onClose(false);\n }\n\n render() {\n if (typeof this.state.suppress === 'number') {\n setTimeout(() => this.props.onClose && this.props.onClose(true), 100);\n return null;\n }\n\n return <Dialog\n open={!0}\n maxWidth=\"md\"\n fullWidth={this.props.fullWidth !== undefined ? this.props.fullWidth : true}\n onClose={(event, reason) => {\n if (reason !== 'backdropClick' && reason !== 'escapeKeyDown') {\n this.handleCancel();\n }\n }}\n aria-labelledby=\"ar_confirmation_dialog_title\"\n aria-describedby=\"ar_confirmation_dialog_description\"\n >\n <DialogTitle id=\"ar_confirmation_dialog_title\">{this.props.title || I18n.t('ra_Are you sure?')}</DialogTitle>\n <DialogContent>\n <DialogContentText id=\"ar_confirmation_dialog_description\">\n {this.props.icon || null}\n {this.props.text}\n {this.props.suppressQuestionMinutes ? <br /> : null}\n {this.props.suppressQuestionMinutes ? <FormControlLabel\n classes={{ label: this.props.classes.suppress, root: this.props.classes.suppressRoot }}\n control={<Checkbox id={`ar_dialog_confirm_suppress_${this.props.dialogName || ''}`} checked={!!this.state.suppress} onChange={() => this.setState({ suppress: !this.state.suppress })} />}\n label={this.props.suppressText || I18n.t('ra_Suppress question for next %s minutes', this.props.suppressQuestionMinutes)}\n /> : null}\n </DialogContentText>\n </DialogContent>\n <DialogActions>\n <Button\n id={`ar_dialog_confirm_ok_${this.props.dialogName || ''}`}\n variant=\"contained\"\n onClick={() => this.handleOk()}\n color=\"primary\"\n autoFocus\n startIcon={<IconCheck />}\n >\n {this.props.ok || I18n.t('ra_Ok')}\n </Button>\n <Button\n id={`ar_dialog_confirm_cancel_${this.props.dialogName || ''}`}\n variant=\"contained\"\n onClick={() => this.handleCancel()}\n color=\"grey\"\n startIcon={<IconClose />}\n >\n {this.props.cancel || I18n.t('ra_Cancel')}\n </Button>\n </DialogActions>\n </Dialog>;\n }\n}\n\nDialogConfirm.propTypes = {\n onClose: PropTypes.func.isRequired,\n fullWidth: PropTypes.bool,\n title: PropTypes.string,\n text: PropTypes.string,\n ok: PropTypes.string,\n cancel: PropTypes.string,\n icon: PropTypes.object,\n suppressQuestionMinutes: PropTypes.number,\n suppressText: PropTypes.string,\n dialogName: PropTypes.string,\n};\n\nconst _export = withStyles(styles)(DialogConfirm);\nexport default _export;\n"],"mappings":"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"}
package/Dialogs/Error.js CHANGED
@@ -17,11 +17,11 @@ var _iconsMaterial = require("@mui/icons-material");
17
17
  var _i18n = _interopRequireDefault(require("../i18n"));
18
18
  function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2["default"])(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2["default"])(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2["default"])(this, result); }; }
19
19
  function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } } /**
20
- * Copyright 2018-2023 Denis Haev (bluefox) <dogafox@gmail.com>
21
- *
22
- * MIT License
23
- *
24
- **/ // please do not delete React, as without it other projects could not be compiled: ReferenceError: React is not defined
20
+ * Copyright 2018-2023 Denis Haev (bluefox) <dogafox@gmail.com>
21
+ *
22
+ * MIT License
23
+ *
24
+ **/ // please do not delete React, as without it other projects could not be compiled: ReferenceError: React is not defined
25
25
  /**
26
26
  * @typedef {object} DialogErrorProps
27
27
  * @property {string} [title] The dialog title; default: Error (translated)
@@ -1 +1 @@
1
- {"version":3,"file":"Error.js","names":["_react","_interopRequireDefault","require","_propTypes","_material","_iconsMaterial","_i18n","_createSuper","Derived","hasNativeReflectConstruct","_isNativeReflectConstruct","_createSuperInternal","Super","_getPrototypeOf2","result","NewTarget","constructor","Reflect","construct","arguments","apply","_possibleConstructorReturn2","sham","Proxy","Boolean","prototype","valueOf","call","e","DialogError","_React$Component","_inherits2","_super","_classCallCheck2","_createClass2","key","value","handleOk","props","onClose","render","_this","createElement","Dialog","open","maxWidth","fullWidth","undefined","DialogTitle","id","title","I18n","t","DialogContent","DialogContentText","text","DialogActions","Button","variant","onClick","color","autoFocus","startIcon","Check","React","Component","propTypes","PropTypes","func","isRequired","bool","string","oneOfType","element","_export","_default","exports"],"sources":["Error.js"],"sourcesContent":["/**\n * Copyright 2018-2023 Denis Haev (bluefox) <dogafox@gmail.com>\n *\n * MIT License\n *\n **/\n// please do not delete React, as without it other projects could not be compiled: ReferenceError: React is not defined\nimport React from 'react';\nimport PropTypes from 'prop-types';\n\nimport {\n Button,\n Dialog,\n DialogActions,\n DialogContent,\n DialogContentText,\n DialogTitle,\n} from '@mui/material';\n\nimport { Check as IconCheck } from '@mui/icons-material';\n\nimport I18n from '../i18n';\n\n/**\n * @typedef {object} DialogErrorProps\n * @property {string} [title] The dialog title; default: Error (translated)\n * @property {string | JSX.Element} text The dialog text.\n * @property {() => void} [onClose] Close handler.\n * @property {{titleBackground: string; titleColor: string}} classes The styling class names.\n *\n * @extends {React.Component<DialogErrorProps>}\n */\nclass DialogError extends React.Component {\n handleOk() {\n this.props.onClose && this.props.onClose();\n }\n\n render() {\n return <Dialog\n open={!0}\n maxWidth=\"sm\"\n fullWidth={this.props.fullWidth !== undefined ? this.props.fullWidth : true}\n onClose={() => this.handleOk()}\n aria-labelledby=\"alert-dialog-title\"\n aria-describedby=\"alert-dialog-description\"\n >\n <DialogTitle id=\"ar_alert_dialog_title\">\n {this.props.title || I18n.t('ra_Error')}\n </DialogTitle>\n <DialogContent>\n <DialogContentText id=\"ar_alert_dialog_description\">\n {this.props.text || I18n.t('ra_Unknown error!')}\n </DialogContentText>\n </DialogContent>\n <DialogActions>\n <Button\n id=\"ar_dialog_error_ok\"\n variant=\"contained\"\n onClick={() => this.handleOk()}\n color=\"primary\"\n autoFocus\n startIcon={<IconCheck />}\n >\n {I18n.t('ra_Ok')}\n </Button>\n </DialogActions>\n </Dialog>;\n }\n}\n\nDialogError.propTypes = {\n onClose: PropTypes.func.isRequired,\n fullWidth: PropTypes.bool,\n title: PropTypes.string,\n text: PropTypes.oneOfType([\n PropTypes.string,\n PropTypes.element,\n ]),\n};\n\n/** @type {typeof DialogError} */\nconst _export = DialogError;\nexport default _export;\n"],"mappings":"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"}
1
+ {"version":3,"file":"Error.js","names":["_react","_interopRequireDefault","require","_propTypes","_material","_iconsMaterial","_i18n","_createSuper","Derived","hasNativeReflectConstruct","_isNativeReflectConstruct","_createSuperInternal","Super","_getPrototypeOf2","result","NewTarget","constructor","Reflect","construct","arguments","apply","_possibleConstructorReturn2","sham","Proxy","Boolean","prototype","valueOf","call","e","DialogError","_React$Component","_inherits2","_super","_classCallCheck2","_createClass2","key","value","handleOk","props","onClose","render","_this","createElement","Dialog","open","maxWidth","fullWidth","undefined","DialogTitle","id","title","I18n","t","DialogContent","DialogContentText","text","DialogActions","Button","variant","onClick","color","autoFocus","startIcon","Check","React","Component","propTypes","PropTypes","func","isRequired","bool","string","oneOfType","element","_export","_default","exports"],"sources":["Error.js"],"sourcesContent":["/**\n * Copyright 2018-2023 Denis Haev (bluefox) <dogafox@gmail.com>\n *\n * MIT License\n *\n **/\n// please do not delete React, as without it other projects could not be compiled: ReferenceError: React is not defined\nimport React from 'react';\nimport PropTypes from 'prop-types';\n\nimport {\n Button,\n Dialog,\n DialogActions,\n DialogContent,\n DialogContentText,\n DialogTitle,\n} from '@mui/material';\n\nimport { Check as IconCheck } from '@mui/icons-material';\n\nimport I18n from '../i18n';\n\n/**\n * @typedef {object} DialogErrorProps\n * @property {string} [title] The dialog title; default: Error (translated)\n * @property {string | JSX.Element} text The dialog text.\n * @property {() => void} [onClose] Close handler.\n * @property {{titleBackground: string; titleColor: string}} classes The styling class names.\n *\n * @extends {React.Component<DialogErrorProps>}\n */\nclass DialogError extends React.Component {\n handleOk() {\n this.props.onClose && this.props.onClose();\n }\n\n render() {\n return <Dialog\n open={!0}\n maxWidth=\"sm\"\n fullWidth={this.props.fullWidth !== undefined ? this.props.fullWidth : true}\n onClose={() => this.handleOk()}\n aria-labelledby=\"alert-dialog-title\"\n aria-describedby=\"alert-dialog-description\"\n >\n <DialogTitle id=\"ar_alert_dialog_title\">\n {this.props.title || I18n.t('ra_Error')}\n </DialogTitle>\n <DialogContent>\n <DialogContentText id=\"ar_alert_dialog_description\">\n {this.props.text || I18n.t('ra_Unknown error!')}\n </DialogContentText>\n </DialogContent>\n <DialogActions>\n <Button\n id=\"ar_dialog_error_ok\"\n variant=\"contained\"\n onClick={() => this.handleOk()}\n color=\"primary\"\n autoFocus\n startIcon={<IconCheck />}\n >\n {I18n.t('ra_Ok')}\n </Button>\n </DialogActions>\n </Dialog>;\n }\n}\n\nDialogError.propTypes = {\n onClose: PropTypes.func.isRequired,\n fullWidth: PropTypes.bool,\n title: PropTypes.string,\n text: PropTypes.oneOfType([\n PropTypes.string,\n PropTypes.element,\n ]),\n};\n\n/** @type {typeof DialogError} */\nconst _export = DialogError;\nexport default _export;\n"],"mappings":"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"}
@@ -22,11 +22,11 @@ var _Close = _interopRequireDefault(require("@mui/icons-material/Close"));
22
22
  var _i18n = _interopRequireDefault(require("../i18n"));
23
23
  function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2["default"])(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2["default"])(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2["default"])(this, result); }; }
24
24
  function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } } /**
25
- * Copyright 2018-2023 Denis Haev (bluefox) <dogafox@gmail.com>
26
- *
27
- * MIT License
28
- *
29
- **/ // please do not delete React, as without it other projects could not be compiled: ReferenceError: React is not defined
25
+ * Copyright 2018-2023 Denis Haev (bluefox) <dogafox@gmail.com>
26
+ *
27
+ * MIT License
28
+ *
29
+ **/ // please do not delete React, as without it other projects could not be compiled: ReferenceError: React is not defined
30
30
  /**
31
31
  * @typedef {object} DialogMessageProps
32
32
  * @property {string} [title] The dialog title; default: Message (translated)
@@ -1 +1 @@
1
- {"version":3,"file":"Message.js","names":["_react","_interopRequireDefault","require","_propTypes","_Button","_Dialog","_DialogActions","_DialogContent","_DialogContentText","_DialogTitle","_Close","_i18n","_createSuper","Derived","hasNativeReflectConstruct","_isNativeReflectConstruct","_createSuperInternal","Super","_getPrototypeOf2","result","NewTarget","constructor","Reflect","construct","arguments","apply","_possibleConstructorReturn2","sham","Proxy","Boolean","prototype","valueOf","call","e","DialogMessage","_React$Component","_inherits2","_super","_classCallCheck2","_createClass2","key","value","handleOk","props","onClose","render","_this","createElement","open","maxWidth","fullWidth","undefined","id","title","I18n","t","style","marginRight","icon","text","variant","onClick","color","autoFocus","startIcon","ok","React","Component","propTypes","PropTypes","bool","func","isRequired","string","object","_default","exports"],"sources":["Message.js"],"sourcesContent":["/**\n * Copyright 2018-2023 Denis Haev (bluefox) <dogafox@gmail.com>\n *\n * MIT License\n *\n **/\n\n// please do not delete React, as without it other projects could not be compiled: ReferenceError: React is not defined\nimport React from 'react';\nimport PropTypes from 'prop-types';\n\nimport Button from '@mui/material/Button';\nimport Dialog from '@mui/material/Dialog';\nimport DialogActions from '@mui/material/DialogActions';\nimport DialogContent from '@mui/material/DialogContent';\nimport DialogContentText from '@mui/material/DialogContentText';\nimport DialogTitle from '@mui/material/DialogTitle';\n\nimport IconClose from '@mui/icons-material/Close';\n\nimport I18n from '../i18n';\n\n/**\n * @typedef {object} DialogMessageProps\n * @property {string} [title] The dialog title; default: Message (translated)\n * @property {string} text The dialog text.\n * @property {() => void} [onClose] Close handler.\n *\n * @extends {React.Component<DialogMessageProps>}\n */\nclass DialogMessage extends React.Component {\n handleOk() {\n this.props.onClose && this.props.onClose();\n }\n\n render() {\n return <Dialog\n open={!0}\n maxWidth=\"sm\"\n fullWidth={this.props.fullWidth !== undefined ? this.props.fullWidth : true}\n onClose={() => this.handleOk()}\n aria-labelledby=\"ar_dialog_message_title\"\n aria-describedby=\"ar_dialog_message_description\"\n >\n <DialogTitle id=\"ar_dialog_message_title\">{this.props.title || I18n.t('ra_Message')}</DialogTitle>\n <DialogContent>\n <DialogContentText id=\"ar_dialog_message_description\">\n <span style={{ marginRight: this.props.icon ? 8 : 0 }}>\n {this.props.icon || null}\n </span>\n {this.props.text}\n </DialogContentText>\n </DialogContent>\n <DialogActions>\n <Button id=\"ar_dialog_message_ok\" variant=\"contained\" onClick={() => this.handleOk()} color=\"primary\" autoFocus startIcon={<IconClose />}>{this.props.ok || I18n.t('ra_Close')}</Button>\n </DialogActions>\n </Dialog>;\n }\n}\n\nDialogMessage.propTypes = {\n fullWidth: PropTypes.bool,\n onClose: PropTypes.func.isRequired,\n title: PropTypes.string,\n text: PropTypes.string,\n ok: PropTypes.string,\n icon: PropTypes.object,\n};\n\nexport default DialogMessage;\n"],"mappings":"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"}
1
+ {"version":3,"file":"Message.js","names":["_react","_interopRequireDefault","require","_propTypes","_Button","_Dialog","_DialogActions","_DialogContent","_DialogContentText","_DialogTitle","_Close","_i18n","_createSuper","Derived","hasNativeReflectConstruct","_isNativeReflectConstruct","_createSuperInternal","Super","_getPrototypeOf2","result","NewTarget","constructor","Reflect","construct","arguments","apply","_possibleConstructorReturn2","sham","Proxy","Boolean","prototype","valueOf","call","e","DialogMessage","_React$Component","_inherits2","_super","_classCallCheck2","_createClass2","key","value","handleOk","props","onClose","render","_this","createElement","open","maxWidth","fullWidth","undefined","id","title","I18n","t","style","marginRight","icon","text","variant","onClick","color","autoFocus","startIcon","ok","React","Component","propTypes","PropTypes","bool","func","isRequired","string","object","_default","exports"],"sources":["Message.js"],"sourcesContent":["/**\n * Copyright 2018-2023 Denis Haev (bluefox) <dogafox@gmail.com>\n *\n * MIT License\n *\n **/\n\n// please do not delete React, as without it other projects could not be compiled: ReferenceError: React is not defined\nimport React from 'react';\nimport PropTypes from 'prop-types';\n\nimport Button from '@mui/material/Button';\nimport Dialog from '@mui/material/Dialog';\nimport DialogActions from '@mui/material/DialogActions';\nimport DialogContent from '@mui/material/DialogContent';\nimport DialogContentText from '@mui/material/DialogContentText';\nimport DialogTitle from '@mui/material/DialogTitle';\n\nimport IconClose from '@mui/icons-material/Close';\n\nimport I18n from '../i18n';\n\n/**\n * @typedef {object} DialogMessageProps\n * @property {string} [title] The dialog title; default: Message (translated)\n * @property {string} text The dialog text.\n * @property {() => void} [onClose] Close handler.\n *\n * @extends {React.Component<DialogMessageProps>}\n */\nclass DialogMessage extends React.Component {\n handleOk() {\n this.props.onClose && this.props.onClose();\n }\n\n render() {\n return <Dialog\n open={!0}\n maxWidth=\"sm\"\n fullWidth={this.props.fullWidth !== undefined ? this.props.fullWidth : true}\n onClose={() => this.handleOk()}\n aria-labelledby=\"ar_dialog_message_title\"\n aria-describedby=\"ar_dialog_message_description\"\n >\n <DialogTitle id=\"ar_dialog_message_title\">{this.props.title || I18n.t('ra_Message')}</DialogTitle>\n <DialogContent>\n <DialogContentText id=\"ar_dialog_message_description\">\n <span style={{ marginRight: this.props.icon ? 8 : 0 }}>\n {this.props.icon || null}\n </span>\n {this.props.text}\n </DialogContentText>\n </DialogContent>\n <DialogActions>\n <Button id=\"ar_dialog_message_ok\" variant=\"contained\" onClick={() => this.handleOk()} color=\"primary\" autoFocus startIcon={<IconClose />}>{this.props.ok || I18n.t('ra_Close')}</Button>\n </DialogActions>\n </Dialog>;\n }\n}\n\nDialogMessage.propTypes = {\n fullWidth: PropTypes.bool,\n onClose: PropTypes.func.isRequired,\n title: PropTypes.string,\n text: PropTypes.string,\n ok: PropTypes.string,\n icon: PropTypes.object,\n};\n\nexport default DialogMessage;\n"],"mappings":"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"}
@@ -25,11 +25,11 @@ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbol
25
25
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2["default"])(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
26
26
  function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2["default"])(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2["default"])(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2["default"])(this, result); }; }
27
27
  function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } } /*
28
- * Copyright 2022-2023 Denis Haev (bluefox) <dogafox@gmail.com>
29
- *
30
- * MIT License
31
- *
32
- */ // please do not delete React, as without it other projects could not be compiled: ReferenceError: React is not defined
28
+ * Copyright 2022-2023 Denis Haev (bluefox) <dogafox@gmail.com>
29
+ *
30
+ * MIT License
31
+ *
32
+ */ // please do not delete React, as without it other projects could not be compiled: ReferenceError: React is not defined
33
33
  var styles = function styles() {
34
34
  return {
35
35
  headerID: {
@@ -1 +1 @@
1
- {"version":3,"file":"SelectFile.js","names":["_react","_interopRequireDefault","require","_propTypes","_styles","_material","_iconsMaterial","_Utils","_i18n","_FileBrowser","ownKeys","e","r","t","Object","keys","getOwnPropertySymbols","o","filter","getOwnPropertyDescriptor","enumerable","push","apply","_objectSpread","arguments","length","forEach","_defineProperty2","getOwnPropertyDescriptors","defineProperties","defineProperty","_createSuper","Derived","hasNativeReflectConstruct","_isNativeReflectConstruct","_createSuperInternal","Super","_getPrototypeOf2","result","NewTarget","constructor","Reflect","construct","_possibleConstructorReturn2","sham","Proxy","Boolean","prototype","valueOf","call","styles","headerID","fontWeight","fontStyle","dialog","height","dialogMobile","padding","width","maxWidth","maxHeight","content","overflow","contentMobile","titleRoot","whiteSpace","display","textOverflow","DialogSelectFile","_React$Component","_inherits2","_super","props","_this","_classCallCheck2","dialogName","concat","filters","window","_localStorage","localStorage","getItem","JSON","parse","selected","_typeof2","_toConsumableArray2","id","state","_createClass2","key","value","handleCancel","onClose","handleOk","onOk","multiSelect","Array","isArray","render","_this2","title","createElement","I18n","className","classes","Dialog","paper","Utils","clsx","fullWidth","open","DialogTitle","root","DialogContent","ready","imagePrefix","prefix","allowUpload","allowDownload","allowCreateFolder","allowDelete","allowView","showViewTypeButton","showToolbar","limitPath","filterFiles","filterByType","restrictToFolder","allowNonRestricted","onSelect","isDoubleClick","isFolder","setState","selectOnlyFolders","lang","getLanguage","socket","themeType","themeName","showExpertButton","expertMode","showTypeSelector","DialogActions","Button","variant","onClick","startIcon","Check","disabled","color","ok","Cancel","cancel","React","Component","propTypes","PropTypes","string","oneOfType","array","object","func","isRequired","bool","arrayOf","_export","withStyles","_default","exports"],"sources":["SelectFile.jsx"],"sourcesContent":["/*\n * Copyright 2022-2023 Denis Haev (bluefox) <dogafox@gmail.com>\n *\n * MIT License\n *\n */\n// please do not delete React, as without it other projects could not be compiled: ReferenceError: React is not defined\nimport React from 'react';\nimport PropTypes from 'prop-types';\nimport { withStyles } from '@mui/styles';\n\nimport {\n Button,\n DialogTitle,\n DialogContent,\n DialogActions,\n Dialog,\n} from '@mui/material';\n\nimport {\n Cancel as IconCancel,\n Check as IconOk,\n} from '@mui/icons-material';\n\nimport Utils from '../Components/Utils';\nimport I18n from '../i18n';\nimport FileBrowser from '../Components/FileBrowser';\n\nconst styles = () => ({\n headerID: {\n fontWeight: 'bold',\n fontStyle: 'italic',\n },\n dialog: {\n height: '95%',\n },\n dialogMobile: {\n padding: 4,\n width: '100%',\n maxWidth: '100%',\n maxHeight: 'calc(100% - 16px)',\n height: '100%',\n },\n content: {\n height: '100%',\n overflow: 'hidden',\n },\n contentMobile: {\n padding: '8px 4px',\n },\n titleRoot: {\n whiteSpace: 'nowrap',\n width: 'calc(100% - 72px)',\n overflow: 'hidden',\n display: 'inline-block',\n textOverflow: 'ellipsis',\n },\n});\n\n/**\n * @typedef {object} DialogSelectFileProps\n * @property {boolean} [dialogName] PropTypes.string, // where to store settings in localStorage * @property {string} [title] The dialog title; default: Please select object ID... (translated)\n * @property {boolean} [multiSelect] Set to true to allow the selection of multiple IDs.\n * @property {string} [imagePrefix] Prefix (default: '.')\n * @property {boolean} [showExpertButton] Show the expert button?\n * @property {ioBroker.Languages} [lang] The language.\n * @property {import('../Connection').default} socket The socket connection.\n * @property {string} [themeName] Theme name.\n * @property {string} [themeType] Theme type.\n * @property {string | string[]} [selected] The selected IDs.\n * @property {string} [ok] The ok button text; default: OK (translated)\n * @property {string} [cancel] The cancel button text; default: Cancel (translated)\n * @property {boolean} [socket] Socket class (required)\n * @property {boolean} [allowUpload] If download of files enabled\n * @property {boolean} [allowDownload] If download of files enabled\n * @property {boolean} [allowCreateFolder] If creation of folders enabled\n * @property {boolean} [allowDelete] If creation of folders enabled\n * @property {boolean} [allowView] if tile view enabled (default true)\n * @property {boolean} [showToolbar] Show toolbar (default true)\n * @property {array} [limitPath] Limit file browser to one specific objectID of type meta and following path (like vis.0/main)\n * @property {array} [filterFiles] like `['png', 'svg', 'bmp', 'jpg', 'jpeg', 'gif']`\n * @property {string} [filterByType] images, code, txt, audio, video\n * @property {bool} [selectOnlyFolders] allow only folder's selection * @property {() => void} onClose Close handler that is always called when the dialog is closed.\n * @property {(selected: string | string[] | undefined) => void} onOk Handler that is called when the user presses OK or by double click.\n * @property {{headerID: string; dialog: string; content: string}} [classes] The styling class names.\n *\n * @extends {React.Component<DialogSelectIDProps>}\n */\nclass DialogSelectFile extends React.Component {\n /**\n * @param {DialogSelectFileProps} props\n */\n constructor(props) {\n super(props);\n this.dialogName = this.props.dialogName || 'default';\n this.dialogName = `SelectFile.${this.dialogName}`;\n\n this.filters = (window._localStorage || window.localStorage).getItem(this.dialogName) || '{}';\n\n try {\n this.filters = JSON.parse(this.filters);\n } catch (e) {\n this.filters = {};\n }\n\n if (props.filters) {\n this.filters = { ...this.filters, ...props.filters };\n }\n\n let selected = this.props.selected || [];\n if (typeof selected !== 'object') {\n selected = [selected];\n } else {\n selected = [...selected];\n }\n selected = selected.filter(id => id);\n\n this.state = {\n selected,\n };\n }\n\n handleCancel() {\n this.props.onClose();\n }\n\n handleOk() {\n this.props.onOk(this.props.multiSelect || !Array.isArray(this.state.selected) ? this.state.selected : this.state.selected[0] || '');\n this.props.onClose();\n }\n\n render() {\n let title;\n if (this.state.selected.length) {\n if (!Array.isArray(this.state.selected) || this.state.selected.length === 1) {\n title = [\n <span key=\"selected\">\n {I18n.t('ra_Selected')}\n &nbsp;\n </span>,\n <span key=\"id\" className={this.props.classes.headerID}>\n {this.state.selected}\n </span>,\n ];\n } else {\n title = [\n <span key=\"selected\">\n {I18n.t('ra_Selected')}\n &nbsp;\n </span>,\n <span key=\"id\" className={this.props.classes.headerID}>\n {I18n.t('%s items', this.state.selected.length)}\n </span>,\n ];\n }\n } else {\n title = this.props.title || I18n.t('ra_Please select file...');\n }\n\n return <Dialog\n onClose={() => {}}\n maxWidth={false}\n classes={{ paper: Utils.clsx(this.props.classes.dialog, this.props.classes.dialogMobile) }}\n fullWidth\n open={!0}\n aria-labelledby=\"ar_dialog_selectfile_title\"\n >\n <DialogTitle id=\"ar_dialog_selectfile_title\" classes={{ root: this.props.classes.titleRoot }}>{title}</DialogTitle>\n <DialogContent className={Utils.clsx(this.props.classes.content, this.props.classes.contentMobile)}>\n <FileBrowser\n ready\n imagePrefix={this.props.imagePrefix || this.props.prefix || '../'} // prefix is for back compatibility\n allowUpload={!!this.props.allowUpload}\n allowDownload={this.props.allowDownload !== false}\n allowCreateFolder={!!this.props.allowCreateFolder}\n allowDelete={!!this.props.allowDelete}\n allowView={this.props.allowView !== false}\n showViewTypeButton={this.props.showViewTypeButton !== false}\n showToolbar={this.props.showToolbar !== false}\n limitPath={this.props.limitPath}\n filterFiles={this.props.filterFiles}\n filterByType={this.props.filterByType}\n selected={this.props.selected}\n restrictToFolder={this.props.restrictToFolder}\n allowNonRestricted={this.props.allowNonRestricted}\n onSelect={(selected, isDoubleClick, isFolder) => {\n this.setState({ selected }, () =>\n isDoubleClick && (!this.props.selectOnlyFolders || isFolder) && this.handleOk());\n }}\n t={this.props.t || I18n.t}\n lang={this.props.lang || I18n.getLanguage()}\n socket={this.props.socket}\n themeType={this.props.themeType}\n themeName={this.props.themeName}\n showExpertButton={this.props.showExpertButton}\n expertMode={this.props.expertMode}\n showTypeSelector={this.props.showTypeSelector}\n />\n </DialogContent>\n <DialogActions>\n <Button variant=\"contained\" onClick={() => this.handleOk()} startIcon={<IconOk />} disabled={!this.state.selected.length} color=\"primary\">{this.props.ok || I18n.t('ra_Ok')}</Button>\n <Button color=\"grey\" variant=\"contained\" onClick={() => this.handleCancel()} startIcon={<IconCancel />}>{this.props.cancel || I18n.t('ra_Cancel')}</Button>\n </DialogActions>\n </Dialog>;\n }\n}\n\nDialogSelectFile.propTypes = {\n imagePrefix: PropTypes.string,\n dialogName: PropTypes.string, // where to store settings in localStorage\n selected: PropTypes.oneOfType([\n PropTypes.string,\n PropTypes.array, // not implemented\n ]),\n classes: PropTypes.object,\n onClose: PropTypes.func.isRequired,\n onOk: PropTypes.func.isRequired,\n ok: PropTypes.string,\n cancel: PropTypes.string,\n socket: PropTypes.object.isRequired,\n allowUpload: PropTypes.bool,\n allowDownload: PropTypes.bool,\n allowCreateFolder: PropTypes.bool,\n allowDelete: PropTypes.bool,\n allowView: PropTypes.bool, // allow view of files\n showToolbar: PropTypes.bool,\n filterFiles: PropTypes.arrayOf(PropTypes.string), // array of extensions ['png', 'svg', 'bmp', 'jpg', 'jpeg', 'gif']\n filterByType: PropTypes.string, // e.g. images\n limitPath: PropTypes.string,\n selectOnlyFolders: PropTypes.bool,\n showViewTypeButton: PropTypes.bool, // Allow switch views Table<=>Rows\n showTypeSelector: PropTypes.bool, // If type selector should be shown\n restrictToFolder: PropTypes.string, // If defined, allow selecting only files from this folder\n allowNonRestricted: PropTypes.bool, // If restrictToFolder defined, allow selecting files outside of this folder\n\n title: PropTypes.string,\n lang: PropTypes.string,\n\n themeName: PropTypes.string,\n themeType: PropTypes.string,\n showExpertButton: PropTypes.bool,\n expertMode: PropTypes.bool, // force expert mode\n multiSelect: PropTypes.bool, // not implemented\n};\n\n/** @type {typeof DialogSelectFile} */\nconst _export = withStyles(styles)(DialogSelectFile);\nexport default _export;\n"],"mappings":"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"}
1
+ {"version":3,"file":"SelectFile.js","names":["_react","_interopRequireDefault","require","_propTypes","_styles","_material","_iconsMaterial","_Utils","_i18n","_FileBrowser","ownKeys","e","r","t","Object","keys","getOwnPropertySymbols","o","filter","getOwnPropertyDescriptor","enumerable","push","apply","_objectSpread","arguments","length","forEach","_defineProperty2","getOwnPropertyDescriptors","defineProperties","defineProperty","_createSuper","Derived","hasNativeReflectConstruct","_isNativeReflectConstruct","_createSuperInternal","Super","_getPrototypeOf2","result","NewTarget","constructor","Reflect","construct","_possibleConstructorReturn2","sham","Proxy","Boolean","prototype","valueOf","call","styles","headerID","fontWeight","fontStyle","dialog","height","dialogMobile","padding","width","maxWidth","maxHeight","content","overflow","contentMobile","titleRoot","whiteSpace","display","textOverflow","DialogSelectFile","_React$Component","_inherits2","_super","props","_this","_classCallCheck2","dialogName","concat","filters","window","_localStorage","localStorage","getItem","JSON","parse","selected","_typeof2","_toConsumableArray2","id","state","_createClass2","key","value","handleCancel","onClose","handleOk","onOk","multiSelect","Array","isArray","render","_this2","title","createElement","I18n","className","classes","Dialog","paper","Utils","clsx","fullWidth","open","DialogTitle","root","DialogContent","ready","imagePrefix","prefix","allowUpload","allowDownload","allowCreateFolder","allowDelete","allowView","showViewTypeButton","showToolbar","limitPath","filterFiles","filterByType","restrictToFolder","allowNonRestricted","onSelect","isDoubleClick","isFolder","setState","selectOnlyFolders","lang","getLanguage","socket","themeType","themeName","showExpertButton","expertMode","showTypeSelector","DialogActions","Button","variant","onClick","startIcon","Check","disabled","color","ok","Cancel","cancel","React","Component","propTypes","PropTypes","string","oneOfType","array","object","func","isRequired","bool","arrayOf","_export","withStyles","_default","exports"],"sources":["SelectFile.jsx"],"sourcesContent":["/*\n * Copyright 2022-2023 Denis Haev (bluefox) <dogafox@gmail.com>\n *\n * MIT License\n *\n */\n// please do not delete React, as without it other projects could not be compiled: ReferenceError: React is not defined\nimport React from 'react';\nimport PropTypes from 'prop-types';\nimport { withStyles } from '@mui/styles';\n\nimport {\n Button,\n DialogTitle,\n DialogContent,\n DialogActions,\n Dialog,\n} from '@mui/material';\n\nimport {\n Cancel as IconCancel,\n Check as IconOk,\n} from '@mui/icons-material';\n\nimport Utils from '../Components/Utils';\nimport I18n from '../i18n';\nimport FileBrowser from '../Components/FileBrowser';\n\nconst styles = () => ({\n headerID: {\n fontWeight: 'bold',\n fontStyle: 'italic',\n },\n dialog: {\n height: '95%',\n },\n dialogMobile: {\n padding: 4,\n width: '100%',\n maxWidth: '100%',\n maxHeight: 'calc(100% - 16px)',\n height: '100%',\n },\n content: {\n height: '100%',\n overflow: 'hidden',\n },\n contentMobile: {\n padding: '8px 4px',\n },\n titleRoot: {\n whiteSpace: 'nowrap',\n width: 'calc(100% - 72px)',\n overflow: 'hidden',\n display: 'inline-block',\n textOverflow: 'ellipsis',\n },\n});\n\n/**\n * @typedef {object} DialogSelectFileProps\n * @property {boolean} [dialogName] PropTypes.string, // where to store settings in localStorage * @property {string} [title] The dialog title; default: Please select object ID... (translated)\n * @property {boolean} [multiSelect] Set to true to allow the selection of multiple IDs.\n * @property {string} [imagePrefix] Prefix (default: '.')\n * @property {boolean} [showExpertButton] Show the expert button?\n * @property {ioBroker.Languages} [lang] The language.\n * @property {import('../Connection').default} socket The socket connection.\n * @property {string} [themeName] Theme name.\n * @property {string} [themeType] Theme type.\n * @property {string | string[]} [selected] The selected IDs.\n * @property {string} [ok] The ok button text; default: OK (translated)\n * @property {string} [cancel] The cancel button text; default: Cancel (translated)\n * @property {boolean} [socket] Socket class (required)\n * @property {boolean} [allowUpload] If download of files enabled\n * @property {boolean} [allowDownload] If download of files enabled\n * @property {boolean} [allowCreateFolder] If creation of folders enabled\n * @property {boolean} [allowDelete] If creation of folders enabled\n * @property {boolean} [allowView] if tile view enabled (default true)\n * @property {boolean} [showToolbar] Show toolbar (default true)\n * @property {array} [limitPath] Limit file browser to one specific objectID of type meta and following path (like vis.0/main)\n * @property {array} [filterFiles] like `['png', 'svg', 'bmp', 'jpg', 'jpeg', 'gif']`\n * @property {string} [filterByType] images, code, txt, audio, video\n * @property {bool} [selectOnlyFolders] allow only folder's selection * @property {() => void} onClose Close handler that is always called when the dialog is closed.\n * @property {(selected: string | string[] | undefined) => void} onOk Handler that is called when the user presses OK or by double click.\n * @property {{headerID: string; dialog: string; content: string}} [classes] The styling class names.\n *\n * @extends {React.Component<DialogSelectIDProps>}\n */\nclass DialogSelectFile extends React.Component {\n /**\n * @param {DialogSelectFileProps} props\n */\n constructor(props) {\n super(props);\n this.dialogName = this.props.dialogName || 'default';\n this.dialogName = `SelectFile.${this.dialogName}`;\n\n this.filters = (window._localStorage || window.localStorage).getItem(this.dialogName) || '{}';\n\n try {\n this.filters = JSON.parse(this.filters);\n } catch (e) {\n this.filters = {};\n }\n\n if (props.filters) {\n this.filters = { ...this.filters, ...props.filters };\n }\n\n let selected = this.props.selected || [];\n if (typeof selected !== 'object') {\n selected = [selected];\n } else {\n selected = [...selected];\n }\n selected = selected.filter(id => id);\n\n this.state = {\n selected,\n };\n }\n\n handleCancel() {\n this.props.onClose();\n }\n\n handleOk() {\n this.props.onOk(this.props.multiSelect || !Array.isArray(this.state.selected) ? this.state.selected : this.state.selected[0] || '');\n this.props.onClose();\n }\n\n render() {\n let title;\n if (this.state.selected.length) {\n if (!Array.isArray(this.state.selected) || this.state.selected.length === 1) {\n title = [\n <span key=\"selected\">\n {I18n.t('ra_Selected')}\n &nbsp;\n </span>,\n <span key=\"id\" className={this.props.classes.headerID}>\n {this.state.selected}\n </span>,\n ];\n } else {\n title = [\n <span key=\"selected\">\n {I18n.t('ra_Selected')}\n &nbsp;\n </span>,\n <span key=\"id\" className={this.props.classes.headerID}>\n {I18n.t('%s items', this.state.selected.length)}\n </span>,\n ];\n }\n } else {\n title = this.props.title || I18n.t('ra_Please select file...');\n }\n\n return <Dialog\n onClose={() => {}}\n maxWidth={false}\n classes={{ paper: Utils.clsx(this.props.classes.dialog, this.props.classes.dialogMobile) }}\n fullWidth\n open={!0}\n aria-labelledby=\"ar_dialog_selectfile_title\"\n >\n <DialogTitle id=\"ar_dialog_selectfile_title\" classes={{ root: this.props.classes.titleRoot }}>{title}</DialogTitle>\n <DialogContent className={Utils.clsx(this.props.classes.content, this.props.classes.contentMobile)}>\n <FileBrowser\n ready\n imagePrefix={this.props.imagePrefix || this.props.prefix || '../'} // prefix is for back compatibility\n allowUpload={!!this.props.allowUpload}\n allowDownload={this.props.allowDownload !== false}\n allowCreateFolder={!!this.props.allowCreateFolder}\n allowDelete={!!this.props.allowDelete}\n allowView={this.props.allowView !== false}\n showViewTypeButton={this.props.showViewTypeButton !== false}\n showToolbar={this.props.showToolbar !== false}\n limitPath={this.props.limitPath}\n filterFiles={this.props.filterFiles}\n filterByType={this.props.filterByType}\n selected={this.props.selected}\n restrictToFolder={this.props.restrictToFolder}\n allowNonRestricted={this.props.allowNonRestricted}\n onSelect={(selected, isDoubleClick, isFolder) => {\n this.setState({ selected }, () =>\n isDoubleClick && (!this.props.selectOnlyFolders || isFolder) && this.handleOk());\n }}\n t={this.props.t || I18n.t}\n lang={this.props.lang || I18n.getLanguage()}\n socket={this.props.socket}\n themeType={this.props.themeType}\n themeName={this.props.themeName}\n showExpertButton={this.props.showExpertButton}\n expertMode={this.props.expertMode}\n showTypeSelector={this.props.showTypeSelector}\n />\n </DialogContent>\n <DialogActions>\n <Button variant=\"contained\" onClick={() => this.handleOk()} startIcon={<IconOk />} disabled={!this.state.selected.length} color=\"primary\">{this.props.ok || I18n.t('ra_Ok')}</Button>\n <Button color=\"grey\" variant=\"contained\" onClick={() => this.handleCancel()} startIcon={<IconCancel />}>{this.props.cancel || I18n.t('ra_Cancel')}</Button>\n </DialogActions>\n </Dialog>;\n }\n}\n\nDialogSelectFile.propTypes = {\n imagePrefix: PropTypes.string,\n dialogName: PropTypes.string, // where to store settings in localStorage\n selected: PropTypes.oneOfType([\n PropTypes.string,\n PropTypes.array, // not implemented\n ]),\n classes: PropTypes.object,\n onClose: PropTypes.func.isRequired,\n onOk: PropTypes.func.isRequired,\n ok: PropTypes.string,\n cancel: PropTypes.string,\n socket: PropTypes.object.isRequired,\n allowUpload: PropTypes.bool,\n allowDownload: PropTypes.bool,\n allowCreateFolder: PropTypes.bool,\n allowDelete: PropTypes.bool,\n allowView: PropTypes.bool, // allow view of files\n showToolbar: PropTypes.bool,\n filterFiles: PropTypes.arrayOf(PropTypes.string), // array of extensions ['png', 'svg', 'bmp', 'jpg', 'jpeg', 'gif']\n filterByType: PropTypes.string, // e.g. images\n limitPath: PropTypes.string,\n selectOnlyFolders: PropTypes.bool,\n showViewTypeButton: PropTypes.bool, // Allow switch views Table<=>Rows\n showTypeSelector: PropTypes.bool, // If type selector should be shown\n restrictToFolder: PropTypes.string, // If defined, allow selecting only files from this folder\n allowNonRestricted: PropTypes.bool, // If restrictToFolder defined, allow selecting files outside of this folder\n\n title: PropTypes.string,\n lang: PropTypes.string,\n\n themeName: PropTypes.string,\n themeType: PropTypes.string,\n showExpertButton: PropTypes.bool,\n expertMode: PropTypes.bool, // force expert mode\n multiSelect: PropTypes.bool, // not implemented\n};\n\n/** @type {typeof DialogSelectFile} */\nconst _export = withStyles(styles)(DialogSelectFile);\nexport default _export;\n"],"mappings":";;;;;;;;;;;;;;;AAOA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,UAAA,GAAAF,sBAAA,CAAAC,OAAA;AACA,IAAAE,OAAA,GAAAF,OAAA;AAEA,IAAAG,SAAA,GAAAH,OAAA;AAQA,IAAAI,cAAA,GAAAJ,OAAA;AAKA,IAAAK,MAAA,GAAAN,sBAAA,CAAAC,OAAA;AACA,IAAAM,KAAA,GAAAP,sBAAA,CAAAC,OAAA;AACA,IAAAO,YAAA,GAAAR,sBAAA,CAAAC,OAAA;AAAoD,SAAAQ,QAAAC,CAAA,EAAAC,CAAA,QAAAC,CAAA,GAAAC,MAAA,CAAAC,IAAA,CAAAJ,CAAA,OAAAG,MAAA,CAAAE,qBAAA,QAAAC,CAAA,GAAAH,MAAA,CAAAE,qBAAA,CAAAL,CAAA,GAAAC,CAAA,KAAAK,CAAA,GAAAA,CAAA,CAAAC,MAAA,WAAAN,CAAA,WAAAE,MAAA,CAAAK,wBAAA,CAAAR,CAAA,EAAAC,CAAA,EAAAQ,UAAA,OAAAP,CAAA,CAAAQ,IAAA,CAAAC,KAAA,CAAAT,CAAA,EAAAI,CAAA,YAAAJ,CAAA;AAAA,SAAAU,cAAAZ,CAAA,aAAAC,CAAA,MAAAA,CAAA,GAAAY,SAAA,CAAAC,MAAA,EAAAb,CAAA,UAAAC,CAAA,WAAAW,SAAA,CAAAZ,CAAA,IAAAY,SAAA,CAAAZ,CAAA,QAAAA,CAAA,OAAAF,OAAA,CAAAI,MAAA,CAAAD,CAAA,OAAAa,OAAA,WAAAd,CAAA,QAAAe,gBAAA,aAAAhB,CAAA,EAAAC,CAAA,EAAAC,CAAA,CAAAD,CAAA,SAAAE,MAAA,CAAAc,yBAAA,GAAAd,MAAA,CAAAe,gBAAA,CAAAlB,CAAA,EAAAG,MAAA,CAAAc,yBAAA,CAAAf,CAAA,KAAAH,OAAA,CAAAI,MAAA,CAAAD,CAAA,GAAAa,OAAA,WAAAd,CAAA,IAAAE,MAAA,CAAAgB,cAAA,CAAAnB,CAAA,EAAAC,CAAA,EAAAE,MAAA,CAAAK,wBAAA,CAAAN,CAAA,EAAAD,CAAA,iBAAAD,CAAA;AAAA,SAAAoB,aAAAC,OAAA,QAAAC,yBAAA,GAAAC,yBAAA,oBAAAC,qBAAA,QAAAC,KAAA,OAAAC,gBAAA,aAAAL,OAAA,GAAAM,MAAA,MAAAL,yBAAA,QAAAM,SAAA,OAAAF,gBAAA,mBAAAG,WAAA,EAAAF,MAAA,GAAAG,OAAA,CAAAC,SAAA,CAAAN,KAAA,EAAAZ,SAAA,EAAAe,SAAA,YAAAD,MAAA,GAAAF,KAAA,CAAAd,KAAA,OAAAE,SAAA,gBAAAmB,2BAAA,mBAAAL,MAAA;AAAA,SAAAJ,0BAAA,eAAAO,OAAA,qBAAAA,OAAA,CAAAC,SAAA,oBAAAD,OAAA,CAAAC,SAAA,CAAAE,IAAA,2BAAAC,KAAA,oCAAAC,OAAA,CAAAC,SAAA,CAAAC,OAAA,CAAAC,IAAA,CAAAR,OAAA,CAAAC,SAAA,CAAAI,OAAA,8CAAAnC,CAAA,sBA1BpD;AACA;AACA;AACA;AACA;AACA,GALA,CAMA;AAsBA,IAAMuC,MAAM,GAAG,SAATA,MAAMA,CAAA;EAAA,OAAU;IAClBC,QAAQ,EAAE;MACNC,UAAU,EAAE,MAAM;MAClBC,SAAS,EAAE;IACf,CAAC;IACDC,MAAM,EAAE;MACJC,MAAM,EAAE;IACZ,CAAC;IACDC,YAAY,EAAE;MACVC,OAAO,EAAE,CAAC;MACVC,KAAK,EAAE,MAAM;MACbC,QAAQ,EAAE,MAAM;MAChBC,SAAS,EAAE,mBAAmB;MAC9BL,MAAM,EAAE;IACZ,CAAC;IACDM,OAAO,EAAE;MACLN,MAAM,EAAE,MAAM;MACdO,QAAQ,EAAE;IACd,CAAC;IACDC,aAAa,EAAE;MACXN,OAAO,EAAE;IACb,CAAC;IACDO,SAAS,EAAE;MACPC,UAAU,EAAE,QAAQ;MACpBP,KAAK,EAAE,mBAAmB;MAC1BI,QAAQ,EAAE,QAAQ;MAClBI,OAAO,EAAE,cAAc;MACvBC,YAAY,EAAE;IAClB;EACJ,CAAC;AAAA,CAAC;;AAEF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AA5BA,IA6BMC,gBAAgB,0BAAAC,gBAAA;EAAA,IAAAC,UAAA,aAAAF,gBAAA,EAAAC,gBAAA;EAAA,IAAAE,MAAA,GAAAxC,YAAA,CAAAqC,gBAAA;EAClB;AACJ;AACA;EACI,SAAAA,iBAAYI,KAAK,EAAE;IAAA,IAAAC,KAAA;IAAA,IAAAC,gBAAA,mBAAAN,gBAAA;IACfK,KAAA,GAAAF,MAAA,CAAAtB,IAAA,OAAMuB,KAAK;IACXC,KAAA,CAAKE,UAAU,GAAGF,KAAA,CAAKD,KAAK,CAACG,UAAU,IAAI,SAAS;IACpDF,KAAA,CAAKE,UAAU,iBAAAC,MAAA,CAAiBH,KAAA,CAAKE,UAAU,CAAE;IAEjDF,KAAA,CAAKI,OAAO,GAAG,CAACC,MAAM,CAACC,aAAa,IAAID,MAAM,CAACE,YAAY,EAAEC,OAAO,CAACR,KAAA,CAAKE,UAAU,CAAC,IAAI,IAAI;IAE7F,IAAI;MACAF,KAAA,CAAKI,OAAO,GAAGK,IAAI,CAACC,KAAK,CAACV,KAAA,CAAKI,OAAO,CAAC;IAC3C,CAAC,CAAC,OAAOlE,CAAC,EAAE;MACR8D,KAAA,CAAKI,OAAO,GAAG,CAAC,CAAC;IACrB;IAEA,IAAIL,KAAK,CAACK,OAAO,EAAE;MACfJ,KAAA,CAAKI,OAAO,GAAAtD,aAAA,CAAAA,aAAA,KAAQkD,KAAA,CAAKI,OAAO,GAAKL,KAAK,CAACK,OAAO,CAAE;IACxD;IAEA,IAAIO,QAAQ,GAAGX,KAAA,CAAKD,KAAK,CAACY,QAAQ,IAAI,EAAE;IACxC,IAAI,IAAAC,QAAA,aAAOD,QAAQ,MAAK,QAAQ,EAAE;MAC9BA,QAAQ,GAAG,CAACA,QAAQ,CAAC;IACzB,CAAC,MAAM;MACHA,QAAQ,OAAAE,mBAAA,aAAOF,QAAQ,CAAC;IAC5B;IACAA,QAAQ,GAAGA,QAAQ,CAAClE,MAAM,CAAC,UAAAqE,EAAE;MAAA,OAAIA,EAAE;IAAA,EAAC;IAEpCd,KAAA,CAAKe,KAAK,GAAI;MACVJ,QAAQ,EAARA;IACJ,CAAC;IAAC,OAAAX,KAAA;EACN;EAAC,IAAAgB,aAAA,aAAArB,gBAAA;IAAAsB,GAAA;IAAAC,KAAA,EAED,SAAAC,aAAA,EAAe;MACX,IAAI,CAACpB,KAAK,CAACqB,OAAO,CAAC,CAAC;IACxB;EAAC;IAAAH,GAAA;IAAAC,KAAA,EAED,SAAAG,SAAA,EAAW;MACP,IAAI,CAACtB,KAAK,CAACuB,IAAI,CAAC,IAAI,CAACvB,KAAK,CAACwB,WAAW,IAAI,CAACC,KAAK,CAACC,OAAO,CAAC,IAAI,CAACV,KAAK,CAACJ,QAAQ,CAAC,GAAG,IAAI,CAACI,KAAK,CAACJ,QAAQ,GAAG,IAAI,CAACI,KAAK,CAACJ,QAAQ,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC;MACnI,IAAI,CAACZ,KAAK,CAACqB,OAAO,CAAC,CAAC;IACxB;EAAC;IAAAH,GAAA;IAAAC,KAAA,EAED,SAAAQ,OAAA,EAAS;MAAA,IAAAC,MAAA;MACL,IAAIC,KAAK;MACT,IAAI,IAAI,CAACb,KAAK,CAACJ,QAAQ,CAAC3D,MAAM,EAAE;QAC5B,IAAI,CAACwE,KAAK,CAACC,OAAO,CAAC,IAAI,CAACV,KAAK,CAACJ,QAAQ,CAAC,IAAI,IAAI,CAACI,KAAK,CAACJ,QAAQ,CAAC3D,MAAM,KAAK,CAAC,EAAE;UACzE4E,KAAK,GAAG,cACJrG,MAAA,YAAAsG,aAAA;YAAMZ,GAAG,EAAC;UAAU,GACfa,gBAAI,CAAC1F,CAAC,CAAC,aAAa,CAAC,EAAC,MAErB,CAAC,eACPb,MAAA,YAAAsG,aAAA;YAAMZ,GAAG,EAAC,IAAI;YAACc,SAAS,EAAE,IAAI,CAAChC,KAAK,CAACiC,OAAO,CAACtD;UAAS,GACjD,IAAI,CAACqC,KAAK,CAACJ,QACV,CAAC,CACV;QACL,CAAC,MAAM;UACHiB,KAAK,GAAG,cACJrG,MAAA,YAAAsG,aAAA;YAAMZ,GAAG,EAAC;UAAU,GACfa,gBAAI,CAAC1F,CAAC,CAAC,aAAa,CAAC,EAAC,MAErB,CAAC,eACPb,MAAA,YAAAsG,aAAA;YAAMZ,GAAG,EAAC,IAAI;YAACc,SAAS,EAAE,IAAI,CAAChC,KAAK,CAACiC,OAAO,CAACtD;UAAS,GACjDoD,gBAAI,CAAC1F,CAAC,CAAC,UAAU,EAAE,IAAI,CAAC2E,KAAK,CAACJ,QAAQ,CAAC3D,MAAM,CAC5C,CAAC,CACV;QACL;MACJ,CAAC,MAAM;QACH4E,KAAK,GAAG,IAAI,CAAC7B,KAAK,CAAC6B,KAAK,IAAIE,gBAAI,CAAC1F,CAAC,CAAC,0BAA0B,CAAC;MAClE;MAEA,oBAAOb,MAAA,YAAAsG,aAAA,CAACjG,SAAA,CAAAqG,MAAM;QACVb,OAAO,EAAE,SAAAA,QAAA,EAAM,CAAC,CAAE;QAClBlC,QAAQ,EAAE,KAAM;QAChB8C,OAAO,EAAE;UAAEE,KAAK,EAAEC,iBAAK,CAACC,IAAI,CAAC,IAAI,CAACrC,KAAK,CAACiC,OAAO,CAACnD,MAAM,EAAE,IAAI,CAACkB,KAAK,CAACiC,OAAO,CAACjD,YAAY;QAAE,CAAE;QAC3FsD,SAAS;QACTC,IAAI,EAAE,CAAC,CAAE;QACT,mBAAgB;MAA4B,gBAE5C/G,MAAA,YAAAsG,aAAA,CAACjG,SAAA,CAAA2G,WAAW;QAACzB,EAAE,EAAC,4BAA4B;QAACkB,OAAO,EAAE;UAAEQ,IAAI,EAAE,IAAI,CAACzC,KAAK,CAACiC,OAAO,CAACzC;QAAU;MAAE,GAAEqC,KAAmB,CAAC,eACnHrG,MAAA,YAAAsG,aAAA,CAACjG,SAAA,CAAA6G,aAAa;QAACV,SAAS,EAAEI,iBAAK,CAACC,IAAI,CAAC,IAAI,CAACrC,KAAK,CAACiC,OAAO,CAAC5C,OAAO,EAAE,IAAI,CAACW,KAAK,CAACiC,OAAO,CAAC1C,aAAa;MAAE,gBAC/F/D,MAAA,YAAAsG,aAAA,CAAC7F,YAAA,WAAW;QACR0G,KAAK;QACLC,WAAW,EAAE,IAAI,CAAC5C,KAAK,CAAC4C,WAAW,IAAI,IAAI,CAAC5C,KAAK,CAAC6C,MAAM,IAAI,KAAM,CAAC;QAAA;QACnEC,WAAW,EAAE,CAAC,CAAC,IAAI,CAAC9C,KAAK,CAAC8C,WAAY;QACtCC,aAAa,EAAE,IAAI,CAAC/C,KAAK,CAAC+C,aAAa,KAAK,KAAM;QAClDC,iBAAiB,EAAE,CAAC,CAAC,IAAI,CAAChD,KAAK,CAACgD,iBAAkB;QAClDC,WAAW,EAAE,CAAC,CAAC,IAAI,CAACjD,KAAK,CAACiD,WAAY;QACtCC,SAAS,EAAE,IAAI,CAAClD,KAAK,CAACkD,SAAS,KAAK,KAAM;QAC1CC,kBAAkB,EAAE,IAAI,CAACnD,KAAK,CAACmD,kBAAkB,KAAK,KAAM;QAC5DC,WAAW,EAAE,IAAI,CAACpD,KAAK,CAACoD,WAAW,KAAK,KAAM;QAC9CC,SAAS,EAAE,IAAI,CAACrD,KAAK,CAACqD,SAAU;QAChCC,WAAW,EAAE,IAAI,CAACtD,KAAK,CAACsD,WAAY;QACpCC,YAAY,EAAE,IAAI,CAACvD,KAAK,CAACuD,YAAa;QACtC3C,QAAQ,EAAE,IAAI,CAACZ,KAAK,CAACY,QAAS;QAC9B4C,gBAAgB,EAAE,IAAI,CAACxD,KAAK,CAACwD,gBAAiB;QAC9CC,kBAAkB,EAAE,IAAI,CAACzD,KAAK,CAACyD,kBAAmB;QAClDC,QAAQ,EAAE,SAAAA,SAAC9C,QAAQ,EAAE+C,aAAa,EAAEC,QAAQ,EAAK;UAC7ChC,MAAI,CAACiC,QAAQ,CAAC;YAAEjD,QAAQ,EAARA;UAAS,CAAC,EAAE;YAAA,OACxB+C,aAAa,KAAK,CAAC/B,MAAI,CAAC5B,KAAK,CAAC8D,iBAAiB,IAAIF,QAAQ,CAAC,IAAIhC,MAAI,CAACN,QAAQ,CAAC,CAAC;UAAA,EAAC;QACxF,CAAE;QACFjF,CAAC,EAAE,IAAI,CAAC2D,KAAK,CAAC3D,CAAC,IAAI0F,gBAAI,CAAC1F,CAAE;QAC1B0H,IAAI,EAAE,IAAI,CAAC/D,KAAK,CAAC+D,IAAI,IAAIhC,gBAAI,CAACiC,WAAW,CAAC,CAAE;QAC5CC,MAAM,EAAE,IAAI,CAACjE,KAAK,CAACiE,MAAO;QAC1BC,SAAS,EAAE,IAAI,CAAClE,KAAK,CAACkE,SAAU;QAChCC,SAAS,EAAE,IAAI,CAACnE,KAAK,CAACmE,SAAU;QAChCC,gBAAgB,EAAE,IAAI,CAACpE,KAAK,CAACoE,gBAAiB;QAC9CC,UAAU,EAAE,IAAI,CAACrE,KAAK,CAACqE,UAAW;QAClCC,gBAAgB,EAAE,IAAI,CAACtE,KAAK,CAACsE;MAAiB,CACjD,CACU,CAAC,eAChB9I,MAAA,YAAAsG,aAAA,CAACjG,SAAA,CAAA0I,aAAa,qBACV/I,MAAA,YAAAsG,aAAA,CAACjG,SAAA,CAAA2I,MAAM;QAACC,OAAO,EAAC,WAAW;QAACC,OAAO,EAAE,SAAAA,QAAA;UAAA,OAAM9C,MAAI,CAACN,QAAQ,CAAC,CAAC;QAAA,CAAC;QAACqD,SAAS,eAAEnJ,MAAA,YAAAsG,aAAA,CAAChG,cAAA,CAAA8I,KAAM,MAAE,CAAE;QAACC,QAAQ,EAAE,CAAC,IAAI,CAAC7D,KAAK,CAACJ,QAAQ,CAAC3D,MAAO;QAAC6H,KAAK,EAAC;MAAS,GAAE,IAAI,CAAC9E,KAAK,CAAC+E,EAAE,IAAIhD,gBAAI,CAAC1F,CAAC,CAAC,OAAO,CAAU,CAAC,eACrLb,MAAA,YAAAsG,aAAA,CAACjG,SAAA,CAAA2I,MAAM;QAACM,KAAK,EAAC,MAAM;QAACL,OAAO,EAAC,WAAW;QAACC,OAAO,EAAE,SAAAA,QAAA;UAAA,OAAM9C,MAAI,CAACR,YAAY,CAAC,CAAC;QAAA,CAAC;QAACuD,SAAS,eAAEnJ,MAAA,YAAAsG,aAAA,CAAChG,cAAA,CAAAkJ,MAAU,MAAE;MAAE,GAAE,IAAI,CAAChF,KAAK,CAACiF,MAAM,IAAIlD,gBAAI,CAAC1F,CAAC,CAAC,WAAW,CAAU,CAC/I,CACX,CAAC;IACb;EAAC;EAAA,OAAAuD,gBAAA;AAAA,EApH0BsF,iBAAK,CAACC,SAAS;AAuH9CvF,gBAAgB,CAACwF,SAAS,GAAG;EACzBxC,WAAW,EAAEyC,qBAAS,CAACC,MAAM;EAC7BnF,UAAU,EAAEkF,qBAAS,CAACC,MAAM;EAAE;EAC9B1E,QAAQ,EAAEyE,qBAAS,CAACE,SAAS,CAAC,CAC1BF,qBAAS,CAACC,MAAM,EAChBD,qBAAS,CAACG,KAAK,CAAE;EAAA,CACpB,CAAC;;EACFvD,OAAO,EAAEoD,qBAAS,CAACI,MAAM;EACzBpE,OAAO,EAAEgE,qBAAS,CAACK,IAAI,CAACC,UAAU;EAClCpE,IAAI,EAAE8D,qBAAS,CAACK,IAAI,CAACC,UAAU;EAC/BZ,EAAE,EAAEM,qBAAS,CAACC,MAAM;EACpBL,MAAM,EAAEI,qBAAS,CAACC,MAAM;EACxBrB,MAAM,EAAEoB,qBAAS,CAACI,MAAM,CAACE,UAAU;EACnC7C,WAAW,EAAEuC,qBAAS,CAACO,IAAI;EAC3B7C,aAAa,EAAEsC,qBAAS,CAACO,IAAI;EAC7B5C,iBAAiB,EAAEqC,qBAAS,CAACO,IAAI;EACjC3C,WAAW,EAAEoC,qBAAS,CAACO,IAAI;EAC3B1C,SAAS,EAAEmC,qBAAS,CAACO,IAAI;EAAE;EAC3BxC,WAAW,EAAEiC,qBAAS,CAACO,IAAI;EAC3BtC,WAAW,EAAE+B,qBAAS,CAACQ,OAAO,CAACR,qBAAS,CAACC,MAAM,CAAC;EAAE;EAClD/B,YAAY,EAAE8B,qBAAS,CAACC,MAAM;EAAE;EAChCjC,SAAS,EAAEgC,qBAAS,CAACC,MAAM;EAC3BxB,iBAAiB,EAAEuB,qBAAS,CAACO,IAAI;EACjCzC,kBAAkB,EAAEkC,qBAAS,CAACO,IAAI;EAAE;EACpCtB,gBAAgB,EAAEe,qBAAS,CAACO,IAAI;EAAE;EAClCpC,gBAAgB,EAAE6B,qBAAS,CAACC,MAAM;EAAE;EACpC7B,kBAAkB,EAAE4B,qBAAS,CAACO,IAAI;EAAE;;EAEpC/D,KAAK,EAAEwD,qBAAS,CAACC,MAAM;EACvBvB,IAAI,EAAEsB,qBAAS,CAACC,MAAM;EAEtBnB,SAAS,EAAEkB,qBAAS,CAACC,MAAM;EAC3BpB,SAAS,EAAEmB,qBAAS,CAACC,MAAM;EAC3BlB,gBAAgB,EAAEiB,qBAAS,CAACO,IAAI;EAChCvB,UAAU,EAAEgB,qBAAS,CAACO,IAAI;EAAE;EAC5BpE,WAAW,EAAE6D,qBAAS,CAACO,IAAI,CAAE;AACjC,CAAC;;AAED;AACA,IAAME,OAAO,GAAG,IAAAC,kBAAU,EAACrH,MAAM,CAAC,CAACkB,gBAAgB,CAAC;AAAC,IAAAoG,QAAA,GAAAC,OAAA,cACtCH,OAAO"}
@@ -29,11 +29,11 @@ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbol
29
29
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2["default"])(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
30
30
  function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2["default"])(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2["default"])(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2["default"])(this, result); }; }
31
31
  function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } } /**
32
- * Copyright 2018-2023 Denis Haev (bluefox) <dogafox@gmail.com>
33
- *
34
- * MIT License
35
- *
36
- **/ // please do not delete React, as without it other projects could not be compiled: ReferenceError: React is not defined
32
+ * Copyright 2018-2023 Denis Haev (bluefox) <dogafox@gmail.com>
33
+ *
34
+ * MIT License
35
+ *
36
+ **/ // please do not delete React, as without it other projects could not be compiled: ReferenceError: React is not defined
37
37
  var styles = function styles() {
38
38
  return {
39
39
  headerID: {
@@ -1 +1 @@
1
- {"version":3,"file":"SelectID.js","names":["_react","_interopRequireDefault","require","_propTypes","_styles","_Button","_DialogTitle","_DialogContent","_DialogActions","_Dialog","_Cancel","_Check","_Utils","_i18n","_ObjectBrowser","ownKeys","e","r","t","Object","keys","getOwnPropertySymbols","o","filter","getOwnPropertyDescriptor","enumerable","push","apply","_objectSpread","arguments","length","forEach","_defineProperty2","getOwnPropertyDescriptors","defineProperties","defineProperty","_createSuper","Derived","hasNativeReflectConstruct","_isNativeReflectConstruct","_createSuperInternal","Super","_getPrototypeOf2","result","NewTarget","constructor","Reflect","construct","_possibleConstructorReturn2","sham","Proxy","Boolean","prototype","valueOf","call","styles","headerID","fontWeight","fontStyle","dialog","height","dialogMobile","padding","width","maxWidth","maxHeight","content","overflow","contentMobile","titleRoot","whiteSpace","display","textOverflow","DialogSelectID","_React$Component","_inherits2","_super","props","_this","_classCallCheck2","dialogName","concat","filters","window","_localStorage","localStorage","getItem","JSON","parse","selected","_typeof2","id","state","name","_createClass2","key","value","handleCancel","onClose","handleOk","onOk","multiSelect","render","_this2","title","createElement","I18n","className","classes","paper","Utils","clsx","fullWidth","open","root","foldersFirst","imagePrefix","prefix","defaultFilters","showExpertButton","undefined","expertMode","style","columns","types","lang","getLanguage","socket","notEditable","themeName","themeType","customFilter","onFilterChanged","filterConfig","setItem","stringify","onSelect","isDouble","setState","filterFunc","variant","onClick","startIcon","disabled","color","ok","cancel","React","Component","propTypes","PropTypes","string","object","bool","func","isRequired","oneOfType","array","_export","withStyles","_default","exports"],"sources":["SelectID.js"],"sourcesContent":["/**\n * Copyright 2018-2023 Denis Haev (bluefox) <dogafox@gmail.com>\n *\n * MIT License\n *\n **/\n// please do not delete React, as without it other projects could not be compiled: ReferenceError: React is not defined\nimport React from 'react';\nimport PropTypes from 'prop-types';\nimport { withStyles } from '@mui/styles';\n\nimport Button from '@mui/material/Button';\nimport DialogTitle from '@mui/material/DialogTitle';\nimport DialogContent from '@mui/material/DialogContent';\nimport DialogActions from '@mui/material/DialogActions';\nimport Dialog from '@mui/material/Dialog';\n\nimport IconCancel from '@mui/icons-material/Cancel';\nimport IconOk from '@mui/icons-material/Check';\n\nimport Utils from '../Components/Utils';\nimport I18n from '../i18n';\nimport ObjectBrowser from '../Components/ObjectBrowser';\n\nconst styles = () => ({\n headerID: {\n fontWeight: 'bold',\n fontStyle: 'italic',\n },\n dialog: {\n height: '95%',\n },\n dialogMobile: {\n padding: 4,\n width: '100%',\n maxWidth: '100%',\n maxHeight: 'calc(100% - 16px)',\n height: '100%',\n },\n content: {\n height: '100%',\n overflow: 'hidden',\n },\n contentMobile: {\n padding: '8px 4px',\n },\n titleRoot: {\n whiteSpace: 'nowrap',\n width: 'calc(100% - 72px)',\n overflow: 'hidden',\n display: 'inline-block',\n textOverflow: 'ellipsis',\n },\n});\n\n/**\n * @typedef {object} DialogSelectIDProps\n * @property {string} [dialogName] The internal name of the dialog; default: \"default\"\n * @property {string} [title] The dialog title; default: Please select object ID... (translated)\n * @property {boolean} [multiSelect] Set to true to allow the selection of multiple IDs.\n * @property {boolean} [foldersFirst] Show folders before any leaves.\n * @property {string} [imagePrefix] Prefix (default: '.')\n * @property {boolean} [showExpertButton] Show the expert button?\n * @property {import('../Components/types').ObjectBrowserColumn[]} [columns] Columns to display; default: 'name', 'type', 'role', 'room', 'func', 'val'\n * @property {import('../Components/types').ObjectBrowserType[]} [types] Object types to show; default: 'state' only\n * @property {ioBroker.Languages} [lang] The language.\n * @property {import('../Connection').default} socket The socket connection.\n * @property {boolean} [notEditable] Can't objects be edited? (default: true)\n * @property {string} [themeName] Theme name.\n * @property {string} [themeType] Theme type.\n * @property {import('../Components/types').ObjectBrowserCustomFilter} [customFilter] Custom filter.\n * @property {string | string[]} [selected] The selected IDs.\n * @property {string} [ok] The ok button text; default: OK (translated)\n * @property {string} [cancel] The cancel button text; default: Cancel (translated)\n * @property {() => void} onClose Close handler that is always called when the dialog is closed.\n * @property {(selected: string | string[] | undefined, name: string) => void} onOk Handler that is called when the user presses OK.\n * @property {{headerID: string; dialog: string; content: string}} [classes] The styling class names.\n *\n * @extends {React.Component<DialogSelectIDProps>}\n */\nclass DialogSelectID extends React.Component {\n /**\n * @param {DialogSelectIDProps} props\n */\n constructor(props) {\n super(props);\n this.dialogName = this.props.dialogName || 'default';\n this.dialogName = `SelectID.${this.dialogName}`;\n\n this.filters = (window._localStorage || window.localStorage).getItem(this.dialogName) || '{}';\n\n try {\n this.filters = JSON.parse(this.filters);\n } catch (e) {\n this.filters = {};\n }\n\n if (props.filters) {\n this.filters = { ...this.filters, ...props.filters };\n }\n\n let selected = this.props.selected || [];\n if (typeof selected !== 'object') {\n selected = [selected];\n }\n selected = selected.filter(id => id);\n\n this.state = {\n selected,\n name: '',\n };\n }\n\n handleCancel() {\n this.props.onClose();\n }\n\n handleOk() {\n this.props.onOk(this.props.multiSelect ? this.state.selected : this.state.selected[0] || '', this.state.name);\n this.props.onClose();\n }\n\n render() {\n let title;\n if (this.state.name || this.state.selected.length) {\n if (this.state.selected.length === 1) {\n title = [\n <span key=\"selected\">\n {I18n.t('ra_Selected')}\n &nbsp;\n </span>,\n <span key=\"id\" className={this.props.classes.headerID}>\n {(this.state.name || this.state.selected) + (this.state.name ? ` [${this.state.selected}]` : '')}\n </span>,\n ];\n } else {\n title = [\n <span key=\"selected\">\n {I18n.t('ra_Selected')}\n &nbsp;\n </span>,\n <span key=\"id\" className={this.props.classes.headerID}>\n {I18n.t('%s items', this.state.selected.length)}\n </span>,\n ];\n }\n } else {\n title = this.props.title || I18n.t('ra_Please select object ID...');\n }\n\n return <Dialog\n onClose={() => {}}\n maxWidth={false}\n classes={{ paper: Utils.clsx(this.props.classes.dialog, this.props.classes.dialogMobile) }}\n fullWidth\n open={!0}\n aria-labelledby=\"ar_dialog_selectid_title\"\n >\n <DialogTitle id=\"ar_dialog_selectid_title\" classes={{ root: this.props.classes.titleRoot }}>{title}</DialogTitle>\n <DialogContent className={Utils.clsx(this.props.classes.content, this.props.classes.contentMobile)}>\n <ObjectBrowser\n foldersFirst={this.props.foldersFirst}\n imagePrefix={this.props.imagePrefix || this.props.prefix} // prefix is for back compatibility\n defaultFilters={this.filters}\n dialogName={this.dialogName}\n showExpertButton={this.props.showExpertButton !== undefined ? this.props.showExpertButton : true}\n expertMode={this.props.expertMode}\n style={{ width: '100%', height: '100%' }}\n columns={this.props.columns || ['name', 'type', 'role', 'room', 'func', 'val']}\n types={this.props.types || ['state']}\n root={this.props.root}\n t={I18n.t}\n lang={this.props.lang || I18n.getLanguage()}\n socket={this.props.socket}\n selected={this.state.selected}\n multiSelect={this.props.multiSelect}\n notEditable={this.props.notEditable === undefined ? true : this.props.notEditable}\n name={this.state.name}\n themeName={this.props.themeName}\n themeType={this.props.themeType}\n customFilter={this.props.customFilter}\n onFilterChanged={filterConfig => {\n this.filters = filterConfig;\n (window._localStorage || window.localStorage).setItem(this.dialogName, JSON.stringify(filterConfig));\n }}\n onSelect={(selected, name, isDouble) => {\n if (JSON.stringify(selected) !== JSON.stringify(this.state.selected)) {\n this.setState({ selected, name }, () =>\n isDouble && this.handleOk());\n } else if (isDouble) {\n this.handleOk();\n }\n }}\n filterFunc={this.props.filterFunc}\n />\n </DialogContent>\n <DialogActions>\n <Button id={`ar_dialog_selectid_ok_${this.props.dialogName || ''}`} variant=\"contained\" onClick={() => this.handleOk()} startIcon={<IconOk />} disabled={!this.state.selected.length} color=\"primary\">{this.props.ok || I18n.t('ra_Ok')}</Button>\n <Button id={`ar_dialog_selectid_cancel_${this.props.dialogName || ''}`} color=\"grey\" variant=\"contained\" onClick={() => this.handleCancel()} startIcon={<IconCancel />}>{this.props.cancel || I18n.t('ra_Cancel')}</Button>\n </DialogActions>\n </Dialog>;\n }\n}\n\nDialogSelectID.propTypes = {\n dialogName: PropTypes.string, // where to store settings in localStorage\n classes: PropTypes.object,\n notEditable: PropTypes.bool,\n onClose: PropTypes.func.isRequired,\n onOk: PropTypes.func.isRequired,\n title: PropTypes.string,\n lang: PropTypes.string,\n foldersFirst: PropTypes.bool,\n selected: PropTypes.oneOfType([\n PropTypes.string,\n PropTypes.array,\n ]),\n filters: PropTypes.object, // predefined filter fields, like {\"id\":\"\",\"name\":\"\",\"room\":\"\",\"func\":\"\",\"role\":\"level\",\"type\":\"\",\"custom\":\"\"}\n customFilter: PropTypes.object, // optional {common: {custom: true}} or {common: {custom: 'sql.0'}}\n socket: PropTypes.object.isRequired,\n cancel: PropTypes.string,\n imagePrefix: PropTypes.string,\n ok: PropTypes.string,\n themeName: PropTypes.string,\n themeType: PropTypes.string,\n showExpertButton: PropTypes.bool,\n expertMode: PropTypes.bool, // force expert mode\n multiSelect: PropTypes.bool,\n types: PropTypes.array, // optional ['state', 'instance', 'channel']\n columns: PropTypes.array, // optional ['name', 'type', 'role', 'room', 'func', 'val', 'buttons']\n root: PropTypes.string, // optional. Root of tree. Show only this branch of tree\n\n filterFunc: PropTypes.func, // function to filter out all unnecessary objects. It cannot be used together with \"types\"\n // Example for function: `obj => obj.common && obj.common.type === 'boolean'` to show only boolean states\n};\n\n/** @type {typeof DialogSelectID} */\nconst _export = withStyles(styles)(DialogSelectID);\nexport default _export;\n"],"mappings":"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"}
1
+ {"version":3,"file":"SelectID.js","names":["_react","_interopRequireDefault","require","_propTypes","_styles","_Button","_DialogTitle","_DialogContent","_DialogActions","_Dialog","_Cancel","_Check","_Utils","_i18n","_ObjectBrowser","ownKeys","e","r","t","Object","keys","getOwnPropertySymbols","o","filter","getOwnPropertyDescriptor","enumerable","push","apply","_objectSpread","arguments","length","forEach","_defineProperty2","getOwnPropertyDescriptors","defineProperties","defineProperty","_createSuper","Derived","hasNativeReflectConstruct","_isNativeReflectConstruct","_createSuperInternal","Super","_getPrototypeOf2","result","NewTarget","constructor","Reflect","construct","_possibleConstructorReturn2","sham","Proxy","Boolean","prototype","valueOf","call","styles","headerID","fontWeight","fontStyle","dialog","height","dialogMobile","padding","width","maxWidth","maxHeight","content","overflow","contentMobile","titleRoot","whiteSpace","display","textOverflow","DialogSelectID","_React$Component","_inherits2","_super","props","_this","_classCallCheck2","dialogName","concat","filters","window","_localStorage","localStorage","getItem","JSON","parse","selected","_typeof2","id","state","name","_createClass2","key","value","handleCancel","onClose","handleOk","onOk","multiSelect","render","_this2","title","createElement","I18n","className","classes","paper","Utils","clsx","fullWidth","open","root","foldersFirst","imagePrefix","prefix","defaultFilters","showExpertButton","undefined","expertMode","style","columns","types","lang","getLanguage","socket","notEditable","themeName","themeType","customFilter","onFilterChanged","filterConfig","setItem","stringify","onSelect","isDouble","setState","filterFunc","variant","onClick","startIcon","disabled","color","ok","cancel","React","Component","propTypes","PropTypes","string","object","bool","func","isRequired","oneOfType","array","_export","withStyles","_default","exports"],"sources":["SelectID.js"],"sourcesContent":["/**\n * Copyright 2018-2023 Denis Haev (bluefox) <dogafox@gmail.com>\n *\n * MIT License\n *\n **/\n// please do not delete React, as without it other projects could not be compiled: ReferenceError: React is not defined\nimport React from 'react';\nimport PropTypes from 'prop-types';\nimport { withStyles } from '@mui/styles';\n\nimport Button from '@mui/material/Button';\nimport DialogTitle from '@mui/material/DialogTitle';\nimport DialogContent from '@mui/material/DialogContent';\nimport DialogActions from '@mui/material/DialogActions';\nimport Dialog from '@mui/material/Dialog';\n\nimport IconCancel from '@mui/icons-material/Cancel';\nimport IconOk from '@mui/icons-material/Check';\n\nimport Utils from '../Components/Utils';\nimport I18n from '../i18n';\nimport ObjectBrowser from '../Components/ObjectBrowser';\n\nconst styles = () => ({\n headerID: {\n fontWeight: 'bold',\n fontStyle: 'italic',\n },\n dialog: {\n height: '95%',\n },\n dialogMobile: {\n padding: 4,\n width: '100%',\n maxWidth: '100%',\n maxHeight: 'calc(100% - 16px)',\n height: '100%',\n },\n content: {\n height: '100%',\n overflow: 'hidden',\n },\n contentMobile: {\n padding: '8px 4px',\n },\n titleRoot: {\n whiteSpace: 'nowrap',\n width: 'calc(100% - 72px)',\n overflow: 'hidden',\n display: 'inline-block',\n textOverflow: 'ellipsis',\n },\n});\n\n/**\n * @typedef {object} DialogSelectIDProps\n * @property {string} [dialogName] The internal name of the dialog; default: \"default\"\n * @property {string} [title] The dialog title; default: Please select object ID... (translated)\n * @property {boolean} [multiSelect] Set to true to allow the selection of multiple IDs.\n * @property {boolean} [foldersFirst] Show folders before any leaves.\n * @property {string} [imagePrefix] Prefix (default: '.')\n * @property {boolean} [showExpertButton] Show the expert button?\n * @property {import('../Components/types').ObjectBrowserColumn[]} [columns] Columns to display; default: 'name', 'type', 'role', 'room', 'func', 'val'\n * @property {import('../Components/types').ObjectBrowserType[]} [types] Object types to show; default: 'state' only\n * @property {ioBroker.Languages} [lang] The language.\n * @property {import('../Connection').default} socket The socket connection.\n * @property {boolean} [notEditable] Can't objects be edited? (default: true)\n * @property {string} [themeName] Theme name.\n * @property {string} [themeType] Theme type.\n * @property {import('../Components/types').ObjectBrowserCustomFilter} [customFilter] Custom filter.\n * @property {string | string[]} [selected] The selected IDs.\n * @property {string} [ok] The ok button text; default: OK (translated)\n * @property {string} [cancel] The cancel button text; default: Cancel (translated)\n * @property {() => void} onClose Close handler that is always called when the dialog is closed.\n * @property {(selected: string | string[] | undefined, name: string) => void} onOk Handler that is called when the user presses OK.\n * @property {{headerID: string; dialog: string; content: string}} [classes] The styling class names.\n *\n * @extends {React.Component<DialogSelectIDProps>}\n */\nclass DialogSelectID extends React.Component {\n /**\n * @param {DialogSelectIDProps} props\n */\n constructor(props) {\n super(props);\n this.dialogName = this.props.dialogName || 'default';\n this.dialogName = `SelectID.${this.dialogName}`;\n\n this.filters = (window._localStorage || window.localStorage).getItem(this.dialogName) || '{}';\n\n try {\n this.filters = JSON.parse(this.filters);\n } catch (e) {\n this.filters = {};\n }\n\n if (props.filters) {\n this.filters = { ...this.filters, ...props.filters };\n }\n\n let selected = this.props.selected || [];\n if (typeof selected !== 'object') {\n selected = [selected];\n }\n selected = selected.filter(id => id);\n\n this.state = {\n selected,\n name: '',\n };\n }\n\n handleCancel() {\n this.props.onClose();\n }\n\n handleOk() {\n this.props.onOk(this.props.multiSelect ? this.state.selected : this.state.selected[0] || '', this.state.name);\n this.props.onClose();\n }\n\n render() {\n let title;\n if (this.state.name || this.state.selected.length) {\n if (this.state.selected.length === 1) {\n title = [\n <span key=\"selected\">\n {I18n.t('ra_Selected')}\n &nbsp;\n </span>,\n <span key=\"id\" className={this.props.classes.headerID}>\n {(this.state.name || this.state.selected) + (this.state.name ? ` [${this.state.selected}]` : '')}\n </span>,\n ];\n } else {\n title = [\n <span key=\"selected\">\n {I18n.t('ra_Selected')}\n &nbsp;\n </span>,\n <span key=\"id\" className={this.props.classes.headerID}>\n {I18n.t('%s items', this.state.selected.length)}\n </span>,\n ];\n }\n } else {\n title = this.props.title || I18n.t('ra_Please select object ID...');\n }\n\n return <Dialog\n onClose={() => {}}\n maxWidth={false}\n classes={{ paper: Utils.clsx(this.props.classes.dialog, this.props.classes.dialogMobile) }}\n fullWidth\n open={!0}\n aria-labelledby=\"ar_dialog_selectid_title\"\n >\n <DialogTitle id=\"ar_dialog_selectid_title\" classes={{ root: this.props.classes.titleRoot }}>{title}</DialogTitle>\n <DialogContent className={Utils.clsx(this.props.classes.content, this.props.classes.contentMobile)}>\n <ObjectBrowser\n foldersFirst={this.props.foldersFirst}\n imagePrefix={this.props.imagePrefix || this.props.prefix} // prefix is for back compatibility\n defaultFilters={this.filters}\n dialogName={this.dialogName}\n showExpertButton={this.props.showExpertButton !== undefined ? this.props.showExpertButton : true}\n expertMode={this.props.expertMode}\n style={{ width: '100%', height: '100%' }}\n columns={this.props.columns || ['name', 'type', 'role', 'room', 'func', 'val']}\n types={this.props.types || ['state']}\n root={this.props.root}\n t={I18n.t}\n lang={this.props.lang || I18n.getLanguage()}\n socket={this.props.socket}\n selected={this.state.selected}\n multiSelect={this.props.multiSelect}\n notEditable={this.props.notEditable === undefined ? true : this.props.notEditable}\n name={this.state.name}\n themeName={this.props.themeName}\n themeType={this.props.themeType}\n customFilter={this.props.customFilter}\n onFilterChanged={filterConfig => {\n this.filters = filterConfig;\n (window._localStorage || window.localStorage).setItem(this.dialogName, JSON.stringify(filterConfig));\n }}\n onSelect={(selected, name, isDouble) => {\n if (JSON.stringify(selected) !== JSON.stringify(this.state.selected)) {\n this.setState({ selected, name }, () =>\n isDouble && this.handleOk());\n } else if (isDouble) {\n this.handleOk();\n }\n }}\n filterFunc={this.props.filterFunc}\n />\n </DialogContent>\n <DialogActions>\n <Button id={`ar_dialog_selectid_ok_${this.props.dialogName || ''}`} variant=\"contained\" onClick={() => this.handleOk()} startIcon={<IconOk />} disabled={!this.state.selected.length} color=\"primary\">{this.props.ok || I18n.t('ra_Ok')}</Button>\n <Button id={`ar_dialog_selectid_cancel_${this.props.dialogName || ''}`} color=\"grey\" variant=\"contained\" onClick={() => this.handleCancel()} startIcon={<IconCancel />}>{this.props.cancel || I18n.t('ra_Cancel')}</Button>\n </DialogActions>\n </Dialog>;\n }\n}\n\nDialogSelectID.propTypes = {\n dialogName: PropTypes.string, // where to store settings in localStorage\n classes: PropTypes.object,\n notEditable: PropTypes.bool,\n onClose: PropTypes.func.isRequired,\n onOk: PropTypes.func.isRequired,\n title: PropTypes.string,\n lang: PropTypes.string,\n foldersFirst: PropTypes.bool,\n selected: PropTypes.oneOfType([\n PropTypes.string,\n PropTypes.array,\n ]),\n filters: PropTypes.object, // predefined filter fields, like {\"id\":\"\",\"name\":\"\",\"room\":\"\",\"func\":\"\",\"role\":\"level\",\"type\":\"\",\"custom\":\"\"}\n customFilter: PropTypes.object, // optional {common: {custom: true}} or {common: {custom: 'sql.0'}}\n socket: PropTypes.object.isRequired,\n cancel: PropTypes.string,\n imagePrefix: PropTypes.string,\n ok: PropTypes.string,\n themeName: PropTypes.string,\n themeType: PropTypes.string,\n showExpertButton: PropTypes.bool,\n expertMode: PropTypes.bool, // force expert mode\n multiSelect: PropTypes.bool,\n types: PropTypes.array, // optional ['state', 'instance', 'channel']\n columns: PropTypes.array, // optional ['name', 'type', 'role', 'room', 'func', 'val', 'buttons']\n root: PropTypes.string, // optional. Root of tree. Show only this branch of tree\n\n filterFunc: PropTypes.func, // function to filter out all unnecessary objects. It cannot be used together with \"types\"\n // Example for function: `obj => obj.common && obj.common.type === 'boolean'` to show only boolean states\n};\n\n/** @type {typeof DialogSelectID} */\nconst _export = withStyles(styles)(DialogSelectID);\nexport default _export;\n"],"mappings":"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"}
package/GenericApp.js CHANGED
@@ -37,11 +37,11 @@ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbol
37
37
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2["default"])(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
38
38
  function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2["default"])(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2["default"])(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2["default"])(this, result); }; }
39
39
  function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } } /**
40
- * Copyright 2018-2023 Denis Haev (bluefox) <dogafox@gmail.com>
41
- *
42
- * MIT License
43
- *
44
- **/
40
+ * Copyright 2018-2023 Denis Haev (bluefox) <dogafox@gmail.com>
41
+ *
42
+ * MIT License
43
+ *
44
+ **/
45
45
  // import './index.css';
46
46
  var cssStyle = "\nhtml {\n height: 100%;\n}\n\nbody {\n margin: 0;\n padding: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\", sans-serif;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n width: 100%;\n height: 100%;\n overflow: hidden;\n}\n\n/* scrollbar */\n::-webkit-scrollbar-track {\n background-color: #ccc;\n border-radius: 5px;\n}\n\n::-webkit-scrollbar {\n width: 5px;\n height: 5px;\n background-color: #ccc;\n}\n\n::-webkit-scrollbar-thumb {\n background-color: #575757;\n border-radius: 5px;\n}\n\n#root {\n height: 100%;\n}\n\n.App {\n height: 100%;\n}\n\n@keyframes glow {\n from {\n background-color: initial;\n }\n to {\n background-color: #58c458;\n }\n}\n";
47
47
 
@@ -202,10 +202,11 @@ declare class Connection {
202
202
  instanceMessage(messageType: string, sourceInstance: string, data: object): void;
203
203
  /**
204
204
  * Gets all states.
205
+ * @param {string} pattern The pattern to filter states.
205
206
  * @param {boolean} disableProgressUpdate don't call onProgress() when done
206
207
  * @returns {Promise<Record<string, ioBroker.State>>}
207
208
  */
208
- getStates(disableProgressUpdate: boolean): Promise<Record<string, ioBroker.State>>;
209
+ getStates(pattern: string, disableProgressUpdate: boolean): Promise<Record<string, ioBroker.State>>;
209
210
  /**
210
211
  * Gets the given state.
211
212
  * @param {string} id The state ID.