3 input#modalNewprob.modal(
9 data-checkbox="modalNewprob"
12 label#closeNewprob.modal-close(for="modalNewprob")
14 label(for="selectVariant") {{ st.tr["Variant"] }}
16 v-model="curproblem.vid"
17 @change="changeVariant(curproblem)"
20 v-for="v in [emptyVar].concat(st.variants)"
22 :selected="curproblem.vid==v.id"
29 v-model="curproblem.fen"
30 @input="trySetDiagram(curproblem)"
32 #diagram(v-html="curproblem.diag")
35 :placeholder="st.tr['Instructions']"
36 v-model="curproblem.instruction"
38 p(v-html="parseHtml(curproblem.instruction)")
41 :placeholder="st.tr['Solution']"
42 v-model="curproblem.solution"
44 p(v-html="parseHtml(curproblem.solution)")
45 button(@click="sendProblem()") {{ st.tr["Send"] }}
46 #dialog.text-center {{ st.tr[infoMsg] }}
48 .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
50 span.vname {{ curproblem.vname }}
51 span.uname ({{ curproblem.uname }})
52 button.marginleft(@click="backToList()") {{ st.tr["Back to list"] }}
54 v-if="st.user.id == curproblem.uid"
55 @click="editProblem(curproblem)"
59 v-if="st.user.id == curproblem.uid"
60 @click="deleteProblem(curproblem)"
62 | {{ st.tr["Delete"] }}
63 p.oneInstructions.clickable(
64 v-html="parseHtml(curproblem.instruction)"
65 @click="curproblem.showSolution=!curproblem.showSolution"
67 | {{ st.tr["Show solution"] }}
69 v-show="curproblem.showSolution"
70 v-html="parseHtml(curproblem.solution)"
73 .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
75 button#newProblem(onClick="window.doClick('modalNewprob')")
76 | {{ st.tr["New problem"] }}
77 label(for="checkboxMine") {{ st.tr["My problems"] }}
82 label(for="selectVariant") {{ st.tr["Variant"] }}
83 select#selectVariant(v-model="selectedVar")
85 v-for="v in [emptyVar].concat(st.variants)"
91 th {{ st.tr["Variant"] }}
92 th {{ st.tr["Instructions"] }}
93 th {{ st.tr["Number"] }}
96 v-show="displayProblem(p)"
97 @click="setHrefPid(p)"
100 td {{ firstChars(p.instruction) }}
110 import { store } from "@/store";
111 import { ajax } from "@/utils/ajax";
112 import { checkProblem } from "@/data/problemCheck";
113 import { getDiagram } from "@/utils/printDiagram";
114 import { processModalClick } from "@/utils/modalClick";
115 import { ArrayFun } from "@/utils/array";
116 import BaseGame from "@/components/BaseGame.vue";
129 // Problem currently showed, or edited:
131 id: 0, //used in case of edit
139 loadedVar: 0, //corresponding to loaded V
140 selectedVar: 0, //to filter problems based on variant
145 vr: null, //"variant rules" object initialized from FEN
147 players: [{ name: "Problem" }, { name: "Problem" }],
152 created: function() {
153 ajax("/problems", "GET", res => {
154 // Show newest problem first:
155 this.problems = res.problems.sort((p1, p2) => p2.added - p1.added);
156 if (this.st.variants.length > 0)
157 this.problems.forEach(p => this.setVname(p));
158 // Retrieve all problems' authors' names
160 this.problems.forEach(p => {
161 if (p.uid != this.st.user.id) names[p.uid] = "";
163 else p.uname = this.st.user.name;
165 const showOneIfPid = () => {
166 const pid = this.$route.query["id"];
167 if (pid) this.showProblem(this.problems.find(p => p.id == pid));
169 if (Object.keys(names).length > 0) {
170 ajax("/users", "GET", { ids: Object.keys(names).join(",") }, res2 => {
171 res2.users.forEach(u => {
172 names[u.id] = u.name;
174 this.problems.forEach(p => (p.uname = names[p.uid]));
177 } else showOneIfPid();
180 mounted: function() {
182 .getElementById("newprobDiv")
183 .addEventListener("click", processModalClick);
186 // st.variants changes only once, at loading from [] to [...]
187 "st.variants": function() {
188 // Set problems vname (either all are set or none)
189 if (this.problems.length > 0 && this.problems[0].vname == "")
190 this.problems.forEach(p => this.setVname(p));
192 $route: function(to) {
193 const pid = to.query["id"];
194 if (pid) this.showProblem(this.problems.find(p => p.id == pid));
195 else this.showOne = false;
199 setVname: function(prob) {
200 prob.vname = this.st.variants.find(v => v.id == prob.vid).name;
202 firstChars: function(text) {
203 let preparedText = text
204 // Replace line jumps and <br> by spaces
206 .replace(/<br\/?>/g, " ")
207 .replace(/<[^>]+>/g, "") //remove remaining HTML tags
208 .replace(/[ ]+/g, " ") //remove series of spaces by only one
210 const maxLength = 32; //arbitrary...
211 if (preparedText.length > maxLength)
212 return preparedText.substr(0, 32) + "...";
215 copyProblem: function(p1, p2) {
216 for (let key in p1) p2[key] = p1[key];
218 setHrefPid: function(p) {
219 // Change href => $route changes, watcher notices, call showProblem
220 const curHref = document.location.href;
221 document.location.href = curHref.split("?")[0] + "?id=" + p.id;
223 backToList: function() {
224 // Change href => $route change, watcher notices, reset showOne to false
225 document.location.href = document.location.href.split("?")[0];
227 resetCurProb: function() {
228 this.curproblem.id = 0;
229 this.curproblem.uid = 0;
230 this.curproblem.vid = "";
231 this.curproblem.vname = "";
232 this.curproblem.fen = "";
233 this.curproblem.diag = "";
234 this.curproblem.instruction = "";
235 this.curproblem.solution = "";
236 this.curproblem.showSolution = false;
238 parseHtml: function(txt) {
239 return !txt.match(/<[/a-zA-Z]+>/)
240 ? txt.replace(/\n/g, "<br/>") //no HTML tag
243 changeVariant: function(prob) {
245 this.loadVariant(prob.vid, () => {
246 // Set FEN if possible (might not be correct yet)
247 if (V.IsGoodFen(prob.fen)) this.setDiagram(prob);
250 loadVariant: async function(vid, cb) {
251 // Condition: vid is a valid variant ID
253 const variant = this.st.variants.find(v => v.id == vid);
254 const vModule = await import("@/variants/" + variant.name + ".js");
255 window.V = vModule.VariantRules;
256 this.loadedVar = vid;
259 trySetDiagram: function(prob) {
260 // Problem edit: FEN could be wrong or incomplete,
261 // variant could not be ready, or not defined
262 if (prob.vid > 0 && this.loadedVar == prob.vid && V.IsGoodFen(prob.fen))
263 this.setDiagram(prob);
265 setDiagram: function(prob) {
266 // Condition: prob.fen is correct and global V is ready
267 const parsedFen = V.ParseFen(prob.fen);
269 position: parsedFen.position,
270 orientation: parsedFen.turn
272 prob.diag = getDiagram(args);
274 displayProblem: function(p) {
276 (!this.selectedVar || p.vid == this.selectedVar) &&
277 ((this.onlyMines && p.uid == this.st.user.id) ||
278 (!this.onlyMines && p.uid != this.st.user.id))
281 showProblem: function(p) {
282 this.loadVariant(p.vid, () => {
283 // The FEN is already checked at this stage:
284 this.vr = new V(p.fen);
285 this.game.vname = p.vname;
286 this.game.mycolor = this.vr.turn; //diagram orientation
287 this.game.fen = p.fen;
288 this.$set(this.game, "fenStart", p.fen);
289 this.copyProblem(p, this.curproblem);
293 sendProblem: function() {
294 const error = checkProblem(this.curproblem);
296 alert(this.st.tr[error]);
299 const edit = this.curproblem.id > 0;
300 this.infoMsg = "Processing... Please wait";
303 edit ? "PUT" : "POST",
304 { prob: this.curproblem },
307 let editedP = this.problems.find(p => p.id == this.curproblem.id);
308 this.copyProblem(this.curproblem, editedP);
312 let newProblem = Object.assign({}, this.curproblem);
313 newProblem.id = ret.id;
314 newProblem.uid = this.st.user.id;
315 newProblem.uname = this.st.user.name;
316 this.problems = this.problems.concat(newProblem);
320 document.getElementById("modalNewprob").checked = false;
324 editProblem: function(prob) {
325 if (!prob.diag) this.setDiagram(prob); //V is loaded at this stage
326 this.copyProblem(prob, this.curproblem);
327 window.doClick("modalNewprob");
329 deleteProblem: function(prob) {
330 if (confirm(this.st.tr["Are you sure?"])) {
331 ajax("/problems", "DELETE", { id: prob.id }, () => {
332 ArrayFun.remove(this.problems, p => p.id == prob.id);
341 <style lang="sass" scoped>
342 [type="checkbox"].modal+div .card
366 background-color: lightgreen
371 padding-left: var(--universal-margin)
373 padding-left: var(--universal-margin)
380 @media screen and (max-width: 767px)