getState
Used to get the state of the hosting entity (a page where an app is embedded or the widget containing an iframe)
Syntax
import messageHandler from '@vcita/intandem-app-com';
// ...initialize the handler
messageHandler.getState().then(function(state){//do something});
// or
let status = await messageHandler.getState();
The State object
hostName
(String): The current host namehostType
(String): The type of the host - page | widgetview
(String): Is the page in a "team" mode or in a "my view" mode - team | my_view
{
"hostName": "home",
"hostType: "widget"
"view": "team"
}
Updated 21 days ago