2018-12-07 11:54:26 +01:00
|
|
|
import {joinFaction} from "../src/Faction/FactionHelpers";
|
2018-06-26 18:34:11 +02:00
|
|
|
import {Engine} from "../src/engine";
|
|
|
|
import {Player} from "../src/Player";
|
2018-07-08 05:19:19 +02:00
|
|
|
import {clearEventListeners} from "./uiHelpers/clearEventListeners";
|
2018-07-20 03:51:18 +02:00
|
|
|
import {Page, routing} from "../src/ui/navigationTracking";
|
2017-08-30 19:44:29 +02:00
|
|
|
|
2017-02-16 19:52:11 +01:00
|
|
|
/* Faction Invitation Pop-up box */
|
2017-08-30 19:44:29 +02:00
|
|
|
function factionInvitationBoxClose() {
|
2017-02-16 19:52:11 +01:00
|
|
|
var factionInvitationBox = document.getElementById("faction-invitation-box-container");
|
|
|
|
factionInvitationBox.style.display = "none";
|
|
|
|
}
|
|
|
|
|
2017-08-30 19:44:29 +02:00
|
|
|
function factionInvitationBoxOpen() {
|
2017-02-16 19:52:11 +01:00
|
|
|
var factionInvitationBox = document.getElementById("faction-invitation-box-container");
|
2018-08-17 22:06:18 +02:00
|
|
|
factionInvitationBox.style.display = "flex";
|
2017-02-16 19:52:11 +01:00
|
|
|
}
|
|
|
|
|
2017-08-30 19:44:29 +02:00
|
|
|
function factionInvitationSetText(txt) {
|
2017-02-16 19:52:11 +01:00
|
|
|
var textBox = document.getElementById("faction-invitation-box-text");
|
|
|
|
textBox.innerHTML = txt;
|
|
|
|
}
|
|
|
|
|
2017-08-30 19:44:29 +02:00
|
|
|
function factionInvitationSetMessage(msg) {
|
2017-02-16 19:52:11 +01:00
|
|
|
var msgBox = document.getElementById("faction-invitation-box-message");
|
|
|
|
msgBox.innerHTML = msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
//ram argument is in GB
|
2017-08-30 19:44:29 +02:00
|
|
|
function factionInvitationBoxCreate(faction) {
|
2017-02-16 19:52:11 +01:00
|
|
|
factionInvitationSetText("You have received a faction invitation from " + faction.name);
|
2018-03-03 22:05:33 +01:00
|
|
|
faction.alreadyInvited = true;
|
|
|
|
Player.factionInvitations.push(faction.name);
|
|
|
|
|
2018-07-20 03:51:18 +02:00
|
|
|
if (routing.isOn(Page.Factions)) {
|
2018-03-03 22:05:33 +01:00
|
|
|
Engine.loadFactionsContent();
|
|
|
|
}
|
2017-07-27 04:56:14 +02:00
|
|
|
|
2017-05-05 23:27:35 +02:00
|
|
|
var newYesButton = clearEventListeners("faction-invitation-box-yes");
|
2017-04-17 14:26:54 +02:00
|
|
|
newYesButton.addEventListener("click", function() {
|
2018-03-03 22:05:33 +01:00
|
|
|
//Remove from invited factions
|
|
|
|
var i = Player.factionInvitations.findIndex((facName)=>{return facName === faction.name});
|
|
|
|
if (i === -1) {
|
2018-11-30 13:19:51 +01:00
|
|
|
console.error("Could not find faction in Player.factionInvitations");
|
2018-03-03 22:05:33 +01:00
|
|
|
} else {
|
|
|
|
Player.factionInvitations.splice(i, 1);
|
|
|
|
}
|
2017-02-16 19:52:11 +01:00
|
|
|
joinFaction(faction);
|
|
|
|
factionInvitationBoxClose();
|
2018-07-20 03:51:18 +02:00
|
|
|
if (routing.isOn(Page.Factions)) {
|
2018-03-03 22:05:33 +01:00
|
|
|
Engine.loadFactionsContent();
|
|
|
|
}
|
2017-02-16 19:52:11 +01:00
|
|
|
return false;
|
|
|
|
});
|
2017-07-27 04:56:14 +02:00
|
|
|
|
2017-06-08 01:35:56 +02:00
|
|
|
var noButton = clearEventListeners("faction-invitation-box-no");
|
|
|
|
noButton.addEventListener("click", function() {
|
|
|
|
factionInvitationBoxClose();
|
|
|
|
return false;
|
|
|
|
});
|
2017-07-27 04:56:14 +02:00
|
|
|
|
2017-02-16 19:52:11 +01:00
|
|
|
factionInvitationBoxOpen();
|
2017-07-27 04:56:14 +02:00
|
|
|
}
|
2017-08-30 19:44:29 +02:00
|
|
|
|
|
|
|
export {factionInvitationBoxCreate};
|