Reports.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <template>
  2. <div>
  3. <metadata title="Admin | Reports" />
  4. <div class="container">
  5. <table class="table is-striped">
  6. <thead>
  7. <tr>
  8. <td>Song ID</td>
  9. <td>Created By</td>
  10. <td>Created At</td>
  11. <td>Description</td>
  12. <td>Options</td>
  13. </tr>
  14. </thead>
  15. <tbody>
  16. <tr v-for="(report, index) in reports" :key="index">
  17. <td>
  18. <span>{{ report.songId }}</span>
  19. </td>
  20. <td>
  21. <user-id-to-username
  22. :userId="report.createdBy"
  23. :link="true"
  24. />
  25. </td>
  26. <td>
  27. <span>{{ report.createdAt }}</span>
  28. </td>
  29. <td>
  30. <span>{{ report.description }}</span>
  31. </td>
  32. <td>
  33. <a
  34. class="button is-warning"
  35. href="#"
  36. @click="view(report)"
  37. >View</a
  38. >
  39. <a
  40. class="button is-primary"
  41. href="#"
  42. @click="resolve(report._id)"
  43. >Resolve</a
  44. >
  45. </td>
  46. </tr>
  47. </tbody>
  48. </table>
  49. </div>
  50. <issues-modal v-if="modals.viewReport" />
  51. </div>
  52. </template>
  53. <script>
  54. import { mapState, mapActions } from "vuex";
  55. import { Toast } from "vue-roaster";
  56. import io from "../../io";
  57. import IssuesModal from "../Modals/IssuesModal.vue";
  58. import UserIdToUsername from "../UserIdToUsername.vue";
  59. export default {
  60. components: { IssuesModal, UserIdToUsername },
  61. data() {
  62. return {
  63. reports: []
  64. };
  65. },
  66. mounted() {
  67. io.getSocket(socket => {
  68. this.socket = socket;
  69. if (this.socket.connected) this.init();
  70. this.socket.emit("reports.index", res => {
  71. this.reports = res.data;
  72. });
  73. this.socket.on("event:admin.report.resolved", reportId => {
  74. this.reports = this.reports.filter(report => {
  75. return report._id !== reportId;
  76. });
  77. });
  78. this.socket.on("event:admin.report.created", report => {
  79. this.reports.push(report);
  80. });
  81. io.onConnect(() => {
  82. this.init();
  83. });
  84. });
  85. if (this.$route.query.id) {
  86. this.socket.emit("reports.findOne", this.$route.query.id, res => {
  87. if (res.status === "success") this.view(res.data);
  88. else
  89. Toast.methods.addToast(
  90. "Report with that ID not found",
  91. 3000
  92. );
  93. });
  94. }
  95. },
  96. computed: {
  97. ...mapState("modals", {
  98. modals: state => state.modals.admin
  99. })
  100. },
  101. methods: {
  102. init() {
  103. this.socket.emit("apis.joinAdminRoom", "reports", () => {});
  104. },
  105. view(report) {
  106. this.viewReport(report);
  107. this.openModal({ sector: "admin", modal: "viewReport" });
  108. },
  109. resolve(reportId) {
  110. this.socket.emit("reports.resolve", reportId, res => {
  111. Toast.methods.addToast(res.message, 3000);
  112. if (res.status === "success" && this.modals.viewReport)
  113. this.closeModal({
  114. sector: "admin",
  115. modal: "viewReport"
  116. });
  117. });
  118. },
  119. ...mapActions("modals", ["openModal", "closeModal"]),
  120. ...mapActions("admin/reports", ["viewReport"])
  121. }
  122. };
  123. </script>
  124. <style lang="scss" scoped>
  125. @import "styles/global.scss";
  126. .tag:not(:last-child) {
  127. margin-right: 5px;
  128. }
  129. td {
  130. word-wrap: break-word;
  131. max-width: 10vw;
  132. vertical-align: middle;
  133. }
  134. </style>