Experimental news notification system + fix Eightpieces variant
authorBenjamin Auder <benjamin.auder@somewhere>
Sun, 15 Mar 2020 10:26:23 +0000 (11:26 +0100)
committerBenjamin Auder <benjamin.auder@somewhere>
Sun, 15 Mar 2020 10:26:23 +0000 (11:26 +0100)
12 files changed:
TODO
client/src/App.vue
client/src/components/ContactForm.vue
client/src/store.js
client/src/utils/ajax.js
client/src/variants/Eightpieces.js
client/src/views/News.vue
server/db/create.sql
server/models/News.js
server/models/User.js
server/routes/news.js
server/routes/users.js

diff --git a/TODO b/TODO
index 6916bdf..f03eb18 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,3 +1,11 @@
+#Enhancements
+
+tabs "running" and  "completed" for MyGames page (default to running if any and my turn)
+"load more" option for completed games (act on corr games).
+
+"load more" option for problems as well: similar to news page.
+Also on corr challenges.
+
 # New variants
 Landing pieces from empty board:
 https://www.chessvariants.com/diffsetup.dir/unachess.html
index d2f4845..6a99808 100644 (file)
     .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
       footer
         router-link.menuitem(to="/about") {{ st.tr["About"] }}
+        router-link.menuitem#newsMenu(to="/news") {{ st.tr["News"] }}
+        a.menuitem(href="https://discord.gg/a9ZFKBe")
+          span Discord
+          img(src="/images/icons/discord.svg")
         a.menuitem(href="https://github.com/yagu0/vchess")
           span {{ st.tr["Code"] }}
           img(src="/images/icons/github.svg")
-        router-link.menuitem(to="/news") {{ st.tr["News"] }}
         p.clickable(onClick="window.doClick('modalContact')")
           | {{ st.tr["Contact"] }}
 </template>
@@ -47,6 +50,7 @@ import ContactForm from "@/components/ContactForm.vue";
 import Settings from "@/components/Settings.vue";
 import UpsertUser from "@/components/UpsertUser.vue";
 import { store } from "@/store.js";
+import { ajax } from "@/utils/ajax.js";
 export default {
   components: {
     ContactForm,
@@ -54,9 +58,19 @@ export default {
     UpsertUser
   },
   data: function() {
-    return {
-      st: store.state
-    };
+    return { st: store.state };
+  },
+  mounted: function() {
+    ajax(
+      "/newsts",
+      "GET",
+      {
+        success: (res) => {
+          if (this.st.user.newsRead < res.timestamp)
+            document.getElementById("newsMenu").classList.add("somenews");
+        }
+      }
+    );
   },
   methods: {
     hideDrawer: function(e) {
@@ -258,6 +272,15 @@ footer
   footer
     border: none
 
+@media screen and (max-width: 420px)
+  footer
+    display: block
+
+.menuitem.somenews
+  color: red
+  &:link, &:visited, &:hover
+    color: red
+
 // Styles for diagrams and board (partial).
 // TODO: where to put that ?
 
index 89c4702..e5d2732 100644 (file)
@@ -10,9 +10,6 @@ div
   )
     .card
       label.modal-close(for="modalContact")
-      a#discordLink(href="https://discord.gg/a9ZFKBe")
-        span {{ st.tr["Discord invitation"] }}
-        img(src="/images/icons/discord.svg")
       fieldset
         label(for="userEmail") {{ st.tr["Email"] }}
         input#userEmail(type="email" :value="st.user.email")
@@ -101,15 +98,6 @@ textarea#mailContent
   width: 100%
   min-height: 100px
 
-#discordLink
-  display: block
-  margin-top: 7px
-  text-align: center
-  & > img
-    height: 1.2em
-    display: inline-block
-    margin-left: 5px
-
 #dialog
   padding: 5px
   color: blue
index 76210ee..792d2a5 100644 (file)
@@ -45,6 +45,7 @@ export const store = {
       name: localStorage.getItem("myname") || "", //"" for "anonymous"
       email: "", //unknown yet
       notify: false, //email notifications
+      newsRead: localStorage.getItem("newsRead") || 0,
       sid: mysid
     };
     // Slow verification through the server:
@@ -77,6 +78,8 @@ export const store = {
         localStorage.removeItem("myname");
       this.state.user.email = json.email;
       this.state.user.notify = json.notify;
+      if (!!json.newsRead && json.newsRead > this.state.user.newsRead)
+        this.state.user.newsRead = json.newsRead;
     });
     // Settings initialized with values from localStorage
     const getItemDefaultTrue = (item) => {
index e43e909..7d520ec 100644 (file)
@@ -13,6 +13,7 @@ function toQueryString(data) {
 // TODO: use this syntax https://stackoverflow.com/a/29823632 ?
 // data, success, error: optional
 export function ajax(url, method, options) {
+  options = options || {};
   const data = options.data || {};
   // By default, do nothing on success and print errors:
   if (!options.success)
index 1b2e9a7..beaddbe 100644 (file)
@@ -290,12 +290,14 @@ export const VariantRules = class EightpiecesRules extends ChessRules {
 
   getPotentialMovesFrom([x, y]) {
     // At subTurn == 2, jailers aren't effective (Jeff K)
+    const piece = this.getPiece(x, y);
+    const L = this.sentryPush.length;
     if (this.subTurn == 1) {
       const jsq = this.isImmobilized([x, y]);
       if (!!jsq) {
         let moves = [];
         // Special pass move if king:
-        if (this.getPiece(x, y) == V.KING) {
+        if (piece == V.KING) {
           moves.push(
             new Move({
               appear: [],
@@ -305,11 +307,26 @@ export const VariantRules = class EightpiecesRules extends ChessRules {
             })
           );
         }
+        else if (piece == V.LANCER && !!this.sentryPush[L-1]) {
+          // A pushed lancer next to the jailer: reorient
+          const color = this.getColor(x, y);
+          const curDir = this.board[x][y].charAt(1);
+          Object.keys(V.LANCER_DIRS).forEach(k => {
+            moves.push(
+              new Move({
+                appear: [{ x: x, y: y, c: color, p: k }],
+                vanish: [{ x: x, y: y, c: color, p: curDir }],
+                start: { x: x, y: y },
+                end: { x: jsq[0], y: jsq[1] }
+              })
+            );
+          });
+        }
         return moves;
       }
     }
     let moves = [];
-    switch (this.getPiece(x, y)) {
+    switch (piece) {
       case V.JAILER:
         moves = this.getPotentialJailerMoves([x, y]);
         break;
@@ -323,12 +340,15 @@ export const VariantRules = class EightpiecesRules extends ChessRules {
         moves = super.getPotentialMovesFrom([x, y]);
         break;
     }
-    const L = this.sentryPush.length;
     if (!!this.sentryPush[L-1]) {
-      // Delete moves walking back on sentry push path
+      // Delete moves walking back on sentry push path,
+      // only if not a pawn, and the piece is the pushed one.
+      const pl = this.sentryPush[L-1].length;
+      const finalPushedSq = this.sentryPush[L-1][pl-1];
       moves = moves.filter(m => {
         if (
           m.vanish[0].p != V.PAWN &&
+          m.start.x == finalPushedSq.x && m.start.y == finalPushedSq.y &&
           this.sentryPush[L-1].some(sq => sq.x == m.end.x && sq.y == m.end.y)
         ) {
           return false;
index 1aebbd3..ec1517d 100644 (file)
@@ -70,6 +70,10 @@ export default {
     );
   },
   mounted: function() {
+    // Mark that I've read the news:
+    localStorage.setItem("newsRead", Date.now());
+    if (this.st.user.id > 0) ajax("/newsread", "PUT");
+    document.getElementById("newsMenu").classList.remove("somenews");
     document
       .getElementById("newnewsDiv")
       .addEventListener("click", processModalClick);
index 8f3daa8..5aba8ff 100644 (file)
@@ -14,7 +14,8 @@ create table Users (
   loginTime datetime,
   sessionToken varchar,
   created datetime,
-  notify boolean
+  notify boolean,
+  newsRead datetime
 );
 
 create table Problems (
index 12f4bf5..3fa3caa 100644 (file)
@@ -38,6 +38,20 @@ const NewsModel =
     });
   },
 
+  getTimestamp: function(cb)
+  {
+    db.serialize(function() {
+      const query =
+        "SELECT added " +
+        "FROM News " +
+        "ORDER BY added DESC " +
+        "LIMIT 1";
+      db.get(query, (err,ts) => {
+        cb(err, ts);
+      });
+    });
+  },
+
   update: function(news)
   {
     db.serialize(function() {
index 9b3049b..021cadc 100644 (file)
@@ -75,6 +75,17 @@ const UserModel =
     });
   },
 
+  setNewsRead: function(uid)
+  {
+    db.serialize(function() {
+      const query =
+        "UPDATE Users " +
+        "SET newsRead = " + Date.now() + " " +
+        "WHERE id = " + uid;
+      db.run(query);
+    });
+  },
+
   // Set session token only if empty (first login)
   // NOTE: weaker security (but avoid to re-login everywhere after each logout)
   // TODO: option would be to reset all tokens periodically, e.g. every 3 months
index 80b9129..e1efbdd 100644 (file)
@@ -9,25 +9,30 @@ router.post("/news", access.logged, access.ajax, (req,res) => {
   {
     const content = sanitizeHtml(req.body.news.content);
     NewsModel.create(content, req.userId, (err,ret) => {
-      res.json(err || {id:ret.nid});
+      res.json(err || { id: ret.nid });
     });
   }
 });
 
 router.get("/news", access.ajax, (req,res) => {
   const cursor = req.query["cursor"];
-  if (cursor.match(/^[0-9]+$/))
-  {
+  if (cursor.match(/^[0-9]+$/)) {
     NewsModel.getNext(cursor, (err,newsList) => {
-      res.json(err || {newsList:newsList});
+      res.json(err || { newsList: newsList });
     });
   }
 });
 
+router.get("/newsts", access.ajax, (req,res) => {
+  // Special query for footer: just return timestamp of last news
+  NewsModel.getTimestamp((err,ts) => {
+    res.json(err || { timestamp: ts.added });
+  });
+});
+
 router.put("/news", access.logged, access.ajax, (req,res) => {
   let news = req.body.news;
-  if (devs.includes(req.userId) && news.id.toString().match(/^[0-9]+$/))
-  {
+  if (devs.includes(req.userId) && news.id.toString().match(/^[0-9]+$/)) {
     news.content = sanitizeHtml(news.content);
     NewsModel.update(news);
     res.json({});
@@ -36,8 +41,7 @@ router.put("/news", access.logged, access.ajax, (req,res) => {
 
 router.delete("/news", access.logged, access.ajax, (req,res) => {
   const nid = req.query.id;
-  if (devs.includes(req.userId) && nid.toString().match(/^[0-9]+$/))
-  {
+  if (devs.includes(req.userId) && nid.toString().match(/^[0-9]+$/)) {
     NewsModel.remove(nid);
     res.json({});
   }
index 4e51ee1..389625c 100644 (file)
@@ -81,6 +81,12 @@ router.put('/update', access.logged, access.ajax, (req,res) => {
   }
 });
 
+// Special route to update newsRead timestamp:
+router.put('/newsread', access.logged, access.ajax, (req,res) => {
+  UserModel.setNewsRead(req.userId);
+  res.json({});
+});
+
 // Authentication-related methods:
 
 // to: object user (to who we send an email)