4.13.12 • Published 3 days ago

@iobroker/adapter-react-v5 v4.13.12

Weekly downloads
-
License
MIT
Repository
github
Last release
3 days ago

Help ReactJS classes for adapter config

You can find demo on https://github.com/ioBroker/adapter-react-demo

Getting started

If you want to create the configuration page with ReactJS: 1. Create github repo for adapter. 2. execute npx create-react-app src . It will take a while. 3. cd src 4. Modify package.json file in src directory: - Change name from src to ADAPTERNAME-admin (Of course replace ADAPTERNAME with yours) - Add to devDependencies:

  ```
  "@iobroker/adapter-react": "^4.0.10",
  ```
  Versions can be higher.
  So your src/package.json should look like:
{
  "name": "ADAPTERNAME-admin",
  "version": "0.1.0",
  "private": true,
  "dependencies": {
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "react-icons": "^4.6.0",
    "react-scripts": "^5.0.1",
    "@iobroker/adapter-react-v5": "^3.2.7",
    "del": "^6.1.1",
    "gulp": "^4.0.2"
  },
  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test",
    "eject": "react-scripts eject"
  },
  "eslintConfig": {
    "extends": "react-app"
  },
  "homepage": ".",
  "browserslist": [
    ">0.2%",
    "not dead",
    "not ie <= 11",
    "not op_mini all"
  ]
}
  1. Call in src: npm install
  2. Copy gulpfile.js into src: cp node_modules/@iobroker/adapter-react/gulpfile.js gulpfile.js
  3. Start your dummy application npm run start for developing or build with npm run build and copy files in build directory to www or to admin. In the admin you must rename index.html to index_m.html.
  4. You can do that with gulp tasks: gulp build, gulp copy, gulp renameIndex or gulp renameTab

Development

  1. Add socket.io to public/index.html. After
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />

insert

<script>
    var script = document.createElement('script');
    window.registerSocketOnLoad = function (cb) {
        window.socketLoadedHandler = cb;
    };
    const parts = (window.location.search || '').replace(/^\?/, '').split('&');
    const query = {};
    parts.forEach(item => {
        const [name, val] = item.split('=');
        query[decodeURIComponent(name)] = val !== undefined ? decodeURIComponent(val) : true;
    });
    script.onload = function () { typeof window.socketLoadedHandler === 'function' && window.socketLoadedHandler(); };
    script.src = window.location.port === '3000' ? window.location.protocol + '//' + (query.host || window.location.hostname) + ':' + (query.port || 8081) + '/lib/js/socket.io.js' : '%PUBLIC_URL%/../../lib/js/socket.io.js';

    document.head.appendChild(script);
</script>
  1. Add to App.js constructor initialization for I18n:
class App extends GenericApp {
    constructor(props) {
        const extendedProps = {...props};
        extendedProps.encryptedFields = ['pass']; // this parameter will be encrypted and decrypted automatically
        extendedProps.translations = {
            'en': require('./i18n/en'),
            'de': require('./i18n/de'),
            'ru': require('./i18n/ru'),
            'pt': require('./i18n/pt'),
            'nl': require('./i18n/nl'),
            'fr': require('./i18n/fr'),
            'it': require('./i18n/it'),
            'es': require('./i18n/es'),
            'pl': require('./i18n/pl'),
            'uk': require('./i18n/uk'),
            'zh-cn': require('./i18n/zh-cn'),
        };
        // get actual admin port
        extendedProps.socket = {port: parseInt(window.location.port, 10)};
        
        // Only if close, save buttons are not required at the bottom (e.g. if admin tab)
        // extendedProps.bottomButtons = false; 

        // only for debug purposes
        if (extendedProps.socket.port === 3000) {
            extendedProps.socket.port = 8081;
        }
        
        // allow to manage GenericApp the sentry initialisation or do not set the sentryDSN if no sentry available
        extendedProps.sentryDSN = 'https://yyy@sentry.iobroker.net/xx';
        
        super(extendedProps);
    }
    ...
}
  1. Replace index.js with the following code to support themes:
import React from 'react';
import ReactDOM from 'react-dom';
import { MuiThemeProvider} from '@material-ui/core/styles';
import * as serviceWorker from './serviceWorker';

import './index.css';
import App from './App';
import { version } from '../package.json';

import theme from '@iobroker/adapter-react/Theme';

console.log('iobroker.scenes@' + version);
let themeName = window.localStorage ? window.localStorage.getItem('App.theme') || 'light' : 'light';

function build() {
    return ReactDOM.render(<MuiThemeProvider theme={ theme(themeName) }>
        <App onThemeChange={_theme => {
            themeName = _theme;
            build();
        }}/>
    </MuiThemeProvider>, document.getElementById('root'));
}

