Clean up code

This commit is contained in:
Neil Brommer 2018-04-30 10:59:08 -07:00
parent f213c5b104
commit afcfa22b8e
2 changed files with 31 additions and 24 deletions

View File

@ -17,14 +17,14 @@ $(document).ready(function () {
function addLangLangs(langID, langName, langIDList) {
if (langIDList != null) {
for (var i = 0; i < langIDList.length; i++) {
langIDList.forEach(function (item) {
$.ajax({
url: "lang.php",
type: "PUT",
data: {langID: langID, associatedLang: langIDList[i]},
data: {langID: langID, associatedLang: item},
error: displayError
});
}
});
}
successAlert("Successfully Added language: " + langName, "lang");
@ -46,15 +46,15 @@ function loadLangs() {
function addLangs(langList) {
var mainList = $("#mainList");
for (var i = 0; i < langList.length; i++) {
$("<div>").attr({ "id": "lang-" + langList[i].langID }).appendTo(mainList);
langList.forEach(function (item) {
$("<div>").attr({ "id": "lang-" + item.langID }).appendTo(mainList);
$.ajax({
url: "lang.php?langID=" + langList[i].langID,
url: "lang.php?langID=" + item.langID,
type: "GET",
success: function (result) { addLang(result) },
error: function (result) { displayError(result) }
});
}
});
}
function addLang(lang) {

View File

@ -7,7 +7,9 @@ $(document).ready(function () {
$("#addLangTab").tab("show");
$(".addField").val("");
buildLangSelect();
}).on("shown.bs.modal", function (e) { $("#txtLangName").focus(); });
}).on("shown.bs.modal", function (e) {
$("#txtLangName").focus();
});
$("#btnAddItem").click(addNewItem);
$(".clearLangSelect").click(function () { $(".langSelect").val([]); });
@ -26,14 +28,14 @@ function buildLangSelect() {
function addSelectLangs(langList) {
var selectors = $(".langSelect");
selectors.empty();
for (let cur of langList) {
langList.forEach(function (cur) {
$("<option>").val(cur.langID).text(cur.langName).appendTo(selectors);
}
});
}
function checkBoxChange() {
var me = $(this);
$(me.data("for")).attr("disabled", !me.prop("checked"));
var chk = $(this);
$(chk.data("for")).attr("disabled", !chk.prop("checked"));
}
function addNewItem() {
@ -104,7 +106,7 @@ function addNewItem() {
function successAlert(text, type) {
var alert = $("#successAlert");
if (alert.attr("display") == "none") {
if (alert.attr("display") != "none") {
alert.slideUp();
}
@ -145,24 +147,27 @@ function buildCard(type, id, name, languageList, DescriptionText, body) {
var langString = [];
if (languageList != null && languageList.length > 0) {
for (var i = 0; i < languageList.length; i++) {
var cur = languageList[i];
langString[i] = cur.langID;
languageList.forEach(function (cur) {
langString.push(cur.langID);
$("<a>").attr({
"class": "card-link",
"href": "#",
"onClick": "handleLangClicked(event, " + cur.langID + ")"
}).text(cur.langName).appendTo(langList);
}
});
card.attr("data-langs", JSON.stringify(langString));
} else {
card.attr("data-langs", "[]");
}
$('<p>').attr("id", type + "-" + id + "-description").addClass("card-text").text(DescriptionText).appendTo(cardBody);
cardBody.append(body);
$('<p>').attr("id", type + "-" + id + "-description")
.addClass("card-text")
.text(DescriptionText)
.appendTo(cardBody);
cardBody.append(body);
card.append(cardBody);
card.appendTo($("#" + type + "-" + id));
}
@ -183,7 +188,7 @@ function editClicked() {
}
function manageAssocLang(type, action, id, langList) {
for (let item of langList) {
langList.forEach(function (item) {
var data = { langID: item };
data[type + "ID"] = id;
$.ajax({
@ -192,7 +197,7 @@ function manageAssocLang(type, action, id, langList) {
data: data,
error: displayError
});
}
});
}
function deleteClicked() {
@ -224,16 +229,18 @@ function deselectNav() {
}
function displayError(error, str) {
console.log(error);
console.error(error);
$("#errorText").text(error.responseText);
$("#errorModal").modal('show');
}
function inANotInB(a, b) {
var list = [];
for (let item of a) {
a.forEach(function (item) {
if (b.indexOf(item) == -1)
list.push(item);
}
});
return list;
}