123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- <template>
- <modal title="News" class="what-is-news-modal">
- <template #body>
- <div
- class="section news-item"
- v-html="sanitize(marked(news.markdown))"
- ></div>
- </template>
- <template #footer>
- <span v-if="news.createdBy">
- By
- <user-id-to-username
- :user-id="news.createdBy"
- :alt="news.createdBy"
- :link="true" /></span
- > <span :title="new Date(news.createdAt)">
- {{
- formatDistance(news.createdAt, new Date(), {
- addSuffix: true
- })
- }}
- </span>
- </template>
- </modal>
- </template>
- <script>
- import { formatDistance } from "date-fns";
- import { marked } from "marked";
- import { sanitize } from "dompurify";
- import { mapActions } from "vuex";
- import { mapModalState } from "@/vuex_helpers";
- export default {
- props: {
- modalUuid: { type: String, default: "" }
- },
- computed: {
- ...mapModalState("modals/whatIsNew/MODAL_UUID", {
- news: state => state.news
- })
- },
- mounted() {
- marked.use({
- renderer: {
- table(header, body) {
- return `<table class="table">
- <thead>${header}</thead>
- <tbody>${body}</tbody>
- </table>`;
- }
- }
- });
- },
- beforeUnmount() {
- // Delete the VueX module that was created for this modal, after all other cleanup tasks are performed
- this.$store.unregisterModule(["modals", "whatIsNew", this.modalUuid]);
- },
- methods: {
- marked,
- sanitize,
- formatDistance,
- ...mapActions("modalVisibility", ["openModal"])
- }
- };
- </script>
- <style lang="less">
- .what-is-news-modal .modal-card .modal-card-foot {
- column-gap: 0;
- }
- </style>
- <style lang="less" scoped>
- .night-mode {
- .modal-card,
- .modal-card-head,
- .modal-card-body {
- background-color: var(--dark-grey-3);
- }
- strong,
- p {
- color: var(--light-grey-2);
- }
- .section {
- background-color: transparent !important;
- }
- }
- .modal-card-head {
- border-bottom: none;
- background-color: ghostwhite;
- padding: 15px;
- }
- .modal-card-title {
- font-size: 14px;
- }
- .news-item {
- box-shadow: unset !important;
- }
- .delete {
- background: transparent;
- &:hover {
- background: transparent;
- }
- &:before,
- &:after {
- background-color: var(--light-grey-3);
- }
- }
- .sect {
- div[class^="sect-head"],
- div[class*=" sect-head"] {
- padding: 12px;
- text-transform: uppercase;
- font-weight: bold;
- color: var(--white);
- }
- .sect-head-features {
- background-color: dodgerblue;
- }
- .sect-head-improvements {
- background-color: seagreen;
- }
- .sect-head-bugs {
- background-color: brown;
- }
- .sect-head-upcoming {
- background-color: mediumpurple;
- }
- .sect-body {
- padding: 15px 25px;
- li {
- list-style-type: disc;
- }
- }
- }
- </style>
|