From e0b10cdf38b1d923db25e0fccfbf24d04369a473 Mon Sep 17 00:00:00 2001 From: Arkerthan <arkerthan@gmail.com> Date: Tue, 22 Dec 2020 12:07:02 +0100 Subject: [PATCH] future society passage to pure DOM --- src/005-passages/managePassages.js | 1 + src/facilities/fsPassage.js | 32 ++++++++++++++++++++---------- src/uncategorized/futureSociety.tw | 13 ------------ 3 files changed, 22 insertions(+), 24 deletions(-) create mode 100644 src/005-passages/managePassages.js delete mode 100644 src/uncategorized/futureSociety.tw diff --git a/src/005-passages/managePassages.js b/src/005-passages/managePassages.js new file mode 100644 index 00000000000..b1d1e2f7731 --- /dev/null +++ b/src/005-passages/managePassages.js @@ -0,0 +1 @@ +new App.DomPassage("Future Society", () => { return App.UI.fsPassage(); }, ["jump-to-safe", "jump-from-safe"]); diff --git a/src/facilities/fsPassage.js b/src/facilities/fsPassage.js index 86fda835310..831f3c0d850 100644 --- a/src/facilities/fsPassage.js +++ b/src/facilities/fsPassage.js @@ -1,29 +1,39 @@ -App.UI.FSPassage = function() { - const el = new DocumentFragment(); +App.UI.fsPassage = function() { const arc = V.arcologies[0]; V.FSReminder = 0; const _FSCredits = FutureSocieties.availCredits(); setup(); + V.nextButton = "Back"; + V.nextLink = "Main"; + V.encyclopedia = "Future Societies"; + + const f = new DocumentFragment(); + if (V.cheatMode) { - App.UI.DOM.appendNewElement("div", el, App.UI.DOM.link( + App.UI.DOM.appendNewElement("div", f, App.UI.DOM.link( "Cheat Edit Future Society", () => { V.cheater = 1; }, [], "MOD_Edit FS Cheat" - )); + ), "cheat-menu"); } - el.append(overview()); - el.append(FSPerception()); - el.append(unlocks()); - el.append(spending()); - el.append(rename()); - el.append(selectFS()); + App.UI.DOM.appendNewElement("h1", f, "Future Societies"); + + f.append(overview()); + f.append(FSPerception()); + f.append(unlocks()); + f.append(spending()); + f.append(rename()); + f.append(selectFS()); + + App.UI.DOM.appendNewElement("h2", f, "Facility Redecoration"); - return el; + f.append(App.UI.facilityRedecoration()); + return f; /** * FIRST FS STORING FOR RIVALRY diff --git a/src/uncategorized/futureSociety.tw b/src/uncategorized/futureSociety.tw deleted file mode 100644 index 155195353f2..00000000000 --- a/src/uncategorized/futureSociety.tw +++ /dev/null @@ -1,13 +0,0 @@ -:: Future Society [nobr jump-to-safe jump-from-safe] - -<<setAssistantPronouns>> -<<set $nextButton = "Back", $nextLink = "Main", $encyclopedia = "Future Societies">> - -<<includeDOM App.UI.FSPassage()>> - -<h3>Future Societies</h3> - - -<h3>Facility Redecoration</h3> - -<<includeDOM App.UI.facilityRedecoration()>> -- GitLab