123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403 |
- <template>
- <div>
- <metadata title="Admin | News" />
- <div class="container">
- <table class="table is-striped">
- <thead>
- <tr>
- <td>Title</td>
- <td>Description</td>
- <td>Bugs</td>
- <td>Features</td>
- <td>Improvements</td>
- <td>Upcoming</td>
- <td>Options</td>
- </tr>
- </thead>
- <tbody>
- <tr v-for="(news, index) in news" :key="index">
- <td>
- <strong>{{ news.title }}</strong>
- </td>
- <td>{{ news.description }}</td>
- <td>{{ news.bugs.join(", ") }}</td>
- <td>{{ news.features.join(", ") }}</td>
- <td>{{ news.improvements.join(", ") }}</td>
- <td>{{ news.upcoming.join(", ") }}</td>
- <td>
- <button
- class="button is-primary"
- @click="editNewsClick(news)"
- >
- Edit
- </button>
- <confirm @confirm="remove(news._id)">
- <button class="button is-danger">Remove</button>
- </confirm>
- </td>
- </tr>
- </tbody>
- </table>
- <div class="card is-fullwidth">
- <header class="card-header">
- <p class="card-header-title">Create News</p>
- </header>
- <div class="card-content">
- <div class="content">
- <label class="label">Title & Description</label>
- <div class="control is-horizontal">
- <div class="control is-grouped">
- <p class="control is-expanded">
- <input
- v-model="creating.title"
- class="input"
- type="text"
- placeholder="Title"
- />
- </p>
- <p class="control is-expanded">
- <input
- v-model="creating.description"
- class="input"
- type="text"
- placeholder="Short description"
- />
- </p>
- </div>
- </div>
- <div class="columns">
- <div class="column">
- <label class="label">Bugs</label>
- <p class="control has-addons">
- <input
- ref="new-bugs"
- class="input"
- type="text"
- placeholder="Bug"
- @keyup.enter="addChange('bugs')"
- />
- <a
- class="button is-info"
- href="#"
- @click="addChange('bugs')"
- >Add</a
- >
- </p>
- <span
- v-for="(bug, index) in creating.bugs"
- :key="index"
- class="tag is-info"
- >
- {{ bug }}
- <button
- class="delete is-info"
- @click="removeChange('bugs', index)"
- />
- </span>
- </div>
- <div class="column">
- <label class="label">Features</label>
- <p class="control has-addons">
- <input
- ref="new-features"
- class="input"
- type="text"
- placeholder="Feature"
- @keyup.enter="addChange('features')"
- />
- <a
- class="button is-info"
- href="#"
- @click="addChange('features')"
- >Add</a
- >
- </p>
- <span
- v-for="(feature,
- index) in creating.features"
- :key="index"
- class="tag is-info"
- >
- {{ feature }}
- <button
- class="delete is-info"
- @click="removeChange('features', index)"
- />
- </span>
- </div>
- </div>
- <div class="columns">
- <div class="column">
- <label class="label">Improvements</label>
- <p class="control has-addons">
- <input
- ref="new-improvements"
- class="input"
- type="text"
- placeholder="Improvement"
- @keyup.enter="addChange('improvements')"
- />
- <a
- class="button is-info"
- href="#"
- @click="addChange('improvements')"
- >Add</a
- >
- </p>
- <span
- v-for="(improvement,
- index) in creating.improvements"
- :key="index"
- class="tag is-info"
- >
- {{ improvement }}
- <button
- class="delete is-info"
- @click="
- removeChange('improvements', index)
- "
- />
- </span>
- </div>
- <div class="column">
- <label class="label">Upcoming</label>
- <p class="control has-addons">
- <input
- ref="new-upcoming"
- class="input"
- type="text"
- placeholder="Upcoming"
- @keyup.enter="addChange('upcoming')"
- />
- <a
- class="button is-info"
- href="#"
- @click="addChange('upcoming')"
- >Add</a
- >
- </p>
- <span
- v-for="(upcoming,
- index) in creating.upcoming"
- :key="index"
- class="tag is-info"
- >
- {{ upcoming }}
- <button
- class="delete is-info"
- @click="removeChange('upcoming', index)"
- />
- </span>
- </div>
- </div>
- </div>
- </div>
- <footer class="card-footer">
- <a class="card-footer-item" @click="createNews()" href="#"
- >Create</a
- >
- </footer>
- </div>
- </div>
- <edit-news
- v-if="modals.editNews"
- :news-id="editingNewsId"
- sector="admin"
- />
- </div>
- </template>
- <script>
- import { mapActions, mapState, mapGetters } from "vuex";
- import Toast from "toasters";
- import ws from "@/ws";
- import Confirm from "@/components/Confirm.vue";
- export default {
- components: {
- Confirm,
- EditNews: () => import("@/components/modals/EditNews.vue")
- },
- data() {
- return {
- editingNewsId: "",
- creating: {
- title: "",
- description: "",
- bugs: [],
- features: [],
- improvements: [],
- upcoming: []
- }
- };
- },
- computed: {
- ...mapState("modalVisibility", {
- modals: state => state.modals
- }),
- ...mapState("admin/news", {
- news: state => state.news
- }),
- ...mapGetters({
- socket: "websockets/getSocket"
- })
- },
- mounted() {
- this.socket.dispatch("news.index", res => {
- if (res.status === "success")
- res.data.news.forEach(news => this.addNews(news));
- });
- this.socket.on("event:admin.news.created", res =>
- this.addNews(res.data.news)
- );
- this.socket.on("event:admin.news.updated", res =>
- this.updateNews(res.data.news)
- );
- this.socket.on("event:admin.news.removed", res =>
- this.removeNews(res.data.newsId)
- );
- if (this.socket.readyState === 1) this.init();
- ws.onConnect(() => this.init());
- },
- methods: {
- createNews() {
- const {
- creating: { bugs, features, improvements, upcoming }
- } = this;
- if (this.creating.title === "")
- return new Toast("Field (Title) cannot be empty");
- if (this.creating.description === "")
- return new Toast("Field (Description) cannot be empty");
- if (
- bugs.length <= 0 &&
- features.length <= 0 &&
- improvements.length <= 0 &&
- upcoming.length <= 0
- )
- return new Toast("You must have at least one News Item");
- return this.socket.dispatch("news.create", this.creating, res => {
- new Toast(res.message, 4000);
- if (res.status === "success")
- this.creating = {
- title: "",
- description: "",
- bugs: [],
- features: [],
- improvements: [],
- upcoming: []
- };
- });
- },
- remove(id) {
- this.socket.dispatch(
- "news.remove",
- id,
- res => new Toast(res.message)
- );
- },
- editNewsClick(news) {
- this.editingNewsId = news._id;
- this.openModal("editNews");
- },
- addChange(type) {
- const change = this.$refs[`new-${type}`].value.trim();
- if (this.creating[type].indexOf(change) !== -1)
- return new Toast(`Tag already exists`);
- if (change) {
- this.$refs[`new-${type}`].value = "";
- this.creating[type].push(change);
- return true;
- }
- return new Toast(`${type} cannot be empty`);
- },
- removeChange(type, index) {
- this.creating[type].splice(index, 1);
- },
- init() {
- this.socket.dispatch("apis.joinAdminRoom", "news", () => {});
- },
- ...mapActions("modalVisibility", ["openModal", "closeModal"]),
- ...mapActions("admin/news", [
- "editNews",
- "addNews",
- "removeNews",
- "updateNews"
- ])
- }
- };
- </script>
- <style lang="scss" scoped>
- .night-mode {
- .table {
- color: var(--light-grey-2);
- background-color: var(--dark-grey-3);
- thead tr {
- background: var(--dark-grey-3);
- td {
- color: var(--white);
- }
- }
- tbody tr:hover {
- background-color: var(--dark-grey-4) !important;
- }
- tbody tr:nth-child(even) {
- background-color: var(--dark-grey-2);
- }
- strong {
- color: var(--light-grey-2);
- }
- }
- .card {
- background: var(--dark-grey-3);
- .card-header {
- box-shadow: 0 1px 2px rgba(10, 10, 10, 0.8);
- }
- p,
- .label {
- color: var(--light-grey-2);
- }
- }
- }
- .tag:not(:last-child) {
- margin-right: 5px;
- }
- td {
- vertical-align: middle;
- & > div {
- display: inline-flex;
- }
- }
- .is-info:focus {
- background-color: var(--primary-color);
- }
- .card-footer-item {
- color: var(--primary-color);
- }
- </style>
|