1.1.0 • Published 1 month ago

powerbi-client-vue-js v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

powerbi-client-vue-js

Power BI Vue component. This library enables you to embed Power BI reports, dashboards, dashboard tiles, report visuals, Q&A or paginated reports in your Vue application, and to create new Power BI reports directly in your application.

Quick Start

Import

Import the 'PowerBIReportEmbed' inside your target module:

import { PowerBIReportEmbed } from 'powerbi-client-vue-js';

Embed a Power BI report

<PowerBIReportEmbed
    :embedConfig = {{
        type: "report",
        id: "<Report Id>",
        embedUrl: "<Embed Url>",
        accessToken: "<Access Token>",
        tokenType: models.TokenType.Embed,
        settings: {
            panes: {
                filters: {
                    expanded: false,
                    visible: false
                }
            },
            background: models.BackgroundType.Transparent,
        }
    }}

    :cssClassName = { "reportClass" }

    :phasedEmbedding = { false }

    :eventHandlers = {
        new Map([
            ['loaded', () => console.log('Report loaded');],
            ['rendered', () => console.log('Report rendered');],
            ['error', (event) => console.log(event.detail);]
        ])
    }
>
</PowerBIReportEmbed>

How to bootstrap a PowerBI report:

<PowerBIReportEmbed
    :embedConfig = {{
        type: "report",
        id: undefined,
        embedUrl: undefined,
        accessToken: undefined, // Keep as empty string, null or undefined
        tokenType: models.TokenType.Embed,
        hostname: "https://app.powerbi.com"
    }}
>
</PowerBIReportEmbed>

Note: To embed the report after bootstrapping, update the embedConfig (with at least accessToken and embedUrl).

Embedding other Power BI artifacts

The library offers the following components that can be used to embed various Power BI artifacts.

ComponentSelector to use for embedding
PowerBIReportEmbedComponent<PowerBIReportEmbed>
PowerBIDashboardEmbedComponent<PowerBIDashboardEmbed>
PowerBITileEmbedComponent<PowerBITileEmbed>
PowerBIVisualEmbedComponent<PowerBIVisualEmbed>
PowerBIQnaEmbedComponent<PowerBIQnaEmbed>
PowerBIPaginatedReportEmbedComponent<PowerBIPaginatedReportEmbed>
PowerBICreateReportEmbedComponent<PowerBICreateReport>

You can embed other artifacts such as:

<PowerBIDashboardEmbed
    :embedConfig = "<IDashboardEmbedConfiguration>"
    :cssClassName = "<className>"
    :eventHandlers = "<Map of String and eventHandler>"
>
</PowerBIDashboardEmbed>

Demo

This demo includes a Vue application that embeds a sample report using the PowerBIReportEmbed component. It demonstrates the complete flow from bootstrapping the report, to embedding and updating the embedded report. It also demonstrates using the powerbi report authoring library, by enabling the user to change the type of visual from a report using the "Change visual type" button. It also sets a 'DataSelected' event.

npm run demo

Redirect to http://localhost:3000/ to view in the browser.

Usage

Use caseDetails
Embed Power BITo embed your powerbi artifact, pass the component with at least type, embedUrl and accessToken in embedConfig property.
Apply style classPass the name(s) of style classes to be applied to the embed container div to the cssClassName property.
Set event handlersPass a map object of event name (string) and event handler (function) to the eventHandlers prop. Key: Event name Value: Event handler method to be triggeredEvent handler method takes two optional parameters:First parameter: EventSecond parameter: Reference to the embedded entity List of supported events is given here: Additional events
Reset event handlersTo reset event handler for an event, set the event handler's value as null in the eventHandlers map of properties.
Bootstrap Power BITo bootstrap your powerbi entity, pass the property embedConfig to the component without accessTokenNote: embedConfig should at least contain type of the powerbi entity being embedded. Available types: "report", "dashboard", "tile", "visual" and "qna".Refer to How to bootstrap a report section in Quick Start. Note: A paginated report cannot be bootstrapped.
Using with PowerBI Report Authoring1. Install powerbi-report-authoring as an npm dependency.2. Use the report authoring APIs using the embedded report's instance.
Phased embedding (Report type only)Set the phasedEmbedding property value to true Refer to the Phased embedding article.
Create reportTo create a new report, pass the component with at least type, embedUrl and datasetId in embedConfig prop.

Note: Supported browsers are Edge, Chrome, and Firefox.

Properties accepted by Components

PropertyDescriptionSupported by
embedConfigConfiguration for embedding the PowerBI entity (required)All
phasedEmbeddingPhased embedding flag (optional)Report
eventHandlersMap of pair of event name and its handler method to be triggered on the event (optional)Report, Dashboard, Tile, Visual, Qna
cssClassNameCSS class to be set on the embedding container (optional)All
serviceProvide the instance of PowerBI service (optional)All

Supported Events

Events supported by various Power BI entities:

EntityEvent
Report"buttonClicked", "commandTriggered", "dataHyperlinkClicked", "dataSelected", "loaded", "pageChanged", "rendered", "saveAsTriggered", "saved", "selectionChanged", "visualClicked", "visualRendered"
Dashboard"loaded", "tileClicked"
Tile"tileLoaded", "tileClicked"
QnA"visualRendered"

Event Handler to be used with Map

type EventHandler = (event?: service.ICustomEvent<any>, embeddedEntity?: Embed) => void | null;

Using supported SDK methods for Power BI artifacts

Import

Import the 'PowerBIReportEmbed' inside your targeted component file:

import { PowerBIReportEmbed } from 'powerbi-client-vue-js';

Initialize inside the Component

Component will emit report-obj and You can use this variable.Add method in the component template.

<PowerBIReportEmbed v-if="isEmbedded"
    :embed-config="sampleReportConfig"
    :phased-embedding="phasedEmbeddingFlag"
    :css-class-name="reportClass"
    :event-handlers="eventHandlersMap"
    @report-obj="setReportObj">
</PowerBIReportEmbed>

Declare a variable report!:Report and set the report to the report-obj.

setReportObj(value: Report) {
    this.report = value;
},

Use

You can use report to call supported SDK APIs.

async getReportPages(): Page[] {
    const pages = await this.report.getPages();
    console.log(pages);
}

Note

The library supports Vue applications having version >= 3.

Dependencies

powerbi-client (https://www.npmjs.com/package/powerbi-client)

Peer Dependencies

vue (https://www.npmjs.com/package/vue)

Trademarks

This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft’s Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party’s policies.

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repositories using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments

Data Collection.

The software may collect information about you and your use of the software and send it to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may turn off the telemetry as described in the repository. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications.

If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications together with a copy of Microsoft’s privacy statement. Our privacy statement is located at Microsoft Privacy Statement. You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices.

Support

Our public support page is available at Microsoft Support Statement.

1.1.0

1 month ago

1.0.2

1 year ago

1.0.3

1 year ago

1.0.1

2 years ago

1.0.0

2 years ago