- Add complete TypeScript types for all document entities - Implement Redux store with document slice and async thunks - Create comprehensive API services layer with external integrations - Build complete UI views with Material-UI components: * UploadView: drag&drop with file preview and status * ExtractionView: structured data display (identities, addresses, properties, contracts) * AnalyseView: CNI verification, credibility scoring, recommendations * ContexteView: external data sources (Cadastre, Géorisques, BODACC, etc.) * ConseilView: LLM analysis with risks and next steps - Add Layout component with navigation tabs - Configure environment variables for backend integration - Fix all TypeScript compilation errors - Replace Grid with Box for better compatibility - Add comprehensive error handling and loading states
24 lines
750 B
TypeScript
24 lines
750 B
TypeScript
import { configureStore } from '@reduxjs/toolkit'
|
|
import { useDispatch, useSelector } from 'react-redux'
|
|
import type { TypedUseSelectorHook } from 'react-redux'
|
|
import { appReducer } from './appSlice'
|
|
import { documentReducer } from './documentSlice'
|
|
|
|
export const store = configureStore({
|
|
reducer: {
|
|
app: appReducer,
|
|
document: documentReducer,
|
|
},
|
|
middleware: (getDefaultMiddleware) => getDefaultMiddleware({
|
|
serializableCheck: false,
|
|
immutableCheck: true,
|
|
}),
|
|
devTools: true,
|
|
})
|
|
|
|
export type RootState = ReturnType<typeof store.getState>
|
|
export type AppDispatch = typeof store.dispatch
|
|
|
|
export const useAppDispatch: () => AppDispatch = useDispatch
|
|
export const useAppSelector: TypedUseSelectorHook<RootState> = useSelector
|