TypeScript z Redux w aplikacji React
Integracja TypeScript z Redux w aplikacji React zwiększa bezpieczeństwo typów i poprawia łatwość obsługi kodu. Ten przewodnik przeprowadza przez konfigurację TypeScript z Redux, w tym definiowanie typów i integrację z komponentami React.
Krok 1: Zainstaluj zależności
Najpierw zainstaluj niezbędne pakiety dla typów Redux, React-Redux i TypeScript.
npm install redux react-redux @reduxjs/toolkit
npm install @types/react-redux --save-dev
Krok 2: Skonfiguruj sklep Redux
Utwórz sklep Redux za pomocą TypeScript. Zdefiniuj typy dla stanu i akcji oraz skonfiguruj sklep.
import { configureStore } from '@reduxjs/toolkit';
import { rootReducer } from './reducers';
export type RootState = ReturnType<typeof store.getState>;
export type AppDispatch = typeof store.dispatch;
const store = configureStore({
reducer: rootReducer,
});
export default store;
Krok 3: Zdefiniuj działania i reduktory
Utwórz typy akcji, twórców akcji i reduktory. Użyj TypeScript, aby zdefiniować stan i typy akcji dla silnego typowania.
import { createSlice, PayloadAction } from '@reduxjs/toolkit';
interface CounterState {
value: number;
}
const initialState: CounterState = {
value: 0,
};
const counterSlice = createSlice({
name: 'counter',
initialState,
reducers: {
increment: (state) => {
state.value += 1;
},
decrement: (state) => {
state.value -= 1;
},
incrementByAmount: (state, action: PayloadAction<number>) => {
state.value += action.payload;
},
},
});
export const { increment, decrement, incrementByAmount } = counterSlice.actions;
export default counterSlice.reducer;
Krok 4: Połącz Redux ze składnikami React
Użyj haków useSelector
i useDispatch
z React-Redux, aby połączyć stan Redux i akcje dyspozytorskie w komponentach React.
import React from 'react';
import { useSelector, useDispatch } from 'react-redux';
import { RootState, AppDispatch } from './store';
import { increment, decrement, incrementByAmount } from './counterSlice';
const Counter: React.FC = () => {
const dispatch = useDispatch<AppDispatch>();
const count = useSelector((state: RootState) => state.counter.value);
return (
<div>
<h1>{count}</h1>
<button onClick={() => dispatch(increment())}>Increment</button>
<button onClick={() => dispatch(decrement())}>Decrement</button>
<button onClick={() => dispatch(incrementByAmount(10))}>Increment by 10</button>
</div>
);
};
export default Counter;
Krok 5: Zintegruj Redux Store z React
Otocz główny komponent React komponentem Provider
z React-Redux, aby przekazać magazyn Redux do aplikacji.
import React from 'react';
import ReactDOM from 'react-dom';
import { Provider } from 'react-redux';
import store from './store';
import App from './App';
ReactDOM.render(
<Provider store={store}>
<App />
</Provider>,
document.getElementById('root')
);
Wniosek
Używanie TypeScript z Redux w aplikacji React zapewnia silne typowanie i zwiększa niezawodność kodu. Postępując zgodnie z tymi krokami, magazyn Redux można skonfigurować za pomocą TypeScript, można zdefiniować akcje i reduktory, a Redux można zintegrować z komponentami React.