build();

// If you want your app to work offline and load faster, you can change
// unregister() to register() below. Note this comes with some pitfalls.
// Learn more about service workers: http://bit.ly/CRA-PWA
serviceWorker.unregister();
  1. Add to App.js encoding and decoding of values:
class App extend GenericApp {
    ...
    onPrepareLoad(settings) {
        settings.pass = this.decode(settings.pass);
    }
    onPrepareSave(settings) {
        settings.pass = this.encode(settings.pass);
    }
}
  1. The optional step is to validate the data to be saved:
onPrepareSave(settings) {
     super.onPrepareSave(settings);
     if (DATA_INVALID) {
         return false; // configuration will not be saved
     } else {
         return true;
     }
 }

Components

Connection.tsx

This is a non-react class to provide the communication for socket connection with the server.

GenericApp.tsx

i18n.ts

Theme.tsx

Dialogs

Some dialogs are predefined and could be used out of the box.

Confirm.tsx

Usage:

import React from 'react';
import ConfirmDialog from '@iobroker/adapter-react/Dialogs/Confirm'
import I18n from '@iobroker/adapter-react/i18n';

class ExportImportDialog extends React.Component {
    constructor(props) {
        super(props);

        this.state = {
            confirmDialog: false,
        };
    }   

    renderConfirmDialog() {
        if (!this.state.confirmDialog) {
            return null;
        }
        return <ConfirmDialog
            title={ I18n.t('Scene will be overwritten.') }
            text={ I18n.t('All data will be lost. Confirm?') }
            ok={ I18n.t('Yes') }
            cancel={ I18n.t('Cancel') }
            suppressQuestionMinutes={5}
            dialogName="myConfirmDialogThatCouldBeSuppressed"
            suppressText={I18n.t('Suppress question for next %s minutes', 5)}
            onClose={isYes => {
                this.setState({ confirmDialog: false} );
            }}
        />;
    }
    render() {
        return <div>
            <Button onClick={ () => this.setState({confirmDialog: true}) }>Click</Button>
            { this.renderConfirmDialog() }
        </div>
    }
}

export default ExportImportDialog;

Error.tsx

Message.tsx

renderMessage() {
   if (this.state.showMessage) {
      return <Message
         text={this.state.showMessage}
         onClose={() => this.setState({showMessage: false})}
      />;
   } else {
      return null;
   }
}

SelectID.tsx

Logo

import DialogSelectID from '@iobroker/adapter-react/Dialogs/SelectID';

class MyComponent extends Component {
   constructor(props) {
      super(props);
      this.state = {
         showSelectId: false,
      };
   }

   renderSelectIdDialog() {
        if (this.state.showSelectId) {
            return <DialogSelectID
                key="tableSelect"
                imagePrefix="../.."
                dialogName={this.props.adapterName}
                themeType={this.props.themeType}
                socket={this.props.socket}
                statesOnly={true}
                selected={this.state.selectIdValue}
                onClose={() => this.setState({showSelectId: false})}
                onOk={(selected, name) => {
                    this.setState({showSelectId: false, selectIdValue: selected});                 
                }}
            />;
        } else {
            return null;
        }
    }
    render() {
      return renderSelectIdDialog();
    }
}

Cron

Include "react-text-mask": "^5.4.3", in package.json.

function renderCron() {
   if (!showCron) {
      return null;
   } else {   
      return <DialogCron
          key="dialogCron1"
          cron={this.state.cronValue || '* * * * *'}
          onClose={() => this.setState({ showCron: false })}
          onOk={cronValue => {
               this.setState({ cronValue })
          }}
      />;
   }
}

Components

Utils.tsx

getObjectNameFromObj

getObjectNameFromObj(obj, settings, options, isDesc)

Get object name from a single object.

Usage: Utils.getObjectNameFromObj(this.objects[id], null, {language: I18n.getLanguage()})

getObjectIcon

getObjectIcon(id, obj)

Get icon from the object.

Usage:

const icon = Utils.getObjectIcon(id, this.objects[id]);
return (<img src={icon}/>);
isUseBright

isUseBright(color, defaultValue)

