Ignite UI for React 시작하기
이 주제에서는 Ignite UI for React 사용하여 React 애플리케이션을 생성하기 위한 단계별 지침을 제공합니다.
Prerequisites
- NodeJS를 설치합니다.
- 비주얼 스튜디오 코드를 설치합니다.
Creating New React Project
위의 필수 구성 요소가 설치되면 새로운 React 애플리케이션을 만들 수 있습니다.
1 -VS Code를 열고 터미널 메뉴를 선택한 다음 새 터미널 옵션을 선택합니다.
2 - 터미널 창에 다음 명령 중 하나를 입력합니다.
npx create-react-app MyAppName --typescript
yarn create react-app MyAppName --typescript
접근 방식에 npx
yarn
따라 또는 필요할 수 있습니다. 위의 명령에 대한 자세한 내용은 이 웹 사이트를 참조하십시오.
cd MyAppName
Updating Existing App
기존 React CLI 프로젝트(이전에 가지고 있던 프로젝트)에서 Ignite UI for React 사용하려는 경우. 우리는 당신을 다루었습니다! 여러분이 해야 할 일은 다음 명령을 실행하는 것뿐입니다.
npm install --save igniteui-react
npm install --save igniteui-react-charts igniteui-react-core
npm install --save igniteui-react-excel igniteui-react-core
npm install --save igniteui-react-gauges igniteui-react-core
npm install --save igniteui-react-grids igniteui-react-core
npm install --save igniteui-react-maps igniteui-react-core
npm install --save igniteui-react-spreadsheet igniteui-react-core
또는
yarn add igniteui-react-charts igniteui-react-core
yarn add igniteui-react-excel igniteui-react-core
yarn add igniteui-react-gauges igniteui-react-core
yarn add igniteui-react-grids igniteui-react-core
yarn add igniteui-react-maps igniteui-react-core
yarn add igniteui-react-spreadsheet igniteui-react-core
이렇게 하면 기존 프로젝트에 대한 모든 종속성, 글꼴 가져오기 및 스타일 참조와 함께 Ignite UI for React 용 패키지가 자동으로 설치됩니다.
Importing Component Modules
먼저 사용하려는 구성 요소의 필수 모듈을 가져와야 합니다. 계속해서 GeographicMap 구성 요소에 대해 이 작업을 수행하겠습니다.
import { IgrGeographicMapModule, IgrGeographicMap } from 'igniteui-react-maps';
import { IgrDataChartInteractivityModule } from 'igniteui-react-charts';
IgrGeographicMapModule.register();
IgrDataChartInteractivityModule.register();
Using Components
이제 마크업에서 Ignite UI for React 사용할 준비가 되었습니다! 계속해서 정의해 보겠습니다.
// App.txs
function App() {
return (
<div style={{ height: "100%", width: "100%" }}>
<IgrGeographicMap
width="800px"
height="500px"
zoomable="true" />
</div>
);
}
Running Application
마지막으로 다음 명령 중 하나를 사용하여 새 애플리케이션을 실행할 수 있습니다.
npm run-script start
이 명령을 실행하면 프로젝트가 빌드되어 컴퓨터에서 로컬로 제공됩니다. 기본 브라우저에서 자동으로 열리며 프로젝트에서 Ignite UI for React 구성 요소를 사용할 수 있습니다. 최종 결과에는 대화형 세계 지도가 표시되어야 합니다.