Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The Portals Extension Module has been created to allow 3rd party content and applications to be integrated inside Portals. The accompanying Portals API is divided into multiple parts: a message bus, query functions, trigger functions and a MySight interface.This documentation is split into several parts and each relevant section also includes a list of API functions.

...

Topics:

Table of Contents
maxLevel2

...

stylenone

...

Including Portals API in your application

...

The Extension module allows integration of your application into portals by providing an iFrame for your content and an API for communciation communication with Portals. The module accepts an url and allows dynamic GET parameters to be passed to your application through that url. Just select the participant variables and master data you want to pass to your application and provide names for the GET keys.
A portals page can have several Extension modules on a single page and all modules can communicate with each other through the provided message bus in the Portals API.
For enhanced data exchange with EFS, we recommend that your application uses the EFS ServiceLayer in the backend to query and update data in EFS.

...

Code Block
Questback.portalsApi.unregister();

...

...

Using the Portals message bus

The message bus is intended for communication between extension module iFrames. You can send and listen to your own events and transfer any data you want.

Listening for messages

After the initialisation initialization has been completed you can start to register handlers for events from other iFrames. The example code registers a handler for an event called "myEvent". This is an event name that you expect other iFrames to send messages for.

...

Note that this removes all handlers for the given eventname for this iFrame at once.

...

Querying data from Portals

The api supplies a set of methods to request specific data from Portals.

...

Get the user object of the currently logged in user. Returns null if there is no logged in user.

Code Block
languagejs
Questback.portalsApi.query.user().then(function(result) {
    console.log(result.user);
});

...

Get the language object of the currently used language.

Code Block
languagejs
Questback.portalsApi.query.language().then(function(result) {
    console.log(result.language);
});

query.

...

token

Returns the Portals Api token, which can be used in external software to additionally validate the user via EFS web service.

Code Block
Questback.portalsApi.query.deviceInfotoken().then(function(result) {
    console.log(result.device.isMobiletoken);
});

query.ajax

Makes an ajax call to the portals server and returns the result.

Code Block
Questback.portalsApi.query
    .ajax('GET', '/api/portal/client/pages')
    .then(function(result) {
        console.log(result);
    })
    .catch(function(error) {
        console.log(error);
    });

Trigger actions in Portals

The api supplies a set of methods to trigger specific actions in Portals.

trigger.height

Set the iFrames height to a specified value, given as a string including the unit.

Code Block
Questback.portalsApi.trigger.height('300px');

trigger.autoHeight

Set the iFrames height to the height of its content. This is done once per call, not repeatedly. So you have to react to resize events yourself.

Code Block
Questback.portalsApi.trigger.autoHeight();

trigger.logout

Log out the current user from Portals and thus redirect to the configured landing page. The iFrame will be removed from the DOM by this opreation.

Code Block
Questback.portalsApi.trigger.logout();

trigger.route

Redirect to the given page slug. The iFrame will be removed from the DOM by this opreation.

Code Block
Questback.portalsApi.trigger.route('targetPageSlug');

MySight interface

There are a number of methods to interact with Tableau in a MySight module. For all of these you need the pageModuleIdentifier of a MySight module to target your requests. This identifier is set in the Portals CMS in the settings for the MySight page module and can be reused on other pages for the same or even different Tableau instances.

mySight.vizGetIsReady

Gets whether the onFirstInteractive event has been fired yetIf the user is logged in, the token field will contain the users api token, which you can validate by calling the following EFS web service. Otherwise, token will be an empty string.

Code Block
portal.users.getUserDataByToken

If the token is valid the userId and portalId is returned. Otherwise an exception is thrown. Please refer to the web services documentation for more details on this service call.

query.deviceInfo

Get information about the client device.

Code Block
languagejs
Questback.portalsApi.query.deviceInfo().then(function(result) {
    console.log(result.device.isMobile);
});

query.ajax (reserved for future use)

Makes an ajax call to the internal portals server API and returns the result. Since Portals itself does not provide a public portals server API, this function is reserved for future use.

Code Block
languagejs
Questback.portalsApi.query
    .ajax('GET', '/api/portal/client/pages')
    .then(function(result) {
        console.log(result);
    })
    .catch(function(error) {
        console.log(error);
    });

