},
};
},
- // TODO: problem edit, just fill modalProb + adjust AJAX call
- // problem delete: just AJAX call + confirm
template: `
<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">
</div>
<div id="mainBoard" v-show="curIdx>=0">
<div id="instructions-div" class="section-content">
- <p id="problem-instructions">{{ curProb.instructions }}</p>
+ <p id="problem-instructions">
+ {{ curProb.instructions }}
+ </p>
</div>
<my-board :fen="curProb.fen"></my-board>
<div id="solution-div" class="section-content">
<h3 class="clickable" @click="showSolution = !showSolution">
{{ translations["Show solution"] }}
</h3>
- <p id="problem-solution" v-show="showSolution">{{ curProb.solution }}</p>
- <div class="button-group" v-show="curProb.uid==userId">
- <button>Edit</button>
- <button>Delete</button>
- </div>
+ <p id="problem-solution" v-show="showSolution">
+ {{ curProb.solution }}
+ </p>
</div>
</div>
- <button v-if="!!userId" @click="toggleListDisplay()">My problems (only)</button>
+ <button v-if="!!userId" @click="toggleListDisplay()">
+ <span>My problems (only)</span>
+ </button>
<my-problem-summary v-show="curIdx<0"
v-for="(p,idx) in sortedProblems" @click="setCurIdx(idx)"
- v-bind:prob="p" v-bind:preview="false" v-bind:key="p.id">
+ v-bind:prob="p" v-bind:userid="userId" v-bind:key="p.id">
</my-problem-summary>
- <input type="checkbox" id="modal-newproblem" class="modal">
+ <input type="checkbox" id="modal-newproblem" class="modal"/>
<div role="dialog" aria-labelledby="modalProblemTxt">
<div v-show="!modalProb.preview" class="card newproblem-form">
- <label for="modal-newproblem" class="modal-close"></label>
- <h3 id="modalProblemTxt">{{ translate("Add a problem") }}</h3>
- <form @submit.prevent="previewNewProblem()">
+ <label for="modal-newproblem" class="modal-close">
+ </label>
+ <h3 id="modalProblemTxt">
+ {{ translate("Add a problem") }}
+ </h3>
+ <form @submit.prevent="previewProblem()">
<fieldset>
<label for="newpbFen">FEN</label>
<input id="newpbFen" type="text" v-model="modalProb.fen"
:placeholder='translate("Full FEN description")'/>
</fieldset>
<fieldset>
- <p class="emphasis">{{ translate("Safe HTML tags allowed") }}</p>
- <label for="newpbInstructions">{{ translate("Instructions") }}</label>
+ <p class="emphasis">
+ {{ translate("Safe HTML tags allowed") }}
+ </p>
+ <label for="newpbInstructions">
+ {{ translate("Instructions") }}
+ </label>
<textarea id="newpbInstructions" v-model="modalProb.instructions"
- :placeholder='translate("Describe the problem goal")'></textarea>
- <label for="newpbSolution">{{ translate("Solution") }}</label>
+ :placeholder='translate("Describe the problem goal")'>
+ </textarea>
+ <label for="newpbSolution">
+ {{ translate("Solution") }}
+ </label>
<textarea id="newpbSolution" v-model="modalProb.solution"
- :placeholder='translate("How to solve the problem?")'></textarea>
- <button class="center-btn">{{ translate("Preview") }}</button>
+ :placeholder='translate("How to solve the problem?")'>
+ </textarea>
+ <button class="center-btn">
+ {{ translate("Preview") }}
+ </button>
</fieldset>
</form>
</div>
<div v-show="modalProb.preview" class="card newproblem-preview">
- <label for="modal-newproblem" class="modal-close"></label>
- <my-problem-summary v-bind:prob="modalProb" v-bind:preview="true"></my-problem-summary>
+ <label for="modal-newproblem" class="modal-close">
+ </label>
+ <my-problem-summary v-bind:prob="modalProb" v-bind:userid="userId">
+ </my-problem-summary>
<div class="button-group">
- <button @click="modalProb.preview=false">{{ translate("Cancel") }}</button>
- <button @click="sendNewProblem()">{{ translate("Send") }}</button>
+ <button @click="modalProb.preview=false">
+ {{ translate("Cancel") }}
+ </button>
+ <button @click="sendProblem()">
+ {{ translate("Send") }}
+ </button>
</div>
</div>
</div>
created: function() {
if (location.hash.length > 0)
{
- this.getOneProblem(location.hash.slice(1));
+ this.getOneProblem(location.hash.slice(1)); //callback?
this.curIdx = 0; //TODO: a bit more subtle, depending if it's my problem or not (set display)
}
else
return this.myProblems;
}
},
- // TODO: dans tous les cas si on n'affiche qu'un seul problème,
- // le curseur ne doit se déplacer que d'une unité.
+ // TODO?: get 50 from server but only show 10 at a time (for example)
showNext: function(direction) {
if (this.curIdx < 0)
- this.fetchProblems(direction);
+ return this.fetchProblems(direction);
+ // Show next problem (older or newer):
let curProbs = this.curProblems();
if ((this.curIdx > 0 && direction=="backward")
|| (this.curIdx < curProbs.length-1 && direction=="forward"))
{
const curSize = curProbs.length;
this.fetchProblems(direction);
- if (curProbs.length
+ const newSize = curProbs.length;
+ if (curSize == newSize) //no problems found
+ return;
+ switch (direction)
+ {
+ case "forward":
+ this.setCurIdx(this.curIdx+1);
+ break;
+ case "backward":
+ this.setCurIdx(newSize - curSize + this.curIdx-1);
+ break;
+ }
}
- else
- this.setCurIndex(--this.curIdx);
-
-
- if (this.curIdx == this.problems.length - 1)
- this.fetchProblems("forward");
- else
- this.curIdx++;
- location.hash = this.curIdx;
},
toggleListDisplay: function() {
this.display = (this.display == "list" ? "myList" : "list");
}
});
},
- previewNewProblem: function() {
+ previewProblem: function() {
if (!V.IsGoodFen(this.newProblem.fen))
return alert(translations["Bad FEN description"]);
if (this.newProblem.instructions.trim().length == 0)
return alert(translations["Empty solution"]);
this.modalProb.preview = true;
},
- // TODO: adjust for update too
- sendNewProblem: function() {
+ sendProblem: function() {
// Send it to the server and close modal
- ajax("/problems/" + variant.name, "POST", { //TODO: with variant._id ?
- fen: this.newProblem.fen,
- instructions: this.newProblem.instructions,
- solution: this.newProblem.solution,
- }, response => {
- this.modalProb.added = Date.now();
- this.curProblems().push(JSON.parse(JSON.stringify(this.modalProb)));
- document.getElementById("modal-newproblem").checked = false;
- this.modalProb.preview = false;
- });
+ ajax(
+ "/problems/" + variant.name, //TODO: with variant.id ?
+ (this.modalProb.id > 0 ? "PUT" : "POST"),
+ this.modalProb,
+ response => {
+ document.getElementById("modal-newproblem").checked = false;
+ if (this.modalProb.id == 0)
+ {
+ this.modalProb.added = Date.now();
+ this.modalProb.preview = false;
+ this.curProblems().push(JSON.parse(JSON.stringify(this.modalProb)));
+ }
+ else
+ this.modalProb.id = 0;
+ }
+ );
+ },
+ // TODO: catch signal edit or delete ; on edit: modify modalProb and show modal
+ deleteProblem: function(pid) {
+ // TODO: AJAX call
+ // TODO: delete problem in curProblems() list
},
- // TODO: AJAX for problem deletion
},
})