Open
Description
The current schema is difficult to maintain and use, and forces me to build mumbo jumbo code that is confusing and poor in performance. It's also difficult to get started with since it's difficult to document for onboarding.
The current schema is:
class Entry {
origin: string;
lastVisit: Date;
firstVisit: Date;
[year]: {
[month]: {
[day]: number
}
}
}
This schema is not properly built, doesn't adhere to any SOLID principles, difficult to maintain, and is difficult to maintain. The new schema is:
class Session {
date: Date;
duration: number;
}
class Entry {
origin: string;
lastVisit: Date;
firstVisit: Date;
sessions: Array<Session>;
}
This will require an overhaul of the codebase to use the new schema.