Usage: `

Loader.tsx

Logo

render() {
     if (!this.state.loaded) {
         return <MuiThemeProvider theme={this.state.theme}>
             <Loader theme={this.state.themeType}/>
         </MuiThemeProvider>;
     }
     // render loaded data
}

Logo.tsx

Logo

render() {
   return <form className={this.props.classes.tab}>
      <Logo
       instance={this.props.instance}
       common={this.props.common}
       native={this.props.native}
       onError={text => this.setState({errorText: text})}
       onLoad={this.props.onLoad}
      />
      ...
   </form>;
}

Router.tsx

ObjectBrowser.js

It is better to use Dialog/SelectID, but if you want:

Logo

<ObjectBrowser
   foldersFirst={this.props.foldersFirst}
   imagePrefix={this.props.imagePrefix || this.props.prefix} // prefix is for back compatibility
   defaultFilters={this.filters}
   dialogName={this.dialogName}
   showExpertButton={this.props.showExpertButton !== undefined ? this.props.showExpertButton : true}
   style={{ width: '100%', height: '100%' }}
   columns={this.props.columns || ['name', 'type', 'role', 'room', 'func', 'val']}
   types={this.props.types || ['state']}
   t={I18n.t}
   lang={this.props.lang || I18n.getLanguage()}
   socket={this.props.socket}
   selected={this.state.selected}
   multiSelect={this.props.multiSelect}
   notEditable={this.props.notEditable === undefined ? true : this.props.notEditable}
   name={this.state.name}
   themeName={this.props.themeName}
   themeType={this.props.themeType}
   customFilter={this.props.customFilter}
   onFilterChanged={filterConfig => {
      this.filters = filterConfig;
      window.localStorage.setItem(this.dialogName, JSON.stringify(filterConfig));
   }}
   onSelect={(selected, name, isDouble) => {
      if (JSON.stringify(selected) !== JSON.stringify(this.state.selected)) {
          this.setState({selected, name}, () =>
              isDouble && this.handleOk());
      } else if (isDouble) {
          this.handleOk();
      }
   }}
/>

TreeTable.ts

Logo

// STYLES
const styles = theme => ({
    tableDiv: {
        width: '100%',
        overflow: 'hidden',
        height: 'calc(100% - 48px)',
    },
});
class MyComponent extends Component {
   constructor(props) {
      super(props);
      
      this.state = {
          data: [
             {
                 id: 'UniqueID1' // required
                 fieldIdInData: 'Name1',
                 myType: 'number',
             },
             {
                 id: 'UniqueID2' // required
                 fieldIdInData: 'Name12',
                 myType: 'string',
             },
         ],
      };
      
      this.columns = [
          {
              title: 'Name of field', // required, else it will be "field"
              field: 'fieldIdInData', // required
              editable: false,        // or true [default - true]
              cellStyle: {            // CSS style - // optional
                  maxWidth: '12rem',
                  overflow: 'hidden',
                  wordBreak: 'break-word',
              },
              lookup: {               // optional => edit will be automatically "SELECT"
                  'value1': 'text1',
                  'value2': 'text2',
              }
          },
          {
              title: 'Type',          // required, else it will be "field"
              field: 'myType',        // required
              editable: true,         // or true [default - true]
              lookup: {               // optional => edit will be automatically "SELECT"
                  'number': 'Number',
                  'string': 'String',
                  'boolean': 'Boolean',
              },
              type: 'number/string/color/oid/icon/boolean', // oid=ObjectID,icon=base64-icon
              editComponent: props =>
                  <div>Prefix&#123; <br/>
                      <textarea
                          rows={4}
                          style={{width: '100%', resize: 'vertical'}}
                          value={props.value}
                          onChange={e => props.onChange(e.target.value)}
                      />
                      Suffix
                  </div>,
          },
      ];
   }
   // renderTable
   render() {
       return <div className={this.props.classes.tableDiv}>
           <TreeTable
               columns={this.columns}
               data={this.state.data}
               onUpdate={(newData, oldData) => {
                   const data = JSON.parse(JSON.stringify(this.state.data));
                   
                   // Added new line
                   if (newData === true) {
                        // find unique ID
                        let i = 1;
                        let id = 'line_' + i;

                        // eslint-disable-next-line
                        while(this.state.data.find(item => item.id === id)) {
                            i++;
                            id = 'line_' + i;
                        }

                        data.push({
                            id,
                            name: I18n.t('New resource') + '_' + i,
                            color: '',
                            icon: '',
                            unit: '',
                            price: 0,
                        });
                    } else {
                        // existing line was modifed
                        const pos = this.state.data.indexOf(oldData);
                        if (pos !== -1) {
                            Object.keys(newData).forEach(attr => data[pos][attr] = newData[attr]);
                        }
                    }

                    this.setState({data});
               }}
               onDelete={oldData => {
                    console.log('Delete: ' + JSON.stringify(oldData));
                    const pos = this.state.data.indexOf(oldData);
                    if (pos !== -1) {
                        const data = JSON.parse(JSON.stringify(this.state.data));
                        data.splice(pos, 1);
                        this.setState({data});
                    }
                }}
           />
       </div>;
   }
}

Toast

Toast is not a part of adapter-react but it is an example how to use toast in application:

import Snackbar from '@material-ui/core/Snackbar';

class MyComponent {
   constructor(props) {
      super(props);
      this.state = {
         // ....
         toast: '',
      };
   }
// ...
 renderToast() {
     if (!this.state.toast) {
         return null;
     }
     return <Snackbar
          anchorOrigin={{
              vertical: 'bottom',
              horizontal: 'left',
          }}
          open={true}
          autoHideDuration={6000}
          onClose={() => this.setState({toast: ''})}
          ContentProps={{'aria-describedby': 'message-id'}}
          message={<span id="message-id">{this.state.toast}</span>}
          action={[
              <IconButton
                  key="close"
                  aria-label="Close"
                  color="inherit"
                  className={this.props.classes.close}
                  onClick={() => this.setState({toast: ''})}
              >
                  <IconClose />
              </IconButton>,
          ]}
      />;
 }
 render() {
   return <div>
      {this.renderToast()}
   </div>;
 }
}

List of adapters that use adapter-react

  • Admin
  • iot
  • echarts
  • text2command
  • scenes
  • javascript
  • devices
  • eventlist
  • cameras
  • web
  • vis-2
  • vis-2-widgets-xxx
  • fullcalendar
  • openweathermap

Usability

In dialogs, the OK button is first (on the left) and the cancel button is last (on the right)

Used icons

This project uses icons from Flaticon.

ioBroker GmbH has a valid license for all the used icons. The icons may not be reused in other projects without the proper flaticon license or flaticon subscription.

Migration from adapter-react to adapter-react-v5

In src/package.json => dependencies

  • "@iobroker/adapter-react": "^2.0.22", => "@iobroker/adapter-react-v5": "^3.1.34",
  • "@material-ui/core": "^4.12.3", => "@mui/material": "^5.10.9",
  • "@material-ui/icons": "^4.11.2", => "@mui/icons-material": "^5.10.9",
  • Add "@mui/styles": "^5.10.9",
  • Add "babel-eslint": "^10.1.0",

In Source files

  • All @iobroker/adapter-react/... => @iobroker/adapter-react-v5/...
  • All @material-ui/icons/... => @mui/icons-material/...
  • Change import { withStyles } from '@material-ui/core/styles'; => import { withStyles } from '@mui/styles';
  • Change import { makeStyles } from '@mui/material/styles'; => import { makeStyles } from '@mui/styles';
  • Change import withWidth from '@material-ui/core/withWidth'; => import { withWidth } from '@iobroker/adapter-react-v5';
  • All @material-ui/core... => @mui/material...
  • Change import { MuiThemeProvider } from '@material-ui/core/styles'; => import { ThemeProvider, StyledEngineProvider } from '@mui/material/styles';
  • Change all <MuiThemeProvider theme={this.state.theme}> to <StyledEngineProvider injectFirst><ThemeProvider theme={this.state.theme}>
  • Rename in styles theme.palette.type => theme.palette.mode
  • Add to all TextField, Select, FormControl the property variant="standard"
  • Add to all Button that do not have color property: color="grey"
  • Replace by TextField the readOnly attribute (if exists) with InputProps={{readOnly: true}}
  • Remove px by all theme.spacing: calc(100% - ${theme.spacing(4)}px) => calc(100% - ${theme.spacing(4)})
  • Replace this.selectTab(e.target.parentNode.dataset.name, index) => this.selectTab(e.target.dataset.name, index)

If you still have questions, try to find an answer here.

Migration from adapter-react-v5@3.x to adapter-react-v5@4.x

  • Look for getObjectView socket requests and replace socket.getObjectView('startKey', 'endKey', 'instance') to socket.getObjectViewSystem('instance', 'startKey', 'endKey')
  • Look for calls of custom like
this.props.socket._socket.emit('getObjectView', 'system', 'custom', {startKey: '', endKey:'\u9999'}, (err, objs) => {
    (objs?.rows || [])
        .forEach(item => console.log(item.id, item.value));
});

to

socket.getObjectViewCustom('custom', 'state', 'startKey', 'endKey')
   .then(objects => {
      Object.keys(objects).forEach(obj => console.log(obj._id));
   });
  • Replace all socket.log.error('text') to socket.log('text', 'error')
  • Add to App.js import { AdminConnection } from '@iobroker/adapter-react-v5'; and super(props, { Connection: AdminConnection }); if run in admin

Warning

react-inlinesvg@4.0.5 cannot be used. Use react-inlinesvg@4.0.3 instead.

Changelog

4.13.12 (2024-05-06)

  • (bluefox) All files are migrated to Typescript

4.13.11 (2024-04-23)

  • (bluefox) Corrected the size of icons

4.13.10 (2024-04-22)

  • (bluefox) Migrated all icons to Typescript

4.13.9 (2024-04-20)

  • (bluefox) Updated socket-client package

4.13.8 (2024-04-19)

  • (bluefox) Corrected CRON selector

4.13.7 (2024-04-19)

  • (bluefox) Migrated ColorPicker to typescript

4.13.6 (2024-04-11)

  • (bluefox) Migrated TreeTable to typescript
  • (bluefox) corrected the object subscription

4.13.5 (2024-04-02)

  • (bluefox) used new connection classes
  • (bluefox) Improved the SelectID dialog

4.13.3 (2024-04-01)

  • (bluefox) used new connection classes

4.12.3 (2024-03-30)

  • (bluefox) Migrated legacy connection to typescript

4.12.2 (2024-03-25)

  • (bluefox) Added support for remote cloud

4.11.6 (2024-03-19)

  • (bluefox) Corrected rendering of LoaderMV

4.11.4 (2024-03-18)

  • (bluefox) Corrected types of IconPicker

4.11.3 (2024-03-17)

  • (bluefox) Made filters for the file selector dialog optional

4.11.2 (2024-03-16)

  • (bluefox) Migrated GenericApp to typescript

4.10.4 (2024-03-16)

  • (bluefox) Migrated some components to typescript

4.10.1 (2024-03-11)

  • (bluefox) Migrated some components to typescript

4.9.11 (2024-03-08)

  • (foxriver76) type GenericApp socket correctly

4.9.10 (2024-02-21)

  • (bluefox) translations
  • (bluefox) updated json config

4.9.9 (2024-02-16)

  • (foxriver76) also check plugin state of instance to see if Sentry is explicitly disabled

4.9.8 (2024-02-13)

  • (bluefox) allowed hiding wizard in cron dialog

4.9.7 (2024-02-03)

  • (foxriver76) allow passing down the instance number do avoid determining from url

4.9.5 (2024-01-01)

  • (foxriver76) make copyToClipboard event parameter optional

4.9.4 (2024-01-01)

  • (foxriver76) try to fix SelectID scrolling

4.9.2 (2023-12-30)

  • (foxriver76) bump version of @iobroker/json-config

4.9.1 (2023-12-22)

  • (foxriver76) @iobroker/json-config moved to real dependencies

4.9.0 (2023-12-22)

  • (foxriver76) migrate to @iobroker/json-config module to have a single point of truth
  • (bluefox) Allowed using of filterFunc as string

4.8.1 (2023-12-14)

  • (bluefox) Added Device manager to JSON Config

4.7.15 (2023-12-12)

  • (bluefox) Corrected parsing of a text

4.7.13 (2023-12-10)

  • (bluefox) Added possibility to define the root style and embedded property

4.7.11 (2023-12-06)

  • (bluefox) Extended color picker with "noInputField" option

4.7.9 (2023-12-04)

  • (bluefox) Corrected the icon picker

4.7.8 (2023-12-04)

  • (foxriver76) port to @iobroker/types

4.7.6 (2023-11-29)

  • (bluefox) Added translations

4.7.5 (2023-11-28)

  • (bluefox) Corrected subscribe on objects in the legacy connection

4.7.4 (2023-11-23)

  • (bluefox) Updated packages
  • (bluefox) Made getStates method in legacy connection compatible with new one

4.7.3 (2023-11-08)

  • (bluefox) Updated packages

4.7.2 (2023-11-03)

  • (foxriver76) fixed problem with color picker, where editing TextField was buggy
  • (foxriver76) fixed light mode color of a path in FileBrowser

4.7.0 (2023-10-31)

  • (bluefox) Synced with admin
  • (bluefox) Added GIF to image files

4.6.7 (2023-10-19)

  • (bluefox) Added return value for subscribeOnInstance for Connection class

4.6.6 (2023-10-13)

  • (bluefox) Fixed the legacy connection

4.6.5 (2023-10-12)

  • (foxriver76) fixed object browser with date

4.6.4 (2023-10-11)

  • (bluefox) Updated the packages

4.6.3 (2023-10-09)

  • (bluefox) Just updated the packages
  • (bluefox) Synced with admin

4.6.2 (2023-09-29)

  • (bluefox) Experimental feature added: update states on re-subscribe

4.5.5 (2023-09-27)

  • (bluefox) Added export for IconNoIcon

4.5.4 (2023-09-17)

  • (bluefox) Added the restricting to folder property for select file dialog

4.5.3 (2023-08-20)

4.5.2 (2023-08-20)

  • (foxriver76) added missing export of TableResize

4.5.1 (2023-08-19)

  • (foxriver76) fix dialog TextInput

4.5.0 (2023-08-18)

  • (bluefox) Synchronize components with admin

4.4.8 (2023-08-17)

  • (bluefox) Added translations

4.4.7 (2023-08-10)

  • (bluefox) Added subscribeStateAsync method to wait for answer
  • (bluefox) Added support for arrays for un/subscriptions

4.4.5 (2023-08-01)

  • (bluefox) Updated packages

4.3.3 (2023-07-28)

  • (bluefox) Added translations

4.3.0 (2023-07-19)

  • (bluefox) Updated packages
  • (bluefox) Added translations
  • (bluefox) Synced object browser
  • (bluefox) formatting

4.2.1 (2023-07-17)

  • (bluefox) Updated packages
  • (bluefox) Added translations

4.2.0 (2023-07-07)

  • (bluefox) Updated packages
  • (bluefox) Added new method getObjectsById to the socket communication

4.1.2 (2023-06-20)

  • (bluefox) Allowed setting theme name directly by theme toggle

4.1.0 (2023-05-10)

  • (bluefox) craco-module-federation.js was added. For node 16

4.0.27 (2023-05-09)

  • (bluefox) Allowed showing only specific root in SelectIDDialog

4.0.26 (2023-05-08)

  • (bluefox) Added IDs to the buttons in the dialog for GUI tests

4.0.25 (2023-04-23)

  • (bluefox) Extended TextWithIcon with defined color and icon

4.0.24 (2023-04-03)

  • (bluefox) Updated the file selector in tile mode

4.0.23 (2023-03-27)

  • (bluefox) Added translations

4.0.22 (2023-03-22)

  • (bluefox) Re-Activate legacy connection

4.0.21 (2023-03-22)

  • (bluefox) Added translations

4.0.20 (2023-03-21)

  • (bluefox) Color picker was improved

4.0.19 (2023-03-20)

  • (bluefox) Packages were updated
  • (bluefox) Added new translations

4.0.18 (2023-03-16)

  • (bluefox) Packages were updated

4.0.17 (2023-03-15)

  • (bluefox) Added translations
  • (bluefox) Added port controller to JSON config

4.0.15 (2023-03-12)

  • (bluefox) Updated the object browser and file browser

4.0.14 (2023-03-03)

  • (bluefox) added handler of alert messages

4.0.13 (2023-02-15)

  • (bluefox) Corrected the theme button

4.0.12 (2023-02-15)

  • (bluefox) made the fix for echarts

4.0.11 (2023-02-14)

  • (bluefox) Updated packages
  • (bluefox) The chartReady event was omitted

4.0.10 (2023-02-10)

  • (bluefox) Updated packages
  • (bluefox) made the fix for material

4.0.9 (2023-02-02)

  • (bluefox) Updated packages

4.0.8 (2022-12-19)

  • (bluefox) Extended socket with log command

4.0.6 (2022-12-19)

  • (bluefox) Corrected URL for the connection

4.0.5 (2022-12-14)

  • (bluefox) Added support of custom palette for color picker

4.0.2 (2022-12-01)

  • (bluefox) use @iobroker/socket-client instead of Connection.tsx

3.5.3 (2022-11-30)

  • (bluefox) Improved renderTextWithA function to support <b> and <i> tags

3.5.2 (2022-11-30)

  • (bluefox) updated json config component

3.4.1 (2022-11-29)

  • (bluefox) Added button text for message dialog

3.4.0 (2022-11-29)

  • (bluefox) Added file selector

3.3.0 (2022-11-26)

  • (bluefox) Added subscribe on files

3.2.7 (2022-11-13)

  • (bluefox) Added fullWidth property to Dialog

3.2.6 (2022-11-08)

  • (xXBJXx) Improved TreeTable component

3.2.5 (2022-11-08)

  • (bluefox) Added the role filter for the object browser

3.2.4 (2022-11-03)

  • (bluefox) Added support for alfa channel for invertColor

3.2.3 (2022-10-26)

  • (bluefox) Corrected expert mode for object browser

3.2.2 (2022-10-25)

  • (bluefox) Added support for prefixes for translations

3.2.1 (2022-10-24)

  • (bluefox) Corrected color inversion

3.2.0 (2022-10-19)

  • (bluefox) Added ukrainian translation

3.1.35 (2022-10-17)

  • (bluefox) small changes for material

3.1.34 (2022-08-24)

  • (bluefox) Implemented fallback to english by translations

3.1.33 (2022-08-24)

  • (bluefox) Added support for onchange flag

3.1.30 (2022-08-23)

  • (bluefox) Added method getCompactSystemRepositories
  • (bluefox) corrected error in ObjectBrowser

3.1.27 (2022-08-01)

  • (bluefox) Disable file editing in FileViewer

3.1.26 (2022-08-01)

  • (bluefox) Added translations
  • (bluefox) JSON schema was extended with missing definitions

3.1.24 (2022-07-28)

  • (bluefox) Updated file browser and object browser

3.1.23 (2022-07-25)

  • (bluefox) Extend custom filter for object selector

3.1.22 (2022-07-22)

  • (bluefox) Added i18n tools for development

3.1.20 (2022-07-14)

  • (bluefox) Allowed to show select dialog with the expert mode enabled

3.1.19 (2022-07-08)

  • (bluefox) Allowed extending translations for all languages together

3.1.18 (2022-07-06)

  • (bluefox) Added translation

3.1.17 (2022-07-05)

  • (bluefox) Deactivate JSON editor for JSONConfig because of space

3.1.16 (2022-06-27)

  • (bluefox) Update object browser

3.1.15 (2022-06-27)

  • (bluefox) Allowed using of spaces in name

3.1.14 (2022-06-23)

  • (bluefox) Added translations

3.1.11 (2022-06-22)

  • (bluefox) Added preparations for iobroker cloud

3.1.10 (2022-06-22)

  • (bluefox) Added translations

3.1.9 (2022-06-20)

  • (bluefox) Allowed working behind reverse proxy

3.1.7 (2022-06-19)

  • (bluefox) Added file select dialog

3.1.3 (2022-06-13)

  • (bluefox) Added table with resized headers

3.1.2 (2022-06-09)

  • (bluefox) Added new document icon (read only)

3.1.1 (2022-06-09)

  • (bluefox) Allowed working behind reverse proxy

3.1.0 (2022-06-07)

  • (bluefox) Some german texts were corrected

3.0.17 (2022-06-03)

  • (bluefox) Allowed calling getAdapterInstances not for admin too

3.0.15 (2022-06-01)

  • (bluefox) Updated JsonConfigComponent: password, table

3.0.14 (2022-05-25)

  • (bluefox) Added ConfigGeneric to import

3.0.7 (2022-05-25)

  • (bluefox) Made the module definitions

3.0.6 (2022-05-25)

  • (bluefox) Added JsonConfigComponent

2.1.11 (2022-05-24)

  • (bluefox) Update file browser. It supports now the file changed events.

2.1.10 (2022-05-24)

  • (bluefox) Corrected object browser

2.1.9 (2022-05-16)

  • (bluefox) Corrected expert mode in object browser

2.1.7 (2022-05-09)

  • (bluefox) Changes were synchronized with adapter-react-v5
  • (bluefox) Added I18n.disableWarning method

2.1.6 (2022-03-28)

  • (bluefox) Added log method to connection
  • (bluefox) Corrected translations

2.1.1 (2022-03-27)

  • (bluefox) Corrected error in TreeTable

2.1.0 (2022-03-26)

  • (bluefox) BREAKING_CHANGE: Corrected error with readFile(base64=false)

2.0.0 (2022-03-26)

  • (bluefox) Initial version

0.1.0 (2022-03-23)

  • (bluefox) Fixed theme errors

0.0.4 (2022-03-22)

  • (bluefox) Fixed eslint warnings

0.0.3 (2022-03-19)

  • (bluefox) beta version

0.0.2 (2022-02-24)

  • (bluefox) try to publish a first version

0.0.1 (2022-02-24)

  • initial commit

License

The MIT License (MIT)

Copyright (c) 2019-2024 bluefox dogafox@gmail.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

4.13.12

3 days ago

4.13.11

16 days ago

4.13.10

17 days ago

4.13.9

19 days ago

4.13.7

20 days ago

4.13.8

20 days ago

4.13.6

28 days ago

4.13.4

1 month ago

4.13.5

1 month ago

4.13.2

1 month ago

4.13.3

1 month ago

4.13.0

1 month ago

4.13.1

1 month ago

4.12.3

1 month ago

4.12.0

2 months ago

4.12.1

2 months ago

4.12.2

2 months ago

4.11.5

2 months ago

4.11.6

2 months ago

4.11.4

2 months ago

4.10.2

2 months ago

4.10.4

2 months ago

4.11.0

2 months ago

4.11.1

2 months ago

4.11.2

2 months ago

4.11.3

2 months ago

4.10.1

2 months ago

4.10.0

2 months ago

4.9.11

2 months ago

4.9.10

3 months ago

4.9.9

3 months ago

4.9.8

3 months ago

4.9.7

3 months ago

4.9.6

3 months ago

4.9.4

4 months ago

4.9.3

4 months ago

4.9.5

4 months ago

4.9.2

4 months ago

4.9.0

5 months ago

4.9.1

5 months ago

4.8.1

5 months ago

4.8.0

5 months ago

4.7.14

5 months ago

4.7.15

5 months ago

4.7.12

5 months ago

4.7.13

5 months ago

4.7.10

5 months ago

4.7.11

5 months ago

4.7.9

5 months ago

4.7.8

5 months ago

4.7.7

5 months ago

4.5.4

8 months ago

4.5.3

9 months ago

4.5.5

8 months ago

4.4.1

9 months ago

4.4.0

9 months ago

4.4.3

9 months ago

4.4.2

9 months ago

4.4.8

9 months ago

4.4.5

9 months ago

4.4.4

9 months ago

4.4.7

9 months ago

4.4.6

9 months ago

4.3.2

10 months ago

4.3.1

10 months ago

4.7.0

6 months ago

4.3.3

10 months ago

4.3.0

10 months ago

4.7.6

5 months ago

4.7.5

5 months ago

4.7.2

6 months ago

4.7.1

6 months ago

4.7.4

6 months ago

4.7.3

6 months ago

4.6.1

7 months ago

4.6.0

7 months ago

4.2.1

10 months ago

4.2.0

10 months ago

4.6.7

7 months ago

4.6.6

7 months ago

4.6.8

6 months ago

4.6.3

7 months ago

4.6.2

7 months ago

4.6.5

7 months ago

4.6.4

7 months ago

4.6.11

6 months ago

4.5.0

9 months ago

4.6.12

6 months ago

4.5.2

9 months ago

4.5.1

9 months ago

4.6.13

6 months ago

4.0.27

1 year ago

4.0.26

1 year ago

4.1.0

1 year ago

4.1.2

11 months ago

4.0.19

1 year ago

4.0.21

1 year ago

4.0.20

1 year ago

4.0.23

1 year ago

4.0.22

1 year ago

4.0.25

1 year ago

4.0.24

1 year ago

4.0.16

1 year ago

4.0.15

1 year ago

4.0.18

1 year ago

4.0.17

1 year ago

4.0.14

1 year ago

4.0.9

1 year ago

4.0.10

1 year ago

4.0.12

1 year ago

4.0.11

1 year ago

4.0.13

1 year ago

3.2.6

2 years ago

3.2.5

2 years ago

4.0.5

1 year ago

4.0.4

1 year ago

4.0.7

1 year ago

4.0.6

1 year ago

4.0.1

1 year ago

4.0.0

1 year ago

4.0.3

1 year ago

4.0.2

1 year ago

4.0.8

1 year ago

3.2.7

1 year ago

3.5.3

1 year ago

3.5.2

1 year ago

3.5.1

1 year ago

3.5.0

1 year ago

3.4.0

1 year ago

3.4.4

1 year ago

3.4.3

1 year ago

3.4.2

1 year ago

3.4.1

1 year ago

3.4.5

1 year ago

3.3.0

1 year ago

3.2.2

2 years ago

3.2.1

2 years ago

3.2.0

2 years ago

3.2.4

2 years ago

3.2.3

2 years ago

3.1.35

2 years ago

3.1.29

2 years ago

3.1.28

2 years ago

3.1.34

2 years ago

3.1.33

2 years ago

3.1.30

2 years ago

3.1.32

2 years ago

3.1.31

2 years ago

3.1.12

2 years ago

3.1.11

2 years ago

3.1.14

2 years ago

3.1.13

2 years ago

3.1.16

2 years ago

3.1.15

2 years ago

3.1.18

2 years ago

3.1.17

2 years ago

3.1.10

2 years ago

3.1.9

2 years ago

3.1.8

2 years ago

3.1.23

2 years ago

3.1.22

2 years ago

3.1.25

2 years ago

3.1.24

2 years ago

3.1.27

2 years ago

3.1.26

2 years ago

3.1.21

2 years ago

3.1.20

2 years ago

3.1.19

2 years ago

3.1.3

2 years ago

3.1.7

2 years ago

3.1.6

2 years ago

3.1.5

2 years ago

3.1.4

2 years ago

2.1.7

2 years ago

3.0.9

2 years ago

3.0.12

2 years ago

3.0.4

2 years ago

3.1.2

2 years ago

3.0.13

2 years ago

3.0.3

2 years ago

3.1.1

2 years ago

3.0.10

2 years ago

3.0.2

2 years ago

3.1.0

2 years ago

3.0.11

2 years ago

3.0.1

2 years ago

3.0.16

2 years ago

3.0.8

2 years ago

3.0.17

2 years ago

3.0.7

2 years ago

3.0.14

2 years ago

3.0.6

2 years ago

3.0.15

2 years ago

3.0.5

2 years ago

2.1.9

2 years ago

3.0.0

2 years ago

2.1.10

2 years ago

2.1.11

2 years ago

1.0.0

2 years ago

2.1.2

2 years ago

0.1.0

2 years ago

2.1.1

2 years ago

2.1.4

2 years ago

2.1.3

2 years ago

2.1.6

2 years ago

2.1.5

2 years ago

0.0.4

2 years ago

2.1.0

2 years ago

2.0.0

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago