Flexmonster Software License Agreement (“Agreement”) has been revised and is effective as of January 8, 2025.
The following modifications were made:
The modified version of Agreement is available here.
Downloading, installing, and/or continuing to use Flexmonster Software after January 8, 2025, constitutes Licensee’s acceptance of the terms and conditions of the modified version of Agreement. If Licensee does not agree to any of these terms and conditions, they must cease using Flexmonster Software and must not download, install, use, access, or continue to access Flexmonster Software. By continuing to use Flexmonster Software or renewing the license or maintenance after the effective date of these modifications to Agreement, Licensee accepts and agrees to be bound by the terms and conditions of the modified Agreement.
This tutorial will help you integrate Flexmonster with the React Native framework.
Step 1. To get our sample project, download it as ZIP or clone it with the following commands:
git clone https://github.com/flexmonster/pivot-react-native
cd pivot-react-native
Step 2. Install the npm dependencies described in package.json
:
npm install
If the above command fails, run it with the --force
flag:
npm install --force
Step 3. If you are using React 17 or earlier, change the last two lines of code in the component/PivotTable.js
file:
//export { PivotTable as PivotTableComponent };
export var PivotTableComponent = React.forwardRef((props, ref) => <PivotTable />);
Step 4. Run the sample project from the console:
npx expo start
To shut down the project from the console, press Ctrl + C
(Control + C
on macOS).
Note If you get an error at this step, refer to the troubleshooting section.
The sample project contains several examples of using Flexmonster methods and events in React Native:
cellclick
's handler is removed, and the component subscribes to the update event.Learn more about using methods and events in this section.
Follow the steps below to integrate Flexmonster into a React Native project.
Skip this step if you already have a React Native project.
Create a React Native project by running the following commands in the console:
npx create-expo-app my-app --template blank
cd my-app
To get Flexmonster for React Native, run the following command inside your project:
npm install react-native-flexmonster --save-exact
Note We recommend installing Flexmonster with the --save-exact flag to avoid unexpected component updates.
Step 3.1. Import FlexmonsterReactNative
into App.js
:
import * as FlexmonsterReactNative from "react-native-flexmonster";
Step 3.2. Insert Flexmonster Pivot into App.js
:
export default function App() { return ( <View style={{ flex: 1 }}> <FlexmonsterReactNative.Pivot report="https://cdn.flexmonster.com/reports/report.json" /> </View> ); }
Run your application from the console:
npx expo start
To shut down the project from the console, press Ctrl + C
(Control + C
on macOS).
In this section, you will learn how to use Flexmonster’s methods and events in a React Native project.
To use Flexmonster methods and events in React Native, we will need a React ref to the Flexmonster instance. Create a ref and attach it to the FlexmonsterReactNative.Pivot
element:
<FlexmonsterReactNative.Pivot
ref={flexmonster => this.flexmonster = flexmonster}
report="https://cdn.flexmonster.com/reports/report.json"
/>
Now we can reference the Flexmonster instance throughout the React component.
See how the ref is attached to the component in the sample project.
You can call methods using the ref to Flexmonster instance:
showMyChart = () => {
this.flexmonster.showCharts("pie");
}
return (
<View style={{ flex: 1 }}>
<FlexmonsterReactNative.Pivot
ref={flexmonster => this.flexmonster = flexmonster}
report="https://cdn.flexmonster.com/reports/report.json"
/>
</View>
);
Methods that return a value are asynchronous. To get their returned value, use the then() method or the await operator:
reportComplete = () => {
this.flexmonster.getReport().then(function(report) {
console.log(report);
});
}
return (
<View style={{ flex: 1 }}>
<FlexmonsterReactNative.Pivot
ref={flexmonster => this.flexmonster = flexmonster}
report="https://cdn.flexmonster.com/reports/report.json"
/>
</View>
);
reportComplete = async () => {
const report = await this.flexmonster.getReport();
console.log(report);
}
return (
<View style={{ flex: 1 }}>
<FlexmonsterReactNative.Pivot
ref={flexmonster => this.flexmonster = flexmonster}
report="https://cdn.flexmonster.com/reports/report.json"
/>
</View>
);
Check out how Flexmonster methods are used in our sample project.
You can subscribe to events in two ways:
To subscribe to events via props, simply define the needed event as a FlexmonsterReactNative.Pivot
prop and assign an event handler to it:
return (
<View style={{ flex: 1 }}>
<FlexmonsterReactNative.Pivot
cellclick={this.onclickHandler}
report="https://cdn.flexmonster.com/reports/report.json"
/>
</View>
);
onclickHandler = () => {
alert("The cell was clicked!");
}
The sample React Native project demonstrates how to subscribe to an event via props.
You can also subscribe to an event using the on() API call. Now we will need the previously created ref to Flexmonster instance:
return (
<View style={{ flex: 1 }}>
<FlexmonsterReactNative.Pivot
ref={flexmonster => this.flexmonster = flexmonster}
report="https://cdn.flexmonster.com/reports/report.json"
/>
</View>
);
myFunction = () => {
this.flexmonster.on("aftergriddraw", () => {
alert("aftergriddraw");
});
}
To unsubscribe from an event, use the off() method:
return (
<View style={{ flex: 1 }}>
<FlexmonsterReactNative.Pivot
ref={flexmonster => this.flexmonster = flexmonster}
report="https://cdn.flexmonster.com/reports/report.json"
/>
</View>
);
myFunction = () => {
this.flexmonster.on("aftergriddraw", () => {
alert("aftergriddraw");
this.flexmonster.off("aftergriddraw");
});
}
Have a look at the sample React Native project and see how on()
and off()
methods are used.
Most of Flexmonster’s methods and events work in React Native just like in plain JavaScript. However, some of them are not available, which include:
beforetoolbarcreated
customizeCell()
customizeContextMenu()
getData()
— as a result, integrating with 3rd party charting libraries is not supported in React Native. Nevertheless, you can use our built-in Flexmonster Pivot Charts to visualize your data.See which methods and events can be used in React Native out of the box.
This section describes the specifics of customizing Flexmonster in React Native.
The Flexmonster React Native wrapper embeds the component into a React Native application using the WebView library, which creates a separate browser window with Flexmonster. Since WebView is an independent part of the application, the component cannot be accessed directly from the app and vice versa.
This approach comes with some limitations. Methods and events that are defined in the application and require direct access to Flexmonster cannot be used. This includes, for example, customizeContextMenu() and beforetoolbarcreated.
To use these features, you need to modify the Flexmonster React Native wrapper. Follow the steps below to see how the React Native wrapper can be customized.
Note The customizeCell() method is not supported by the Flexmonster React Native wrapper.
Skip this step if you already have a React Native project.
Complete the guide on how to run the sample project from GitHub.
The sample project includes the Flexmonster React Native wrapper as an npm dependency, but we will connect it manually to add custom functionality.
Step 2.1. Download the .zip
archive with the wrapper from GitHub or run the following command in the console:
git clone https://github.com/flexmonster/react-native-flexmonster
Step 2.2. Copy the src/index.js
file from the react-native-flexmonster/
folder to the project folder (e.g., pivot-react-native/
). Rename the file if needed (e.g., to react-native-flexmonster.js
).
Step 2.3. Replace the React Native wrapper from npm with the wrapper from GitHub by updating the import statement in the files where the wrapper is used (e.g., PivotTable.js
):
import * as FlexmonsterReactNative from './react-native-flexmonster';
Make the necessary updates to the react-native-flexmonster.js
file. Note that all the updates should be made in the HTML template.
The steps below describe how to customize a context menu:
Step 3.1. Add a customizeContextMenuFunction()
to the wrapper's htmlTemplate
variable:
<script>
new Flexmonster({
// Initialization parameters
});
function customizeContextMenuFunction (items, data, viewType) {
if (viewType == "pivot") {
items.push({
label: "Switch to charts",
handler: function() {
flexmonster.showCharts();
}
});
}
return items;
}
${this.registerEvents()}
</script>
Step 3.2. Call the customizeContextMenu()
method and pass the customizeContextMenuFunction()
to it. Note that customizeContextMenu()
can be defined in two ways:
<script>
new Flexmonster({
// Initialization parameters
});
function customizeContextMenuFunction (cell, data) {
// Function implementation
}
${this.registerEvents()}
flexmonster.customizeContextMenu(customizeContextMenuFunction);
</script>
new Flexmonster({
container: "pivotContainer",
// Other initialization parameters
report: JSON.parse('${JSON.stringify(this.props.report)}'),
customizeContextMenu: customizeContextMenuFunction
});
Run the project from the console with the following command:
npx expo start
Now the context menu will be customized by the customizeContextMenuFunction()
. Other customizations can be achieved in the same way.
Note If you get an error at this step, refer to the troubleshooting section.
This section describes errors specific to the Flexmonster React Native wrapper. If your issue is not listed here, check out the Troubleshooting Flexmonster guide.
If you receive this error message, add the fb-watchman npm package to your project:
npm install fb-watchman
You may be interested in the following articles: