Skip to main content

Author an embedded dashboard

Embedding MicroStrategy content within critical business applications empowers users to make smarter decisions by taking advantage of the dashboard development efforts that occur behind the scenes. To allow users to conveniently edit a dossier, Embedding SDK allows embedding a dashboard in the authoring mode, whether it is during the initial load or in the view mode of the dashboard.

tip

To help you get started, we have provided an example in the Embedding SDK Playground that will embed a dashboard in authoring mode along with an edit button that you can use to switch to authoring mode. You need to modify the environment url and dashboard url to use your dashboard and environment. See the steps to do this in Introduction to Embedding SDK.

Embedding SDK functionalities

With the Authoring Library feature, the Embedding SDK could enable the users to the things below:

  • Call microstrategy.dossier.create API with specific initialized parameters to:

    a. Enter the authoring Library page to edit a dashboard directly.

    b. Hiding the Edit button in the navigation bar of the consumption Library page, to disable the user to edit the dashboard.

  • Call the Dossier.switchToMode API to switch from view mode to authoring mode.

  • Register events to notify the parent application when the dashboard is saved or closed.

Authoring mode constraints

The availability of existing Embedding SDK APIs

In authoring mode, most dossier-related APIs are disabled as they are designed for the consumption dashboard instance. The remaining APIs supported in authoring mode are shown below.

Supported APIDescription
microstrategy.dossier.createCreates or destroys the embedded dashboard view.
microstrategy.dossier.destroyCreates or destroys the embedded dashboard view.
Dossier.switchToModeThe API added in this feature used in authoring mode.
Dossier.registerEventHandlerAdds an event handler.
Dossier.removeEventHandlerRemoves an event handler.
Dossier.registerFilterUpdateHandlerCalls the same dossier functions in Web with Dossier.registerEventHandler so all could be used in authoring mode.
Dossier.registerPageSwitchHandlerCalls the same dossier functions in Web with Dossier.registerEventHandler so all could be used in authoring mode.
Dossier.registerDossierInstanceIDChangeHandlerCalls the same dossier functions in Web with Dossier.registerEventHandler so all could be used in authoring mode.
Dossier.registerGraphicsSelectEventHandlerToVizCalls the same dossier functions in Web with Dossier.registerEventHandler so all could be used in authoring mode.
Dossier.addCustomErrorHandlerHandles the error handlers.
Dossier.removeCustomErrorhandlerHandles the error handlers.
Dossier.addSessionErrorHandlerHandles the error handlers.
Dossier.removeSessionErrorhandlerHandles the error handlers.
Dossier.makeSureSessionAliveChecks the session. If it is expired, you should refresh it.

The other APIs are disabled in authoring mode. If a disabled API is called in authoring mode, an error is returned with the message, "The API ${funcName} isn't supported in the authoring mode!"

Events

To avoid unexpected events, except the newly added events (see the callback event API and example), you cannot receive Embedding SDK events in authoring mode as they are designed for consumption mode.

Initial parameters

The props parameter contains many fields. See Methods and properties for an embedded dashboard for more information.

The existing parameters can be roughly divided into three categories and their behaviors can be set with dossierRenderingMode = authoring.

  • The parameters shared by both modes, for example, URL, serverURL, applicationID, objectID, and placeholder. These parameters only involve the embedding framework and are effective on both modes.

  • The parameters used for some UI customization in consumption mode, for example, navigationBar.enabled. You can still use these parameters with dossierRenderingMode = authoring, but their effects can only be seen when switching back to consumption mode.

  • The parameters used for some extra dashboard instance manipulation, for example, filter and visualizationAppearances. These parameters are implementations of some embedding SDK APIs (for example, filter-related functions in the dashboard class and changeVisualizationSize) for the initial workflow. As these embedding SDK APIs are forbidden in authoring mode, you must also forbid these parameters in the initial parameter in authoring mode to keep the consistent behavior. A complete list of these parameters are shown below.

Field NameDescription
filtersApplies filters to the dashboard instance in consumption mode.
visualizationAppearancesApplies visualization appearance manipulations to the dashboard instance in consumption mode.
visualizationSelectedElementsApplies visualization element selections to the dashboard instance in consumption mode.

If you have set values for these fields when setting dossierRenderingMode = authoring, a dialog appears with the error message:

The fields ["filters", "visualizationAppearances", "visualizationSelectedElements"] are not allowed to be used when "dossierRenderingMode" is "authoring". Please remove these forbidden fields and try again.

Embedding SDK APIs and examples

API for entering authoring mode or disabling authoring mode in the initial loading

Function

microstrategy.dossier.create(props)

Input parameters

An optional props.dossierRenderingMode field has been added to the props object in 2021 Update 3. The props parameter contains many fields. See Methods and properties for an embedded dashboard for more information.

Parameter NameData TypeDefault ValueAvailable ValuesDescriptionRequired?
props.dossierRenderingModeStringconsumption["consumption", "authoring"]The value is either consumption or authoring.
If it is authoring and the configuration feature.dossier.authoring isn't set, or its value isn't true, then an error is returned.
No

Example:

microstrategy.dossier.create({
// ...
dossierRenderingMode: "authoring",
});

Response

This API returns a promise dossier object in the resolved case, which can be used to call other dossier-owned embedding SDK APIs.

const placeholderDiv = document.getElementById("dossierContainer");
let myDossier;
microstrategy.dossier
.create({
// ...
})
.then((dossier) => {
myDossier = dossier;
// ...
});

Errors

When an error occurs, this API returns a promise object that in turn returns an error object in rejected cases.

Error CaseError CategoryHandling ModuleError Handling
The dossierRenderingMode parameter has the wrong input type.Invalid inputEmbedded SDKDisplay an error message and an alert dialog.
The dossierRenderingMode parameter is neither “consumption“ nor “authoring“.Invalid inputEmbedded SDKDisplay an error message and an alert dialog.
A required parameter is missed or it is not in the correct format.Invalid input in the unsupported caseWeb DossierCaught by error handler.
The unsupported fields in the authoring mode include:
  • filters
  • visualizationAppearances
  • visualizationSelectedElements
Unsupported caseEmbedded SDKDisplay an error message and an alert dialog.

API for switching to authoring mode

This API, similar to the Dossier.resizeVisualization API, can ignore the restriction of the initial navigationBar.edit parameter. This means when navigationBar.edit is set to false, you cannot enter authoring mode via manual actions, but are able to via this API.

Function

Dossier.switchToMode(mode)

Input parameters

Parameter NameDescriptionData TypeAvailable ValuesDefault Value
modeThis is in the array ["authoring"].
Using API to return to consumption mode is not supported, so the input "consumption" returns an error.
String["authoring"]N/A

Response

This API returns a promise object, similar to the ones shown below.

myDossier
.switchToMode("authoring")
.then(() => {
// ...
})
.catch((error) => {
// ...
});

Since additional feedback information is not required, the callback parameters for the resolve case are not necessary.

Similar to the behavior of the existing goToPage API, the user's callback should be invoked when the editing page completes loading.

Parameter NameData TypeExampleComments
errorError objectnew Error(“invalid operation!“)See Errors for more information.

Errors

When an error occurs, the API returns a promise object that in turn returns an error object in rejected cases.

Error CaseError CategoryHandling ModuleError Handling
Dossier authoring isn’t allowed.Unsupported caseWeb DossierCaught by the catch() of the promise object.

Callback for monitoring when the dashboard is saved or closed

When the Save or Close button is clicked in authoring mode, an event is raised that notifies your application.

Event name

Parameter NameTrigger
onDossierAuthoringSavedWhen the dashboard is saved in authoring mode.
onDossierAuthoringClosedWhen the dashboard is closed in authoring mode.

Callback format

The following code example includes registerEventHandler, which is an existing API.

myDossier.registerEventHandler(microstrategy.dossier.EventType.ON_DOSSIER_AUTHORING_SAVED, () => {
// The handling logic receiving the save event
// ...
});

myDossier.registerEventHandler(microstrategy.dossier.EventType.ON_DOSSIER_AUTHORING_CLOSED, () => {
// The handling logic receiving the close event
// ...
});

API for hiding the edit button

Function

microstrategy.dossier.create(props)

Input parameters

An optional props.navigationBar.edit field has been added to the props object. The props parameter contains many fields. See Methods and properties for an embedded dashboard for more information.

Parameter NameData TypeDefault ValueDescriptionRequired?
props.navigationBar.editBooleanfalseThe visibility of the Edit button on the navigation bar. If it's true, the edit button is the same as the OOTB Library; If it's false or not input, the edit button would be hidden.No

Example:

microstrategy.dossier.create({
// ...
navigationBar: {
edit: false,
},
});

If you do not enter a value for navigationBar, the dashboard runs using the old behavior and the navigation bar is hidden.

Response

This API returns a dossier promise object in the resolved case, which can be used to call other dossier-owned embedding SDK APIs.

