Data Context Documentation
Overview
The DataContext provides centralised data management and caching for the Tech Radar application. It handles fetching and caching of CSV data, Tech Radar data, repository data, and repository statistics.
Core Functionality
State Management
The context maintains four main pieces of state: - csvData: Project and technology information - techRadarData: Tech Radar entries and their statuses - repositoryData: Repository-specific information (cached with Map) - repositoryStats: General repository statistics (cached with Map)
Caching Strategy
- Uses in-memory caching with React state
- Implements request deduplication using pendingRequests
- Supports forced refresh when needed
- Uses Map objects for parameterised data (repository data and stats)
Request Handling
- Check if data exists in cache
- Check if there's a pending request for the same data
- Make new request if needed
- Cache the response
- Clean up pending request
Usage in Pages
RadarPage
const { getTechRadarData, getCsvData } = useData();
// Fetches and caches tech radar data
useEffect(() => {
getTechRadarData().then(data => setData(data));
}, [getTechRadarData]);
// Fetches and caches project data
useEffect(() => {
getCsvData().then(data => setProjectsData(data));
}, [getCsvData]);
StatisticsPage
const { getTechRadarData, getRepositoryStats, getCsvData } = useData();
// Initial data load
useEffect(() => {
const [techData, projectData] = await Promise.all([
getTechRadarData(),
getCsvData()
]);
}, []);
// Fetching statistics with parameters
const fetchStatistics = async (date, repoView) => {
const statsResponse = await getRepositoryStats(
date,
repoView === "archived" ? "true" : "false"
);
};
ProjectsPage
const { getCsvData, getTechRadarData } = useData();
// Combined data fetching
useEffect(() => {
const [csvData, techData] = await Promise.all([
getCsvData(),
getTechRadarData()
]);
}, []);
// Forced refresh
const handleRefresh = async () => {
const newData = await getCsvData(true); // forceRefresh=true
};
Cache Invalidation
The context provides a clearCache method to reset all cached data:
Error Handling
- Each fetch method includes error handling
- Failed requests return null
- Components should handle null responses appropriately
- Toast notifications for user feedback
Performance Considerations
- Deduplication of in-flight requests prevents redundant API calls
- Cached data reduces server load and improves response time
- ForceRefresh parameter allows manual cache invalidation
- Map-based caching enables efficient parameter-based data storage
Best Practices
- Always use useData hook within components
- Include context methods in useEffect dependencies
- Handle loading and error states in components
- Use forceRefresh sparingly
- Clear cache when data consistency is required