Skip to content
Advertisement

Best method to keep track of a users progression through reading sections of text

Similar to zyBooks if you are familiar with it, I want to track the sections the user has read through and checked completed with a button.

However, conceptually I am having trouble thinking of what to store in my mongo database, besides just an object or an array of objects that contains each section and bool values, to track their progress. A section will have around 10 subsections. But there will be around 8 sections total. So a total of 80 subsections to keep track of.

This is what I was thinking of but it seems inefficient.

JavaScript

I will also display a section and its subsections content depending on which the user decides to view using react and material ui.

I do not want to commit to my method if there is a better alternative.

Advertisement

Answer

I think your approach is totally fine with that amount of data.

The question is, what do you mean with “inefficient” ?

From a performance point of view, 80 elements are just no problem. Maybe you just don’t feel well with handling that code (which is a valid reason).

An alternative would be:

JavaScript

or (quicker access of the sections, e.g. without a .find()):

JavaScript

Maybe you don’t need to store the main sections, if they are implicitly done when all sub sections are done ?

JavaScript

Probably not an appropriate alternative (would be more efficient if most items are likely always false):

JavaScript

Just for fun: You might also use integers as section IDs (which is ridiculously over optimizing on the wrong end):

JavaScript

And then even store a Byte array instead of JSON.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement