X-Git-Url: https://git.auder.net/?p=vchess.git;a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FHall.vue;h=a2ce34d9fd5d9409b0884d6b17e0925d9a3b6764;hp=0ade5e58bfa4519a3b60e1989ef538c1b51af18e;hb=25d183426e276870f57793f1f043c40a412d18c6;hpb=b1ea21493a31105d17cd600ff1d26ee6fd9e3f6f diff --git a/client/src/views/Hall.vue b/client/src/views/Hall.vue index 0ade5e58..a2ce34d9 100644 --- a/client/src/views/Hall.vue +++ b/client/src/views/Hall.vue @@ -14,15 +14,21 @@ main fieldset label(for="selectVariant") {{ st.tr["Variant"] }} select#selectVariant(v-model="newchallenge.vid") - option(v-for="v in st.variants" :value="v.id") {{ v.name }} + option(v-for="v in st.variants" :value="v.id" + :selected="newchallenge.vid==v.id") + | {{ v.name }} fieldset label(for="timeControl") {{ st.tr["Time control"] }} + div#predefinedTimeControls + button 3+2 + button 5+3 + button 15+5 input#timeControl(type="text" v-model="newchallenge.timeControl" - placeholder="3m+2s, 1h+30s, 7d+1d ...") + placeholder="5+0, 1h+30s, 7d+1d ...") fieldset(v-if="st.user.id > 0") label(for="selectPlayers") {{ st.tr["Play with? (optional)"] }} input#selectPlayers(type="text" v-model="newchallenge.to") - fieldset(v-if="st.user.id > 0") + fieldset(v-if="st.user.id > 0 && newchallenge.to.length > 0") label(for="inputFen") {{ st.tr["FEN (optional)"] }} input#inputFen(type="text" v-model="newchallenge.fen") button(@click="newChallenge") {{ st.tr["Send challenge"] }} @@ -96,9 +102,9 @@ export default { infoMessage: "", newchallenge: { fen: "", - vid: 0, + vid: localStorage.getItem("vid") || "", to: "", //name of challenged player (if any) - timeControl: "", //"2m+2s" ...etc + timeControl: localStorage.getItem("timeControl") || "", }, }; }, @@ -201,6 +207,13 @@ export default { }; this.st.conn.onclose = socketCloseListener; }, + mounted: function() { + document.querySelectorAll("#predefinedTimeControls > button").forEach( + (b) => { b.addEventListener("click", + () => { this.newchallenge.timeControl = b.innerHTML; } + )} + ); + }, methods: { // Helpers: filterChallenges: function(type) { @@ -452,6 +465,8 @@ export default { }; }, newChallenge: async function() { + if (this.newchallenge.vid == "") + return alert("Please select a variant"); const vname = this.getVname(this.newchallenge.vid); const vModule = await import("@/variants/" + vname + ".js"); window.V = vModule.VariantRules; @@ -503,6 +518,9 @@ export default { this.challenges.push(chall); if (ctype == "live") localStorage.setItem("challenge", JSON.stringify(chall)); + // Also remember timeControl + vid for quicker further challenges: + localStorage.setItem("timeControl", chall.timeControl); + localStorage.setItem("vid", chall.vid); document.getElementById("modalNewgame").checked = false; }; if (ctype == "live")