Draft code reorganisation (+ fix Alice rules + stateless VariantRules object)
[vchess.git] / public / javascripts / components / problems.js
index d9265a3..4caabb5 100644 (file)
@@ -11,10 +11,21 @@ Vue.component('my-problems', {
                };
        },
        template: `
-               <div>
-                       <button @click="fetchProblems('backward')">Previous</button>
-                       <button @click="fetchProblems('forward')">Next</button>
-                       <button @click="showNewproblemModal">New</button>
+               <div class="col-sm-12 col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2">
+                       <div id="problemControls" class="button-group">
+                               <button :aria-label='translate("Load previous problems")' class="tooltip"
+                                               @click="fetchProblems('backward')">
+                                       <i class="material-icons">skip_previous</i>
+                               </button>
+                               <button :aria-label='translate("Add a problem")' class="tooltip"
+                                               @click="showNewproblemModal">
+                                       {{ translate("New") }}
+                               </button>
+                               <button :aria-label='translate("Load next problems")' class="tooltip"
+                                               @click="fetchProblems('forward')">
+                                       <i class="material-icons">skip_next</i>
+                               </button>
+                       </div>
                        <my-problem-summary v-on:show-problem="bubbleUp(p)"
                                v-for="(p,idx) in sortedProblems"
                                v-bind:prob="p" v-bind:preview="false" v-bind:key="idx">
@@ -23,22 +34,22 @@ Vue.component('my-problems', {
                        <div role="dialog" aria-labelledby="newProblemTxt">
                                <div v-show="newProblem.stage=='nothing'" class="card newproblem-form">
                                        <label for="modal-newproblem" class="modal-close"></label>
-                                       <h3 id="newProblemTxt">Add problem</h3>
+                                       <h3 id="newProblemTxt">{{ translate("Add a problem") }}</h3>
                                        <form @submit.prevent="previewNewProblem">
                                                <fieldset>
-                                                       <label for="newpbFen">Fen</label>
+                                                       <label for="newpbFen">FEN</label>
                                                        <input id="newpbFen" type="text" v-model="newProblem.fen"
-                                                               placeholder="Full FEN string"/>
+                                                               :placeholder='translate("Full FEN description")'/>
                                                </fieldset>
                                                <fieldset>
-                                                       <p class="emphasis">Safe HTML tags allowed</p>
-                                                       <label for="newpbInstructions">Instructions</label>
+                                                       <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>
-                                                       <label for="newpbSolution">Solution</label>
+                                                               :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>
-                                                       <button class="center-btn">Preview</button>
+                                                               :placeholder='translate("How to solve the problem?")'></textarea>
+                                                       <button class="center-btn">{{ translate("Preview") }}</button>
                                                </fieldset>
                                        </form>
                                </div>
@@ -46,9 +57,9 @@ Vue.component('my-problems', {
                                        <label for="modal-newproblem" class="modal-close"></label>
                                        <my-problem-summary v-bind:prob="newProblem" v-bind:preview="true">
                                        </my-problem-summary>
-                                       <div class="col-sm-12 col-md-6 col-lg-3 col-lg-offset-3 topspace">
-                                               <button @click="sendNewProblem()">Send</button>
-                                               <button @click="newProblem.stage='nothing'">Cancel</button>
+                                       <div class="button-group">
+                                               <button @click="newProblem.stage='nothing'">{{ translate("Cancel") }}</button>
+                                               <button @click="sendNewProblem()">{{ translate("Send") }}</button>
                                        </div>
                                </div>
                        </div>
@@ -59,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)
@@ -95,7 +105,11 @@ Vue.component('my-problems', {
                },
                previewNewProblem: function() {
                        if (!V.IsGoodFen(this.newProblem.fen))
-                               return alert("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)
+                               return alert(translations["Empty solution"]);
                        this.newProblem.stage = "preview";
                },
                sendNewProblem: function() {
@@ -113,3 +127,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"