src/html.cpp

changeset 6
1040ba37d4c9
parent 5
60c2588b4455
child 7
d0f77dd2da42
--- a/src/html.cpp	Fri Jan 31 22:11:04 2025 +0100
+++ b/src/html.cpp	Fri Jan 31 22:27:28 2025 +0100
@@ -26,6 +26,9 @@
 
 #include <cstdio>
 
+#include <chrono>
+namespace chrono = std::chrono;
+
 namespace html {
     static unsigned indentation;
     static const char *tabs = "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t";
@@ -106,15 +109,33 @@
     printf("<h2>%s</h2>\n", encode(heading).c_str());
 }
 
-void html::table_begin() {
+void html::table_begin(int year) {
+    static constexpr const char* months[] = {"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
+    // compute the column spans, first
+    unsigned colspans[12] = {};
+    {
+        unsigned total_cols = 0;
+        chrono::sys_days day{chrono::year_month_day{chrono::year{year}, chrono::month{1}, chrono::day{1}}};
+        if (chrono::weekday{day}.iso_encoding() != 1) {
+            colspans[0] = 1;
+            total_cols = 1;
+        }
+        for (unsigned col = 0; col < 12; ++col) {
+            while (total_cols < html::columns && chrono::year_month_day{day}.month() <= chrono::month{col + 1}) {
+                ++total_cols;
+                ++colspans[col];
+                day += chrono::days{7};
+            }
+        }
+    }
+
+    // now render the table heading
     indent();
     puts("<table class=\"heatmap\">");
     indent(1);
     puts("<tr>");
     indent(1);
     puts("<th></th>");
-    static constexpr const char* months[] = {"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
-    static constexpr int colspans[] = {5, 4, 4, 5, 4, 4, 5, 4, 4, 5, 4, 5};
     for (unsigned i = 0 ; i < 12 ; i++) {
         indent();
         printf("<th scope=\"col\" colspan=\"%d\">%s</th>\n", colspans[i], months[i]);

mercurial