TypeScriptでプログラムされたプロジェクトReactプロジェクトにマテリアルUIを追加すると、いくつかの問題が発生しました。
チュートリアルによれば、まずreact-tab-event-pluginを追加することから始めます。
import injectTapEventPlugin from 'react-tap-event-plugin';
// Needed for onTouchTap
// Can go away when react 1.0 release
// Check this repo:
// https://github.com/zilverline/react-tap-event-plugin
injectTapEventPlugin();
これを行うと、欠落しているデフォルトのエクスポートに関するエラーが表示されます。
ERROR in ./src/index.tsx
(4,8): error TS1192: Module ''react-tap-event-plugin'' has no default export.
マテリアルUIの追加
import getMuiTheme from 'material-ui/styles/getMuiTheme';
import MuiThemeProvider from 'material-ui/styles/MuiThemeProvider';
ビルドエラーの後にスローします
ERROR in ./src/containers/index.tsx
(8,25): error TS2307: Cannot find module 'material-ui/styles/getMuiTheme'.
ERROR in ./src/containers/index.tsx
(9,30): error TS2307: Cannot find module 'material-ui/styles/MuiThemeProvider'.
私のWebpack Configは非常に簡単で、これまでタイピングを追加したときにすべてのReact npm modulで動作しました。
var cssnext = require('postcss-cssnext')
var postcssImport = require('postcss-import')
var ExtractTextPlugin = require('extract-text-webpack-plugin')
// noinspection JSUnresolvedVariable
module.exports = {
entry: {
app: './src/index.tsx',
lib: [
'./node_modules/react/react.js',
'./node_modules/react-dom',
'./node_modules/normalize.css/normalize.css'
]
},
output: {
path: './dist',
filename: '[name].js'
},
devtool: 'source-map',
devServer: {
contentBase: '/dist/',
inline: true,
port: 3333,
Host: '0.0.0.0'
},
resolve: {
// Add `.ts` and `.tsx` as a resolvable extension.
extensions: [ '', '.webpack.js', '.web.js', '.ts', '.tsx', '.js', '.css', '.html' ],
modulesDirectories: ['src', 'node_modules']
},
module: {
loaders: [
// All files with a '.ts' or '.tsx' extension will be handled by 'ts-loader'.
{ test: /\.ts(x?)$/, loader: 'babel-loader!ts-loader' },
{ test: /\.html$/, loader: 'file?name=[name].[ext]' },
{ test: /\.json$/, loader: 'json' },
{ test: /\.css$/, loader: ExtractTextPlugin.extract('style-loader', 'css-loader!postcss-loader') }
],
preLoaders: [
// All output '.js' files will have any sourcemaps re-processed by 'source-map-loader'.
{ test: /\.js$/, loader: 'source-map-loader' }
]
/* loaders: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel-loader!ts-loader',
query: {
presets: [
'es2015',
'react'
]
}
}
]*/
},
plugins: [
new ExtractTextPlugin('[name].css', {
allChunks: true
})
],
postcss: function (webpack) {
return [
postcssImport({
addDependencyTo: webpack
}),
cssnext({
browsers: 'last 2 versions, ie >= 9'
})
]
}
// 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'
}
*/
}
React-tap-event-pluginとMaterial-UIの両方を入力するとインストールされます。
何が問題ですか?
@ types/material-ui が利用可能になり、 DefinitelyTyped source からエクスポートされました。
npm install @types/material-ui --save-dev
npm install @types/react-tap-event-plugin --save-dev
その後、次のことができます。
import * as injectTapEventPlugin from 'react-tap-event-plugin';
// Needed for onTouchTap
// Check this repo:
// https://github.com/zilverline/react-tap-event-plugin
injectTapEventPlugin();
次に、このようなマテリアルUIを使用します。
import * as React from 'react';
import getMuiTheme from 'material-ui/styles/getMuiTheme';
import {MuiThemeProvider, lightBaseTheme} from "material-ui/styles";
const lightMuiTheme = getMuiTheme(lightBaseTheme);
class Root extends React.Component<any, any> {
render() {
return (
<MuiThemeProvider muiTheme={lightMuiTheme}>
<MyComponent/>
</MuiThemeProvider>
)
}
}
MyComponentは、ドキュメントで定義されているマテリアルUIを使用します。
import RaisedButton from 'material-ui/RaisedButton';
const MyComponent = (props:MyComponentProps) => {
return (
<RaisedButton label="Default" />
)
}
export default MyComponent;
2016-08-08:パッケージの状態変更により回答が更新されました。
2017-01-03:参照を追加@types/qvazzlerへ
あなたの comment はすでにコアの問題を指摘しています。タイピングは最新ではありません。つまり、完全にオフです。
要するに、material-ui
の構造が変更され、すべてが(ダッシュではなく)キャメルケースであり、現在はlib
フォルダーではなく、ルートにあるようです。
これを修正するには、material-ui/index.d.ts
ファイルを開き、すべての変更を開始します
declare module 'material-ui/lib/text-field' {
に
declare module 'material-ui/TextField' {
不明な場合は、node_modules/material-ui
フォルダーを確認してファイル構造を確認してください。アンビエントモジュール名mustは、基になるファイル構造と一致します。
これでおそらくすべての問題が解決するわけではありませんが、開始点になる可能性があります。
タイプはMaterial-uiに直接バンドルされるようになったため、@types/material-ui package
をインストールする必要はありません。
代わりに、通常どおり@material-ui/core
パッケージをインストールするだけで機能します。
公式のMaterial-UI + Type Reactアプリでcreate reactアプリを使用した例を参照してください: https://github.com/mui-org/material-ui/tree/master/examples/create-react-app-with-TypeScript
Package.jsonファイルにこれら2つの依存関係を追加し、npm installを実行して起動します。それは私のために働いた
"@types/material-ui": "^0.21.1", "material-ui": "^0.20.0",