X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FNews.vue;h=66a524918c56f535eafb35e9193f80e9e8edd26c;hb=68e19a449db7a12e0a168e99cd750d985c983ba1;hp=1aebbd3467f24ba2e61e16e2d6a5869459d0b25d;hpb=e57c4de4148d43e7635e09adcde4e56585aea303;p=vchess.git diff --git a/client/src/views/News.vue b/client/src/views/News.vue index 1aebbd34..66a52491 100644 --- a/client/src/views/News.vue +++ b/client/src/views/News.vue @@ -48,8 +48,10 @@ export default { return { devs: [1], //for now the only dev is me st: store.state, - cursor: 0, //ID of last showed news - hasMore: true, //a priori there could be more news to load + // timestamp of oldest showed news: + cursor: Number.MAX_SAFE_INTEGER, + // hasMore == TRUE: a priori there could be more news to load + hasMore: true, curnews: { id: 0, content: "" }, newsList: [], infoMsg: "" @@ -62,14 +64,20 @@ export default { { data: { cursor: this.cursor }, success: (res) => { - this.newsList = res.newsList.sort((n1, n2) => n2.added - n1.added); + // The returned list is sorted from most recent to oldest + this.newsList = res.newsList; const L = res.newsList.length; - if (L > 0) this.cursor = this.newsList[0].id; + if (L > 0) this.cursor = res.newsList[L - 1].added; + else this.hasMore = false; } } ); }, 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); @@ -162,10 +170,10 @@ export default { { data: { cursor: this.cursor }, success: (res) => { - if (res.newsList.length > 0) { + const L = res.newsList.length; + if (L > 0) { this.newsList = this.newsList.concat(res.newsList); - const L = res.newsList.length; - if (L > 0) this.cursor = res.newsList[L - 1].id; + this.cursor = res.newsList[L - 1].added; } else this.hasMore = false; } }