TypeScript
ReactでのTypescriptの使用(JSとネイティブ)
サーチ…
Typescriptで書かれたReactJSコンポーネント
TypeScriptでは、ReactJSのコンポーネントを簡単に使用できます。 'jsx'ファイル拡張子の名前を 'tsx'に変更してください:
//helloMessage.tsx:
var HelloMessage = React.createClass({
render: function() {
return <div>Hello {this.props.name}</div>;
}
});
ReactDOM.render(<HelloMessage name="John" />, mountNode);
しかし、TypeScriptの主な機能(静的型チェック)をフルに活用するには、いくつかのことをする必要があります:
1)React.createClassをES6クラスに変換する:
//helloMessage.tsx:
class HelloMessage extends React.Component {
render() {
return <div>Hello {this.props.name}</div>;
}
}
ReactDOM.render(<HelloMessage name="John" />, mountNode);
ES6への変換の詳細はこちらをご覧ください
2)小道具と州のインタフェースを追加する:
interface Props {
name:string;
optionalParam?:number;
}
interface State {
//empty in our case
}
class HelloMessage extends React.Component<Props, State> {
render() {
return <div>Hello {this.props.name}</div>;
}
}
// TypeScript will allow you to create without the optional parameter
ReactDOM.render(<HelloMessage name="Sebastian" />, mountNode);
// But it does check if you pass in an optional parameter of the wrong type
ReactDOM.render(<HelloMessage name="Sebastian" optionalParam='foo' />, mountNode);
プログラマーが小道具を渡すことを忘れた場合、TypeScriptはエラーを表示します。または、インタフェースに定義されていない小道具を渡そうとする場合。
Typescript&react&webpack
typescript、typing、webpackをグローバルにインストールする
npm install -g typescript typings webpack
ローダーのインストールとタイプトスクリプトのリンク
npm install --save-dev ts-loader source-map-loader npm link typescript
TypeScriptをリンクすると、ts-loaderは別々のローカルコピーtypescript docを必要とするのではなく、TypeScriptのグローバルインストールを使用できます
typescript 2.xで.d.ts
ファイルをインストールする
npm i @types/react --save-dev
npm i @types/react-dom --save-dev
typescript 1.xで.d.ts
ファイルをインストールする
typings install --global --save dt~react
typings install --global --save dt~react-dom
tsconfig.json
構成ファイル
{
"compilerOptions": {
"sourceMap": true,
"noImplicitAny": true,
"module": "commonjs",
"target": "es5",
"jsx": "react"
}
}
webpack.config.js
設定ファイル
module.exports = {
entry: "<path to entry point>",// for example ./src/helloMessage.tsx
output: {
filename: "<path to bundle file>", // for example ./dist/bundle.js
},
// Enable sourcemaps for debugging webpack's output.
devtool: "source-map",
resolve: {
// Add '.ts' and '.tsx' as resolvable extensions.
extensions: ["", ".webpack.js", ".web.js", ".ts", ".tsx", ".js"]
},
module: {
loaders: [
// All files with a '.ts' or '.tsx' extension will be handled by 'ts-loader'.
{test: /\.tsx?$/, loader: "ts-loader"}
],
preLoaders: [
// All output '.js' files will have any sourcemaps re-processed by 'source-map-loader'.
{test: /\.js$/, loader: "source-map-loader"}
]
},
// When importing a module whose path matches one of the following, just
// assume a corresponding global variable exists and use that instead.
// This is important because it allows us to avoid bundling all of our
// dependencies, which allows browsers to cache those libraries between builds.
externals: {
"react": "React",
"react-dom": "ReactDOM"
},
};
最後にwebpack
またはwebpack -w
実行する(watchモードの場合)
注 :ReactDOMは外部としてマークされています。
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow