npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

powerbi-client-react

v1.4.0

Published

React wrapper for powerbi-client library

Downloads

304,692

Readme

powerbi-client-react

Power BI React component. This library enables you to embed Power BI reports, dashboards, dashboard tiles, report visuals, Q&A or paginated reports in your React application, and to create new Power BI reports directly in your 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, qna, paginated report and create
		id: '<Report Id>',
		embedUrl: '<Embed Url>',
		accessToken: '<Access Token>',
		tokenType: models.TokenType.Embed, // Use models.TokenType.Aad for SaaS 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);}],
			['visualClicked', () => console.log('visual clicked')],
			['pageChanged', (event) => console.log(event)],
		])
	}

	cssClassName = { "reportClass" }

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

How to bootstrap a PowerBI report:

<PowerBIEmbed
	embedConfig = {{
		type: 'report',   // Supported types: report, dashboard, tile, visual, qna and paginated report
		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 at least accessToken).

Demo

This demo includes a React application that demonstrates the complete flow of embedding a sample report using the PowerBIEmbed component.

The demo shows how to bootstrap the report, embed it, and update it. Additionally, the demo showcases the usage of the powerbi report authoring library by enabling the user to change the type of visual from a report using the "Change visual type" button.

The demo also sets a "DataSelected" event, which allows the user to interact with the embedded report and retrieve information about the selected data.

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

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 at least 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 triggeredEvent handler method takes 2 optional params:First parameter: EventSecond 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 expiredExample 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 at least contain type of the powerbi entity being embedded. Available types: "report", "dashboard", "tile", "visual", "qna" and "paginated report".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.| |Create report|To create a new report, pass the component with at least type, embedUrl and datasetId in embedConfig prop.|

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
		| IPaginatedReportLoadConfiguration
		| IReportCreateConfiguration

	// 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
}

Supported Events

Events supported by various Power BI entities:

|Entity|Event| |:----- |:----- | | 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 'PowerBIEmbed' inside your targeted component file:

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

Use

You can use report state to call supported SDK APIs.

Steps:

  1. Create one state for storing the report object, for example, const [report, setReport] = useState<Report>();.

  2. Use the setReport method inside the component to set the report object.

<PowerBIEmbed
	embedConfig = { sampleReportConfig }
	eventHandlers = { eventHandlersMap }
	cssClassName = { reportClass }
	getEmbeddedComponent = { (embedObject: Embed) => {
		setReport(embedObject as Report);
	} }
/>
  1. Once the report object is set, it can be used to call SDK methods such as getVisuals, getBookmarks, etc.
async getReportPages(): Page[] {
	// this.report is a class variable, initialized in step 3
	const activePage: Page | undefined = await report.getActivePage();
	console.log(pages);
}

Dependencies

powerbi-client

Peer dependencies

react

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 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 [email protected] 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.