Skip to content
Snippets Groups Projects
Commit 04e8dcbf authored by lowercasedonkey's avatar lowercasedonkey
Browse files

condense down to one div

parent e3f589d6
No related branches found
No related tags found
1 merge request!9842Pulldown for slave sorting
...@@ -534,12 +534,12 @@ App.UI.SlaveList.SlaveInteract.penthouseInteract = function(slave) { ...@@ -534,12 +534,12 @@ App.UI.SlaveList.SlaveInteract.penthouseInteract = function(slave) {
* @returns {HTMLElement} * @returns {HTMLElement}
*/ */
App.UI.SlaveList.sortingLinks = function(passage) { App.UI.SlaveList.sortingLinks = function(passage) {
const outerDiv = document.createElement("div"); const div = App.UI.DOM.makeElement("div", null, "indent");
const textify = string => capFirstChar(string.replace(/([A-Z])/g, " $1")); const textify = string => capFirstChar(string.replace(/([A-Z])/g, " $1"));
let innerDiv = App.UI.DOM.makeElement("div", "Sort by: ", "indent"); let span = App.UI.DOM.makeElement("span", "Sort by: ");
let order = ["devotion", "trust", "name", "assignment", "seniority", "actualAge", "visualAge", "physicalAge", "weeklyIncome", "health", "weight", "muscles", "intelligence", "sexDrive", "pregnancy"]; let order = ["devotion", "trust", "name", "assignment", "seniority", "actualAge", "visualAge", "physicalAge", "weeklyIncome", "health", "weight", "muscles", "intelligence", "sexDrive", "pregnancy"];
const select = App.UI.DOM.appendNewElement("select", innerDiv); const select = App.UI.DOM.appendNewElement("select", span);
for (const so of order) { for (const so of order) {
const choice = App.UI.DOM.appendNewElement("option", select, textify(so)); const choice = App.UI.DOM.appendNewElement("option", select, textify(so));
choice.value = so; choice.value = so;
...@@ -551,15 +551,15 @@ App.UI.SlaveList.sortingLinks = function(passage) { ...@@ -551,15 +551,15 @@ App.UI.SlaveList.sortingLinks = function(passage) {
V.sortSlavesBy = select.options[select.selectedIndex].value; V.sortSlavesBy = select.options[select.selectedIndex].value;
App.UI.reload(); App.UI.reload();
}; };
outerDiv.append(innerDiv); div.append(span);
innerDiv = App.UI.DOM.makeElement("div", "Sort direction: ", "indent"); span = App.UI.DOM.makeElement("span", " Sort direction: ");
order = ["descending", "ascending"]; order = ["descending", "ascending"];
innerDiv.append(App.UI.DOM.generateLinksStrip(order.map(so => V.sortSlavesOrder !== so ? span.append(App.UI.DOM.generateLinksStrip(order.map(so => V.sortSlavesOrder !== so ?
App.UI.DOM.passageLink(textify(so), passage, () => { V.sortSlavesOrder = so; }) : textify(so)))); App.UI.DOM.passageLink(textify(so), passage, () => { V.sortSlavesOrder = so; }) : textify(so))));
outerDiv.append(innerDiv); div.append(span);
return outerDiv; return div;
}; };
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment