iobroker.vis-beta

0.14.1 • Public • Published

Logo iobroker.vis

NPM version Downloads

NPM

WEB visualisation for iobroker platform.

Installation & Dokumentation

Demo interface Demo interface

Online Demos

Bindings of objects

Normally most of widgets have ObjectID attribute. And this attribute can be bound with some value of object ID. But there is another option how to bind any attribute of widget to some ObjectID.

Just write into attribute {object.id} and it will be bound (not in edit mode) to this object's value. If you will use special format, you can even make some simple operations with it, e.g. multiplying or formatting. Patten has following format:

{objectID;operation1;operation2;...}

Following operations are supported:

  • * - multiplying. Argument must be in brackets, like "*(4)". In this sample we multiplying value with 4.
  • + - add. Argument must be in brackets, like "+(4.5)". In this sample we add to value 4.5.
  • - - subtract. Argument must be in brackets, like "-(-674.5)". In this sample we subtract from value -674.5.
  • / - dividing. Argument must be in brackets, like "/(0.5)". In this sample we dividing value by 0.5.
  • % - modulo. Argument must be in brackets, like "%(5)". In this sample we take modulo of 5.
  • round - round the value.
  • round(N) - round the value with N places after point, e.g. 34.678;round(1) => 34.7
  • hex - convert value to hexadecimal value. All letters are lower cased.
  • hex2 - convert value to hexadecimal value. All letters are lower cased. If value less 16, so the leading zero will be added.
  • HEX - same as hex, but upper cased.
  • HEX2 - same as hex2, but upper cased.
  • date - format date according to given format. Format is the same as in iobroker.javascript
  • min(N) - if value is less than N, take the N, elsewise value
  • max(M) - if value is greater than M, take the M, elsewise value
  • sqrt - square root
  • pow(n) - power of N.
  • pow - power of 2.
  • floor - Math.floor
  • ceil - Math.ceil
  • random(R) - Math.random() * R, or just Math.random() if no argument
  • formatValue(decimals) - format value according to system settings and use decimals
  • date(format) - format value as date. Format is like: "YYYY-MM-DD hh:mm:ss.sss"

You can use this pattern in any text, like

My calculations with {objectID1;operation1;operation2;...} are {objectID2;operation3;operation4;...}

or color calculations:

#{objectRed;/(100);*(255);HEX2}{objectGreen;HEX2}{objectBlue;HEX2}

To show timestamp of object write ".ts" or ".lc" (for last change) at the end of object id, e.g.:

Last change: {objectRed.lc;date(hh:mm)}

There is another possibility to write pattern:

Hypotenuse of {height} and {width} = {h:height;w:width;Math.max(20, Math.sqrt(h*h + w*w))}

{h:height;w:width;h*w} will be interpreted as function:

value = (function () {
    var h = "10";
    var w = "20";
    return Math.max(20, Math.sqrt(h*h + w*w));
})();

You can use any javascript functions. Arguments must be defined with ':', if not, it will be interpreted as formula.

Take care about types. All of them defined as strings. To be sure, that value will be treated as number use parseFloat function.

Hypotenuse of {height} and {width} = {h:height;w:width;Math.max(20, Math.sqrt(Math.pow(parseFloat(h), 2) + Math.pow(parseFloat(w), 2)))}

Note: there is a special object ID - "username". It shows logged in user. And there is a "language" object id: can be "de", "en" or "ru". "view" - has a name of actual view "wid" - has a name of actual widget "wname" - widget name "widget" - is an object with all data of widget. Can be used only in JS part, like {a:a;widget.data.name} Note: to use ":" in calculations (e.g. in string formula) use "::" instead.

Remember, that style definitions will be interpreted as bindings, so use {{style: value}} or just

{
    style: value
}

for that.**

Filters

To visualise on the one view thw whole number of widgets you can use filters to reduce the amount of widgets simultaneously shown on the view.

