Hello developers,
I would like to suggest an extremely important improvement to the dashboard. I noticed that the dashboard lists all events defined by specific days of the week.
Example:
- Golden Invasion: Monday
- Golden Invasion: Wednesday
- Golden Invasion: Friday
This ends up making the list of events extremely large unnecessarily.
It would be easier to just list the time of the next cycle, as is done on websites.
Even the definition of events in the JavaScript file can be simplified.
Currently it is something like:
["Event Name", [1], "00:00,02:00", "Event Name", "category"],
It is necessary to repeat the process to add the same event just because of the change in the day that this event will be executed.
It would be much easier to define it this way:
["Event name", [1,3,5], ["HERE TIME to first string day"], ["To second string"], ["To third string"], "Event name", "category"],
It would basically look like this:
[
"Event name",
[1,3,5], // Days of week
["00:00","02:00","12:00","05:00"], // Day Settings reffer -> [1]
["00:00","22:15"], // Day Settings reffer -> [3]
["01:00","03:00","07:00"], // Day Settings reffer -> [5]
"Event name","Category name",
],
The layout would also show the closest day, not every day it occurs.
Making the list clearer and more pleasant to view.
Recommended Comments