X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=public%2Fjavascripts%2Fcomponents%2Fproblems.js;h=558f0bada06f9099d41ed895d76882c05c9561bd;hb=26b8e4f7c71030d49e44fe1d89632ef91b886d67;hp=bcd069cc389d7b2386514f5016f0af2d3b1df554;hpb=298c42e63ae321526693e9ce418c4113af36e025;p=vchess.git diff --git a/public/javascripts/components/problems.js b/public/javascripts/components/problems.js index bcd069cc..558f0bad 100644 --- a/public/javascripts/components/problems.js +++ b/public/javascripts/components/problems.js @@ -1,38 +1,107 @@ Vue.component('my-problems', { data: function () { return { - problems: [], + problems: [], //oldest first + myProblems: [], //same + 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: `
- -
- liste séparée (lors de la requête serveur) +--> bouton plutôt sous l'échiquier après soluce (sauf si anonymous) +--> puis dans la vue "my problems (listing échiquier gauche / instrus + soluce cachée à droite +if (this.mode == "problem") + { + // Show problem instructions + elementArray.push( + h('div', + { + attrs: { id: "instructions-div" }, + "class": { + "clearer": true, + "section-content": true, + }, + }, + [ + h('p', + { + attrs: { id: "problem-instructions" }, + domProps: { innerHTML: this.problem.instructions } + } + ) + ] + ) + ); + } + + + // TODO ici :: instrus + diag interactif + solution + my-board + pilotage via movesList + VariantRules ! + + + 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 +122,9 @@ Vue.component('my-problems', {
-
+
- - +
@@ -68,11 +136,12 @@ 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 + // If the requested problem is in the list, just show it }, methods: { translate: function(text) { @@ -83,6 +152,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?! @@ -96,12 +185,16 @@ Vue.component('my-problems', { last_dt = this.problems[i].added; } } - ajax("/problems/" + variant, "GET", { + ajax("/problems/" + variant.name, "GET", { //TODO: use variant._id ? direction: direction, 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() { @@ -118,7 +211,7 @@ Vue.component('my-problems', { }, sendNewProblem: function() { // Send it to the server and close modal - ajax("/problems/" + variant, "POST", { + ajax("/problems/" + variant.name, "POST", { //TODO: with variant._id ? fen: this.newProblem.fen, instructions: this.newProblem.instructions, solution: this.newProblem.solution, @@ -134,5 +227,3 @@ Vue.component('my-problems', { // TODO: // possibilité de supprimer / éditer si peer ID reconnu comme celui du probleme (champ "uploader") -// --> côté serveur on vérifie un certain "secret" -// --> filtre possible "mes problèmes"