X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=public%2Fjavascripts%2Fcomponents%2Fproblems.js;h=bcd069cc389d7b2386514f5016f0af2d3b1df554;hb=298c42e63ae321526693e9ce418c4113af36e025;hp=ef017e5953798eaa17513de7b40907b5080e92a3;hpb=6b5517b4cdd12d7480b811c94c134982c16d3814;p=vchess.git diff --git a/public/javascripts/components/problems.js b/public/javascripts/components/problems.js index ef017e59..bcd069cc 100644 --- a/public/javascripts/components/problems.js +++ b/public/javascripts/components/problems.js @@ -1,7 +1,7 @@ Vue.component('my-problems', { data: function () { return { - problems: problemArray, //initial value + problems: [], newProblem: { fen: "", instructions: "", @@ -39,7 +39,7 @@ Vue.component('my-problems', {
+ :placeholder='translate("Full FEN description")'/>

{{ translate("Safe HTML tags allowed") }}

@@ -71,14 +71,18 @@ Vue.component('my-problems', { return this.problems.sort((p1,p2) => { return p2.added - p1.added; }); }, }, + created: function() { + // TODO: fetch most recent problems from server + }, 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)); - }, + // TODO: obsolete: +// // Propagate "show problem" event to parent component (my-variant) +// bubbleUp: function(problem) { +// this.$emit('show-problem', JSON.stringify(problem)); +// }, fetchProblems: function(direction) { if (this.problems.length == 0) return; //what could we do?! @@ -105,7 +109,7 @@ Vue.component('my-problems', { }, previewNewProblem: function() { if (!V.IsGoodFen(this.newProblem.fen)) - return alert(translations["Bad FEN string"]); + 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) @@ -127,3 +131,8 @@ 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"