WhatIsNew.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. <template>
  2. <div
  3. v-if="news !== null"
  4. class="modal"
  5. :class="{ 'is-active': isModalActive }"
  6. >
  7. <div class="modal-background" />
  8. <div class="modal-card">
  9. <header class="modal-card-head">
  10. <p class="modal-card-title">
  11. <strong>{{ news.title }}</strong>
  12. ({{ formatDate(news.createdAt) }})
  13. </p>
  14. <button class="delete" v-on:click="toggleModal()" />
  15. </header>
  16. <section class="modal-card-body">
  17. <div class="content">
  18. <p>{{ news.description }}</p>
  19. </div>
  20. <div v-show="news.features.length > 0" class="sect">
  21. <div class="sect-head-features">
  22. The features are so great
  23. </div>
  24. <ul class="sect-body">
  25. <li
  26. v-for="(feature, index) in news.features"
  27. :key="index"
  28. >
  29. {{ feature }}
  30. </li>
  31. </ul>
  32. </div>
  33. <div v-show="news.improvements.length > 0" class="sect">
  34. <div class="sect-head-improvements">
  35. Improvements
  36. </div>
  37. <ul class="sect-body">
  38. <li
  39. v-for="(improvement, index) in news.improvements"
  40. :key="index"
  41. >
  42. {{ improvement }}
  43. </li>
  44. </ul>
  45. </div>
  46. <div v-show="news.bugs.length > 0" class="sect">
  47. <div class="sect-head-bugs">
  48. Bugs Smashed
  49. </div>
  50. <ul class="sect-body">
  51. <li v-for="(bug, index) in news.bugs" :key="index">
  52. {{ bug }}
  53. </li>
  54. </ul>
  55. </div>
  56. <div v-show="news.upcoming.length > 0" class="sect">
  57. <div class="sect-head-upcoming">
  58. Coming Soon to a Musare near you
  59. </div>
  60. <ul class="sect-body">
  61. <li
  62. v-for="(upcoming, index) in news.upcoming"
  63. :key="index"
  64. >
  65. {{ upcoming }}
  66. </li>
  67. </ul>
  68. </div>
  69. </section>
  70. </div>
  71. </div>
  72. </template>
  73. <script>
  74. import io from "../../io";
  75. export default {
  76. data() {
  77. return {
  78. isModalActive: false,
  79. news: null
  80. };
  81. },
  82. mounted: function() {
  83. let _this = this;
  84. io.getSocket(true, socket => {
  85. _this.socket = socket;
  86. _this.socket.emit("news.newest", res => {
  87. _this.news = res.data;
  88. if (_this.news && localStorage.getItem("firstVisited")) {
  89. if (localStorage.getItem("whatIsNew")) {
  90. if (
  91. parseInt(localStorage.getItem("whatIsNew")) <
  92. res.data.createdAt
  93. ) {
  94. this.toggleModal();
  95. localStorage.setItem(
  96. "whatIsNew",
  97. res.data.createdAt
  98. );
  99. }
  100. } else {
  101. if (
  102. parseInt(localStorage.getItem("firstVisited")) <
  103. res.data.createdAt
  104. ) {
  105. this.toggleModal();
  106. }
  107. localStorage.setItem("whatIsNew", res.data.createdAt);
  108. }
  109. } else {
  110. if (!localStorage.getItem("firstVisited"))
  111. localStorage.setItem("firstVisited", Date.now());
  112. }
  113. });
  114. });
  115. },
  116. methods: {
  117. toggleModal: function() {
  118. this.isModalActive = !this.isModalActive;
  119. },
  120. formatDate: unix => {
  121. return moment(unix).format("DD-MM-YYYY");
  122. }
  123. },
  124. events: {
  125. closeModal: function() {
  126. this.isModalActive = false;
  127. }
  128. }
  129. };
  130. </script>
  131. <style lang="scss" scoped>
  132. .modal-card-head {
  133. border-bottom: none;
  134. background-color: ghostwhite;
  135. padding: 15px;
  136. }
  137. .modal-card-title {
  138. font-size: 14px;
  139. }
  140. .delete {
  141. background: transparent;
  142. &:hover {
  143. background: transparent;
  144. }
  145. &:before,
  146. &:after {
  147. background-color: #bbb;
  148. }
  149. }
  150. .sect {
  151. div[class^="sect-head"],
  152. div[class*=" sect-head"] {
  153. padding: 12px;
  154. text-transform: uppercase;
  155. font-weight: bold;
  156. color: #fff;
  157. }
  158. .sect-head-features {
  159. background-color: dodgerblue;
  160. }
  161. .sect-head-improvements {
  162. background-color: seagreen;
  163. }
  164. .sect-head-bugs {
  165. background-color: brown;
  166. }
  167. .sect-head-upcoming {
  168. background-color: mediumpurple;
  169. }
  170. .sect-body {
  171. padding: 15px 25px;
  172. li {
  173. list-style-type: disc;
  174. }
  175. }
  176. }
  177. </style>