X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FMoveList.vue;h=73c10f0fbf771c87084fa030e009effa547aab71;hb=144c900354f828ff2321a94db364bf436bff4586;hp=70756cc3d4ff0be7b4ca5eabbe363f2cb54f9bfd;hpb=430a203855578f9bbf4c851165c6066a741ff1f8;p=vchess.git diff --git a/client/src/components/MoveList.vue b/client/src/components/MoveList.vue index 70756cc3..73c10f0f 100644 --- a/client/src/components/MoveList.vue +++ b/client/src/components/MoveList.vue @@ -3,16 +3,17 @@ div #scoreInfo(v-if="score!='*'") p {{ score }} p {{ message }} - table#movesList + table.moves-list tbody - tr(v-for="moveIdx in evenNumbers") - td {{ moveIdx / 2 + 1 }} + tr(v-for="gmove,index in groupedMoves") + td(v-if="index%2==0") + | {{ firstNum + index / 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,25 +23,45 @@ 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 (window.innerWidth <= 767) + return; //moves list is below: scrolling would hide chessboard + 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", }); } }); }, }, computed: { - evenNumbers: function() { - return [...Array(this.moves.length).keys()].filter(i => i%2==0); + groupedMoves: function() { + let groups = []; + let curCol = undefined; + for (let idx=0; idx < this.moves.length; idx++) + { + const m = this.moves[idx]; + if (m.color == curCol) + { + const gidx = groups.length - 1; + groups[gidx].moves.push(m); + } + else + { + curCol = m.color; + groups.push({moves: [m], idx: groups.length}); + } + } + return groups; }, }, methods: { @@ -54,101 +75,14 @@ export default { - -