Report Designer Integration in React Application
- 4 minutes to read
The server-side model stores a report and provides it to the End-User Web Report Designer integrated in the client React JavaScript application.
The project consists of the server and client parts.
Server (Back-End) Application
Refer to the following help topic to create a back-end application: Report Designer’s Server-Side Configuration (ASP.NET Core)
Client (Front-End) Application
Create a new folder to store application files. Launch the command prompt to perform the following steps to create and configure the client part:
Make sure you have the current versions of Node.js with npm installed on your machine.
node -v npm -v
Create a new React application in the react-report-designer folder:
npx create-react-app react-report-designer
Switch to the root application folder:
cd react-report-designer
Install DevExpress packages:
npm install devextreme devexpress-reporting @devexpress/analytics-core
Open the App.js file in the src folder and substitute its content with the following code snippet:
import './App.css'; import { useEffect, useRef } from 'react'; import { DxReportDesigner } from 'devexpress-reporting/dx-reportdesigner'; import * as ko from 'knockout'; const ReportDesigner = () => { const reportUrl = ko.observable("TestReport"); const designerRef = useRef(); const requestOptions = { host: "https://localhost:54114/", getDesignerModelAction: "DXXRD/GetDesignerModel" }; useEffect(() => { const designer = new DxReportDesigner(designerRef.current, { reportUrl, requestOptions }); designer.render(); return () => designer.dispose(); }) return (<div ref={designerRef}></div>); } function App() { return (<div style={{ width: "100%", height: "1000px" }}> <ReportDesigner /> </div>); } export default App;
This code declares the Report Designer component and returns it with the App function.
Important
You can modify App.js content to specify the correct server-side port (54114 in this example) and report name (TestReport in this example).
Open the App.css file in the src folder and append the following style sheet references:
/* ... */ @import url("../node_modules/ace-builds/css/ace.css"); @import url("../node_modules/ace-builds/css/theme/dreamweaver.css"); @import url("../node_modules/ace-builds/css/theme/ambiance.css"); @import url("../node_modules/devextreme/dist/css/dx.light.css"); @import url("../node_modules/@devexpress/analytics-core/dist/css/dx-analytics.common.css"); @import url("../node_modules/@devexpress/analytics-core/dist/css/dx-analytics.light.css"); @import url("../node_modules/@devexpress/analytics-core/dist/css/dx-querybuilder.css"); @import url("../node_modules/devexpress-reporting/dist/css/dx-webdocumentviewer.css"); @import url("../node_modules/devexpress-reporting/dist/css/dx-reportdesigner.css");
Run the server (back-end) application. Check whether the server-side application port has the same number as the one specified in the App.js file.
Navigate to the client application’s root folder, open the command prompt, and run the client application:
npm start
Open the browser at http://localhost:3000/ to see the Report Designer with the test report.
(Optional) Enable the in-place rich text editor for the XRRichText control as described in the following help topic: Reporting for React - Enable the Rich Text Editor.
Troubleshooting
When you start the application, you may encounter the following problems:
Page is blank
The Report Designer page is blank. The following error message is displayed at the bottom of the page: The page is blank because the Report Designer failed to load the report. Consult the developer for assistance. Use development mode for detailed information. If the page does not display the Document Viewer, press F12 to invoke DevTools and inspect the console messages.
Check the following:
- The backend application is up and running.
- The specified controller action path matches the back-end application type. If you use the ASP.NET Core backend, specify the
/DXXRD/GetDesignerModel
path; if you use the ASP.NET MVC backend, specify the/ReportDesigner/GetReportDesignerModel
path. - The backend application runs on the port specified in the host setting of the Report Designer component.
- The application’s URI satisfies the CORS policy specified in your backend application.
- The reportName value matches an existing report. For the backend application, this means that either the Reports folder contains the reportName.repx file or the ReportsFactory.Reports dictionary contains the reportName entry (if the backend application originated from the DevExpress template).
- The version of the DevExpress scripts (npm packages) should match the version of the server-side libraries (NuGet packages). You can enable Development Mode to check for library version mismatch on every request to the server. For more information, take a look at the following help topic: Server-Side Libraries Version.
Review the following help topic for more information: Troubleshooting.