/** * GoingsOn - Weekly Review Render Module * Card rendering for the weekly review grid sections */ (function() { 'use strict'; const esc = GoingsOn.utils.escapeHtml; const escAttr = GoingsOn.utils.escapeAttr; // ============ Helpers ============ /** * Truncate a string with an ellipsis character. * @param {string} str - String to truncate * @param {number} len - Maximum length * @returns {string} Truncated string */ function truncate(str, len) { if (str.length <= len) return str; return str.substring(0, len - 1) + '\u2026'; } // ============ Section Renderers ============ /** * Render the week-at-a-glance timeline with day dots and event summaries. * @param {Object} r - Weekly review data object * @returns {string} HTML string */ function renderWeekTimeline(r) { const days = r.timelineDays || []; return `
No tasks due this week
' : ''}