Package Exports
- iobroker.vis-2
- iobroker.vis-2/main.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (iobroker.vis-2) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Next generation visualization for ioBroker: vis-2
WEB visualisation for ioBroker platform.
License requirements
To use this adapter in ioBroker
you need to accept the source code license of the adapter. The source code of this adapter is available under the CC BY-NC license.
Additionally, you need a license to use the adapter. The following license editions are available on https://iobroker.net/www/pricing
- Community-License: Free for private use!: Get a free license by registering an account on https://iobroker.net. The license if checked online against the ioBroker license server when the vis-2 adapter is started, so an online connection at this time point is required!
- Private use Offline-License: For paying a small support fee, you can get rid of the required online license check on adapter startup. Only for Private use!
- Commercial License: When using Vis in a commercial environment or selling Vis as part of ioBroker packages to your customers, this license is for you. License check is also not requiring an online connection.
Installation & Documentation
Bindings of objects
Normally, most of the widgets have ObjectID attribute and this attribute can be bound with some value of object ID. But there is another option for how to bind any attribute of widget to some ObjectID.
Just write into attribute {object.id}
and it will be bound to this object's value.
If you use the special format, you can even make some simple operations with it, e.g., multiplying or formatting.
E.g., to calculate the hypotenuse of a triangle:
{h:javascript.0.myCustom.height;w:javascript.0.myCustom.width;Math.max(20, Math.sqrt(h*h + w*w))}
will be interpreted as function:
value = await (async function () {
var h = (await getState('javascript.0.myCustom.height')).val;
var w = (await getState('javascript.0.myCustom.width')).val;
return Math.max(20, Math.sqrt(h * h + w * w));
})();
or
{h:javascript.0.myCustom.height;w:javascript.0.myCustom.width;h*w}
will just multiply height with width.
You can use any javascript (browser) functions. Arguments must be defined with ':', if not, it will be interpreted as formula.
Take care about types. All of them are defined as strings. To be sure, that value will be treated as number use parseFloat function.
So our Hypotenuse calculation will be:
{h:javascript.0.myCustom.height;w:javascript.0.myCustom.width;Math.max(20, Math.sqrt(Math.pow(parseFloat(h), 2) + Math.pow(parseFloat(w), 2)))}
Deprecated format
Patten has the following format:
{objectID;operation1;operation2;...}
The following operations are supported:
*
- multiplying. Argument must be in brackets, like "*(4)". In this sample, we multiply the 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 divide the 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.7hex
- 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.javascriptmin(N)
- if value is less than N, take the N, else valuemax(M)
- if value is greater than M, take the M, else valuesqrt
- square rootpow(n)
- power of N.pow
- power of 2.floor
- Math.floorceil
- Math.ceiljson
- operation for getting json or object property. E.g.,{id;json(common.name.en)}
random(R)
- Math.random() * R, or just Math.random() if no argumentformatValue(decimals)
- format value according to system settings and use decimalsdate(format)
- format value as date. The format is like: "YYYY-MM-DD hh:mm:ss.sss"momentDate(format, useTodayOrYesterday)
- format value as date using Moment.js. Approved formats must be entered according to the moment.js library. WithuseTodayOrYesterday=true
themoment.js
formatddd
/dddd
are overwritten with today / yesterdayarray(element1,element2[,element3,element4])
- returns the element of index. e.g.:{id.ack;array(ack is false,ack is true)}
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)}
Special bindings
There are a number of different internal bindings to provide additional information in views:
username
- shows logged-in userview
- name of actual viewwname
- widget namewidget
- is an object with all data of widget. Can be used only in JS part, like{a:a;widget.data.name}
wid
- name of actual widgetlanguage
- can bede
,en
orru
.instance
- browser instancelogin
- if login required or not (e.g., to show/hide logout button)local_*
- if state name is started fromlocal_
it will not be reported to ioBroker but will update all widgets, that depends on this state. (Local variable for current browser session)
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 visualize on the one view the whole number of widgets, you can use filters to reduce the count 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 orFFFFFFFF
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 an alert window in the vis-2. "control.data" has the following format "message;title;jquery-icon". Title and jquery-icon are optional. Icon names can be found here. To show icon "ui-icon-info" writeMessage;;info
.changeView
- switch to desired view. "control.data" must have the name of view. You can specify the project name too asproject/view
. The default project ismain
.refresh
- reload the vis-2, for instance after the 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
.dialogClose
popup
- opens a new browser window. Link must be specified incontrol.data
, e.g., http://google.complaySound
- play sound file. The link to file is specified incontrol.data
, e.g., http://www.modular-planet.de/fx/marsians/Marsiansrev.mp3. You can upload your own file in vis-2 and let it play as for instance/vis-2.0/main/img/myFile.mp3
.
If the user changes the view or at the start, the variables will be filled by the vis-2 with
control.instance
: browser instance andack=true
control.data
: project and view name in formproject/view
, e.g.main/view
(andack=true
)control.command
:changedView
andack=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.
Example for javascript adapter:
setState('vis-2.0.control.command', {"instance": "*", "command": "refresh", "data": ""});
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 the real-time mode, it will not be visible and all widgets outside the 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 independently of 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 synchronize the project. You can configure it in the menu "Settings...". If you set the interval to "never" so the page will never be reloaded.
Reconnect interval
Set the interval between the connection attempts if disconnected. If you 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 the dark loading screen. With this option, you can set it.
Notice that these settings are valid only for reconnection and not for the first connecting.
SVG and currentColor
The currentColor keyword in CSS allows elements to inherit the current text color from their parent element. It can be particularly useful in SVGs (Scalable Vector Graphics) because it allows for more dynamic styling and easier integration with HTML content.
You can use the currentColor keyword in place of a specific color value for any property inside the SVG that accepts a color value. Here's a simple example with a circle in an SVG:
<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg">
<circle cx="50" cy="50" r="40" fill="currentColor" />
</svg>
In this case, if the SVG takes the color of parent element. E.g., if it was used in a menu and the menu is red, the circle would be red.
Todo
Changelog
2.6.1 (2023-11-17)
- (bluefox) Showed "file too large" message by icon upload
- (bluefox) Made navigation bar for view as an own group
- (foxriver76) sorted views alphabetically
- (foxriver76) respect uppercase/lowercase in projects toolbar
- (bluefox) Redirect
dialog
anddialogClose
commands to widgets
2.6.0 (2023-11-13)
- (foxriver76) implemented select/unselect all buttons
- (foxriver76) fixed bindings not working
2.5.0 (2023-11-11)
- (foxriver76) allowed using real html in prepend-HTML and append-HTML (basic string widget)
- (foxriver76) fixed problem while editing groups
- (foxriver76) do not automatically format button text as uppercase
- (foxriver76) do not automatically show page names as uppercase
- (bluefox) Implemented the signal icons for React widgets
- (bluefox) Implemented the last change indication for React widgets
- (bluefox) Implemented SVG Bool widget as React Component
2.4.0 (2023-11-08)
- (foxriver76) fixed issues with icon selector filter when changing category
- (foxriver76) fixed problem, that only the first widget is pasted
- (bluefox) added JSON binding operator
- (bluefox) Allowed using function as filter for Object ID
- (bluefox) Implemented View bar (with no menu)
2.3.6 (2023-11-06)
- (foxriver76) fixed issues with binding editor on style attributes
- (foxriver76) improved performance due to optimizations on auto save
2.3.5 (2023-11-03)
- (foxriver76) update adapter-react to have enhanced image support in file selector
- (foxriver76) fixed color of file browser in light mode
- (foxriver76) fixed the color inputs jumping to the end of input on modifying
2.3.4 (2023-11-02)
- (foxriver76) fix crash when selecting multiple widgets
- (foxriver76) removed duplicate
none
entry inborder-style
dropdown - (foxriver76) fix crash when reordering widgets
2.3.3 (2023-10-30)
- (foxriver76) fixed problem, that vis is not loading if a single widget has a script error
- (bluefox) added the editor for bindings
- (bluefox) background does not used if in iframe
2.3.2 (2023-10-14)
- (bluefox) Allowed showing only selected widgets in edit mode
- (bluefox) Corrected the visibility calculation for old (CanJS) widgets
2.3.1 (2023-10-13)
- (bluefox) Corrected vertical gap between relative widgets
- (bluefox) Better input of numbers with min/max in attribute dialog
2.3.0 (2023-09-28)
- (bluefox) jQui widgets (many of them) were improved
2.2.7 (2023-09-18)
- (bluefox) Improved icon selector: you can upload your own icon directly
- (bluefox) Optimized loading: do not load unused widget sets
2.2.6 (2023-09-17)
- (bluefox) Date binding corrected
- (bluefox) Optimized loading of widgeteria
- (bluefox) Horizontal navigation is fixed
2.2.5 (2023-09-12)
- (bluefox) Implemented horizontal navigation
2.2.4 (2023-09-04)
- (bluefox) Corrected license checking
2.2.2 (2023-08-16)
- (bluefox) Changed sentry settings
2.2.1 (2023-08-15)
- (bluefox) Added possibility to filter widgets in edit mode
- (bluefox) Added possibility to change the order of relative widgets with drag&drop
2.2.0 (2023-08-14)
- (bluefox) Release candidate 1
2.1.7 (2023-08-10)
- (bluefox) Optimized the rendering of the widgets
2.1.6 (2023-07-30)
- (bluefox) First beta release
2.1.4 (2023-07-19)
- (bluefox) Allowed to add widgets to widgets
2.0.36 (2023-06-21)
- (bluefox) Added widgeteria
2.0.29 (2023-05-17)
- (bluefox) Corrected errors
2.0.10 (2022-12-01)
- (bluefox) Added the file browser
2.0.8 (2022-11-26)
- (bluefox) Improved the error handling
2.0.0 (2022-10-21)
- (bluefox) Completely new visualization, but partly compatible with the previous version
License
Copyright (c) 2021-2023 Denis Haev, https://github.com/GermanBluefox dogafox@gmail.com,
Creative Common Attribution-NonCommercial (CC BY-NC)
http://creativecommons.org/licenses/by-nc/4.0/
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).