This example shows how to integrate the report designer into a React application with TypeScript. First of all, load scripts:
import React from 'react';
import { Stimulsoft } from 'stimulsoft-reports-js/Scripts/stimulsoft.blockly.editor';
import 'stimulsoft-reports-js/Css/stimulsoft.designer.office2013.whiteblue.css';
import 'stimulsoft-reports-js/Css/stimulsoft.viewer.office2013.whiteblue.css';
import './App.css';

Then, create an App class which extends from React component:
class App extends React.Component {
	private options: any;
	private designer: any;

	render() {
		return (
			<div id="designer" className="App">
			</div>
		);
	}

...

Finally, use componentDidMount() method to set designer options, load the report and display it in the designer:
...

	componentDidMount() {
		console.log('Loading Designer view');

		console.log('Set full screen mode for the designer');
		this.options = new Stimulsoft.Designer.StiDesignerOptions();
		this.options.appearance.fullScreenMode = false;

		console.log('Create the report designer with specified options');
		this.designer = new Stimulsoft.Designer.StiDesigner(this.options, 'StiDesigner', false);

		console.log('Edit report template in the designer');
		this.designer.report = new Stimulsoft.Report.StiReport();

		console.log('Load report from url');
		this.designer.report.loadFile('/reports/SimpleList.mrt');

		console.log('Rendering the designer to selected element');
		this.designer.renderHtml('designer');

		console.log('Loading completed successfully!');
	}

...

На скриншоте ниже Вы можете увидеть результат выполнения данного кода:

Integrating the Report Designer into an Application (TypeScript)

Используя этот сайт, вы соглашаетесь на использование файлов Cookie для аналитики и персонализированного контента. Файлы Cookie хранят полезную информацию на вашем компьютере, чтобы помочь нам повысить эффективность и удобство использования. Для получения дополнительной информации, пожалуйста, прочтите Конфиденциальность и Использование Cookie.