[]
        
(Showing Draft Content)

ビューワの使用(React)

Reactアプリケーションを作成する

新しいReactアプリケーションを作成する簡単な方法はパッケージランナーツールのcreate-react-appを使用することです。

create-react-appを使用するためには事前にNodeJSがコンピュータにインストールされている必要があります。

create-react-appをインストールするにはコマンドプロンプトで次のコマンドを入力してインストールします。

npm install create-react-app -g

上記コマンドはグローバルにインストールする -g オプションを使用しているため、一度インストールした後の再実行は不要です。

  1. コマンドプロンプトで次のコマンドを入力して、新しいReactアプリケーションを作成します。

npx create-react-app arjs-react-viewer-app
  1. 作成したディレクトリを作業ディレクトリとします。次のコマンドを入力して作業ディレクトリに移動します。

cd arjs-react-viewer-app
  1. 次のコマンドを入力してActiveReportsJSReact対応パッケージ、およびビューワを日本語化するためのローカライズパッケージをインストールします。

npm install @grapecity/activereports-react @grapecity/activereports-localization
  1. src\App.js(ts) ファイルを開き、以下の内容を設定します。

import React from "react";
import "./App.css";
import "@grapecity/activereports/styles/ar-js-ui.css";
import "@grapecity/activereports/styles/ar-js-viewer.css";
import { Viewer } from "@grapecity/activereports-react";
import "@grapecity/activereports/pdfexport";
import "@grapecity/activereports/htmlexport";
import "@grapecity/activereports/xlsxexport";
import "@grapecity/activereports-localization";

const App = () => {
  return (
    <div id="viewer-host">
      <Viewer report={{ Uri: "reports/quick-start-sample.rdlx-json" }} language="ja" />
    </div>
  );
}

export default App;
  1. src\App.cssファイルを開き、以下ののスタイルを追加します。

#viewer-host {
  width: 100%;
  height: 100vh;
}
  1. public\reportsディレクトリを作成し、サンプルレポートを作成するで作成したquick-start-sample.rdlx-jsonファイルを配置します。

  2. 次のコマンドを入力してReactアプリケーションを実行します。

npm start
  1. ブラウザで「localhost:3000」を参照し、アプリケーションを表示します。


注意事項

Reactアプリケーションを実行・またはビルドする際、JavaScriptのメモリ割当が不足し、ヒープエラーが発生する場合があります。

このエラーを回避するには、package.jsonファイルを開き、startbuildスクリプトに次の設定を追加します。

"start": "react-scripts --max_old_space_size=8192 start",
"build": "react-scripts --max_old_space_size=8192 build",

関連トピック