X-Git-Url: https://git.auder.net/?p=vchess.git;a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FSettings.vue;h=6034ab45424e15fcd57fb4097d8242ad419b58bc;hp=b7dd9b8ea88ae6ba7cf6972f8df8f55c66dc79aa;hb=dcd68c4108412f45b8ce119ae80ce8f6e296800b;hpb=6cd07b4da66403ab2ff751b1c0361fa237cd0ed2 diff --git a/client/src/components/Settings.vue b/client/src/components/Settings.vue index b7dd9b8e..6034ab45 100644 --- a/client/src/components/Settings.vue +++ b/client/src/components/Settings.vue @@ -1,12 +1,14 @@ @@ -46,6 +49,23 @@ export default { return { st: store.state, }; + }, + mounted: function() { + const boardSize = localStorage.getItem("boardSize"); + if (!!boardSize) + document.getElementById("myRange").value = Math.floor(boardSize / 10); + // timeout to avoid calling too many time the adjust method + let timeoutLaunched = false; + window.addEventListener("resize", (e) => { + if (!timeoutLaunched) + { + timeoutLaunched = true; + setTimeout( () => { + this.adjustBoard(); + timeoutLaunched = false; + }, 500); + } + }); }, methods: { updateSettings: function(event) { @@ -56,13 +76,19 @@ export default { : event.target.value; }, adjustBoard: function() { - const board = document.querySelector(".game"); - if (!board) + const boardContainer = document.getElementById("boardContainer"); + if (!boardContainer) return; //no board on page - const multiplier = document.getElementById("myRange").value; - const boardSize = 10 * multiplier; + const k = document.getElementById("myRange").value; + const movesWidth = (window.innerWidth >= 768 ? 280 : 0); + const minBoardWidth = 240; //TODO: same + // Value of 0 is board min size; 100 is window.width [- movesWidth] + const boardSize = minBoardWidth + + k * (window.innerWidth - (movesWidth+minBoardWidth)) / 100; localStorage.setItem("boardSize", boardSize); - board.style.width = boardSize + "px"; + boardContainer.style.width = boardSize + "px"; + document.getElementById("gameContainer").style.width = + (boardSize + movesWidth) + "px"; }, }, };