Commit | Line | Data |
---|---|---|
604b951e BA |
1 | <template lang="pug"> |
2 | main | |
3 | input#modalNews.modal(type="checkbox") | |
910d631b BA |
4 | div#newnewsDiv( |
5 | role="dialog" | |
6 | data-checkbox="modalNews" | |
7 | ) | |
23e1fa07 | 8 | .card#writeNews |
604b951e BA |
9 | label.modal-close(for="modalNews") |
10 | textarea#newsContent( | |
11 | v-model="curnews.content" | |
12 | :placeholder="st.tr['News go here']" | |
13 | @input="adjustHeight" | |
14 | ) | |
15 | button(@click="sendNews()") {{ st.tr["Send"] }} | |
16 | #dialog.text-center {{ st.tr[infoMsg] }} | |
17 | .row | |
18 | .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2 | |
23e1fa07 | 19 | button#writeNewsBtn( |
604b951e BA |
20 | v-if="devs.includes(st.user.id)" |
21 | @click="showModalNews" | |
22 | ) | |
23 | | {{ st.tr["Write news"] }} | |
910d631b BA |
24 | .news( |
25 | v-for="n,idx in newsList" | |
26 | :class="{margintop:idx>0}" | |
27 | ) | |
bd76b456 | 28 | span.ndt {{ formatDatetime(n.added) }} |
622e0fa8 | 29 | .dev-buttons(v-if="devs.includes(st.user.id)") |
604b951e BA |
30 | button(@click="editNews(n)") {{ st.tr["Edit"] }} |
31 | button(@click="deleteNews(n)") {{ st.tr["Delete"] }} | |
622e0fa8 | 32 | .news-content(v-html="parseHtml(n.content)") |
b3ef5759 | 33 | button#loadMoreBtn( |
910d631b BA |
34 | v-if="hasMore" |
35 | @click="loadMore()" | |
36 | ) | |
604b951e BA |
37 | | {{ st.tr["Load more"] }} |
38 | </template> | |
39 | ||
40 | <script> | |
41 | import { store } from "@/store"; | |
42 | import { ajax } from "@/utils/ajax"; | |
43 | import { getDate, getTime } from "@/utils/datetime"; | |
44 | import { processModalClick } from "@/utils/modalClick"; | |
45 | export default { | |
46 | name: "my-news", | |
47 | data: function() { | |
48 | return { | |
49 | devs: [1], //for now the only dev is me | |
50 | st: store.state, | |
0234201f BA |
51 | // timestamp of oldest showed news: |
52 | cursor: Number.MAX_SAFE_INTEGER, | |
53 | // hasMore == TRUE: a priori there could be more news to load | |
54 | hasMore: true, | |
6808d7a1 | 55 | curnews: { id: 0, content: "" }, |
604b951e | 56 | newsList: [], |
6808d7a1 | 57 | infoMsg: "" |
604b951e BA |
58 | }; |
59 | }, | |
60 | created: function() { | |
e57c4de4 BA |
61 | ajax( |
62 | "/news", | |
63 | "GET", | |
64 | { | |
65 | data: { cursor: this.cursor }, | |
66 | success: (res) => { | |
0234201f BA |
67 | // The returned list is sorted from most recent to oldest |
68 | this.newsList = res.newsList; | |
e57c4de4 | 69 | const L = res.newsList.length; |
0234201f | 70 | if (L > 0) this.cursor = res.newsList[L - 1].added; |
68e19a44 | 71 | else this.hasMore = false; |
e57c4de4 BA |
72 | } |
73 | } | |
74 | ); | |
604b951e BA |
75 | }, |
76 | mounted: function() { | |
d9a7a1e4 BA |
77 | // Mark that I've read the news: |
78 | localStorage.setItem("newsRead", Date.now()); | |
79 | if (this.st.user.id > 0) ajax("/newsread", "PUT"); | |
80 | document.getElementById("newsMenu").classList.remove("somenews"); | |
6808d7a1 BA |
81 | document |
82 | .getElementById("newnewsDiv") | |
83 | .addEventListener("click", processModalClick); | |
604b951e BA |
84 | }, |
85 | methods: { | |
86 | formatDatetime: function(dt) { | |
87 | const dtObj = new Date(dt); | |
bd76b456 BA |
88 | const timePart = getTime(dtObj); |
89 | // Show minutes but not seconds: | |
6808d7a1 BA |
90 | return ( |
91 | getDate(dtObj) + " " + timePart.substr(0, timePart.lastIndexOf(":")) | |
92 | ); | |
604b951e BA |
93 | }, |
94 | parseHtml: function(txt) { | |
95 | return !txt.match(/<[/a-zA-Z]+>/) | |
96 | ? txt.replace(/\n/g, "<br/>") //no HTML tag | |
97 | : txt; | |
98 | }, | |
99 | adjustHeight: function() { | |
100 | const newsContent = document.getElementById("newsContent"); | |
101 | // https://stackoverflow.com/questions/995168/textarea-to-resize-based-on-content-length | |
102 | newsContent.style.height = "1px"; | |
6808d7a1 | 103 | newsContent.style.height = 10 + newsContent.scrollHeight + "px"; |
604b951e BA |
104 | }, |
105 | resetCurnews: function() { | |
106 | this.curnews.id = 0; | |
107 | this.curnews.content = ""; | |
108 | // No need for added and uid fields: never updated | |
109 | }, | |
110 | showModalNews: function() { | |
111 | this.resetCurnews(); | |
6808d7a1 | 112 | window.doClick("modalNews"); |
604b951e BA |
113 | }, |
114 | sendNews: function() { | |
115 | const edit = this.curnews.id > 0; | |
116 | this.infoMsg = "Processing... Please wait"; | |
e57c4de4 BA |
117 | ajax( |
118 | "/news", | |
119 | edit ? "PUT" : "POST", | |
120 | { | |
121 | data: { news: this.curnews }, | |
122 | success: (res) => { | |
123 | if (edit) { | |
124 | let n = this.newsList.find(n => n.id == this.curnews.id); | |
125 | if (n) n.content = this.curnews.content; | |
126 | } else { | |
127 | const newNews = { | |
128 | content: this.curnews.content, | |
129 | added: Date.now(), | |
130 | uid: this.st.user.id, | |
131 | id: res.id | |
132 | }; | |
133 | this.newsList = [newNews].concat(this.newsList); | |
134 | } | |
135 | document.getElementById("modalNews").checked = false; | |
136 | this.infoMsg = ""; | |
137 | this.resetCurnews(); | |
138 | } | |
604b951e | 139 | } |
e57c4de4 | 140 | ); |
604b951e BA |
141 | }, |
142 | editNews: function(n) { | |
143 | this.curnews.content = n.content; | |
144 | this.curnews.id = n.id; | |
145 | // No need for added and uid fields: never updated | |
6808d7a1 | 146 | window.doClick("modalNews"); |
604b951e BA |
147 | }, |
148 | deleteNews: function(n) { | |
6808d7a1 | 149 | if (confirm(this.st.tr["Are you sure?"])) { |
604b951e | 150 | this.infoMsg = "Processing... Please wait"; |
e57c4de4 BA |
151 | ajax( |
152 | "/news", | |
153 | "DELETE", | |
154 | { | |
155 | data: { id: n.id }, | |
156 | success: () => { | |
157 | const nIdx = this.newsList.findIndex(nw => nw.id == n.id); | |
158 | this.newsList.splice(nIdx, 1); | |
159 | this.infoMsg = ""; | |
160 | document.getElementById("modalNews").checked = false; | |
161 | } | |
162 | } | |
163 | ); | |
604b951e BA |
164 | } |
165 | }, | |
166 | loadMore: function() { | |
e57c4de4 BA |
167 | ajax( |
168 | "/news", | |
169 | "GET", | |
170 | { | |
171 | data: { cursor: this.cursor }, | |
172 | success: (res) => { | |
68e19a44 BA |
173 | const L = res.newsList.length; |
174 | if (L > 0) { | |
e57c4de4 | 175 | this.newsList = this.newsList.concat(res.newsList); |
68e19a44 | 176 | this.cursor = res.newsList[L - 1].added; |
e57c4de4 BA |
177 | } else this.hasMore = false; |
178 | } | |
179 | } | |
180 | ); | |
6808d7a1 BA |
181 | } |
182 | } | |
604b951e BA |
183 | }; |
184 | </script> | |
185 | ||
9493b395 | 186 | <style lang="sass"> |
604b951e BA |
187 | [type="checkbox"].modal+div .card |
188 | max-width: 767px | |
189 | max-height: 100% | |
910d631b | 190 | |
604b951e | 191 | textarea#newsContent |
bd76b456 | 192 | margin: 0 |
604b951e BA |
193 | width: 100% |
194 | min-height: 200px | |
195 | max-height: 100% | |
910d631b | 196 | |
604b951e BA |
197 | #dialog |
198 | padding: 5px | |
199 | color: blue | |
910d631b | 200 | |
23e1fa07 BA |
201 | #writeNews |
202 | padding-top: 50px | |
203 | ||
b3ef5759 | 204 | button#writeNewsBtn, button#loadMoreBtn |
0c76fa56 BA |
205 | margin-top: 0 |
206 | margin-bottom: 0 | |
910d631b | 207 | |
bd76b456 BA |
208 | span.ndt |
209 | color: darkblue | |
feae89d3 | 210 | padding: 0 5px 0 var(--universal-margin) |
910d631b | 211 | |
feae89d3 BA |
212 | .news |
213 | padding-top: 10px | |
622e0fa8 | 214 | & > .dev-buttons |
bd76b456 | 215 | display: inline-block |
622e0fa8 | 216 | & > .news-content |
9493b395 BA |
217 | margin: var(--universal-margin) |
218 | & > p | |
219 | margin: 10px 0 | |
220 | & > br | |
221 | display: block | |
222 | margin-top: 10px | |
223 | content: " " | |
910d631b BA |
224 | |
225 | .margintop | |
226 | margin-top: 25px | |
227 | border-top: 1px solid grey | |
bd76b456 BA |
228 | @media screen and (max-width: 767px) |
229 | .margintop | |
230 | margin-top: 10px | |
604b951e | 231 | </style> |