Improve some JavaScript issues reported by eslint

This commit is contained in:
Martchus 2021-02-13 17:14:49 +01:00
parent f040418bdd
commit 4efbbde335
10 changed files with 16 additions and 15 deletions

View File

@ -125,4 +125,4 @@ function checkForAjaxError(xhr, action)
}
showAjaxError(xhr, action);
return true;
}
}

View File

@ -498,7 +498,7 @@ function renderBuildActionDetailsTable(buildActionDetails)
},
resultData: function(value, row) {
switch(value.index) {
case 3: // update info
case 3: { // update info
const formElement = document.createElement('form');
formElement.className = 'update-info-form';
formElement.appendChild(renderTableFromJsonObject({
@ -534,6 +534,7 @@ function renderBuildActionDetailsTable(buildActionDetails)
};
formElement.appendChild(addSelectedInput);
return formElement;
}
case 4: // build preparation info
return renderTableFromJsonObject({
data: value.data,
@ -547,7 +548,7 @@ function renderBuildActionDetailsTable(buildActionDetails)
},
},
});
case 7: // reporitory problems
case 7: { // reporitory problems
const container = document.createElement('div');
container.className = 'repo-problems';
for (const [database, problems] of Object.entries(value.data)) {
@ -578,6 +579,7 @@ function renderBuildActionDetailsTable(buildActionDetails)
container.appendChild(table);
}
return container;
}
default:
return renderStandardTableCell(value.data);
}
@ -821,7 +823,6 @@ function renderOrphanPackage(value, obj, level, row)
package.version,
row.sourceDbs,
);
return document.createTextNode();
}, function(package1, package2) {
return package1.name.localeCompare(package2.name);
});
@ -901,4 +902,4 @@ function initBuildActionDetails(sectionElement, sectionData, newHashParts)
queryBuildActionDetails(newBuildActionIds);
}
return true;
}
}

View File

@ -53,4 +53,4 @@ function renderIconLink(value, row, handler, tooltip, href, middleClickHref)
const link = renderLink(renderIcon(value), row, handler, tooltip, href, middleClickHref);
link.className = 'icon-link';
return link;
}
}

View File

@ -217,7 +217,7 @@ function renderTextPossiblyElidingTheEnd(value)
element.appendChild(elipses);
element.onclick = function () {
element.removeChild(element.lastChild);
(expaned = !expaned) ? element.appendChild(remainingText) : element.appendChild(elipses);
((expaned = !expaned)) ? element.appendChild(remainingText) : element.appendChild(elipses);
};
return element;
}
@ -629,4 +629,4 @@ function renderObjectWithHeadings(object, row, level)
elements.push(heading, renderStandardTableCell(value, object, level));
}
return elements;
}
}

View File

@ -186,4 +186,4 @@ window.functionsPostponedUntilGlobalInfo = [];
window.hasGlobalStatus = false;
window.buildActionStates = {};
window.buildActionResults = {};
window.buildActionTypes = {};
window.buildActionTypes = {};

View File

@ -18,4 +18,4 @@ function initLog()
addSearchToTerminal(terminal, mainElement);
terminal.open(mainElement);
});
}
}

View File

@ -114,4 +114,4 @@ function renderPackage(package, withoutBasics)
});
table.className = 'package-details-table';
return table;
}
}

View File

@ -34,4 +34,4 @@ function showPackageSearchResults(ajaxRequest)
},
});
packageSearchResults.appendChild(table);
}
}

View File

@ -75,4 +75,4 @@ function streamRouteIntoTerminal(method, path, terminal)
ajaxRequest.open(method, apiPrefix + path, true);
ajaxRequest.send();
return ajaxRequest;
}
}

View File

@ -75,7 +75,7 @@ function alterFormSelection(form, command)
break;
}
});
};
}
}
function getProperty(object, property, fallback)
@ -115,4 +115,4 @@ function getSelectedRowProperties(data, propertyName)
}
});
return propertyValues;
}
}