Afficher des colonnes pour difficulté extrème

This commit is contained in:
Vincent Vandemeulebrouck 2020-11-14 15:57:42 +01:00
parent 137dbb87e4
commit 9f3d6ed6d0

View File

@ -160,10 +160,11 @@ export class RdDResolutionTable {
/* -------------------------------------------- */
static _buildHTMLTable(caracValue, levelValue, minCarac, maxCarac, minLevel, maxLevel) {
let countColonnes = maxLevel - minLevel;
minCarac = Math.max(minCarac, 1);
maxCarac = Math.min(maxCarac, 30);
minLevel = Math.max(minLevel, -10);
maxLevel = Math.min(maxLevel, 22);
maxLevel = Math.max(Math.min(maxLevel, 22), minLevel + countColonnes);
let table = $("<table class='table-resolution'/>")
.append(this._buildHTMLHeader(this.resolutionTable[0], minLevel, maxLevel));
@ -176,7 +177,6 @@ export class RdDResolutionTable {
static _buildHTMLHeader(dataRow, minLevel, maxLevel) {
let tr = $("<tr/>");
let max = maxLevel;
if (minLevel > -8) {
tr.append($("<th class='table-resolution-level'/>").text("-8"))
@ -184,7 +184,7 @@ export class RdDResolutionTable {
if (minLevel > -7) {
tr.append($("<th class='table-resolution-level'/>").text("..."));
}
for (let difficulte = minLevel; difficulte <= max; difficulte++) {
for (let difficulte = minLevel; difficulte <= maxLevel; difficulte++) {
const niveau = dataRow[difficulte + 10].niveau;
const txt = (niveau > 0 ? "+" : "") + niveau;
tr.append($("<th class='table-resolution-level'/>").text(txt));