Files
leagues-tools/os-league-tools-master/src/store/group/constants.js
sonderau ea8484fca7 Imagery imported for icons and items. Live updates working.
Hover tooltip working. Features.md added for better tracking.
2025-10-28 08:41:04 +08:00

11 lines
421 B
JavaScript

export const CURRENT_VERSION = 1;
export const GROUP_DATA_TTL = 30000; // 30 seconds in ms (shorter TTL for real-time group updates)
export const INITIAL_STATE = {
version: CURRENT_VERSION,
activeGroup: null, // Index of the active group in the groups array
groups: [], // Array of { name, token, createdAt }
groupDataCache: {}, // Keyed by group name, value has shape: { lastUpdated, loading, data, error }
};