X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FMoveList.vue;h=ca538924290b548d9c88b3dab55f51e1de252724;hb=96e9585a39ca3ccef59c701b3f7ac3809692ca73;hp=70756cc3d4ff0be7b4ca5eabbe363f2cb54f9bfd;hpb=430a203855578f9bbf4c851165c6066a741ff1f8;p=vchess.git diff --git a/client/src/components/MoveList.vue b/client/src/components/MoveList.vue index 70756cc3..ca538924 100644 --- a/client/src/components/MoveList.vue +++ b/client/src/components/MoveList.vue @@ -6,13 +6,13 @@ div table#movesList tbody tr(v-for="moveIdx in evenNumbers") - td {{ moveIdx / 2 + 1 }} + td {{ firstNum + moveIdx / 2 + 1 }} td(:class="{'highlight-lm': cursor == moveIdx}" - data-label="White move" @click="() => gotoMove(moveIdx)") + @click="() => gotoMove(moveIdx)") | {{ moves[moveIdx].notation }} td(v-if="moveIdx < moves.length-1" :class="{'highlight-lm': cursor == moveIdx+1}" - data-label="Black move" @click="() => gotoMove(moveIdx+1)") + @click="() => gotoMove(moveIdx+1)") | {{ moves[moveIdx+1].notation }} // Else: just add an empty cell td(v-else) @@ -22,17 +22,19 @@ div // Component for moves list on the right export default { name: 'my-move-list', - props: ["moves","cursor","score","message"], + props: ["moves","cursor","score","message","firstNum"], watch: { cursor: function(newValue) { + if (newValue < 0) + newValue = 0; //avoid rows[-1] --> error // $nextTick to wait for table > tr to be rendered this.$nextTick( () => { let rows = document.querySelectorAll('#movesList tr'); if (rows.length > 0) { rows[Math.floor(newValue/2)].scrollIntoView({ - behavior: 'smooth', - block: 'center' + behavior: "auto", + block: "nearest", }); } }); @@ -57,98 +59,3 @@ export default { td.highlight-lm background-color: plum - -