Imagery imported for icons and items. Live updates working.
Hover tooltip working. Features.md added for better tracking.
This commit is contained in:
10
os-league-tools-master/src/store/group/constants.js
Normal file
10
os-league-tools-master/src/store/group/constants.js
Normal file
@@ -0,0 +1,10 @@
|
||||
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 }
|
||||
};
|
||||
Reference in New Issue
Block a user