News.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <template>
  2. <div class="app">
  3. <metadata title="News" />
  4. <main-header />
  5. <div class="container">
  6. <div class="content-wrapper">
  7. <div
  8. v-for="item in news"
  9. :key="item._id"
  10. class="card is-fullwidth"
  11. >
  12. <header class="card-header">
  13. <p class="card-header-title">
  14. {{ item.title }} - {{ formatDate(item.createdAt) }}
  15. </p>
  16. </header>
  17. <div class="card-content">
  18. <div class="content">
  19. <p>{{ item.description }}</p>
  20. </div>
  21. <div v-show="item.features.length > 0" class="sect">
  22. <div class="sect-head-features">
  23. The features are so great
  24. </div>
  25. <ul class="sect-body">
  26. <li
  27. v-for="feature in item.features"
  28. :key="feature"
  29. >
  30. {{ feature }}
  31. </li>
  32. </ul>
  33. </div>
  34. <div v-show="item.improvements.length > 0" class="sect">
  35. <div class="sect-head-improvements">
  36. Improvements
  37. </div>
  38. <ul class="sect-body">
  39. <li
  40. v-for="improvement in item.improvements"
  41. :key="improvement"
  42. >
  43. {{ improvement }}
  44. </li>
  45. </ul>
  46. </div>
  47. <div v-show="item.bugs.length > 0" class="sect">
  48. <div class="sect-head-bugs">Bugs Smashed</div>
  49. <ul class="sect-body">
  50. <li v-for="bug in item.bugs" :key="bug">
  51. {{ bug }}
  52. </li>
  53. </ul>
  54. </div>
  55. <div v-show="item.upcoming.length > 0" class="sect">
  56. <div class="sect-head-upcoming">
  57. Coming Soon to a Musare near you
  58. </div>
  59. <ul class="sect-body">
  60. <li
  61. v-for="upcoming in item.upcoming"
  62. :key="upcoming"
  63. >
  64. {{ upcoming }}
  65. </li>
  66. </ul>
  67. </div>
  68. </div>
  69. </div>
  70. <h3 v-if="noFound" class="has-text-centered page-title">
  71. No news items were found.
  72. </h3>
  73. </div>
  74. </div>
  75. <main-footer />
  76. </div>
  77. </template>
  78. <script>
  79. import { format } from "date-fns";
  80. import { mapGetters } from "vuex";
  81. import MainHeader from "@/components/layout/MainHeader.vue";
  82. import MainFooter from "@/components/layout/MainFooter.vue";
  83. export default {
  84. components: { MainHeader, MainFooter },
  85. data() {
  86. return {
  87. news: [],
  88. noFound: false
  89. };
  90. },
  91. computed: mapGetters({
  92. socket: "websockets/getSocket"
  93. }),
  94. mounted() {
  95. this.socket.dispatch("news.index", res => {
  96. if (res.status === "success") {
  97. this.news = res.data.news;
  98. if (this.news.length === 0) this.noFound = true;
  99. }
  100. });
  101. this.socket.on("event:admin.news.created", res => {
  102. this.news.unshift(res.data.news);
  103. this.noFound = false;
  104. });
  105. this.socket.on("event:admin.news.updated", res => {
  106. for (let n = 0; n < this.news.length; n += 1) {
  107. if (this.news[n]._id === res.data.news._id) {
  108. this.$set(this.news, n, res.data.news);
  109. }
  110. }
  111. });
  112. this.socket.on("event:admin.news.removed", res => {
  113. this.news = this.news.filter(item => item._id !== res.data.newsId);
  114. if (this.news.length === 0) this.noFound = true;
  115. });
  116. },
  117. methods: {
  118. formatDate: unix => {
  119. return format(unix, "dd-MM-yyyy");
  120. }
  121. }
  122. };
  123. </script>
  124. <style lang="scss" scoped>
  125. .night-mode {
  126. p {
  127. color: var(--light-grey-2);
  128. }
  129. }
  130. .card {
  131. margin-top: 50px;
  132. }
  133. .sect {
  134. div[class^="sect-head"],
  135. div[class*=" sect-head"] {
  136. padding: 12px;
  137. text-transform: uppercase;
  138. font-weight: bold;
  139. color: var(--white);
  140. }
  141. .sect-head-features {
  142. background-color: dodgerblue;
  143. }
  144. .sect-head-improvements {
  145. background-color: seagreen;
  146. }
  147. .sect-head-bugs {
  148. background-color: brown;
  149. }
  150. .sect-head-upcoming {
  151. background-color: mediumpurple;
  152. }
  153. .sect-body {
  154. padding: 15px 25px;
  155. li {
  156. list-style-type: disc;
  157. }
  158. }
  159. }
  160. </style>