AdapTable ipushpull Plugin Read Me
The ipushpull plugin connects AdapTable with ipushpull the market-leading collaborative software.
It allows user to send Reports - either System Reports shipped by AdapTable or those created via the AdapTable Export function - to ipushpull and from their to Symphony and other destinations.
Version 7
Version 7 of AdapTable made significant changes to how ipushpull is set up, primarily by using this dedicated plugin.
As a consequence, the ipushpull section from Predefined Config was removed and no ipushpull information is provided by users that way.
Similarly all ipushpull state is now transient and not persisted when the application ends.
Instead we now use the ipushpullPluginOptions
object in a similar way to other plugins.
The actual ipushpull functionality is unchanged, and the information required to be supplied by the user is identical but it now done through Options and not Predefined Config - isolating it in this way enables us to add more ipushpull-related functionality in a much quicker and safer way, isolated from the rest of the application.
ipushpull Options
The ipushpull plugin contains an ipushpullPluginOptions
object which allows users to set up their instance.
It contains credential details, useful properties (e.g. throttleTime
, autoLogin
etc.) and the ipupshpull config object.
ipushpull Api
The ipushpullApi
is available for full runtime programmatic access to ipushpull objects and methods.
Note: because ipushpull is a plugin, you can get hold of this object through the getPluginApi
method of pluginsApi.
ipushpull Setup Example
const adaptableOptions: AdaptableOptions = {
******
plugins: [
ipp({
username: process.env.IPUSHPULL_USERNAME,
password: process.env.IPUSHPULL_PASSWORD,
throttleTime: 5000,
includeSystemReports: true,
ippConfig: {
api_secret: process.env.IPUSHPULL_API_KEY,
api_key: process.env.IPUSHPULL_API_KEY,
api_url: 'https://www.ipushpull.com/api/1.0',
ws_url: 'https://www.ipushpull.com',
web_url: 'https://www.ipushpull.com',
docs_url: 'https://docs.ipushpull.com',
storage_prefix: 'ipp_local',
transport: 'polling',
hsts: false,
},
}),
],
******
};
adaptableApi = await Adaptable.init(adaptableOptions);
const ipushpullApi: IPushPullApi = adaptableApi.pluginsApi.getPluginApi(
'ipushpull'
);
ipushpull Toolbar
The ipushpull plugin includes a dedicated ipushpull Toolbar - the main way to interact with ipushpull inside AdapTable.
At start-up this simply displays a login button that, when clicked, opens a login screen asking for username and password.
There is a AutoLogin
property option which will automatically log the user in to ipushpull (if the correct credentials have been provided in ipushpull Plugin Options).
Once the user is successfully logged in, the Toolbar will contain a number of elements (primarily dropdowns and buttons). These include:
Dropdowns
-
Reports Dropdown - this shows all the Reports that have been created via the Export function.
This dropdown will also include any System Reports that AdapTable ships by default (e.g. Selected Cells); however these can be removed by setting IncludeSystemReports
to false
-
Folders Dropdown - lists all the folders (aka 'Domains') to which the user has access in ipushpull
-
Pages Dropdown - lists all the ipushpull pages in the currently selected Folder (in the Folders Dropdown).
Buttons
-
Send Snapshot - this will run the current report and send the data to the currently selected ipushpull page. This is a one-off action.
-
Run Live Report - this will run the current report and send the data to the currently selected ipushpull page. It will also send live updates so as the data in the grid ticks and the report updaes, ipushpull will be updated in real time.
The button displays a 'Play' icon; however, when a Live Report is running this changes to a 'Pause' icon.
-
New ipushpull Page - alllows the user to create a new ipushpull page in the folder of his choice.
-
Create Schedule - enables an ipushpull report to be sent at a schedule of the user's choice
This leverages AdapTable Scheduling which enables actions to be performed either at a one off date and time or to be repeated daily at a scheduled time.
-
Logout Button - logs the User out of ipushpull (and displays the login button).
Help
Developers can learn how to access AdapTable programmatically at AdapTable Documentation.
More Information
General information about Adaptable Tools is available at our Website
Support
For all support enquiries please email support@adaptabletools.com
or raise a Support Ticket.