Every widget has a field "filter". If you set it to some value, e.g. "light", so you can use other widget (bars - filters, filter - dropdown) to control which filter is actually active.

Control interface

Vis creates 3 variables:

  • control.instance - Here the browser instance should be written or FFFFFFFF if every browser must be controlled.
  • control.data - Parameter for command. See specific command description.
  • control.command - Command name. Write this variable triggers the command. That means before command will be written the "instance" and "data" must be prepared with data.

Commands:

  • alert - show alert window in vis. "control.data" has following format "message;title;jquery-icon". Title and jquery-icon are optional. Icon names can be found here. To show icon "ui-icon-info" write Message;;info.

  • changeView - switch to desired view. "control.data" must have name of view. You can specify project name too as "project/view". Default project is "main".

  • refresh - reload vis, for instance after project is changed to reload on all browsers.

  • reload - same as refresh.

  • dialog - Show dialog window. Dialog must exist on view. One of:

    • "static - HTML - Dialog",
    • "static - Icon - Dialog",
    • "container - HTML - view in jqui Dialog",
    • "container - ext cmd - view in jqui Dialog",
    • "container - Icon - view in jqui Dialog",
    • "container - Button - view in jqui Dialog".

    "control.data" must have id of dialog widget, e.g. "w00056".

  • popup - opens a new browser window. Link must be specified in "control.data", e.g. http://google.com

  • playSound - play sound file. The link to file is specified in "control.data", e.g. http://www.modular-planet.de/fx/marsians/Marsiansrev.mp3. You can upload your own file in vis and let it play as for instance "/vis.0/main/img/myFile.mp3".

If user changes the view or at start the variables will be filled by vis with

  • "control.instance": browser instance and ack=true
  • "control.data": project and view name in form "project/view", e.g. "main/view" (and ack=true)
  • "control.command": "changedView" and ack=true

You can write the JSON-string or Object into control.command as {instance: 'AABBCCDD', command: 'cmd', data: 'ddd'}. In this case the instance and data will be taken from JSON object.

Default view

You can define for every view the desired resolution (Menu=>Tools=>Resolution). This is only the visual border in edit mode to show you the screen size on some specific device. In real time mode it will not be visible and all widgets outside of border will be visible.

Additionally you can define if this view must be used as default for this resolution.