...

Trigger actions in Portals

The api supplies a set of methods to trigger specific actions in Portals.

trigger.height

Set the iFrames height to a specified value, given as a string including the unit.

Code Block
languagejs
Questback.portalsApi.trigger.height('300px');

trigger.autoHeight

Set the iFrames height to the height of its content. This is done once per call, not repeatedly. So you have to react to resize events yourself.

Code Block
languagejs
Questback.portalsApi.mySighttrigger.vizGetIsReady(pageModuleIdentifier)
    .then(function(ready) {
        ...
    }autoHeight();

...

trigger.

...

Gets whether the tabs are hidden or not.

...

logout

Log out the current user from Portals and thus redirect to the configured landing page. The iFrame will be removed from the DOM by this opreation.

Code Block
languagejs
Questback.portalsApi.mySighttrigger.vizGetAreTabsHidden(pageModuleIdentifier)
    .then(function(hidden) {
        ...
    }logout();

...

trigger.

...

route

Redirect to the given page slug. The iFrame will be removed from the DOM by this opreation.

Code Block
languagejs
Questback.portalsApi.mySighttrigger.vizGetIsToolbarHidden(pageModuleIdentifier)
    .then(function(hidden) {
        ...
    });

mySight.vizGetUrl

Gets the url of the viz.

Code Block
route('targetPageSlug');

...

Accessing MySight instances in Portals

...

There are a number of methods to interact with Tableau in a MySight module. For all of these you need the pageModuleIdentifier of a MySight module to target your requests. This identifier is set in the Portals CMS in the settings for the MySight page module and can be reused on other pages for the same or even different Tableau instances.

mySight.vizGetIsReady

Gets whether the onFirstInteractive event has been fired yet.

Code Block
languagejs
Questback.portalsApi.mySight.vizGetUrlvizGetIsReady(pageModuleIdentifier)
    .then(function(urlready) {
        ...
    });

mySight.

...

vizGetAreTabsHidden

Gets the current url of the vizwhether the tabs are hidden or not.

Code Block
languagejs
Questback.portalsApi.mySight.vizGetCurrentUrlvizGetAreTabsHidden(pageModuleIdentifier)
    .then(function(currentUrlhidden) {
        ...
    });

mySight.

...

vizGetIsToolbarHidden

Gets whether the viz is tabs are hidden or not.

Code Block
languagejs
Questback.portalsApi.mySight.vizGetIsHiddenvizGetIsToolbarHidden(pageModuleIdentifier)
    .then(function(hidden) {
        ...
    });

mySight.

...

vizGetUrl

Gets the url of the viz.

Code Block
languagejs
Questback.portalsApi.mySight.vizShowvizGetUrl(pageModuleIdentifier)
    .then(function(url) {
        ...
    });

mySight.

...

vizGetCurrentUrl

Gets the current url of the viz.

Code Block
languagejs
Questback.portalsApi.mySight.vizHidevizGetCurrentUrl(pageModuleIdentifier)
    .then(function(currentUrl) {
        ...
    });

mySight.

...

vizGetIsHidden

Disposes Gets whether the viz is hidden or not.

Code Block
languagejs
Questback.portalsApi.mySight.vizDisposevizGetIsHidden(pageModuleIdentifier)
    .then(function(hidden) {
        ...
    });

mySight.

...

vizShow

Gets the status of automatic updatesShows the viz.

Code Block
languagejs
Questback.portalsApi.mySight.vizGetAreAutomaticUpdatesPausedvizShow(pageModuleIdentifier)
    .then(function(paused) {
        ...
    });

mySight.

...

vizHide

Hides the viz.

Code Block
languagejs
Questback.portalsApi.mySight.vizPauseAutomaticUpdatesvizHide(pageModuleIdentifier)
    .then(function() {
        ...
    });

mySight.

...

vizDispose

Disposes the viz.

Code Block
languagejs
Questback.portalsApi.mySight.vizResumeAutomaticUpdatesvizDispose(pageModuleIdentifier)
    .then(function() {
        ...
    });

mySight.

...

vizGetAreAutomaticUpdatesPaused

Gets the status of automatic updates.

Code Block
languagejs
Questback.portalsApi.mySight.vizToggleAutomaticUpdatesvizGetAreAutomaticUpdatesPaused(pageModuleIdentifier)
    .then(function(paused) {
        ...
    });

mySight.

...

Restores the initial state. Note that url parameters will be ignored in this operation and as such the restored state may differ from the real initial state.

...

vizPauseAutomaticUpdates

Pauses automatic updates.

Code Block
languagejs
Questback.portalsApi.mySight.vizRevertAllvizPauseAutomaticUpdates(pageModuleIdentifier)
    .then(function() {
        ...
    });

mySight.

...

vizResumeAutomaticUpdates

Resumes automatic updates.

Code Block
languagejs
Questback.portalsApi.mySight.vizRefreshDatavizResumeAutomaticUpdates(pageModuleIdentifier)
    .then(function() {
        ...
    });

mySight.

...

vizToggleAutomaticUpdates

Toggles automatic updates.

Code Block
languagejs
Questback.portalsApi.mySight.vizShowDownloadWorkbookDialogvizToggleAutomaticUpdates(pageModuleIdentifier)
    .then(function() {
        ...
    });

mySight.

...

vizRevertAll

Restores the initial state. Note that url parameters will be ignored in this operation and as such the restored state may differ from the real initial state.

Code Block
languagejs
Questback.portalsApi.mySight.vizShowExportImageDialogvizRevertAll(pageModuleIdentifier)
    .then(function() {
        ...
    });

mySight.

...

vizRefreshData

Shows the export PDF dialogRefreshes data from the server.

Code Block
languagejs
Questback.portalsApi.mySight.vizShowExportPDFDialogvizRefreshData(pageModuleIdentifier)
    .then(function() {
        ...
    });

mySight.

...

vizShowDownloadWorkbookDialog

Shows the export data dialog for the current or a specific sheetdownload workbook dialog.

Code Block
languagejs
Questback.portalsApi.mySight.vizShowExportDataDialogvizShowDownloadWorkbookDialog(pageModuleIdentifier, sheetName)
    .then(function() {
        ...
    });

mySight.

...

vizShowExportImageDialog

Shows the export cross tab dialog for the current or a specific sheetimage dialog.

Code Block
languagejs
Questback.portalsApi.mySight.vizShowExportCrossTabDialogvizShowExportImageDialog(pageModuleIdentifier, sheetName)
    .then(function() {
        ...
    });

mySight.

...

vizShowExportPDFDialog

Shows the share dialog for the current or a specific sheetexport PDF dialog.

Code Block
languagejs
Questback.portalsApi.mySight.vizShowShareDialogvizShowExportPDFDialog(pageModuleIdentifier, sheetName)
    .then(function() {
        ...
    });

mySight.

...

vizShowExportDataDialog

Sets the vizs frame size. Note that the min-width might be set to 100% by Portals, taking precedence over any width that is set here.

...

Shows the export data dialog for the current or a specific sheet.

Code Block
languagejs
Questback.portalsApi.mySight.vizSetFrameSizevizShowExportDataDialog(pageModuleIdentifier, width, heightsheetName)
    .then(function() {
        ...
    });

mySight.

...

vizShowExportCrossTabDialog

Gets the name of the workbookShows the export cross tab dialog for the current or a specific sheet.

Code Block
languagejs
Questback.portalsApi.mySight.workbookGetNamevizShowExportCrossTabDialog(pageModuleIdentifier, sheetName)
    .then(function(name) {
        ...
    });

mySight.

...

vizShowShareDialog

Shows the share dialog for the current or a specific sheet.

Questback
Code Block
languagejs
Questback.portalsApi.mySight.workbookGetSheetsInfovizShowShareDialog(pageModuleIdentifier, sheetName)
    .then(function(sheetsInfo) {
        ...
    });

mySight.

...

vizSetFrameSize

Gets the name of the active sheetSets the vizs frame size. Note that the min-width might be set to 100% by Portals, taking precedence over any width that is set here.

Code Block
languagejs
Questback.portalsApi.mySight.workbookGetActiveSheetNamevizSetFrameSize(pageModuleIdentifier, width, height)
    .then(function(name) {
        ...
    });

mySight.

...

workbookGetName

Gets the index name of the active sheetworkbook.

Code Block
languagejs
Questback.portalsApi.mySight.workbookGetActiveSheetIndexworkbookGetName(pageModuleIdentifier)
    .then(function(indexname) {
        ...
    });

mySight.

...

workbookGetSheetsInfo

Gets information about all sheets.

Code Block
languagejs
Questback.portalsApi.mySight.workbookActivateSheetworkbookGetSheetsInfo(pageModuleIdentifier, sheetNameOrIndex)
    .then(function(sheetsInfo) {
        ...
    });

mySight.

...

workbookGetActiveSheetName

Restores Gets the initial state of the workbook. Note that url parameters will be ignored in this operation and as such the restored state may differ from the real initial statename of the active sheet.

Code Block
languagejs
Questback.portalsApi.mySight.workbookRevertAllworkbookGetActiveSheetName(pageModuleIdentifier)
    .then(function(name) {
        ...
    });

mySight.

...

workbookGetActiveSheetIndex

Gets a list the index of the parameter namesactive sheet.

Code Block
languagejs
Questback.portalsApi.mySight.workbookGetParameterNamesworkbookGetActiveSheetIndex(pageModuleIdentifier)
    .then(function(namesindex) {
        ...
    });

mySight.

...

workbookActivateSheet

Actives a sheet by its name or index.

Code Block
languagejs
Questback.portalsApi.mySight.workbookGetParameterCurrentValueworkbookActivateSheet(pageModuleIdentifier, parameterNamesheetNameOrIndex)
    .then(function() {
        ...
    });

mySight.

...

workbookRevertAll

Gets Restores the data type of a parameterinitial state of the workbook. Note that url parameters will be ignored in this operation and as such the restored state may differ from the real initial state.

Code Block
languagejs
Questback.portalsApi.mySight.workbookGetParameterDataTypeworkbookRevertAll(pageModuleIdentifier, parameterName)
    .then(function(dataType) {
        ...
    });

mySight.

...

workbookGetParameterNames

Gets the type of allowable values of a parametera list of the parameter names.

Code Block
languagejs
Questback.portalsApi.mySight.workbookGetParameterAllowableValuesTypeworkbookGetParameterNames(pageModuleIdentifier, parameterName)
    .then(function(allowableValuesTypenames) {
        ...
    });

mySight.

...

workbookGetParameterCurrentValue

Gets a list of allowable values of the current value of a parameter.

Code Block
languagejs
Questback.portalsApi.mySight.workbookGetParameterAllowableValuesworkbookGetParameterCurrentValue(pageModuleIdentifier, parameterName)
    .then(function(allowableValues) {
        ...
    });

mySight.

...

workbookGetParameterDataType

Gets the min value data type of a parameter.

Code Block
languagejs
Questback.portalsApi.mySight.workbookGetParameterMinValueworkbookGetParameterDataType(pageModuleIdentifier, parameterName)
    .then(function(minValuedataType) {
        ...
    });

mySight.

...

workbookGetParameterAllowableValuesType

Gets the max value type of allowable values of a parameter.

Code Block
languagejs
Questback.portalsApi.mySight.workbookGetParameterMaxValueworkbookGetParameterAllowableValuesType(pageModuleIdentifier, parameterName)
    .then(function(maxValueallowableValuesType) {
        ...
    });

mySight.

...

workbookGetParameterAllowableValues

Gets the step size a list of allowable values of a parameter.

Code Block
Questback.portalsApi.mySight.workbookGetParameterStepSizeworkbookGetParameterAllowableValues(pageModuleIdentifier, parameterName)
    .then(function(stepSizeallowableValues) {
        ...
    });

mySight.

...

workbookGetParameterMinValue

Gets the date step period min value of a parameter.

Code Block
Questback.portalsApi.mySight.workbookGetParameterDateStepPeriodworkbookGetParameterMinValue(pageModuleIdentifier, parameterName)
    .then(function(dateStepPeriodminValue) {
        ...
    });

mySight.

...

workbookGetParameterMaxValue

Gets the max value of a parameter.

Code Block
Questback.portalsApi.mySight.workbookChangeParameterValueworkbookGetParameterMaxValue(pageModuleIdentifier, parameterName, value)
    .then(function(newValuemaxValue) {
        ...
    });

mySight.

...

workbookGetParameterStepSize

Gets the name step size of a sheet by its indexparameter.

Code Block
Questback.portalsApi.mySight.sheetGetNameworkbookGetParameterStepSize(pageModuleIdentifier, parameterName)
    .then(function(namestepSize) {
        ...
    });

mySight.

...

workbookGetParameterDateStepPeriod

Gets the index date step period of a sheet by its nameparameter.

Code Block
Questback.portalsApi.mySight.sheetGetIndexworkbookGetParameterDateStepPeriod(pageModuleIdentifier, parameterName)
    .then(function(indexdateStepPeriod) {
        ...
    });

mySight.

...

workbookChangeParameterValue

Sets a parameter to a given value.

Code Block
languagejs
Questback.portalsApi.mySight.sheetGetIsActiveworkbookChangeParameterValue(pageModuleIdentifier, sheetNameOrIndexparameterName, value)
    .then(function(activenewValue) {
        ...
    });

mySight.

...

sheetGetName

Gets whether the name of a sheet is hidden or notby its index.

Code Block
languagejs
Questback.portalsApi.mySight.sheetGetIsHiddensheetGetName(pageModuleIdentifier, sheetNameOrIndex)
    .then(function(hiddenname) {
        ...
    });

mySight.

...

sheetGetIndex

Gets the type index of the currently active or a specific sheet by its name.

Code Block
languagejs
Questback.portalsApi.mySight.sheetGetTypesheetGetIndex(pageModuleIdentifier, sheetNameOrIndex)
    .then(function(typeindex) {
        ...
    });

mySight.

...

sheetGetIsActive

Gets the url of the currently whether a sheet is active or a specific sheetnot.

Code Block
languagejs
Questback.portalsApi.mySight.sheetGetUrlsheetGetIsActive(pageModuleIdentifier, sheetNameOrIndex)
    .then(function(urlactive) {
        ...
    });

mySight.

...

sheetGetIsHidden

Gets the size of the currently active or a specific sheetwhether a sheet is hidden or not.

Code Block
languagejs
Questback.portalsApi.mySight.sheetGetSizesheetGetIsHidden(pageModuleIdentifier, sheetNameOrIndex)
    .then(function(sizehidden) {
        ...
    });

mySight.

...

sheetGetType

Sets Gets the size type of the currently active or a specific sheet.

Code Block
languagejs
Questback.portalsApi.mySight.sheetChangeSizesheetGetType(pageModuleIdentifier, sheetSizeOptionssheetNameOrIndex)
    .then(function(type) {
        ...
    });

mySight.

...

sheetGetUrl

Gets the filters url of the currently active or a specific sheet specified by its name.

Code Block
languagejs
Questback.portalsApi.mySight.sheetGetFilterssheetGetUrl(pageModuleIdentifier, sheetNamesheetNameOrIndex)
    .then(function(filtersurl) {
        ...
    });

mySight.

...

sheetGetSize

Gets the size of the currently active or a specific sheet.

Code Block
languagejs
Questback.portalsApi.mySight.sheetApplyFiltersheetGetSize(pageModuleIdentifier, sheetName,sheetNameOrIndex)
fieldName, values, updateType, options)
    . .then(function(fieldNamesize) {
        ...
    });

mySight.

...

sheetChangeSize

Sets the size of the active sheet.

Code Block
languagejs
Questback.portalsApi.mySight.sheetApplyRangeFiltersheetChangeSize(pageModuleIdentifier, sheetName, fieldName, rangesheetSizeOptions)
    .then(function(fieldName) {
        ...
    });

mySight.

...

sheetGetFilters

Applies the relative date filter for Gets the filters of a sheet specified by its name.

Code Block
languagejs
Questback.portalsApi.mySight.sheetApplyRelativeDateFiltersheetGetFilters(pageModuleIdentifier, sheetName, fieldName, options)
    .then(function(fieldNamefilters) {
        ...
    });

mySight.

...

sheetApplyFilter

Applies the hierarchical filter for a sheet specified by its name.

Code Block
languagejs
Questback.portalsApi.mySight.sheetApplyHierarchicalFiltersheetApplyFilter(pageModuleIdentifier, sheetName, fieldName, values, updateType, options)
    .then(function(fieldName) {
        ...
    });

mySight.

...

sheetApplyRangeFilter

Clears Applies the range filter for a sheet specified by its name.

Questback
Code Block
languagejs
Questback.portalsApi.mySight.sheetClearFiltersheetApplyRangeFilter(pageModuleIdentifier, sheetName, fieldName, range)
    .then(function(fieldName) {
        ...
    });

Listening to MySight Tableau events

The api supports registering for a number of Tableau events. The supported events are:

  • FIRST_INTERACTIVE

  • VIZ_RESIZE

  • TAB_SWITCH

  • FILTER_CHANGE

  • PARAMETER_VALUE_CHANGE

  • MARKS_SELECTION

To register a listener for an event use the apis bus methods together with the apis tableau event constants:

...

mySight.sheetApplyRelativeDateFilter

Applies the relative date filter for a sheet specified by its name.

Code Block
languagejs
Questback.portalsApi.mySight.sheetApplyRelativeDateFilter(pageModuleIdentifier, sheetName, fieldName, options)
    .then(function(fieldName) {
    console.log(event); });  Questback.portalsApi.bus.subscribe(
  Questback.portalsApi.mySight.tableauEventVizResize, function(event)
{     console.log(event);
});

});

mySight.sheetApplyHierarchicalFilter

Applies the hierarchical filter for a sheet specified by its name.

Code Block
languagejs
Questback.portalsApi.busmySight.subscribesheetApplyHierarchicalFilter(pageModuleIdentifier, sheetName,  Questback.portalsApi.mySight.tableauEventFilterChange, function(eventfieldName, values, options)
    .then(function(fieldName) {
    console.log(event);
});    Questback.portalsApi.bus.subscribe(
    });

mySight.sheetClearFilter

Clears the filter for a sheet specified by its name.

Code Block
languagejs
Questback.portalsApi.mySight.tableauEventTabSwitchsheetClearFilter(pageModuleIdentifier, sheetName, function(eventfieldName)
{     console.logthen(function(event);
});

Questback.portalsApi.bus.subscribe(fieldName) {
        Questback.portalsApi.mySight.tableauEventParameterValueChange, function(event)
{     console.log(event);
});

});

...

Listening to MySight Tableau events

The api supports registering for a number of Tableau events. The supported events are:

  • FIRST_INTERACTIVE

  • VIZ_RESIZE

  • TAB_SWITCH

  • FILTER_CHANGE

  • PARAMETER_VALUE_CHANGE

  • MARKS_SELECTION

To register a listener for an event use the apis bus methods together with the apis tableau event constants:

Code Block
Questback.portalsApi.bus.subscribe(
  Questback.portalsApi.mySight.tableauEventMarksSelectiontableauEventFirstInteractive, function(event) {
    console.log(event);
});

Note that you will receive events coming from any MySight Tableau instance on the page, so upon receiving an event you might have to make sure that you are only handling events coming from a specific instance by checking the pageModuleIdentifier in the event object.

Code Block


Questback.portalsApi.bus.subscribe(
  Questback.portalsApi.mySight.tableauEventVizResize, function(event) {
    if console.log(event.mysight.pageModuleIdentifier === 'page-module-identifier-to-handle');
});

Questback.portalsApi.bus.subscribe(
  Questback.portalsApi.mySight.tableauEventFilterChange, function(event) {
    console.log(event);
});

Questback.portalsApi.bus.subscribe(
  // Do somethingQuestback.portalsApi.mySight.tableauEventTabSwitch, function(event) {
    }
});console.log(event);
});

Questback.portalsApi.bus.subscribe(
  Questback.portalsApi.mySight.tableauEventParameterValueChange, function(event) {
    console.log(event);
});

Questback.portalsApi.bus.subscribe(
  Questback.portalsApi.mySight.tableauEventMarksSelection, function(event) {
    console.log(event);
});

Note that you will receive events coming from any MySight Tableau instance on the page, so upon receiving an event you might have to make sure that you are only handling events coming from a specific instance by checking the pageModuleIdentifier in the event object.

