Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MAN-355 fix activity log filter caching issue #295

Merged
merged 1 commit into from
Jan 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions server/@types/ActivityLog.type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ export interface ActivityLogFiltersResponse extends ActivityLogFilters {
}

export interface ActivityLogCache extends ActivityLogFilters {
crn: string
personActivity: PersonActivity
tierCalculation: TierCalculation
}
2 changes: 2 additions & 0 deletions server/middleware/getPersonActivity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ export const getPersonActivity = async (
if (req?.session?.cache?.activityLog) {
const cache: ActivityLogCache | undefined = req.session.cache.activityLog.find(
cacheItem =>
crn === cacheItem.crn &&
keywords === cacheItem.keywords &&
dateFrom === cacheItem.dateFrom &&
dateTo === cacheItem.dateTo &&
Expand All @@ -51,6 +52,7 @@ export const getPersonActivity = async (
const newCache: ActivityLogCache[] = [
...(req?.session?.cache?.activityLog || []),
{
crn,
keywords,
dateFrom,
dateTo,
Expand Down
Loading