const placeholderDiv = document.getElementById("dossierContainer");
let myDossier;
microstrategy.dossier
.create({
// ...
})
.then((dossier) => {
myDossier = dossier;
// ...
});

API for controlling the authoring UI

Function

microstrategy.dossier.create(props)

Input parameters

Parameter NamesData TypeDefault ValueDescriptionRequired?
props.authoring.menubar.library.visibleBooleantrueShow or hide corresponding Library home button in the authoring UI.No
props.authoring.toolbar.tableOfContents.visible
props.authoring.toolbar.undo.visible
props.authoring.toolbar.redo.visible
props.authoring.toolbar.refresh.visible
props.authoring.toolbar.pauseDataRetrieval.visible
props.authoring.toolbar.reprompt.visible
props.authoring.toolbar.dividerLeft.visible
props.authoring.toolbar.addData.visible
props.authoring.toolbar.addChapter.visible
props.authoring.toolbar.addPage.visible
props.authoring.toolbar.insertVisualization.visible
props.authoring.toolbar.insertFilter.visible
props.authoring.toolbar.insertText.visible
props.authoring.toolbar.insertImage.visible
props.authoring.toolbar.insertHtml.visible
props.authoring.toolbar.insertShape.visible
props.authoring.toolbar.insertPanelStack.visible
props.authoring.toolbar.insertInfoWindow.visible
props.authoring.toolbar.save.visible
props.authoring.toolbar.dividerRight.visible
props.authoring.toolbar.more.visible
props.authoring.toolbar.freeformLayout.visible
props.authoring.toolbar.nlp.visible
props.authoring.toolbar.responsiveViewEditor.visible
props.authoring.toolbar.responsivePreview.visible
BooleantrueShow or hide corresponding buttons on the toolbar in the authoring UI.No
props.authoring.panelVisibility.contents
props.authoring.panelVisibility.datasets
props.authoring.panelVisibility.editor
props.authoring.panelVisibility.filter
props.authoring.panelVisibility.format
props.authoring.panelVisibility.layers
BooleantrueShow or hide corresponding authoring panels.No

The props parameter contains many fields. See Methods and properties for an embedded dashboard for more information.

Example:

microstrategy.dossier.create({
placeholder: placeholderDiv,
url: "https://demo.microstrategy.com/MicroStrategyLibrary/app/EC70648611E7A2F962E90080EFD58751/19A95FA711EC45A93E0B0080AFAB8FDF", // {host}:{port}/{Library}/app/{ProjectID}/{DossierID}
authoring: {
menubar: { library: { visible: false } },
toolbar: { tableOfContents: { visible: false } },
panelVisibility: { contents: false },
},
});

Response

This API returns a dossier promise object in the resolved case, which can be used to call other dossier-owned embedding SDK APIs.

const placeholderDiv = document.getElementById("dossierContainer");
let myDossier;
microstrategy.dossier
.create({
// ...
})
.then((dossier) => {
myDossier = dossier;
// ...
});

Errors

When an error occurs, the API returns a promise object that in turn returns an error object in rejected cases.

Error CaseError CategoryHandling ModuleError Handling
The authoring parameter has the wrong input type.Invalid inputEmbedded SDKDisplay an error message and an alert dialog.
The authoring.${key} has the wrong input type.Invalid inputEmbedded SDKDisplay an error message and an alert dialog.

API for creating a new dashboard for authoring

Function

microstrategy.dossier.create(props)

Input parameters

Parameter NamesData TypeDefault ValueDescriptionRequired?
props.newDossierBooleanfalseUse when creating a new dashboard from scratch. When set to true, a new dashboard instance is created from a blank dashboard template. In this case, the instance, objectID, or url parameters don't have to and shouldn't be provided.No

The props parameter contains many fields. See Methods and properties for an embedded dashboard for more information.

Example:

microstrategy.dossier.create({
placeholder: placeholderDiv,
newDossier: true,
dossierRenderingMode: true,
});

Response

This API returns a dossier promise object in the resolved case, which can be used to call other dossier-owned embedding SDK APIs.

const placeholderDiv = document.getElementById("dossierContainer");
let myDossier;
microstrategy.dossier
.create({
// ...
})
.then((dossier) => {
myDossier = dossier;
// ...
});

Errors

When an error occurs, the API returns a promise object that in turn returns an error object in rejected cases.

Error CaseError CategoryHandling ModuleError Handling
There are inconsistent parameters with “newDossier".Invalid inputEmbedded SDKDisplay an error message and an alert dialog.