Code Block
languagejs
Questback.portalsApi.bus.subscribe(
  Questback.portalsApi.mySight.tableauEventVizResize, function(event) {
    if (event.mysight.pageModuleIdentifier === 'page-module-identifier-to-handle') {
        // Do something
    }
});

Use Portals styles

You can use Portals CSS styles by importing its stylesheets into your iframe. The following examples will guide you through the setup process.

Retrieve file paths

First you need to get the paths of the stylesheet files and font definitions:

Code Block
Questback.portalsApi.initialize().then(function() {
    Questback.portalsApi.query.portalInfo().then(function(result) {
        // Continue here with step 7.2
    });
});

The result parameter will contain the necessary information in its layout field:

Code Block
{
    portal: {...},
    layout: {
        customCss: "<https://PORTALS-DOMAIN/portals/PORTALS-ID/css/compile.css?v=123456",>
        portalsCss: "<https://PORTALS-DOMAIN/portals/PORTALS-ID/css/custom.css?v=123456",>
        extensionCss: "<https://PORTALS-DOMAIN/portals/PORTALS-ID/css/extension.css?v=123456",>
        fontCss: "<https://fonts.googleapis.com/css?family=Lato",>
        fontDefinition: "'Lato', sans-serif",
    }
}

These paths do not change for a given portal (besides the value of the cachebuster parameter called v), so it is possible to retrieve them once, store them and hardcode them into your code, to save postMessage requests and improve startup times a little.

