Web Dev Solutions

Catalin Mititiuc

aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCatalin Mititiuc <webdevcat@proton.me>2024-08-08 15:27:12 -0700
committerCatalin Mititiuc <webdevcat@proton.me>2024-08-08 15:27:12 -0700
commit23188152c91a8e638ab832fa1fa122d59d1fc391 (patch)
treed8568304a5b4b91f4864a540619493a511a4bb24 /src/modules/gameboard.js
parentb970b34a8848a65a44f1e3a64465270845371492 (diff)
Add additional params to observable calls; reveal counter and record logic on selections
Diffstat (limited to 'src/modules/gameboard.js')
-rw-r--r--src/modules/gameboard.js18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/modules/gameboard.js b/src/modules/gameboard.js
index e8fe575..6359083 100644
--- a/src/modules/gameboard.js
+++ b/src/modules/gameboard.js
@@ -181,10 +181,10 @@ function hasPreviousMoveInHistory(counter) {
}
function selectOffBoard() {
- Observable.notify('select', this);
+ Observable.notify('select', this, { revealRecord: true });
}
-function select(data) {
+function select(data, opts) {
const counter = data && (soldier.getCounter(svg, data) || soldier.createCounter(data));
const isSelected = data && data.classList && data.classList.contains('selected');
@@ -192,12 +192,12 @@ function select(data) {
if (isSelected || !data) return;
- counter.classList.add(soldier.getSelectedClass());
- const gb = svg.querySelector('.gameboard');
-
- // TODO check if counter is on board before calling
- manualPan(gb, counter);
+ if (opts?.revealCounter) {
+ const gb = svg.querySelector('.gameboard');
+ if (gb.contains(counter)) manualPan(gb, counter);
+ }
+ counter.classList.add(soldier.getSelectedClass());
firingArc.get(svg, counter).forEach(el => el.removeAttribute('clip-path'));
placing.push(counter);
}
@@ -362,10 +362,10 @@ export function start(el) {
if (toPlace === occupant) {
Observable.notify('select');
} else {
- Observable.notify('select', occupant);
+ Observable.notify('select', occupant, { revealRecord: true });
}
} else if (!toPlace && occupant) {
- Observable.notify('select', occupant);
+ Observable.notify('select', occupant, { revealRecord: true });
}
const selected = getSelected();