So every time the index.html (without #viewName) is called, the best suitable for this resolution view will be opened. If only one view has "Default" flag, so this view will be opened independent from screen resolution or orientation.

E.g. you can create two views "Landscape-Mobile" and "Portrait-Mobile" and these two views will be switched automatically when you change the orientation or screen size.

There is a helper widget "basic - Screen Resolution" that shows actual screen resolution and best suitable default view for this resolution.

Settings

Reload if sleep longer than

There is a rule, that after some disconnection period the whole VIS page will be reloaded to synchronise the project. You can configure it in menu "Settings...". If you set interval to "never" so the page will be never reloaded.

Reconnect interval

Set the interval between the connection attempts if disconnected. If you will set 2 seconds, it will try to establish the connection every 2 seconds.

Dark reconnect screen

Sometimes (in the night) it is required to have dark loading screen. With this option you can set it.

Notice that this settings is valid only for reconnection and not for the first connect.

Dark

Changelog

0.14.1 (2017-04-10)

0.14.0 (2017-04-10)

  • (bluefox) add mandatory license input

0.12.7 (2017-02-09)

  • (bluefox) prepare beta

0.12.6 (2017-01-29)

  • (pmant) fix view copy
  • (pmant) Improvements to context menu
  • (pmant) usability improvements for both view dropdowns
  • (bluefox) small fix of dragging

0.12.6 (2017-01-29)

  • (pmant) add dropdown menu to views bar
  • (pmant) sort widgets widget selector by name
  • (bluefox) fix groupAttr in signals and visibility

0.12.2 (2016-12-04)

  • (bluefox) fix errors with grouping

0.12.1 (2016-11-30)

  • (bluefox) fix errors with containers

0.12.0 (2016-11-24)

  • (bluefox) subscribe mode for faster state loading
  • (bluefox) add grouping

0.10.15 (2016-11-06)

  • (bluefox) remove weather-adapter.html
  • (bluefox) clean config.js
  • (bluefox) remove old widgets
  • (bluefox) improve authentication in app
  • (bluefox) allow creation of instance from helper widget

0.10.14 (2016-10-09)

  • (bluefox) fix rendering of widgets
  • (bluefox) working on relative positions.
  • (bluefox) destroy widgets before views deletion

0.10.13 (2016-09-23)

  • (bluefox) fixed errors for iPad 1
  • (bluefox) start wokring on relative positions

0.10.12 (2016-09-16)

  • (bluefox) group specific visibility of widgets and views

0.10.11 (2016-09-15)

  • (bluefox) fix for iOS 10
  • (bluefox) allow disabling of groups for performance

0.10.10 (2016-09-14)

  • (bluefox) add text2speech widget
  • (bluefox) try to fix problem with iOS 10

0.10.9 (2016-09-04)

  • (bluefox) support of web-sockets force
  • (bluefox) destory unused views after 30 seconds
  • (bluefox) do not show middle leading lines if top and bottom are shown
  • (bluefox) let timestamp and lastchange to show time as interval

0.10.7 (2016-07-09)

  • (bluefox) add settings to reload vis
  • (bluefox) add dark reload screen
  • (bluefox) fix reload interval
  • (bluefox) export/import
  • (bluefox) add global script
  • (bluefox) add 'not exist'/'not consist'/'exist' to signal and visibility
  • (bluefox) fix oids in editor

0.10.5 (2016-06-15)

  • (bluefox) fix select ID dialog
  • (bluefox) add align help lines
  • (bluefox) never store data in non-edit mode

0.10.4 (2016-06-14)

  • (bluefox) fix drag and resize
  • (Patrick) fix QuoJS
  • (bluefox) support of milliseconds in formatDate
  • (bluefox) support of getHistory
  • (bluefox) support of show history instances
  • (bluefox) grid
  • (bluefox) add previews

0.10.3 (2016-05-30)

  • (bluefox) update canJS
  • (pmant) fixes bugs with dialogs on touchscreens
  • (bluefox) speedUP show attributes at 300ms
  • (bluefox) fix click on widget if signal is active

0.10.2 (2016-05-24)

  • (bluefox) fix widgets with timestamps

0.10.1 (2016-05-23)

  • (bluefox) change version

0.10.0 (2016-05-23)

  • (bluefox) translates
  • (bluefox) fix 'no widgets selected'
  • (bluefox) change widget icons
  • (bluefox) add signals
  • (bluefox) add app.css for cordova
  • (bluefox) change icons preview
  • (bluefox) show properties of widget as icon
  • (bluefox) fix error with external commands
  • (bluefox) add types icon to preview
  • (bluefox) support edit on iPad1
  • (bluefox) change security settings

License

Copyright (c) 2013-2017 bluefox https://github.com/GermanBluefox dogafox@gmail.com,

Copyright (c) 2013-2014 hobbyquaker https://github.com/hobbyquaker

Creative Common Attribution-NonCommercial (CC BY-NC)

http://creativecommons.org/licenses/by-nc/4.0/

CC BY-NC License

Short content: Licensees may copy, distribute, display and perform the work and make derivative works based on it only if they give the author or licensor the credits in the manner specified by these. Licensees may copy, distribute, display, and perform the work and make derivative works based on it only for noncommercial purposes. (Free for non-commercial use).

Package Sidebar

Install

npm i iobroker.vis-beta

Weekly Downloads

6

Version

0.14.1

License

CC-BY-NC-4.0

Last publish

Collaborators

  • foxriver76
  • iobluefox
  • bluefox
  • apollon77
  • ldittmar
  • alcalzone