Importing the extension stylesheet

After retrieving the stylesheet urls you need to import the files by adding link tags into your documents head:

Code Block
var head = document.getElementsByTagName('head')[0];
var linkExtension = document.createElement('link');
linkExtension.setAttribute('rel', 'stylesheet');
linkExtension.setAttribute('type', 'text/css');
linkExtension.setAttribute('href', result.layout.extensionCss);
head.appendChild(linkExtension);

You should note that it takes some time to retrieve the file from the server, so there is a short time in which your application is rendered without the styles in the file. You might want to prevent your application from beeing shown to the user before the above code has been executed.

The extension.css is a subset of the portals stylesheet and contains the necessary styles for the most common use cases. If you want to include the complete portals stylesheet you can import result.layout.portalsCss instead of result.layout.extensionCss. But be aware that this might introduce conflicts with existing styles in your application.

Importing the custom stylesheet

If you have added custom css in the Look & Feel section of the CMS, that contains styles which you want to apply to you application, then you should import the custom.css file, too.

Code Block
var linkCustom = document.createElement('link');
linkCustom.setAttribute('rel', 'stylesheet');
linkCustom.setAttribute('type', 'text/css');
linkCustom.setAttribute('href', result.layout.customCss);
head.appendChild(linkCustom);

Importing the portals default font

To use the same font as your portal use the following code:

Code Block
if (result.layout.fontCss) {
    var linkFont = document.createElement('link');
    linkFont.setAttribute('rel', 'stylesheet');
    linkFont.setAttribute('type', 'text/css');
    linkFont.setAttribute('href', result.layout.fontCss);
    head.appendChild(linkFont);

    // Apply font-family definition
    var body = document.getElementsByTagName('body')[0];
    body.style.fontFamily = result.layout.fontDefinition;
}

Using the styles

The extension.css contains classes for the most common use cases.

Color variables

Code Block
/* Color variables definitions */
:root {
    --ext-primary-color: #006BFE;
    --ext-secondary-color: #606c76;
    --ext-success-color: #2ccc76;
    --ext-warning-color: #fbbf5f;
    --ext-danger-color: #fd6e72;
    --ext-info-color: #006bff;
    --ext-text-color: #444444;
    --ext-sidebar-background-color: #0a061d;
    --ext-sidebar-text-color: #ffffff;
}

Type color classes

Classes exist for the most common type and property combinations:

Code Block
.ext-text-primary
.ext-text-secondary
.ext-text-success
.ext-text-warning
.ext-text-danger
.ext-text-info

.ext-background-primary
.ext-background-secondary
.ext-background-success
.ext-background-warning
.ext-background-danger
.ext-background-info

.ext-border-primary
.ext-border-secondary
.ext-border-success
.ext-border-warning
.ext-border-danger
.ext-border-info

Profile background classes

