X-Git-Url: https://git.auder.net/?p=vchess.git;a=blobdiff_plain;f=public%2Fjavascripts%2Fcomponents%2Fproblems.js;h=4caabb554487bbb699ec254b1643337437b121df;hp=68830a4f7f9af93c281455eb43b8521f9a41aaf5;hb=b6487fb9c41705187cf97215fc9e8f86a59057c7;hpb=c794dbb87592782913af0a09784ed25e019e4d10 diff --git a/public/javascripts/components/problems.js b/public/javascripts/components/problems.js index 68830a4f..4caabb55 100644 --- a/public/javascripts/components/problems.js +++ b/public/javascripts/components/problems.js @@ -1,45 +1,67 @@ Vue.component('my-problems', { data: function () { return { - problems: problemArray //initial value + problems: problemArray, //initial value + newProblem: { + fen: "", + instructions: "", + solution: "", + stage: "nothing", //or "preview" after new problem is filled + }, }; }, template: ` -
- - - +
+
+ + + +
+ v-for="(p,idx) in sortedProblems" + v-bind:prob="p" v-bind:preview="false" v-bind:key="idx">
-
+
-

Add problem

-
+

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

+
- - + +
-

- Allowed HTML tags: - <p>,<br>,<,ul>,<ol>,<li> -

- - + + +
-

- Note: if you made a mistake, please let me know at - contact@vchess.club -

+
+ + + +
+ + +
+
`, @@ -48,17 +70,16 @@ Vue.component('my-problems', { // Newest problem first return this.problems.sort((p1,p2) => { return p2.added - p1.added; }); }, - mailErrProblem: function() { - return "mailto:contact@vchess.club?subject=[" + variant + " problems] error"; - }, }, methods: { + translate: function(text) { + return translations[text]; + }, // Propagate "show problem" event to parent component (my-variant) bubbleUp: function(problem) { this.$emit('show-problem', JSON.stringify(problem)); }, fetchProblems: function(direction) { - return; //TODO: re-activate after server side is implemented (see routes/all.js) if (this.problems.length == 0) return; //what could we do?! // Search for newest date (or oldest) @@ -82,19 +103,32 @@ Vue.component('my-problems', { showNewproblemModal: function() { document.getElementById("modal-newproblem").checked = true; }, - postNewProblem: function() { - const fen = document.getElementById("newpbFen").value; - if (!V.IsGoodFen(fen)) - return alert("Bad FEN string"); - const instructions = document.getElementById("newpbInstructions").value; - const solution = document.getElementById("newpbSolution").value; + previewNewProblem: function() { + if (!V.IsGoodFen(this.newProblem.fen)) + return alert(translations["Bad FEN description"]); + if (this.newProblem.instructions.trim().length == 0) + return alert(translations["Empty instructions"]); + if (this.newProblem.solution.trim().length == 0) + return alert(translations["Empty solution"]); + this.newProblem.stage = "preview"; + }, + sendNewProblem: function() { + // Send it to the server and close modal ajax("/problems/" + variant, "POST", { - fen: fen, - instructions: instructions, - solution: solution, + fen: this.newProblem.fen, + instructions: this.newProblem.instructions, + solution: this.newProblem.solution, }, response => { + this.newProblem.added = Date.now(); + this.problems.push(JSON.parse(JSON.stringify(this.newProblem))); document.getElementById("modal-newproblem").checked = false; + this.newProblem.stage = "nothing"; }); }, }, }) + +// 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"