mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
64 lines
2.2 KiB
JavaScript
64 lines
2.2 KiB
JavaScript
import {Faction, joinFaction} from "../src/Faction.js";
|
|
import {Engine} from "../src/engine.js";
|
|
import {Player} from "../src/Player.js";
|
|
import {clearEventListeners} from "./HelperFunctions.js";
|
|
|
|
/* Faction Invitation Pop-up box */
|
|
function factionInvitationBoxClose() {
|
|
var factionInvitationBox = document.getElementById("faction-invitation-box-container");
|
|
factionInvitationBox.style.display = "none";
|
|
}
|
|
|
|
function factionInvitationBoxOpen() {
|
|
var factionInvitationBox = document.getElementById("faction-invitation-box-container");
|
|
factionInvitationBox.style.display = "block";
|
|
}
|
|
|
|
function factionInvitationSetText(txt) {
|
|
var textBox = document.getElementById("faction-invitation-box-text");
|
|
textBox.innerHTML = txt;
|
|
}
|
|
|
|
function factionInvitationSetMessage(msg) {
|
|
var msgBox = document.getElementById("faction-invitation-box-message");
|
|
msgBox.innerHTML = msg;
|
|
}
|
|
|
|
//ram argument is in GB
|
|
function factionInvitationBoxCreate(faction) {
|
|
factionInvitationSetText("You have received a faction invitation from " + faction.name);
|
|
faction.alreadyInvited = true;
|
|
Player.factionInvitations.push(faction.name);
|
|
|
|
if (Engine.currentPage === Engine.Page.Factions) {
|
|
Engine.loadFactionsContent();
|
|
}
|
|
|
|
var newYesButton = clearEventListeners("faction-invitation-box-yes");
|
|
newYesButton.addEventListener("click", function() {
|
|
//Remove from invited factions
|
|
var i = Player.factionInvitations.findIndex((facName)=>{return facName === faction.name});
|
|
if (i === -1) {
|
|
console.log("ERROR: Could not find faction in Player.factionInvitations");
|
|
} else {
|
|
Player.factionInvitations.splice(i, 1);
|
|
}
|
|
joinFaction(faction);
|
|
factionInvitationBoxClose();
|
|
if (Engine.currentPage === Engine.Page.Factions) {
|
|
Engine.loadFactionsContent();
|
|
}
|
|
return false;
|
|
});
|
|
|
|
var noButton = clearEventListeners("faction-invitation-box-no");
|
|
noButton.addEventListener("click", function() {
|
|
factionInvitationBoxClose();
|
|
return false;
|
|
});
|
|
|
|
factionInvitationBoxOpen();
|
|
}
|
|
|
|
export {factionInvitationBoxCreate};
|