WhatIsNew.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. <template>
  2. <modal title="News" class="what-is-news-modal">
  3. <template #body>
  4. <div
  5. class="section news-item"
  6. v-html="sanitize(marked(news.markdown))"
  7. ></div>
  8. </template>
  9. <template #footer>
  10. <span v-if="news.createdBy">
  11. By
  12. <user-id-to-username
  13. :user-id="news.createdBy"
  14. :alt="news.createdBy"
  15. :link="true" /></span
  16. >&nbsp;<span :title="new Date(news.createdAt)">
  17. {{
  18. formatDistance(news.createdAt, new Date(), {
  19. addSuffix: true
  20. })
  21. }}
  22. </span>
  23. </template>
  24. </modal>
  25. </template>
  26. <script>
  27. import { formatDistance } from "date-fns";
  28. import { marked } from "marked";
  29. import { sanitize } from "dompurify";
  30. import { mapActions } from "vuex";
  31. import { mapModalState } from "@/vuex_helpers";
  32. export default {
  33. props: {
  34. modalUuid: { type: String, default: "" }
  35. },
  36. computed: {
  37. ...mapModalState("modals/whatIsNew/MODAL_UUID", {
  38. news: state => state.news
  39. })
  40. },
  41. mounted() {
  42. marked.use({
  43. renderer: {
  44. table(header, body) {
  45. return `<table class="table">
  46. <thead>${header}</thead>
  47. <tbody>${body}</tbody>
  48. </table>`;
  49. }
  50. }
  51. });
  52. },
  53. beforeUnmount() {
  54. // Delete the VueX module that was created for this modal, after all other cleanup tasks are performed
  55. this.$store.unregisterModule(["modals", "whatIsNew", this.modalUuid]);
  56. },
  57. methods: {
  58. marked,
  59. sanitize,
  60. formatDistance,
  61. ...mapActions("modalVisibility", ["openModal"])
  62. }
  63. };
  64. </script>
  65. <style lang="less">
  66. .what-is-news-modal .modal-card .modal-card-foot {
  67. column-gap: 0;
  68. }
  69. </style>
  70. <style lang="less" scoped>
  71. .night-mode {
  72. .modal-card,
  73. .modal-card-head,
  74. .modal-card-body {
  75. background-color: var(--dark-grey-3);
  76. }
  77. strong,
  78. p {
  79. color: var(--light-grey-2);
  80. }
  81. .section {
  82. background-color: transparent !important;
  83. }
  84. }
  85. .modal-card-head {
  86. border-bottom: none;
  87. background-color: ghostwhite;
  88. padding: 15px;
  89. }
  90. .modal-card-title {
  91. font-size: 14px;
  92. }
  93. .news-item {
  94. box-shadow: unset !important;
  95. }
  96. .delete {
  97. background: transparent;
  98. &:hover {
  99. background: transparent;
  100. }
  101. &:before,
  102. &:after {
  103. background-color: var(--light-grey-3);
  104. }
  105. }
  106. .sect {
  107. div[class^="sect-head"],
  108. div[class*=" sect-head"] {
  109. padding: 12px;
  110. text-transform: uppercase;
  111. font-weight: bold;
  112. color: var(--white);
  113. }
  114. .sect-head-features {
  115. background-color: dodgerblue;
  116. }
  117. .sect-head-improvements {
  118. background-color: seagreen;
  119. }
  120. .sect-head-bugs {
  121. background-color: brown;
  122. }
  123. .sect-head-upcoming {
  124. background-color: mediumpurple;
  125. }
  126. .sect-body {
  127. padding: 15px 25px;
  128. li {
  129. list-style-type: disc;
  130. }
  131. }
  132. }
  133. </style>