The profile background classes exist, too:

Code Block
.ext-profile-background-0
.ext-profile-background-1
.ext-profile-background-2
.ext-profile-background-3
.ext-profile-background-4
.ext-profile-background-5
.ext-profile-background-6
.ext-profile-background-7
.ext-profile-background-8
.ext-profile-background-9

Other classes

Code Block
.ext-text-color
.ext-sidebar-background
.ext-sidebar-text

Buttons

You can style your buttons by using the portals button classes:

Code Block
<button class="btn btn--md btn--primary btn--gloss">Click</button>

The button size can be set by adding one of the following classes:

Code Block
btn--xs
btn--sm
btn--md
btn--lg

The type can be set by adding one the following classes:

Code Block
btn--default
btn--primary
btn--secondary
btn--cancel
btn--clear
btn--success
btn--warning
btn--danger
btn--info
btn--contrast
btn--transparent

To enable hover effects, add the following class:

Code Block
btn--gloss

To display a button as disabled, add the following class:

Code Block
btn--disabled

If the button has the "disabled" attribute, the styles of "btn--disabled" are applied automatically.

Input fields

You can use styles for input fields as well. Write your markup as follows:

Code Block
<div class="input input--animated">
    <input type="text" oninput="this.value ? this.classList.add('input-filled') : this.classList.remove('input-filled');">
    <label>
        <span class="text-ellipsis">This is the label</span>
    </label>
</div>

Please pay attention to the order of the elements and their classes. The oninput event handler is required to add or remove the input-filled class according to the inputs value. If your input receives an initial value you have to add the input-filled class manually.

Selectboxes

You can use native html selectboxes and they will be styled as close as possible to the original portals selectboxes. As those are generated by JavaScript, an exact replication is not possible.

Code Block
<div class="input input--animated input--select">
    <select class="input-filled">
        <option value="1">Value 1</option>
        <option value="2">Value 2</option>
        <option value="3">Value 3</option>
    </select>
    <label>
        <span>This is the label</span>
    </label>
</div>

As native html selectboxes always have a value selected, the input-filled class is always set on the select element.

Opening a dialog in Portals

The portalsApi has four methods that give you the ability to open a dialog outside of the scope of your iframe.

Code Block
Questback.portalsApi.trigger.openDialog(text, title)
Questback.portalsApi.trigger.openConfirmDialog(text, title)
Questback.portalsApi.trigger.openIframeDialog(url, title, height, heightUnit)
Questback.portalsApi.trigger.openIframeConfirmDialog(url, title, height, heightUnit)

Dialog buttons

The methods openDialog and openIframeDialog open a dialog with a single "Close" button. The corresponding methods openConfirmDialog and openIframeConfirmDialog open a dialog with a "Cancel" and an "Ok" button.

Text dialogs

The methods openDialog and openConfirmDialog take a string as first parameter, which is the text shown in the main area of the dialog. The title is optional.

Iframe dialogs

The methods openIframeDialog and openIframeConfirmDialog render an iframe in the main area of the dialog with the url given at the first parameter. The title, height and heightUnit are optional. The paramters height and heightUnit define the height of the iframe in the dialog.

Simple call

The simplest way to open a dialog is by calling one of the dialog methods, give a text/url and not worry about any events:

Code Block
Questback.portalsApi.trigger.openDialog('This is a simple dialog!');

Handle dialog close

The dialog can either be closed or canceled/accepted and this event can be handled by implementing Promise methods, like this:

Code Block
Questback.portalsApi.trigger.openDialog('This is a simple dialog!')
    .then(function() {
        console.log("Dialog has been closed");
    });

The confirm dialogs make use of the then and catch methods:

Code Block
Questback.portalsApi.trigger.openConfirmDialog('This is a confirmation dialog!')
    .then(function() {
        console.log("Dialog closed by ok button");
    })
    .catch(function() {
        console.log("Dialog closed by cancel button");
    });

The catch method does not indicate that an error happened, it just tells you about the way the dialog was closed. Both methods do not get any parameters. This means that no data from the dialogs iframe is transported back to the calling iframe.

If you want to transport data between the iframes or trigger actions in the other iframe make use of the PortalsApi's message bus functionality, documented under Using the Portals message bus.