Index page almost OK. Now work on variant page (main hall...)
[vchess.git] / public / javascripts / components / problems.js
index 9288a39..bcd069c 100644 (file)
@@ -1,7 +1,7 @@
 Vue.component('my-problems', {
        data: function () {
                return {
-                       problems: problemArray, //initial value
+                       problems: [],
                        newProblem: {
                                fen: "",
                                instructions: "",
@@ -39,16 +39,16 @@ Vue.component('my-problems', {
                                                <fieldset>
                                                        <label for="newpbFen">FEN</label>
                                                        <input id="newpbFen" type="text" v-model="newProblem.fen"
-                                                               :placeholder='translate("Full FEN string")'/>
+                                                               :placeholder='translate("Full FEN description")'/>
                                                </fieldset>
                                                <fieldset>
                                                        <p class="emphasis">{{ translate("Safe HTML tags allowed") }}</p>
                                                        <label for="newpbInstructions">{{ translate("Instructions") }}</label>
                                                        <textarea id="newpbInstructions" v-model="newProblem.instructions"
-                                                               placeholder="Explain the problem here"></textarea>
+                                                               :placeholder='translate("Describe the problem goal")'></textarea>
                                                        <label for="newpbSolution">{{ translate("Solution") }}</label>
                                                        <textarea id="newpbSolution" v-model="newProblem.solution"
-                                                               placeholder="How to solve the problem?"></textarea>
+                                                               :placeholder='translate("How to solve the problem?")'></textarea>
                                                        <button class="center-btn">{{ translate("Preview") }}</button>
                                                </fieldset>
                                        </form>
@@ -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,11 +109,11 @@ Vue.component('my-problems', {
                },
                previewNewProblem: function() {
                        if (!V.IsGoodFen(this.newProblem.fen))
-                               return alert("Bad FEN string");
-                       if (this.newProblem.instructions.length == 0)
-                               return alert("Empty instructions");
-                       if (this.newProblem.solution.length == 0)
-                               return alert("Empty solution");
+                               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() {
@@ -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"