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,165 +1,165 @@
export const templates = {
LOBBY:
"<div id='lobby-header'>" +
"<div>" +
'<div>' +
"<label for='game-link'>Share Link</label>" +
"<div id='game-link'></div>" +
"</div>" +
'</div>' +
"<div id='game-parameters'>" +
"<div>" +
'<div>' +
"<img alt='clock' src='/images/clock.svg'/>" +
"<div id='game-time'></div>" +
"</div>" +
"<div>" +
'</div>' +
'<div>' +
"<img alt='person' src='/images/person.svg'/>" +
"<div id='game-player-count'></div>" +
"</div>" +
"</div>" +
"<div>" +
'</div>' +
'</div>' +
'<div>' +
"<button id='role-info-button' class='app-button'>View Role Info <img src='/images/info.svg'</button>" +
"</div>" +
"</div>" +
"<div>" +
'</div>' +
'</div>' +
'<div>' +
"<div id='lobby-people-container'>" +
"<label for='lobby-players'>Other People</label>" +
"<div id='lobby-players'></div>" +
"</div>" +
'</div>' +
"<div id='lobby-footer'>" +
"<div id='game-deck'></div>" +
"</div>" +
"</div>",
'</div>' +
'</div>',
START_GAME_PROMPT:
"<div id='start-game-prompt'>" +
"<button id='start-game-button'>Start Game</button>" +
"</div>",
'</div>',
END_GAME_PROMPT:
"<div id='end-game-prompt'>" +
"<button id='end-game-button'>End Game</button>" +
"</div>",
'</div>',
PLAYER_GAME_VIEW:
"<div id='game-header'>" +
"<div>" +
'<div>' +
"<label for='game-timer'>Time Remaining</label>" +
"<div id='game-timer'></div>" +
"</div>" +
"<div>" +
'</div>' +
'<div>' +
"<button id='role-info-button' class='app-button'>View Role Info <img src='/images/info.svg'</button>" +
"</div>" +
"</div>" +
'</div>' +
'</div>' +
"<div id='game-role' style='display:none'>" +
"<h4 id='role-name'></h4>" +
"<img alt='role' id='role-image'/>" +
"<p id='role-description'></p>" +
"</div>" +
'</div>' +
"<div id='game-role-back'>" +
"<h4>Click to show your role</h4>" +
"<p>(click again to hide)</p>" +
"</div>" +
'<h4>Click to show your role</h4>' +
'<p>(click again to hide)</p>' +
'</div>' +
"<div id='game-people-container'>" +
"<label id='players-alive-label'></label>" +
"<div id='game-player-list'></div>" +
"</div>",
'</div>',
SPECTATOR_GAME_VIEW:
"<div id='game-header'>" +
"<div>" +
'<div>' +
"<label for='game-timer'>Time Remaining</label>" +
"<div id='game-timer'></div>" +
"</div>" +
"<div>" +
'</div>' +
'<div>' +
"<button id='role-info-button' class='app-button'>View Role Info <img src='/images/info.svg'</button>" +
"</div>" +
"</div>" +
'</div>' +
'</div>' +
"<div id='game-people-container'>" +
"<label id='players-alive-label'></label>" +
"<div id='game-player-list'></div>" +
"</div>",
'</div>',
MODERATOR_GAME_VIEW:
"<div id='transfer-mod-modal-background' class='modal-background' style='display: none'></div>" +
"<div id='transfer-mod-modal' class='modal' style='display: none'>" +
"<h3>Transfer Mod Powers &#128081;</h3>" +
'<h3>Transfer Mod Powers &#128081;</h3>' +
"<div id='transfer-mod-modal-content'></div>" +
"<div class='modal-button-container'>" +
"<button id='close-mod-transfer-modal-button' class='app-button cancel'>Cancel</button>" +
"</div>" +
"</div>" +
'</div>' +
'</div>' +
"<div id='game-header'>" +
"<div class='timer-container-moderator'>" +
"<div>" +
'<div>' +
"<label for='game-timer'>Time Remaining</label>" +
"<div id='game-timer'></div>" +
"</div>" +
"<div id='play-pause'>" + "</div>" +
"</div>" +
'</div>' +
"<div id='play-pause'>" + '</div>' +
'</div>' +
"<button id='mod-transfer-button' class='moderator-player-button make-mod-button'>Transfer Mod Powers \uD83D\uDD00</button>" +
"<div>" +
'<div>' +
"<button id='role-info-button' class='app-button'>View Role Info <img src='/images/info.svg'</button>" +
"</div>" +
"</div>" +
"<div>" +
'</div>' +
'</div>' +
'<div>' +
"<label id='players-alive-label'></label>" +
"<div id='game-player-list'>" +
"<div class='evil-players'>" +
"<label class='evil'>Team Evil</label>" +
"<div id='player-list-moderator-team-evil'></div>" +
"</div>" +
'</div>' +
"<div class='good-players'>" +
"<label class='good'>Team Good</label>" +
"<div id='player-list-moderator-team-good'></div>" +
"</div>" +
"</div>" +
"</div>",
'</div>' +
'</div>' +
'</div>',
TEMP_MOD_GAME_VIEW:
"<div id='transfer-mod-modal-background' class='modal-background' style='display: none'></div>" +
"<div id='transfer-mod-modal' class='modal' style='display: none'>" +
"<form id='transfer-mod-form'>" +
"<div id='transfer-mod-form-content'>" +
"<h3>Transfer Mod Powers &#128081;</h3>" +
"</div>" +
'<h3>Transfer Mod Powers &#128081;</h3>' +
'</div>' +
"<div class='modal-button-container'>" +
"<button id='close-modal-button' class='cancel app-button'>Cancel</button>" +
"</div>" +
"</form>" +
"</div>" +
'</div>' +
'</form>' +
'</div>' +
"<div id='game-header'>" +
"<div class='timer-container-moderator'>" +
"<div>" +
'<div>' +
"<label for='game-timer'>Time Remaining</label>" +
"<div id='game-timer'></div>" +
"</div>" +
"<div id='play-pause'>" + "</div>" +
"</div>" +
"<div>" +
'</div>' +
"<div id='play-pause'>" + '</div>' +
'</div>' +
'<div>' +
"<button id='role-info-button' class='app-button'>View Role Info <img src='/images/info.svg'</button>" +
"</div>" +
"</div>" +
'</div>' +
'</div>' +
"<div id='game-role' style='display:none'>" +
"<h4 id='role-name'></h4>" +
"<img alt='role' id='role-image'/>" +
"<p id='role-description'></p>" +
"</div>" +
'</div>' +
"<div id='game-role-back'>" +
"<h4>Click to show your role</h4>" +
"<p>(click again to hide)</p>" +
"</div>" +
'<h4>Click to show your role</h4>' +
'<p>(click again to hide)</p>' +
'</div>' +
"<div id='game-people-container'>" +
"<label id='players-alive-label'></label>" +
"<div id='game-player-list'></div>" +
"</div>" +
"</div>",
'</div>' +
'</div>',
MODERATOR_PLAYER:
"<div>" +
'<div>' +
"<div class='game-player-name'></div>" +
"<div class='game-player-role'></div>" +
"</div>" +
'</div>' +
"<div class='player-action-buttons'>" +
"<button class='moderator-player-button kill-player-button'>Kill \uD83D\uDC80</button>" +
"<button class='moderator-player-button reveal-role-button'>Reveal <img src='../images/eye.svg'/></button>" +
"</div>",
'</div>',
GAME_PLAYER:
"<div>" +
'<div>' +
"<div class='game-player-name'></div>" +
"<div class='game-player-role'></div>" +
"</div>",
'</div>',
INITIAL_GAME_DOM:
"<div id='game-title'></div>" +
"<div id='client-container'>" +
@@ -167,25 +167,25 @@ export const templates = {
"<div id='client'>" +
"<div id='client-name'></div>" +
"<div id='client-user-type'></div>" +
"</div>" +
"</div>" +
'</div>' +
'</div>' +
"<div id='game-state-container'></div>",
// via https://loading.io/css/
SPINNER:
"<div class=\"lds-spinner\">" +
"<div></div>" +
"<div></div>" +
"<div></div>" +
"<div></div>" +
"<div></div>" +
"<div></div>" +
"<div></div>" +
"<div></div>" +
"<div></div>" +
"<div></div>" +
"<div></div>" +
"<div></div>" +
"</div>",
'<div class="lds-spinner">' +
'<div></div>' +
'<div></div>' +
'<div></div>' +
'<div></div>' +
'<div></div>' +
'<div></div>' +
'<div></div>' +
'<div></div>' +
'<div></div>' +
'<div></div>' +
'<div></div>' +
'<div></div>' +
'</div>',
NAME_CHANGE_MODAL:
"<div id='change-name-modal-background' class='modal-background'></div>" +
"<div id='change-name-modal' class='modal'>" +
@@ -193,50 +193,50 @@ export const templates = {
"<div id='transfer-mod-form-content'>" +
"<label for='player-new-name'>Your name:</label>" +
"<input id='player-new-name' type='text'/>" +
"</div>" +
'</div>' +
"<div class='modal-button-container'>" +
"<input type='submit' id='submit-new-name' value='Set Name'/>" +
"</div>" +
"</form>" +
"</div>",
'</div>' +
'</form>' +
'</div>',
ROLE_INFO_MODAL:
"<div id='role-info-modal-background' class='modal-background'></div>" +
"<div id='role-info-modal' class='modal'>" +
"<h2>Roles in this game:</h2>" +
'<h2>Roles in this game:</h2>' +
"<div id='game-role-info-container'></div>" +
"<div class='modal-button-container'>" +
"<button id='close-role-info-modal-button' class='app-button'>Close</button>" +
"</div>" +
"</div>",
'</div>' +
'</div>',
END_OF_GAME_VIEW:
"<h2>The moderator has ended the game. Roles are revealed.</h2>" +
'<h2>The moderator has ended the game. Roles are revealed.</h2>' +
"<div id='end-of-game-header'>" +
"<div>" +
'<div>' +
"<button id='role-info-button' class='app-button'>View Role Info <img src='/images/info.svg'</button>" +
"</div>" +
"<div>" +
'</div>' +
'<div>' +
"<a href='/'>" +
"<button class='app-button'>Go Home \uD83C\uDFE0</button>" +
"</a>" +
"</div>" +
"</div>" +
'</a>' +
'</div>' +
'</div>' +
"<div id='game-people-container'>" +
"<label id='players-alive-label'></label>" +
"<div id='game-player-list'></div>" +
"</div>",
'</div>',
CREATE_GAME_DECK:
"<div id='deck-container'>" +
"<div>" +
'<div>' +
"<label for='deck-good'>Available Good Roles</label>" +
"<div id='deck-good'></div>" +
"</div>" +
"<div>" +
'</div>' +
'<div>' +
"<label for='deck-evil'>Available Evil Roles</label>" +
"<div id='deck-evil'></div>" +
"</div>" +
"</div>",
'</div>' +
'</div>',
CREATE_GAME_CUSTOM_ROLES:
'<div id=\"custom-roles-container\">' +
'<div id="custom-roles-container">' +
'<button id="custom-role-hamburger" class="hamburger hamburger--collapse" type="button">' +
'<span class="hamburger-box">' +
'<span class="hamburger-inner"></span>' +
@@ -246,9 +246,9 @@ export const templates = {
'<div class="custom-role-action" id="custom-roles-export">Export</div>' +
'<div class="custom-role-action" id="custom-roles-import">Import</div>' +
'</div>' +
'<label for=\"add-card-to-deck-form\">Custom Role Box</label>' +
'<div id=\"deck-select\"></div>' +
'<button id=\"custom-role-btn\" class=\"app-button\">+ Create Custom Role</button>' +
'<label for="add-card-to-deck-form">Custom Role Box</label>' +
'<div id="deck-select"></div>' +
'<button id="custom-role-btn" class="app-button">+ Create Custom Role</button>' +
'</div>',
CREATE_GAME_DECK_STATUS:
'<div id="deck-status-container">' +
@@ -263,4 +263,4 @@ export const templates = {
'<img class="deck-select-edit" src="images/pencil.svg" title="edit" alt="edit"/>' +
'<img class="deck-select-remove" src="images/delete.svg" title="remove" alt="remove"/>' +
'</div>'
}
};