Cosmetics, mostly, and a few small bugs fixes
[vchess.git] / client / src / data / problemCheck.js
index 3b9ccb4..d6b916c 100644 (file)
@@ -1,9 +1,12 @@
-export function checkProblem(p)
-{
+export function checkProblem(p) {
   const vid = parseInt(p.vid);
-  if (isNaN(vid) || vid <= 0)
-    return "Please select a variant";
+  if (isNaN(vid) || vid <= 0) return "Please select a variant";
 
-  if (!V.IsGoodFen(p.fen))
-    return "Bad FEN string";
+  if (!V.IsGoodFen(p.fen)) return "Errors in FEN";
+
+  if (p.instruction.trim().length == 0) return "Missing instructions";
+
+  if (p.solution.trim().length == 0) return "Missing solution";
+
+  return "";
 }