diff --git a/Workout.js b/Workout.js index fba9713..89ef7fb 100644 --- a/Workout.js +++ b/Workout.js @@ -16,9 +16,20 @@ constructor(cont, plan) { this.set_repeat_idx = 0; this.exercise_idx = 0; this.workout_done = 0; + this.show_header = 0; + this.show_debug_status = 0; - // // Enable debug - // this.show_debug_status = 1; + // Dimensions + this.vwidth = window.innerWidth; + this.vheight = window.innerHeight; + + let qstring = window.location.search; + let url_params = new URLSearchParams(qstring); + + // Enable debug + this.show_debug_status = url_params.has("dbg"); + // Enable table header + this.show_header = url_params.has("hdr"); } // ---------- @@ -64,6 +75,7 @@ update_debug_info() { const curr_set_repeat_max_idx = this.plan.set[this.set_idx].count-1; const done_str = (this.workout_done === 1) ? "Done " : ""; dt.textContent = `${done_str}Action: ${this.action} Current: Set-${this.set_idx} [${this.set_repeat_idx}/${curr_set_repeat_max_idx}]/Exercise-${this.exercise_idx}`; + dt.textContent += `\nView ${this.vwidth} x ${this.vheight}`; } } @@ -72,27 +84,24 @@ render_exercise(prnt, el, idx) { const tblr = document.createElement("tr"); tblr.setAttribute("class", `exercise-row exercise-idx-${idx} exercise-pending`); + // Status const sts_td = document.createElement("td"); const sts_cb = document.createElement("input"); sts_cb.setAttribute("type", "checkbox"); - sts_td.appendChild(sts_cb); sts_cb.setAttribute("disabled", true); - - // Status - let col = sts_td; - col.classList.add("col-status"); - tblr.appendChild(col); - el.done = 0; + sts_td.appendChild(sts_cb); + tblr.appendChild(sts_td); // Name - col = this.text_element("td", el.name); - col.classList.add("col-name"); - tblr.appendChild(col); - - // Pattern/count - col = this.text_element("td", `${el.pattern} x ${el.count}`); - col.classList.add("col-pattern-count"); - tblr.appendChild(col); + const name_td = document.createElement("td"); + let ex_name = this.text_element("div", el.name); + ex_name.classList.add("col-name"); + let ex_patt = this.text_element("div", `${el.pattern} x ${el.count}`); + ex_patt.classList.add("col-patt"); + name_td.appendChild(ex_name); + name_td.appendChild(ex_patt); + tblr.appendChild(name_td); + el.done = 0; prnt.appendChild(tblr); } @@ -112,8 +121,7 @@ render_set(el, idx) { } tbl.appendChild(tcap); - let show_header = 0; - if (show_header) { + if (this.show_header) { // Header of the table const tblh = document.createElement("thead"); const tblhr = document.createElement("tr"); @@ -124,9 +132,9 @@ render_set(el, idx) { col = this.text_element("th", "Exercise"); col.classList.add("col-name"); tblhr.appendChild(col); - col = this.text_element("th", "Pattern/Count"); - col.classList.add("col-pattern-count"); - tblhr.appendChild(col); + // col = this.text_element("th", "Pattern/Count"); + // col.classList.add("col-pattern-count"); + // tblhr.appendChild(col); tblh.appendChild(tblhr); tbl.appendChild(tblh); @@ -427,6 +435,13 @@ render() { fab_regress.addEventListener('click', function() { app.handle_action('Button-Regress'); }); + + window.addEventListener('resize', function() { + // Dimensions + app.vwidth = window.innerWidth; + app.vheight = window.innerHeight; + app.update_debug_info(); + }); } } diff --git a/index.html b/index.html index 30ca52f..d03ec1f 100644 --- a/index.html +++ b/index.html @@ -5,6 +5,9 @@