X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FProblems.vue;h=71f5c3e0f6e6d439076cff820e9e6c4b48741358;hb=42a9284896b9cf9a579d32b7cf77dfc1f5786472;hp=2d6ac6924a975c32d9189461d8f5c0beff7b1076;hpb=e71161fbfffe53b0f4b174e0467cdd98cc70b7b0;p=vchess.git diff --git a/client/src/views/Problems.vue b/client/src/views/Problems.vue index 2d6ac692..71f5c3e0 100644 --- a/client/src/views/Problems.vue +++ b/client/src/views/Problems.vue @@ -2,7 +2,7 @@ main input#modalNewprob.modal( type="checkbox" - @change="infoMsg=''" + @change="fenFocusIfOpened($event)" ) div#newprobDiv( role="dialog" @@ -56,7 +56,7 @@ main button.nomargin(@click="gotoPrevNext($event,curproblem,1)") | {{ st.tr["Previous"] }} button.nomargin(@click="gotoPrevNext($event,curproblem,-1)") - | {{ st.tr["Next"] }} + | {{ st.tr["Next_p"] }} p.oneInstructions.clickable( v-html="parseHtml(curproblem.instruction)" @click="curproblem.showSolution=!curproblem.showSolution" @@ -145,38 +145,50 @@ export default { }; }, created: function() { - ajax("/problems", "GET", res => { - // Show newest problem first: - this.problems = res.problems.sort((p1, p2) => p2.added - p1.added); - if (this.st.variants.length > 0) - this.problems.forEach(p => this.setVname(p)); - // Retrieve all problems' authors' names - let names = {}; - this.problems.forEach(p => { - if (p.uid != this.st.user.id) names[p.uid] = ""; - else p.uname = this.st.user.name; - }); - const showOneIfPid = () => { - const pid = this.$route.query["id"]; - if (pid) this.showProblem(this.problems.find(p => p.id == pid)); - }; - if (Object.keys(names).length > 0) { - ajax("/users", "GET", { ids: Object.keys(names).join(",") }, res2 => { - res2.users.forEach(u => { - names[u.id] = u.name; - }); + ajax( + "/problems", + "GET", + { + success: (res) => { + // Show newest problem first: + this.problems = res.problems.sort((p1, p2) => p2.added - p1.added); + if (this.st.variants.length > 0) + this.problems.forEach(p => this.setVname(p)); + // Retrieve all problems' authors' names + let names = {}; this.problems.forEach(p => { - if (!p.uname) - p.uname = names[p.uid]; + if (p.uid != this.st.user.id) names[p.uid] = ""; + else p.uname = this.st.user.name; }); - showOneIfPid(); - }); - } else showOneIfPid(); - }); + const showOneIfPid = () => { + const pid = this.$route.query["id"]; + if (pid) this.showProblem(this.problems.find(p => p.id == pid)); + }; + if (Object.keys(names).length > 0) { + ajax( + "/users", + "GET", + { + data: { ids: Object.keys(names).join(",") }, + success: (res2) => { + res2.users.forEach(u => { + names[u.id] = u.name; + }); + this.problems.forEach(p => { + if (!p.uname) + p.uname = names[p.uid]; + }); + showOneIfPid(); + } + } + ); + } else showOneIfPid(); + } + } + ); }, mounted: function() { - document - .getElementById("newprobDiv") + document.getElementById("newprobDiv") .addEventListener("click", processModalClick); }, watch: { @@ -193,6 +205,12 @@ export default { } }, methods: { + fenFocusIfOpened: function(event) { + if (event.target.checked) { + this.infoMsg = ""; + document.getElementById("inputFen").focus(); + } + }, setVname: function(prob) { prob.vname = this.st.variants.find(v => v.id == prob.vid).name; }, @@ -316,22 +334,24 @@ export default { ajax( "/problems", edit ? "PUT" : "POST", - { prob: this.curproblem }, - ret => { - if (edit) { - let editedP = this.problems.find(p => p.id == this.curproblem.id); - this.copyProblem(this.curproblem, editedP); - this.showProblem(editedP); + { + data: { prob: this.curproblem }, + success: (ret) => { + if (edit) { + let editedP = this.problems.find(p => p.id == this.curproblem.id); + this.copyProblem(this.curproblem, editedP); + this.showProblem(editedP); + } + else { + let newProblem = Object.assign({}, this.curproblem); + newProblem.id = ret.id; + newProblem.uid = this.st.user.id; + newProblem.uname = this.st.user.name; + this.problems = [newProblem].concat(this.problems); + } + document.getElementById("modalNewprob").checked = false; + this.infoMsg = ""; } - else { - let newProblem = Object.assign({}, this.curproblem); - newProblem.id = ret.id; - newProblem.uid = this.st.user.id; - newProblem.uname = this.st.user.name; - this.problems = [newProblem].concat(this.problems); - } - document.getElementById("modalNewprob").checked = false; - this.infoMsg = ""; } ); }, @@ -343,10 +363,17 @@ export default { }, deleteProblem: function(prob) { if (confirm(this.st.tr["Are you sure?"])) { - ajax("/problems", "DELETE", { id: prob.id }, () => { - ArrayFun.remove(this.problems, p => p.id == prob.id); - this.backToList(); - }); + ajax( + "/problems", + "DELETE", + { + data: { id: prob.id }, + success: () => { + ArrayFun.remove(this.problems, p => p.id == prob.id); + this.backToList(); + } + } + ); } } }