X-Git-Url: https://git.auder.net/?p=vchess.git;a=blobdiff_plain;f=public%2Fjavascripts%2Fcomponents%2Fproblems.js;h=ad8c54c014148bec9fa063cbd00bacd2328439c5;hp=bcd069cc389d7b2386514f5016f0af2d3b1df554;hb=81da2786f2f497b4416e0488c34a48fb794c28df;hpb=c5fa5762dc441fb1cb669908fae01d0d128e372d diff --git a/public/javascripts/components/problems.js b/public/javascripts/components/problems.js index bcd069cc..ad8c54c0 100644 --- a/public/javascripts/components/problems.js +++ b/public/javascripts/components/problems.js @@ -1,38 +1,98 @@ Vue.component('my-problems', { data: function () { return { - problems: [], + problems: [], //oldest first + curIdx: 0, //index in problems array + stage: "nothing", //or "preview" after new problem is filled newProblem: { fen: "", instructions: "", solution: "", - stage: "nothing", //or "preview" after new problem is filled }, }; }, template: `
- -
- + if (this.mode == "problem") + { + // Show problem solution (on click) + elementArray.push( + h('div', + { + attrs: { id: "solution-div" }, + "class": { "section-content": true }, + }, + [ + h('h3', + { + "class": { clickable: true }, + domProps: { innerHTML: translations["Show solution"] }, + on: { click: this.toggleShowSolution }, + } + ), + h('p', + { + attrs: { id: "problem-solution" }, + domProps: { innerHTML: this.problem.solution } + } + ) + ] + ) + ); + } +
-
+

{{ translate("Add a problem") }}

@@ -53,10 +113,9 @@ Vue.component('my-problems', {
-
+
- - +
@@ -68,10 +127,10 @@ Vue.component('my-problems', { computed: { sortedProblems: function() { // Newest problem first - return this.problems.sort((p1,p2) => { return p2.added - p1.added; }); }, }, created: function() { + // Analyse URL: if a single problem required, show it. Otherwise, // TODO: fetch most recent problems from server }, methods: { @@ -83,6 +142,26 @@ Vue.component('my-problems', { // bubbleUp: function(problem) { // this.$emit('show-problem', JSON.stringify(problem)); // }, + toggleShowSolution: function() { + let problemSolution = document.getElementById("problem-solution"); + problemSolution.style.display = + !problemSolution.style.display || problemSolution.style.display == "none" + ? "block" + : "none"; + }, + showPreviousProblem: function() { + if (this.curIdx == 0) + this.fetchProblems("backward"); + else + this.curIdx--; + }, + showNextProblem: function() { + if (this.curIdx == this.problems.length - 1) + this.fetchProblems("forward"); + else + this.curIdx++; + }, + // TODO: modal "no more problems" fetchProblems: function(direction) { if (this.problems.length == 0) return; //what could we do?! @@ -101,7 +180,11 @@ Vue.component('my-problems', { last_dt: last_dt, }, response => { if (response.problems.length > 0) - this.problems = response.problems; + { + this.problems = response.problems + .sort((p1,p2) => { return p1.added - p2.added; }); + this.curIdx = response.problems.length - 1; + } }); }, showNewproblemModal: function() {