WhatIsNew.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  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() {
  83. io.getSocket(true, socket => {
  84. this.socket = socket;
  85. this.socket.emit("news.newest", res => {
  86. this.news = res.data;
  87. if (this.news && localStorage.getItem("firstVisited")) {
  88. if (localStorage.getItem("whatIsNew")) {
  89. if (
  90. parseInt(localStorage.getItem("whatIsNew")) <
  91. res.data.createdAt
  92. ) {
  93. this.toggleModal();
  94. localStorage.setItem(
  95. "whatIsNew",
  96. res.data.createdAt
  97. );
  98. }
  99. } else {
  100. if (
  101. parseInt(localStorage.getItem("firstVisited")) <
  102. res.data.createdAt
  103. ) {
  104. this.toggleModal();
  105. }
  106. localStorage.setItem("whatIsNew", res.data.createdAt);
  107. }
  108. } else if (!localStorage.getItem("firstVisited"))
  109. localStorage.setItem("firstVisited", Date.now());
  110. });
  111. });
  112. },
  113. methods: {
  114. toggleModal() {
  115. this.isModalActive = !this.isModalActive;
  116. },
  117. formatDate: unix => {
  118. return moment(unix).format("DD-MM-YYYY");
  119. }
  120. },
  121. events: {
  122. closeModal() {
  123. this.isModalActive = false;
  124. }
  125. }
  126. };
  127. </script>
  128. <style lang="scss" scoped>
  129. .modal-card-head {
  130. border-bottom: none;
  131. background-color: ghostwhite;
  132. padding: 15px;
  133. }
  134. .modal-card-title {
  135. font-size: 14px;
  136. }
  137. .delete {
  138. background: transparent;
  139. &:hover {
  140. background: transparent;
  141. }
  142. &:before,
  143. &:after {
  144. background-color: #bbb;
  145. }
  146. }
  147. .sect {
  148. div[class^="sect-head"],
  149. div[class*=" sect-head"] {
  150. padding: 12px;
  151. text-transform: uppercase;
  152. font-weight: bold;
  153. color: #fff;
  154. }
  155. .sect-head-features {
  156. background-color: dodgerblue;
  157. }
  158. .sect-head-improvements {
  159. background-color: seagreen;
  160. }
  161. .sect-head-bugs {
  162. background-color: brown;
  163. }
  164. .sect-head-upcoming {
  165. background-color: mediumpurple;
  166. }
  167. .sect-body {
  168. padding: 15px 25px;
  169. li {
  170. list-style-type: disc;
  171. }
  172. }
  173. }
  174. </style>