123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226 |
- <template>
- <div>
- <page-metadata title="Admin | Reports" />
- <div class="container">
- <table class="table is-striped">
- <thead>
- <tr>
- <td>Summary</td>
- <td>YouTube / Song ID</td>
- <td>Categories Included</td>
- <td>Options</td>
- </tr>
- </thead>
- <tbody>
- <tr v-for="report in reports" :key="report._id">
- <td>
- <report-info-item
- :created-at="report.createdAt"
- :created-by="report.createdBy"
- />
- </td>
- <td>
- <span>
- <a
- :href="
- 'https://www.youtube.com/watch?v=' +
- `${report.song.youtubeId}`
- "
- target="_blank"
- >
- {{ report.song.youtubeId }}</a
- >
- <br />
- {{ report.song._id }}
- </span>
- </td>
- <td id="categories-column">
- <ul>
- <li
- v-for="category in getCategories(
- report.issues
- )"
- :key="category"
- >
- {{ category }}
- </li>
- </ul>
- </td>
- <td id="options-column">
- <a
- class="button is-primary"
- href="#"
- @click="view(report._id)"
- content="Expand"
- v-tippy
- >
- <i class="material-icons icon-with-button">
- open_in_full
- </i>
- Expand
- </a>
- <a
- class="button is-success"
- href="#"
- @click="resolve(report._id)"
- content="Resolve"
- v-tippy
- >
- <i class="material-icons icon-with-button">
- done_all
- </i>
- Resolve
- </a>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- <view-report v-if="modals.viewReport" sector="admin" />
- <edit-song v-if="modals.editSong" song-type="songs" />
- </div>
- </template>
- <script>
- import ReportInfoItem from "@/components/ReportInfoItem.vue";
- import { mapState, mapActions, mapGetters } from "vuex";
- import { defineAsyncComponent } from "vue";
- import Toast from "toasters";
- import ws from "@/ws";
- export default {
- components: {
- ViewReport: defineAsyncComponent(() =>
- import("@/components/modals/ViewReport.vue")
- ),
- EditSong: defineAsyncComponent(() =>
- import("@/components/modals/EditSong/index.vue")
- ),
- ReportInfoItem
- },
- data() {
- return {
- reports: []
- };
- },
- computed: {
- ...mapState("modalVisibility", {
- modals: state => state.modals
- }),
- ...mapGetters({
- socket: "websockets/getSocket"
- })
- },
- mounted() {
- if (this.socket.readyState === 1) this.init();
- ws.onConnect(() => this.init());
- this.socket.dispatch("reports.index", res => {
- if (res.status === "success") this.reports = res.data.reports;
- });
- this.socket.on("event:admin.report.resolved", res => {
- this.reports = this.reports.filter(
- report => report._id !== res.data.reportId
- );
- });
- this.socket.on("event:admin.report.created", res =>
- this.reports.unshift(res.data.report)
- );
- // if (this.$route.query.id) {
- // this.socket.dispatch(
- // "reports.findOne",
- // this.$route.query.id,
- // res => {
- // if (res.status === "success") this.view(res.data.report);
- // else new Toast("Report with that ID not found");
- // }
- // );
- // }
- },
- methods: {
- init() {
- this.socket.dispatch("apis.joinAdminRoom", "reports", () => {});
- },
- getCategories(issues) {
- const categories = [];
- issues.forEach(issue => {
- if (categories.indexOf(issue.category) === -1)
- categories.push(issue.category);
- });
- return categories;
- },
- view(reportId) {
- this.viewReport(reportId);
- this.openModal("viewReport");
- },
- resolve(reportId) {
- return this.resolveReport(reportId)
- .then(res => {
- if (res.status === "success" && this.modals.viewReport)
- this.closeModal("viewReport");
- })
- .catch(err => new Toast(err.message));
- },
- ...mapActions("modalVisibility", ["openModal", "closeModal"]),
- ...mapActions("admin/reports", ["resolveReport"]),
- ...mapActions("modals/viewReport", ["viewReport"])
- }
- };
- </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);
- }
- }
- }
- #options-column {
- a:not(:last-of-type) {
- margin-right: 5px;
- }
- }
- #categories-column {
- text-transform: capitalize;
- }
- td {
- word-wrap: break-word;
- max-width: 10vw;
- vertical-align: middle;
- }
- li {
- list-style: inside;
- }
- </style>
|