私はReact Component
を使用し、connect
、withRouter
を使用してカスタムプロパティを受け取ります。これをTypeScriptに変換しようとしています。 m私はこれを正しく行っているのかと思っています。少なくとも、今はエラーは発生していません。
これは概念を示すコードです:
import * as React from 'react'
import { connect } from 'react-redux';
import { withRouter, RouteComponentProps } from 'react-router';
import {
fetchTestLists,
newTestList,
displayTestList,
} from '../../../actions/index';
interface StateProps {
testList: any; // todo: use the type of state.myList to have validation on it
}
interface DispatchProps {
fetchTestLists: () => void;
newTestList: () => void;
displayTestList: (any) => void; // todo: replace any with the actual type
}
interface Props { // custom properties passed to component
className: string;
}
type PropsType = StateProps & DispatchProps & Props;
class MyTest extends React.Component<PropsType & RouteComponentProps<{}>, {}> {
constructor(props) {
super(props);
this.handleCellClick = this.handleCellClick.bind(this);
this.newTestList = this.newTestList.bind(this);
}
componentDidMount() {
this.props.fetchTestLists();
}
handleCellClick(row, column, event) {
this.props.displayTestList(row);
}
newTestList(e) {
this.props.newTestList()
}
render() {
return (
<div className={this.props.className}>
</div>
);
}
}
const mapStateToProps = (state): StateProps => ({
testList: state.myList, // todo: define a type for the root state to have validation here
});
const dispatchToProps = {
fetchTestLists,
newTestList,
displayTestList,
};
export default withRouter<Props & RouteComponentProps<{}>>(connect<StateProps, DispatchProps>(
mapStateToProps,
dispatchToProps,
)(MyTest) as any);
コンポーネントは次のように使用されます:<MyTest className={"active"} />
これを機能させるには、多くの実験が必要でした。例えば:
1)withRouterのタイプを次のように省略した場合:export default withRouter(connect...
その後、私はTS2339: Property 'className' does not exist on type 'IntrinsicAttributes & IntrinsicClassAttributes<Component<Pick<RouteComponentProps<any>, never>, C...'.
これはどういうわけかここで提案されています: TypeScriptのReactルーター-ルーターと独自のプロップ の両方ですが、私はその概念を理解していません。
2)最後の行について疑問がある場合as any
、これは https://github.com/DefinitelyTyped/DefinitelyTyped/issues/18999 に関連していて、それなしでこのエラーが発生します。
TS2345: Argument of type 'ComponentClass<Pick<any, never>> & { WrappedComponent: ComponentType<any>; }' is not assignable to parameter of type 'ComponentType<Props & RouteComponentProps<{}>>'.
Type 'ComponentClass<Pick<any, never>> & { WrappedComponent: ComponentType<any>; }' is not assignable to type 'StatelessComponent<Props & RouteComponentProps<{}>>'.
Type 'ComponentClass<Pick<any, never>> & { WrappedComponent: ComponentType<any>; }' provides no match for the signature '(props: Props & RouteComponentProps<{}> & { children?: ReactNode; }, context?: any): ReactElement<any> | null'.
これは正しい方法ですか?問題はどこにありますか?私は基本的にすべての最新バージョンを使用しています、これが私のpackage.jsonからのスニペットです:
"react": "^16.2.0",
"redux": "^3.7.2",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "^4.0.8",
...
"TypeScript": "^2.7.2",
"@types/react-redux": "^5.0.15",
"@types/react-router": "^4.0.22",
"@types/react-router-dom": "^4.2.4",
"@types/react": "^16.0.38",
"@types/react-dom": "^16.0.4",
私はあなたの例を書き直して、このコードで終わるようにしようとします:
import * as React from 'react';
import { connect } from 'react-redux';
import { RouteComponentProps, withRouter } from 'react-router';
import {
fetchTestLists,
newTestList,
displayTestList,
} from '../../../actions/index';
import { Dispatch, bindActionCreators, AnyAction } from 'redux';
interface IStateProps {
testList: IListType; // todo: use the type of state.myList to have validation on it
}
interface IDispatchProps {
fetchTestLists: () => AnyAction;
newTestList: () => AnyAction;
displayTestList: (value: string) => AnyAction; // todo: replace any with the actual type
}
interface IProps { // custom properties passed to component
className: string;
}
type PropsType = IStateProps & IDispatchProps & IProps;
class MyTestComponent extends React.Component<PropsType & RouteComponentProps<{}>, {}> {
constructor(props: PropsType & RouteComponentProps<{}>) {
super(props);
this.handleCellClick = this.handleCellClick.bind(this);
this.newTestList = this.newTestList.bind(this);
}
public componentDidMount() {
this.props.fetchTestLists();
}
public handleCellClick(row, column, event) {
this.props.displayTestList(row);
}
public newTestList(e) {
this.props.newTestList();
}
public render(): JSX.Element {
return (
<div className={this.props.className}>
</div>
);
}
}
export const MyTest = connect(
(state: IAppState, ownProps: IProps) => ({
testList: state.testList,
...ownProps,
}),
(dispatch: Dispatch) => bindActionCreators<AnyAction, Pick<IDispatchProps, keyof IDispatchProps>>(
{ displayTestList, fetchTestLists, newTestList },
dispatch,
),
)(withRouter(MyTestComponent));
interface IListType {
someProp: string;
}
interface IAppState {
testList: IListType;
differentList: IListType;
}
export defaultを変更して、ラップされたMyTestComponentクラスのconnectおよびwithRouter HOCをMyTestに割り当てます。次に、MyTestコンポーネントを次のようにインポートします
import { MyTest } from './MyTest'
親コンポーネントから渡されたすべてのプロパティを記述するためのインターフェイスを追加しました。また、withRouterとconnectを別の方法で使用します(私にとってはより読みやすい)。
お役に立てれば幸いです