lint codebase

This commit is contained in:
AlecM33
2022-01-11 20:36:10 -05:00
parent 553f1025a8
commit f5c0984211
38 changed files with 2422 additions and 968 deletions

View File

@@ -1,14 +1,13 @@
import { Game } from "../model/Game.js";
import { cancelCurrentToast, toast } from "./Toast.js";
import { customCards } from "../config/customCards.js";
import { ModalManager } from "./ModalManager.js";
import {XHRUtility} from "./XHRUtility.js";
import {globals} from "../config/globals.js";
import {templates} from "./Templates.js";
import {defaultCards} from "../config/defaultCards";
import { Game } from '../model/Game.js';
import { cancelCurrentToast, toast } from './Toast.js';
import { ModalManager } from './ModalManager.js';
import { XHRUtility } from './XHRUtility.js';
import { globals } from '../config/globals.js';
import { templates } from './Templates.js';
import { defaultCards } from '../config/defaultCards';
export class GameCreationStepManager {
constructor(deckManager) {
constructor (deckManager) {
loadDefaultCards(deckManager);
deckManager.loadCustomRolesFromCookies();
this.step = 1;
@@ -18,42 +17,42 @@ export class GameCreationStepManager {
cancelCurrentToast();
this.removeStepElementsFromDOM(this.step);
this.decrementStep();
this.renderStep("creation-step-container", this.step);
}
this.renderStep('creation-step-container', this.step);
};
this.steps = {
1: {
title: "Select your method of moderation:",
title: 'Select your method of moderation:',
forwardHandler: () => {
if (this.currentGame.hasDedicatedModerator !== null) {
cancelCurrentToast();
this.removeStepElementsFromDOM(this.step);
this.incrementStep();
this.renderStep("creation-step-container", this.step);
this.renderStep('creation-step-container', this.step);
} else {
toast("You must select a moderation option.", "error", true);
toast('You must select a moderation option.', 'error', true);
}
}
},
2: {
title: "Create your deck of cards:",
title: 'Create your deck of cards:',
forwardHandler: () => {
if (this.deckManager.getDeckSize() >= 5 && this.deckManager.getDeckSize() <= 50) {
this.currentGame.deck = deckManager.getCurrentDeck().filter((card) => card.quantity > 0)
this.currentGame.deck = deckManager.getCurrentDeck().filter((card) => card.quantity > 0);
cancelCurrentToast();
this.removeStepElementsFromDOM(this.step);
this.incrementStep();
this.renderStep("creation-step-container", this.step);
this.renderStep('creation-step-container', this.step);
} else {
toast("You must have a deck for between 5 and 50 players", "error", true);
toast('You must have a deck for between 5 and 50 players', 'error', true);
}
},
backHandler: this.defaultBackHandler
},
3: {
title: "Set an optional timer:",
title: 'Set an optional timer:',
forwardHandler: () => {
let hours = parseInt(document.getElementById("game-hours").value);
let minutes = parseInt(document.getElementById("game-minutes").value);
const hours = parseInt(document.getElementById('game-hours').value);
const minutes = parseInt(document.getElementById('game-minutes').value);
if ((isNaN(hours) && isNaN(minutes))
|| (isNaN(hours) && minutes > 0 && minutes < 60)
|| (isNaN(minutes) && hours > 0 && hours < 6)
@@ -66,7 +65,7 @@ export class GameCreationStepManager {
this.currentGame.timerParams = {
hours: hours,
minutes: minutes
}
};
} else {
this.currentGame.hasTimer = false;
this.currentGame.timerParams = null;
@@ -74,19 +73,19 @@ export class GameCreationStepManager {
cancelCurrentToast();
this.removeStepElementsFromDOM(this.step);
this.incrementStep();
this.renderStep("creation-step-container", this.step);
this.renderStep('creation-step-container', this.step);
} else {
if (hours === 0 && minutes === 0) {
toast("You must enter a non-zero amount of time.", "error", true);
toast('You must enter a non-zero amount of time.', 'error', true);
} else {
toast("Invalid timer options. Hours can be a max of 5, Minutes a max of 59.", "error", true);
toast('Invalid timer options. Hours can be a max of 5, Minutes a max of 59.', 'error', true);
}
}
},
backHandler: this.defaultBackHandler
},
4: {
title: "Review and submit:",
title: 'Review and submit:',
backHandler: this.defaultBackHandler,
forwardHandler: (deck, hasTimer, hasDedicatedModerator, timerParams) => {
XHRUtility.xhr(
@@ -97,40 +96,40 @@ export class GameCreationStepManager {
new Game(deck, hasTimer, hasDedicatedModerator, timerParams)
)
)
.then((res) => {
if (res
.then((res) => {
if (res
&& typeof res === 'object'
&& Object.prototype.hasOwnProperty.call(res, 'content')
&& typeof res.content === 'string'
) {
window.location = ('/game/' + res.content);
}
}).catch((e) => {
if (e.status === 429) {
toast('You\'ve sent this request too many times.', 'error', true, true, 6);
}
});
) {
window.location = ('/game/' + res.content);
}
}).catch((e) => {
if (e.status === 429) {
toast('You\'ve sent this request too many times.', 'error', true, true, 6);
}
});
}
}
}
};
}
incrementStep() {
incrementStep () {
if (this.step < Object.keys(this.steps).length) {
this.step += 1;
}
}
decrementStep() {
decrementStep () {
if (this.step > 1) {
this.step -= 1;
}
}
renderStep(containerId, step) {
renderStep (containerId, step) {
document.querySelectorAll('.animated-placeholder').forEach((el) => el.remove());
document.querySelectorAll('.placeholder-row').forEach((el) => el.remove());
document.getElementById("step-title").innerText = this.steps[step].title;
document.getElementById('step-title').innerText = this.steps[step].title;
switch (step) {
case 1:
renderModerationTypeStep(this.currentGame, containerId, step);
@@ -154,24 +153,24 @@ export class GameCreationStepManager {
updateTracker(step);
}
removeStepElementsFromDOM(stepNumber) {
removeStepElementsFromDOM (stepNumber) {
document.getElementById('step-' + stepNumber)?.remove();
}
}
function renderModerationTypeStep(game, containerId, stepNumber) {
const stepContainer = document.createElement("div");
setAttributes(stepContainer, {'id': 'step-' + stepNumber, 'class': 'flex-row-container step'});
function renderModerationTypeStep (game, containerId, stepNumber) {
const stepContainer = document.createElement('div');
setAttributes(stepContainer, { id: 'step-' + stepNumber, class: 'flex-row-container step' });
stepContainer.innerHTML =
"<div id='moderation-dedicated'>I will be the <strong>dedicated mod.</strong> Don't deal me a card.</div>" +
"<div id='moderation-self'>The <strong>first person out</strong> will mod. Deal me into the game <span>(mod will be assigned automatically).</span></div>";
let dedicatedOption = stepContainer.querySelector('#moderation-dedicated');
const dedicatedOption = stepContainer.querySelector('#moderation-dedicated');
if (game.hasDedicatedModerator) {
dedicatedOption.classList.add('option-selected');
}
let selfOption = stepContainer.querySelector('#moderation-self');
const selfOption = stepContainer.querySelector('#moderation-self');
if (game.hasDedicatedModerator === false) {
selfOption.classList.add('option-selected');
}
@@ -191,9 +190,9 @@ function renderModerationTypeStep(game, containerId, stepNumber) {
document.getElementById(containerId).appendChild(stepContainer);
}
function renderRoleSelectionStep(game, containerId, step, deckManager) {
const stepContainer = document.createElement("div");
setAttributes(stepContainer, {'id': 'step-' + step, 'class': 'flex-row-container-left-align step'});
function renderRoleSelectionStep (game, containerId, step, deckManager) {
const stepContainer = document.createElement('div');
setAttributes(stepContainer, { id: 'step-' + step, class: 'flex-row-container-left-align step' });
stepContainer.innerHTML = templates.CREATE_GAME_CUSTOM_ROLES;
stepContainer.innerHTML += templates.CREATE_GAME_DECK_STATUS;
@@ -207,32 +206,32 @@ function renderRoleSelectionStep(game, containerId, step, deckManager) {
document.querySelector('#custom-roles-import').addEventListener('click', (e) => {
e.preventDefault();
ModalManager.displayModal("upload-custom-roles-modal", "modal-background", "close-upload-custom-roles-modal-button");
ModalManager.displayModal('upload-custom-roles-modal', 'modal-background', 'close-upload-custom-roles-modal-button');
});
document.getElementById("upload-custom-roles-form").onsubmit = (e) => {
document.getElementById('upload-custom-roles-form').onsubmit = (e) => {
e.preventDefault();
let fileList = document.getElementById("upload-custom-roles").files;
const fileList = document.getElementById('upload-custom-roles').files;
if (fileList.length > 0) {
let file = fileList[0];
const file = fileList[0];
if (file.size > 1000000) {
toast("Your file is too large (max 1MB)", "error", true, true, 5);
toast('Your file is too large (max 1MB)', 'error', true, true, 5);
return;
}
if (file.type !== "text/plain") {
toast("Your file must be a text file", "error", true, true, 5);
if (file.type !== 'text/plain') {
toast('Your file must be a text file', 'error', true, true, 5);
return;
}
deckManager.loadCustomRolesFromFile(file, updateCustomRoleOptionsList, loadDefaultCards, showIncludedCards);
} else {
toast("You must upload a text file", "error", true, true, 5);
toast('You must upload a text file', 'error', true, true, 5);
}
}
};
let clickHandler = () => {
console.log("fired");
let actions = document.getElementById("custom-role-actions");
const clickHandler = () => {
console.log('fired');
const actions = document.getElementById('custom-role-actions');
if (actions.style.display !== 'none') {
actions.style.display = 'none';
} else {
@@ -240,7 +239,7 @@ function renderRoleSelectionStep(game, containerId, step, deckManager) {
}
};
document.getElementById("custom-role-hamburger").addEventListener("click", clickHandler);
document.getElementById('custom-role-hamburger').addEventListener('click', clickHandler);
showIncludedCards(deckManager);
@@ -251,27 +250,27 @@ function renderRoleSelectionStep(game, containerId, step, deckManager) {
initializeRemainingEventListeners(deckManager);
}
function renderTimerStep(containerId, stepNumber, game) {
let div = document.createElement("div");
div.setAttribute("id", "step-" + stepNumber);
function renderTimerStep (containerId, stepNumber, game) {
const div = document.createElement('div');
div.setAttribute('id', 'step-' + stepNumber);
div.classList.add('step');
let timeContainer = document.createElement("div");
timeContainer.setAttribute("id", "game-time");
const timeContainer = document.createElement('div');
timeContainer.setAttribute('id', 'game-time');
let hoursDiv = document.createElement("div");
let hoursLabel = document.createElement("label");
hoursLabel.setAttribute("for", "game-hours");
hoursLabel.innerText = "Hours (max 5)"
let hours = document.createElement("input");
setAttributes(hours, {type: "number", id: "game-hours", name: "game-hours", min: "0", max: "5", value: game.timerParams?.hours})
const hoursDiv = document.createElement('div');
const hoursLabel = document.createElement('label');
hoursLabel.setAttribute('for', 'game-hours');
hoursLabel.innerText = 'Hours (max 5)';
const hours = document.createElement('input');
setAttributes(hours, { type: 'number', id: 'game-hours', name: 'game-hours', min: '0', max: '5', value: game.timerParams?.hours });
let minutesDiv = document.createElement("div");
let minsLabel = document.createElement("label");
minsLabel.setAttribute("for", "game-minutes");
minsLabel.innerText = "Minutes"
let minutes = document.createElement("input");
setAttributes(minutes, {type: "number", id: "game-minutes", name: "game-minutes", min: "1", max: "60", value: game.timerParams?.minutes})
const minutesDiv = document.createElement('div');
const minsLabel = document.createElement('label');
minsLabel.setAttribute('for', 'game-minutes');
minsLabel.innerText = 'Minutes';
const minutes = document.createElement('input');
setAttributes(minutes, { type: 'number', id: 'game-minutes', name: 'game-minutes', min: '1', max: '60', value: game.timerParams?.minutes });
hoursDiv.appendChild(hoursLabel);
hoursDiv.appendChild(hours);
@@ -284,46 +283,45 @@ function renderTimerStep(containerId, stepNumber, game) {
document.getElementById(containerId).appendChild(div);
}
function renderReviewAndCreateStep(containerId, stepNumber, game) {
let div = document.createElement("div");
div.setAttribute("id", "step-" + stepNumber);
function renderReviewAndCreateStep (containerId, stepNumber, game) {
const div = document.createElement('div');
div.setAttribute('id', 'step-' + stepNumber);
div.classList.add('step');
div.innerHTML =
"<div>" +
'<div>' +
"<label for='mod-option'>Moderation</label>" +
"<div id='mod-option' class='review-option'></div>" +
"</div>" +
"<div>" +
'</div>' +
'<div>' +
"<label for='timer-option'>Timer</label>" +
"<div id='timer-option' class='review-option'></div>" +
"</div>" +
"<div>" +
'</div>' +
'<div>' +
"<label for='roles-option'>Game Deck</label>" +
"<div id='roles-option' class='review-option'></div>" +
"</div>";
'</div>';
div.querySelector('#mod-option').innerText = game.hasDedicatedModerator
? "I will be the dedicated mod. Don't deal me a card."
: "The first person out will mod. Deal me into the game.";
? "I will be the dedicated mod. Don't deal me a card."
: 'The first person out will mod. Deal me into the game.';
if (game.hasTimer) {
let formattedHours = !isNaN(game.timerParams.hours)
const formattedHours = !isNaN(game.timerParams.hours)
? game.timerParams.hours + ' Hours'
: '0 Hours'
: '0 Hours';
let formattedMinutes = !isNaN(game.timerParams.minutes)
const formattedMinutes = !isNaN(game.timerParams.minutes)
? game.timerParams.minutes + ' Minutes'
: '0 Minutes'
: '0 Minutes';
div.querySelector('#timer-option').innerText = formattedHours + " " + formattedMinutes;
div.querySelector('#timer-option').innerText = formattedHours + ' ' + formattedMinutes;
} else {
div.querySelector('#timer-option').innerText = "untimed"
div.querySelector('#timer-option').innerText = 'untimed';
}
for (let card of game.deck) {
let roleEl = document.createElement("div");
for (const card of game.deck) {
const roleEl = document.createElement('div');
roleEl.innerText = card.quantity + 'x ' + card.role;
div.querySelector('#roles-option').appendChild(roleEl);
}
@@ -331,49 +329,49 @@ function renderReviewAndCreateStep(containerId, stepNumber, game) {
document.getElementById(containerId).appendChild(div);
}
function setAttributes(element, attributeObject) {
for (let key of Object.keys(attributeObject)) {
function setAttributes (element, attributeObject) {
for (const key of Object.keys(attributeObject)) {
element.setAttribute(key, attributeObject[key]);
}
}
function updateTracker(step) {
function updateTracker (step) {
document.querySelectorAll('.creation-step').forEach((element, i) => {
if ((i + 1) <= step) {
element.classList.add('creation-step-filled');
} else {
element.classList.remove('creation-step-filled');
}
})
});
}
function showButtons(back, forward, forwardHandler, backHandler, builtGame=null) {
document.querySelector("#step-back-button")?.remove();
document.querySelector("#step-forward-button")?.remove();
document.querySelector("#create-game")?.remove();
function showButtons (back, forward, forwardHandler, backHandler, builtGame = null) {
document.querySelector('#step-back-button')?.remove();
document.querySelector('#step-forward-button')?.remove();
document.querySelector('#create-game')?.remove();
if (back) {
let backButton = document.createElement("button");
backButton.innerText = "\u25C0";
const backButton = document.createElement('button');
backButton.innerText = '\u25C0';
backButton.addEventListener('click', backHandler);
backButton.setAttribute("id", "step-back-button");
backButton.setAttribute('id', 'step-back-button');
backButton.classList.add('cancel');
backButton.classList.add('app-button');
document.getElementById("tracker-container").prepend(backButton);
document.getElementById('tracker-container').prepend(backButton);
}
if (forward && builtGame === null) {
let fwdButton = document.createElement("button");
fwdButton.innerHTML = "\u25b6";
const fwdButton = document.createElement('button');
fwdButton.innerHTML = '\u25b6';
fwdButton.addEventListener('click', forwardHandler);
fwdButton.setAttribute("id", "step-forward-button");
fwdButton.setAttribute('id', 'step-forward-button');
fwdButton.classList.add('app-button');
document.getElementById("tracker-container").appendChild(fwdButton);
document.getElementById('tracker-container').appendChild(fwdButton);
} else if (forward && builtGame !== null) {
let createButton = document.createElement("button");
createButton.innerText = "Create";
createButton.setAttribute("id", "create-game");
const createButton = document.createElement('button');
createButton.innerText = 'Create';
createButton.setAttribute('id', 'create-game');
createButton.classList.add('app-button');
createButton.addEventListener("click", () => {
createButton.addEventListener('click', () => {
forwardHandler(
builtGame.deck.filter((card) => card.quantity > 0),
builtGame.hasTimer,
@@ -381,66 +379,65 @@ function showButtons(back, forward, forwardHandler, backHandler, builtGame=null)
builtGame.timerParams
);
});
document.getElementById("tracker-container").appendChild(createButton);
document.getElementById('tracker-container').appendChild(createButton);
}
}
// Display a widget for each default card that allows copies of it to be added/removed. Set initial deck state.
function showIncludedCards(deckManager) {
document.querySelectorAll('.compact-card').forEach((el) => { el.remove() });
for (let i = 0; i < deckManager.getCurrentDeck().length; i ++) {
let card = deckManager.getCurrentDeck()[i];
let cardEl = constructCompactDeckBuilderElement(card, deckManager);
function showIncludedCards (deckManager) {
document.querySelectorAll('.compact-card').forEach((el) => { el.remove(); });
for (let i = 0; i < deckManager.getCurrentDeck().length; i++) {
const card = deckManager.getCurrentDeck()[i];
const cardEl = constructCompactDeckBuilderElement(card, deckManager);
if (card.team === globals.ALIGNMENT.GOOD) {
document.getElementById("deck-good").appendChild(cardEl);
document.getElementById('deck-good').appendChild(cardEl);
} else {
document.getElementById("deck-evil").appendChild(cardEl);
document.getElementById('deck-evil').appendChild(cardEl);
}
}
}
/* Display a dropdown containing all the custom roles. Adding one will add it to the game deck and
create a widget for it */
function loadCustomRoles(deckManager) {
let select = document.getElementById("deck-select");
addOptionsToList(deckManager, document.getElementById("deck-select"));
function loadCustomRoles (deckManager) {
addOptionsToList(deckManager, document.getElementById('deck-select'));
}
function loadDefaultCards(deckManager) {
function loadDefaultCards (deckManager) {
defaultCards.sort((a, b) => {
if (a.team !== b.team) {
return a.team === globals.ALIGNMENT.GOOD ? 1 : -1;
}
return a.role.localeCompare(b.role);
});
let deck = [];
for (let i = 0; i < defaultCards.length; i ++) {
let card = defaultCards[i];
const deck = [];
for (let i = 0; i < defaultCards.length; i++) {
const card = defaultCards[i];
card.quantity = 0;
deck.push(card);
}
deckManager.deck = deck;
}
function constructCompactDeckBuilderElement(card, deckManager) {
const cardContainer = document.createElement("div");
let alignmentClass = card.team === globals.ALIGNMENT.GOOD ? globals.ALIGNMENT.GOOD : globals.ALIGNMENT.EVIL
function constructCompactDeckBuilderElement (card, deckManager) {
const cardContainer = document.createElement('div');
const alignmentClass = card.team === globals.ALIGNMENT.GOOD ? globals.ALIGNMENT.GOOD : globals.ALIGNMENT.EVIL;
cardContainer.setAttribute("class", "compact-card " + alignmentClass);
cardContainer.setAttribute('class', 'compact-card ' + alignmentClass);
cardContainer.setAttribute("id", "card-" + card.role.replaceAll(' ', '-'));
cardContainer.setAttribute('id', 'card-' + card.role.replaceAll(' ', '-'));
cardContainer.innerHTML =
"<div class='compact-card-left'>" +
"<p>-</p>" +
"</div>" +
'<p>-</p>' +
'</div>' +
"<div class='compact-card-header'>" +
"<p class='card-role'></p>" +
"<div class='card-quantity'></div>" +
"</div>" +
'</div>' +
"<div class='compact-card-right'>" +
"<p>+</p>" +
"</div>";
'<p>+</p>' +
'</div>';
cardContainer.querySelector('.card-role').innerText = card.role;
cardContainer.title = card.role;
@@ -455,7 +452,7 @@ function constructCompactDeckBuilderElement(card, deckManager) {
updateDeckStatus(deckManager);
cardContainer.querySelector('.card-quantity').innerText = deckManager.getCard(card.role).quantity;
if (deckManager.getCard(card.role).quantity > 0) {
document.getElementById('card-' + card.role.replaceAll(' ', '-')).classList.add('selected-card')
document.getElementById('card-' + card.role.replaceAll(' ', '-')).classList.add('selected-card');
}
});
cardContainer.querySelector('.compact-card-left').addEventListener('click', () => {
@@ -463,95 +460,95 @@ function constructCompactDeckBuilderElement(card, deckManager) {
updateDeckStatus(deckManager);
cardContainer.querySelector('.card-quantity').innerText = deckManager.getCard(card.role).quantity;
if (deckManager.getCard(card.role).quantity === 0) {
document.getElementById('card-' + card.role.replaceAll(' ', '-')).classList.remove('selected-card')
document.getElementById('card-' + card.role.replaceAll(' ', '-')).classList.remove('selected-card');
}
});
return cardContainer;
}
function initializeRemainingEventListeners(deckManager) {
document.getElementById("role-form").onsubmit = (e) => {
function initializeRemainingEventListeners (deckManager) {
document.getElementById('role-form').onsubmit = (e) => {
e.preventDefault();
let name = document.getElementById("role-name").value.trim();
let description = document.getElementById("role-description").value.trim();
let team = document.getElementById("role-alignment").value.toLowerCase().trim();
const name = document.getElementById('role-name').value.trim();
const description = document.getElementById('role-description').value.trim();
const team = document.getElementById('role-alignment').value.toLowerCase().trim();
if (deckManager.createMode) {
if (!deckManager.getCustomRoleOption(name) && !deckManager.getCard(name)) { // confirm there is no existing custom role with the same name
processNewCustomRoleSubmission(name, description, team, deckManager,false);
processNewCustomRoleSubmission(name, description, team, deckManager, false);
} else {
toast("There is already a role with this name", "error", true, true, 3);
toast('There is already a role with this name', 'error', true, true, 3);
}
} else {
let option = deckManager.getCustomRoleOption(deckManager.currentlyEditingRoleName);
const option = deckManager.getCustomRoleOption(deckManager.currentlyEditingRoleName);
if (name === option.role) { // did they edit the name?
processNewCustomRoleSubmission(name, description, team, deckManager,true, option);
processNewCustomRoleSubmission(name, description, team, deckManager, true, option);
} else {
if (!deckManager.getCustomRoleOption(name) && !deckManager.getCard(name)) {
processNewCustomRoleSubmission(name, description, team, deckManager, true, option);
} else {
toast("There is already a role with this name", "error", true, true, 3);
toast('There is already a role with this name', 'error', true, true, 3);
}
}
}
}
document.getElementById("custom-role-btn").addEventListener(
"click", () => {
let createBtn = document.getElementById("create-role-button");
createBtn.setAttribute("value", "Create");
};
document.getElementById('custom-role-btn').addEventListener(
'click', () => {
const createBtn = document.getElementById('create-role-button');
createBtn.setAttribute('value', 'Create');
deckManager.createMode = true;
deckManager.currentlyEditingRoleName = null;
document.getElementById("role-name").value = "";
document.getElementById("role-alignment").value = globals.ALIGNMENT.GOOD;
document.getElementById("role-description").value = "";
document.getElementById('role-name').value = '';
document.getElementById('role-alignment').value = globals.ALIGNMENT.GOOD;
document.getElementById('role-description').value = '';
ModalManager.displayModal(
"role-modal",
"modal-background",
"close-modal-button"
)
'role-modal',
'modal-background',
'close-modal-button'
);
}
)
);
}
function processNewCustomRoleSubmission(name, description, team, deckManager, isUpdate, option=null) {
function processNewCustomRoleSubmission (name, description, team, deckManager, isUpdate, option = null) {
if (name.length > 40) {
toast('Your name is too long (max 40 characters).', "error", true);
toast('Your name is too long (max 40 characters).', 'error', true);
return;
}
if (description.length > 500) {
toast('Your description is too long (max 500 characters).', "error", true);
toast('Your description is too long (max 500 characters).', 'error', true);
return;
}
if (isUpdate) {
deckManager.updateCustomRoleOption(option, name, description, team);
ModalManager.dispelModal("role-modal", "modal-background");
toast("Role Updated", "success", true);
ModalManager.dispelModal('role-modal', 'modal-background');
toast('Role Updated', 'success', true);
} else {
deckManager.addToCustomRoleOptions({role: name, description: description, team: team, custom: true});
ModalManager.dispelModal("role-modal", "modal-background");
toast("Role Created", "success", true);
deckManager.addToCustomRoleOptions({ role: name, description: description, team: team, custom: true });
ModalManager.dispelModal('role-modal', 'modal-background');
toast('Role Created', 'success', true);
}
updateCustomRoleOptionsList(deckManager, document.getElementById("deck-select"));
updateCustomRoleOptionsList(deckManager, document.getElementById('deck-select'));
}
function updateCustomRoleOptionsList(deckManager, selectEl) {
function updateCustomRoleOptionsList (deckManager, selectEl) {
document.querySelectorAll('#deck-select .deck-select-role').forEach(e => e.remove());
addOptionsToList(deckManager, selectEl);
}
function addOptionsToList(deckManager, selectEl) {
let options = deckManager.getCurrentCustomRoleOptions();
function addOptionsToList (deckManager, selectEl) {
const options = deckManager.getCurrentCustomRoleOptions();
options.sort((a, b) => {
if (a.team !== b.team) {
return a.team === globals.ALIGNMENT.GOOD ? 1 : -1;
}
return a.role.localeCompare(b.role);
});
for (let i = 0; i < options.length; i ++) {
let optionEl = document.createElement("div");
for (let i = 0; i < options.length; i++) {
const optionEl = document.createElement('div');
optionEl.innerHTML = templates.DECK_SELECT_ROLE;
optionEl.classList.add('deck-select-role');
let alignmentClass = options[i].team === globals.ALIGNMENT.GOOD ? globals.ALIGNMENT.GOOD : globals.ALIGNMENT.EVIL
const alignmentClass = options[i].team === globals.ALIGNMENT.GOOD ? globals.ALIGNMENT.GOOD : globals.ALIGNMENT.EVIL;
optionEl.classList.add(alignmentClass);
optionEl.querySelector('.deck-select-role-name').innerText = options[i].role;
selectEl.appendChild(optionEl);
@@ -560,19 +557,19 @@ function addOptionsToList(deckManager, selectEl) {
addCustomRoleEventListeners(deckManager, selectEl);
}
function addCustomRoleEventListeners(deckManager, select) {
function addCustomRoleEventListeners (deckManager, select) {
document.querySelectorAll('.deck-select-role').forEach((role) => {
let name = role.querySelector('.deck-select-role-name').innerText;
const name = role.querySelector('.deck-select-role-name').innerText;
role.querySelector('.deck-select-include').addEventListener('click', (e) => {
e.preventDefault();
if (!deckManager.getCard(name)) {
deckManager.addToDeck(name);
let cardEl = constructCompactDeckBuilderElement(deckManager.getCard(name), deckManager);
const cardEl = constructCompactDeckBuilderElement(deckManager.getCard(name), deckManager);
toast('"' + name + '" made available below.', 'success', true, true, 4);
if (deckManager.getCard(name).team === globals.ALIGNMENT.GOOD) {
document.getElementById("deck-good").appendChild(cardEl);
document.getElementById('deck-good').appendChild(cardEl);
} else {
document.getElementById("deck-evil").appendChild(cardEl);
document.getElementById('deck-evil').appendChild(cardEl);
}
updateCustomRoleOptionsList(deckManager, select);
} else {
@@ -589,52 +586,48 @@ function addCustomRoleEventListeners(deckManager, select) {
});
role.querySelector('.deck-select-info').addEventListener('click', (e) => {
let alignmentEl = document.getElementById("custom-role-info-modal-alignment");
const alignmentEl = document.getElementById('custom-role-info-modal-alignment');
alignmentEl.classList.remove(globals.ALIGNMENT.GOOD);
alignmentEl.classList.remove(globals.ALIGNMENT.EVIL);
e.preventDefault();
let option = deckManager.getCustomRoleOption(name);
document.getElementById("custom-role-info-modal-name").innerText = name;
const option = deckManager.getCustomRoleOption(name);
document.getElementById('custom-role-info-modal-name').innerText = name;
alignmentEl.classList.add(option.team);
document.getElementById("custom-role-info-modal-description").innerText = option.description;
document.getElementById('custom-role-info-modal-description').innerText = option.description;
alignmentEl.innerText = option.team;
ModalManager.displayModal("custom-role-info-modal", "modal-background", "close-custom-role-info-modal-button");
ModalManager.displayModal('custom-role-info-modal', 'modal-background', 'close-custom-role-info-modal-button');
});
role.querySelector('.deck-select-edit').addEventListener('click', (e) => {
e.preventDefault();
let option = deckManager.getCustomRoleOption(name);
document.getElementById("role-name").value = option.role;
document.getElementById("role-alignment").value = option.team;
document.getElementById("role-description").value = option.description;
const option = deckManager.getCustomRoleOption(name);
document.getElementById('role-name').value = option.role;
document.getElementById('role-alignment').value = option.team;
document.getElementById('role-description').value = option.description;
deckManager.createMode = false;
deckManager.currentlyEditingRoleName = option.role;
let createBtn = document.getElementById("create-role-button");
createBtn.setAttribute("value", "Update");
ModalManager.displayModal("role-modal", "modal-background", "close-modal-button");
const createBtn = document.getElementById('create-role-button');
createBtn.setAttribute('value', 'Update');
ModalManager.displayModal('role-modal', 'modal-background', 'close-modal-button');
});
});
}
function displayCustomRoleModalInAddOrEditMode() {
let ad
}
function updateDeckStatus(deckManager) {
function updateDeckStatus (deckManager) {
document.querySelectorAll('.deck-role').forEach((el) => el.remove());
document.getElementById("deck-count").innerText = deckManager.getDeckSize() + " Players";
document.getElementById('deck-count').innerText = deckManager.getDeckSize() + ' Players';
if (deckManager.getDeckSize() === 0) {
let placeholder = document.createElement("div");
placeholder.setAttribute("id", "deck-list-placeholder");
placeholder.innerText = "Add a card from the available roles below.";
document.getElementById("deck-list").appendChild(placeholder);
const placeholder = document.createElement('div');
placeholder.setAttribute('id', 'deck-list-placeholder');
placeholder.innerText = 'Add a card from the available roles below.';
document.getElementById('deck-list').appendChild(placeholder);
} else {
if (document.getElementById("deck-list-placeholder")) {
document.getElementById("deck-list-placeholder").remove();
if (document.getElementById('deck-list-placeholder')) {
document.getElementById('deck-list-placeholder').remove();
}
for (let card of deckManager.getCurrentDeck()) {
for (const card of deckManager.getCurrentDeck()) {
if (card.quantity > 0) {
let roleEl = document.createElement("div");
const roleEl = document.createElement('div');
roleEl.classList.add('deck-role');
if (card.team === globals.ALIGNMENT.GOOD) {
roleEl.classList.add(globals.ALIGNMENT.GOOD);
@@ -642,12 +635,12 @@ function updateDeckStatus(deckManager) {
roleEl.classList.add(globals.ALIGNMENT.EVIL);
}
roleEl.innerText = card.quantity + 'x ' + card.role;
document.getElementById("deck-list").appendChild(roleEl);
document.getElementById('deck-list').appendChild(roleEl);
}
}
}
}
function hasTimer(hours, minutes) {
function hasTimer (hours, minutes) {
return (!isNaN(hours) || !isNaN(minutes));
}