Skip to content

maurofmferrao/xibo-interactive-control

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Xibo Interactive Control

XiboIC or Xibo Interactive Control is a JavaScript helper library used primarily to send actions from Widgets running in Xibo's built in Web Browser, to the Player application itself on its local web server.

It can also be used by third parties to get information from Xibo and as a helper to trigger actions.

Installation

Copy dist/xibo-interactive-control.min.js to the module folder in the CMS or add to any HTML file.

Add to a CMS module

Library JS file needs to be added to the getResource() method in the module's PHP file (optionaly we can add the widget/target id).

Example:

$javacriptToAdd = '<script type="text/javascript">var xiboICTargetId = ' . $this->getWidgetId() . ';</script>';
$javacriptToAdd .= '<script type="text/javascript" src="' . $this->getResourceUrl('xibo-interactive-control.js') . '"></script>';
$data['javaScript'] = $javacriptToAdd;
return $this->renderTemplate($data);

Library usage

Config Library

Use to update the default parameters used to connect with the server. By default the requests are made locally ( '/info' for example ), but by changing the following parameters we can connect to a remote server

xiboIC.config(libOptions)
  • libOptions.protocol
  • libOptions.hostname
  • libOptions.port
  • libOptions.headers: Array of headers in the format “key: value” ( e.g. [{ key: 'Content-Type', value: 'application/x-www-form-urlencoded' }] )

Some of the following methods will have a reqOptions parameter with the following options

  • reqOptions.done: callback to run when the request is successful
  • reqOptions.error: callback to run when the request fails

Get Player Info

Get information about the player

xiboIC.info(reqOptions)

Trigger action/web-hook

Trigger action in the parent player

xiboIC.trigger(code, reqOptions)
  • reqOptions.targetId: target widget id ( if not provided, default id will be used )
  • code: trigger code for the web-hook that initiates an action in the parent player

Add function to the queue

Add a function to a queue so it can be ran later

xiboIC.addToQueue(callback, ...args)
  • callback: function definition
  • args: comma separated arguments for the target function

Run full queue

Run all the pending function in the queue ( and remove them )

xiboIC.runQueue()

Set as visible

Set widget state as visible and run runQueue()

xiboIC.setVisible()

Expire

Expire current widget

xiboIC.expireNow(reqOptions)
  • reqOptions.targetId: target widget id ( if not provided, default id will be used )

Extend duration

Extend widget duration using a given value

xiboIC.extendWidgetDuration(duration, reqOptions)
  • duration: value in seconds to be added to the widget current duration
  • reqOptions.targetId: target widget id ( if not provided, default id will be used )

Set duration

Set widget duration to a given value

xiboIC.setWidgetDuration(duration, reqOptions)
  • duration: value in seconds to replace the widget current duration
  • reqOptions.targetId: target widget id ( if not provided, default id will be used )

Interactions lock - Text selection

The interaction control methods use a boolean flag to lock (true) or unlock (false) a specific behaviour, and defaults to lock (true)

Text selection

Disables text selection

xiboIC.lockTextSelection(lock)

Context menu

Prevents right click menu

xiboIC.lockContextMenu(lock)

Pinch to zoom

Disables pinch to zoom in/out

xiboIC.lockPinchZoom(lock)

All interactions

Locks all the behaviours (seen above)

xiboIC.lockAllInteractions(lock)

Realtime Data

Get realtime data directly from data connectors

Set callback function for notification on new data

Register a callback function to be called when new data arrive

xiboIC.registerNotifyDataListener(callback)
  • callback: The callback function

Get data

Get realtime data from the player

xiboIC.getData(dataKey, {done, error})
  • dataKey: The key of the dataset

  • object: callback functions

    {}.done: callback to run when the request is successful

    {}.error: callback to run when the request fails

Widget notification

Helper function that gets called by the application when new data are available. Internally used.

notifyData(dataSetId, widgetId)

About

Library for interactively controlling an Xibo Player

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%