powerbi-client-react

React wrapper for powerbi-client library

Usage no npm install needed!

<script type="module">
  import powerbiClientReact from 'https://cdn.skypack.dev/powerbi-client-react';
</script>

README

powerbi-client-react

Power BI React component. This library lets you embed Power BI report, dashboard, dashboard tile, report visual, or Q&A in your React application.

Quick Start

Import

import { PowerBIEmbed } from 'powerbi-client-react';

Embed a Power BI report

<PowerBIEmbed
    embedConfig = {{
        type: 'report',   // Supported types: report, dashboard, tile, visual and qna
        id: '<Report Id>',
        embedUrl: '<Embed Url>',
        accessToken: '<Access Token>',
        tokenType: models.TokenType.Embed,
        settings: {
            panes: {
                filters: {
                    expanded: false,
                    visible: false
                }
            },
            background: models.BackgroundType.Transparent,
        }
    }}

    eventHandlers = { 
        new Map([
            ['loaded', function () {console.log('Report loaded');}],
            ['rendered', function () {console.log('Report rendered');}],
            ['error', function (event) {console.log(event.detail);}]
        ])
    }
        
    cssClassName = { "report-style-class" }

    getEmbeddedComponent = { (embeddedReport) => {
        this.report = embeddedReport as Report;
    }}
/>

How to bootstrap a PowerBI report:

<PowerBIEmbed
    embedConfig = {{
        type: 'report',   // Supported types: report, dashboard, tile, visual and qna
        id: undefined, 
        embedUrl: undefined,
        accessToken: undefined,    // Keep as empty string, null or undefined
        tokenType: models.TokenType.Embed
    }}
/>

Note: To embed the report after bootstrap, update the props (with atleast accessToken).

Demo

A React application that embeds a sample report using the PowerBIEmbed component.
It demonstrates the complete flow from bootstrapping the report, to embedding and updating the embedded report.
It also demonstrates the usage of powerbi report authoring library by deleting a visual from report on click of "Delete a Visual" button.

To run the demo on localhost, run the following commands:

npm run install:demo
npm run demo

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

Usage

Use case Details
Embed Power BI To embed your powerbi artifact, pass the component with atleast type, embedUrl and accessToken in embedConfig prop.
Get reference to the embedded object Pass a callback method which accepts the embedded object as parameter to the getEmbed of props.
Refer to the getEmbed prop in Quick Start.
Apply style class Pass the name(s) of style classes to be added to the embed container div to the cssClassName props.
Set event handlers Pass a map object of event name (string) and event handler (function) to the eventHandlers prop.
Key: Event name
Value: Event handler method to be triggered
Event handler method takes 2 optional params:
First parameter: Event
Second parameter: Reference to the embedded entity
Reset event handlers To reset event handler for an event, set the event handler's value as null in the eventHandlers map of props.
Set new accessToken To set new accessToken in the same embedded powerbi artifact, pass the updated accessToken in embedConfig of props.
Reload manually with report.reload() after providing new token if the current token in report has already expired
Example scenario: Current token has expired.
Update settings (Report type only) To update the report settings, update the embedConfig.settings property of props.
Refer to the embedConfig.settings prop in Quick Start.
Note: Update the settings only by updating embedConfig prop
Bootstrap Power BI To bootstrap your powerbi entity, pass the props to the component without accessToken in embedConfig.
Note: embedConfig of props should atleast 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.
Using with PowerBI Report Authoring 1. Install powerbi-report-authoring as npm dependency.
2. Use the report authoring APIs using the embedded report's instance
Phased embedding (Report type only) Set phasedEmbedding prop's value as true
Refer to Phased embedding docs.
Apply Filters (Report type only) 1. To apply updated filters, update filters in embedConfig props.
2. To remove the applied filters, update the embedConfig prop with the filters removed or set as undefined/null.
Set Page (Report type only) To set a page when embedding a report or on an embedded report, provide pageName field in the embedConfig.

Note: To use this library in IE browser, use react-app-polyfill to add support for the incompatible features. Refer to the imports of demo/index.tsx.

Props interface

interface EmbedProps {

    // Configuration for embedding the PowerBI entity (required)
    embedConfig:
        | IReportEmbedConfiguration
        | IDashboardEmbedConfiguration
        | ITileEmbedConfiguration
        | IQnaEmbedConfiguration
        | IVisualEmbedConfiguration
        | IEmbedConfiguration

    // Callback method to get the embedded PowerBI entity object (optional)
    getEmbed?: { (embeddedComponent: Embed): void }

    // Map of pair of event name and its handler method to be triggered on the event (optional)
    eventHandlers?: Map<string, EventHandler>

    // CSS class to be set on the embedding container (optional)
    cssClassName?: string

    // Phased embedding flag (optional)
    phasedEmbedding?: boolean;

    // Provide instance of PowerBI service (optional)
    service?: service.Service
}

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

Dependencies

powerbi-client

Peer dependencies

react

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 repos 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