Refactor index.js
This commit is contained in:
175
src/index.js
175
src/index.js
@@ -1,91 +1,62 @@
|
||||
import * as panzoom from './modules/pan-zoom.js';
|
||||
import * as gameboard from './modules/gameboard.js';
|
||||
import * as recordSheet from './modules/record_sheet.js';
|
||||
import * as mapSelectDialog from './modules/map_select_dialog.js';
|
||||
|
||||
globalThis.svgns = "http://www.w3.org/2000/svg";
|
||||
|
||||
const mapPlaceholder = document.querySelector('.map-placeholder'),
|
||||
distanceOutput = document.getElementById('status'),
|
||||
proneToggle = document.getElementById('toggle-prone-counter'),
|
||||
object = document.querySelector('object');
|
||||
object = document.querySelector('object'),
|
||||
contentVisToggleEl = document.querySelector('#content input[type="checkbox"].visible'),
|
||||
|
||||
object.addEventListener('load', function (e) {
|
||||
mapPlaceholder.remove();
|
||||
this.style.opacity = 1;
|
||||
|
||||
const svg = this.contentDocument.querySelector('svg');
|
||||
panzoom.start(svg);
|
||||
gameboard.start(svg);
|
||||
|
||||
recordSheet.clear();
|
||||
|
||||
const recordTemplate = document.querySelector('template#soldier-record-block');
|
||||
const startLoc = svg.querySelector('.start-locations');
|
||||
const forces = recordSheet.createRecords(gameboard.getUnits(), recordTemplate);
|
||||
|
||||
for (const affiliation in forces) {
|
||||
const container = document.querySelector(`#${affiliation}-record`);
|
||||
const name = startLoc.dataset[`${affiliation}Name`];
|
||||
if (name) {
|
||||
container.querySelector('.name').textContent = name;
|
||||
}
|
||||
forces[affiliation].forEach(r => container.appendChild(r));
|
||||
}
|
||||
|
||||
document.querySelectorAll('.soldier-record').forEach(el =>
|
||||
el.addEventListener('click', () => {
|
||||
if (el.classList.contains('selected')) {
|
||||
el.classList.remove('selected');
|
||||
gameboard.unSelect();
|
||||
recordSheet.unSelect();
|
||||
toggleContentVis = (function () {
|
||||
document.querySelectorAll('#content div').forEach(div => {
|
||||
if (this.checked) {
|
||||
div.style.display = div.id == 'record-sheet' ? 'flex' : 'block';
|
||||
} else {
|
||||
gameboard.select(el);
|
||||
div.style.display = 'none';
|
||||
}
|
||||
})
|
||||
);
|
||||
});
|
||||
|
||||
window.game = gameboard;
|
||||
});
|
||||
localStorage.setItem('content-visibility', this.checked);
|
||||
}).bind(contentVisToggleEl);
|
||||
|
||||
gameboard.setDistanceCallback((count = '-') => {
|
||||
distanceOutput.querySelector('#hex-count').textContent = count;
|
||||
distanceOutput.style.display = count === '-' ? 'none' : 'block';
|
||||
});
|
||||
function updateTurnCounter() {
|
||||
const turnCounter = document.getElementById('turn-count');
|
||||
|
||||
gameboard.setProneFlagCallback(checked => proneToggle.checked = checked);
|
||||
gameboard.setSelectCallback(data => recordSheet.select(data));
|
||||
if (turnCounter.dataset.update === '1') {
|
||||
turnCounter.children.namedItem('count').textContent++;
|
||||
turnCounter.dataset.update = '0';
|
||||
} else {
|
||||
turnCounter.dataset.update = '1';
|
||||
}
|
||||
}
|
||||
|
||||
document.querySelectorAll('.end-move').forEach(el => el.addEventListener('click', () => {
|
||||
recordSheet.endMove();
|
||||
gameboard.endMove();
|
||||
}));
|
||||
function enableEndTurnButton(allegiance) {
|
||||
document
|
||||
.querySelector(`button.end-turn:not([data-allegiance="${allegiance}"])`)
|
||||
.removeAttribute('disabled');
|
||||
}
|
||||
|
||||
function clearMoveEndedIndicators(records) {
|
||||
records.forEach(el => el.classList.remove('movement-ended'));
|
||||
}
|
||||
|
||||
document.querySelectorAll('.end-turn').forEach(el =>
|
||||
el.addEventListener('click', ({ target: { dataset: { allegiance }}}) => {
|
||||
const dataSelector = `[data-allegiance="${allegiance}"]`,
|
||||
records = Array.from(document.querySelectorAll(`.soldier-record${dataSelector}`)),
|
||||
turnCounter = document.getElementById('turn-count'),
|
||||
{ dataset: { update }} = turnCounter;
|
||||
el.addEventListener('click', ({ target: { dataset: { allegiance: opponent }}}) => {
|
||||
const dataSelector = `[data-allegiance="${opponent}"]`,
|
||||
opponentRecords = Array.from(document.querySelectorAll(`.soldier-record${dataSelector}`)),
|
||||
firstOpponentRecord = opponentRecords.sort((el1, el2) => el1.dataset.number > el2.dataset.number).at(0);
|
||||
|
||||
el.setAttribute('disabled', '');
|
||||
updateTurnCounter();
|
||||
enableEndTurnButton(opponent);
|
||||
clearMoveEndedIndicators(opponentRecords);
|
||||
|
||||
document
|
||||
.querySelector(`button.end-turn:not([data-allegiance="${allegiance}"])`)
|
||||
.removeAttribute('disabled');
|
||||
|
||||
if (update === '1') {
|
||||
turnCounter.children.namedItem('count').textContent++
|
||||
turnCounter.dataset.update = '0';
|
||||
} else {
|
||||
turnCounter.dataset.update = '1';
|
||||
}
|
||||
|
||||
records
|
||||
.sort((el1, el2) => el1.dataset.number > el2.dataset.number)
|
||||
.forEach(el => el.classList.remove('movement-ended'));
|
||||
|
||||
gameboard.endTurn(allegiance);
|
||||
gameboard.select(records.at(0));
|
||||
gameboard.clearFiringArcs(opponent);
|
||||
gameboard.select(firstOpponentRecord);
|
||||
})
|
||||
);
|
||||
|
||||
@@ -104,47 +75,41 @@ document.getElementById('toggle-prone-counter').addEventListener('input', functi
|
||||
selected && gameboard.toggleProne();
|
||||
});
|
||||
|
||||
object.data = `${localStorage.getItem('map') || 'map1'}.svg`;
|
||||
|
||||
const contentVisToggleEl = document.querySelector('#content input[type="checkbox"].visible');
|
||||
contentVisToggleEl.checked = (localStorage.getItem('content-visibility') !== 'false');
|
||||
|
||||
const toggleContentVis = (function () {
|
||||
document.querySelectorAll('#content div').forEach(div => {
|
||||
if (this.checked) {
|
||||
div.style.display = div.id == 'record-sheet' ? 'flex' : 'block';
|
||||
} else {
|
||||
div.style.display = 'none';
|
||||
}
|
||||
});
|
||||
|
||||
localStorage.setItem('content-visibility', this.checked);
|
||||
}).bind(contentVisToggleEl);
|
||||
|
||||
toggleContentVis();
|
||||
contentVisToggleEl.addEventListener('input', toggleContentVis);
|
||||
|
||||
const showButton = document.getElementById('show-dialog'),
|
||||
mapDialog = document.getElementById('map-dialog'),
|
||||
selectEl = mapDialog.querySelector('select'),
|
||||
confirmBtn = mapDialog.querySelector('#confirm-btn');
|
||||
|
||||
mapDialog.querySelectorAll('option').forEach(option =>
|
||||
option.value === localStorage.getItem('map') && (option.selected = true)
|
||||
);
|
||||
|
||||
showButton.addEventListener('click', () => {
|
||||
mapDialog.showModal();
|
||||
gameboard.setDistanceCallback((count = '-') => {
|
||||
distanceOutput.querySelector('#hex-count').textContent = count;
|
||||
distanceOutput.style.display = count === '-' ? 'none' : 'block';
|
||||
});
|
||||
|
||||
selectEl.addEventListener('change', () => {
|
||||
confirmBtn.value = selectEl.value;
|
||||
gameboard.setProneFlagCallback(checked => proneToggle.checked = checked);
|
||||
gameboard.setSelectCallback(data => recordSheet.select(data));
|
||||
|
||||
document.querySelectorAll('.end-move').forEach(el => el.addEventListener('click', () => {
|
||||
recordSheet.endMove();
|
||||
gameboard.endMove();
|
||||
}));
|
||||
|
||||
object.addEventListener('load', function () {
|
||||
mapPlaceholder.remove();
|
||||
this.style.opacity = 1;
|
||||
|
||||
const svg = this.contentDocument.querySelector('svg'),
|
||||
startLocs = svg.querySelector('.start-locations');
|
||||
|
||||
panzoom.start(svg);
|
||||
gameboard.start(svg);
|
||||
recordSheet.start(startLocs, gameboard.getUnits(), gameboard.unSelect, gameboard.select);
|
||||
});
|
||||
|
||||
confirmBtn.addEventListener('click', e => {
|
||||
e.preventDefault();
|
||||
localStorage.removeItem('pan-zoom');
|
||||
localStorage.setItem('map', selectEl.value);
|
||||
document.querySelector('object').data = `${selectEl.value}.svg`;
|
||||
mapDialog.close();
|
||||
});
|
||||
contentVisToggleEl.checked = (localStorage.getItem('content-visibility') !== 'false');
|
||||
toggleContentVis();
|
||||
|
||||
mapSelectDialog
|
||||
.init()
|
||||
.selectCurrentOptionOnPageLoad()
|
||||
.showOnClick()
|
||||
.updateValueOnSelection()
|
||||
.changeMapOnConfirm();
|
||||
|
||||
object.data = `${localStorage.getItem('map') || 'map1'}.svg`;
|
||||
|
||||
Reference in New Issue
Block a user