Reports.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. <template>
  2. <div>
  3. <page-metadata title="Admin | Reports" />
  4. <div class="container">
  5. <table class="table is-striped">
  6. <thead>
  7. <tr>
  8. <td>Summary</td>
  9. <td>YouTube / Song ID</td>
  10. <td>Categories Included</td>
  11. <td>Options</td>
  12. </tr>
  13. </thead>
  14. <tbody>
  15. <tr v-for="report in reports" :key="report._id">
  16. <td>
  17. <report-info-item
  18. :created-at="report.createdAt"
  19. :created-by="report.createdBy"
  20. />
  21. </td>
  22. <td>
  23. <span>
  24. <a
  25. :href="
  26. 'https://www.youtube.com/watch?v=' +
  27. `${report.song.youtubeId}`
  28. "
  29. target="_blank"
  30. >
  31. {{ report.song.youtubeId }}</a
  32. >
  33. <br />
  34. {{ report.song._id }}
  35. </span>
  36. </td>
  37. <td id="categories-column">
  38. <ul>
  39. <li
  40. v-for="category in getCategories(
  41. report.issues
  42. )"
  43. :key="category"
  44. >
  45. {{ category }}
  46. </li>
  47. </ul>
  48. </td>
  49. <td id="options-column">
  50. <a
  51. class="button is-primary"
  52. href="#"
  53. @click="view(report._id)"
  54. content="Expand"
  55. v-tippy
  56. >
  57. <i class="material-icons icon-with-button">
  58. open_in_full
  59. </i>
  60. Expand
  61. </a>
  62. <a
  63. class="button is-success"
  64. href="#"
  65. @click="resolve(report._id)"
  66. content="Resolve"
  67. v-tippy
  68. >
  69. <i class="material-icons icon-with-button">
  70. done_all
  71. </i>
  72. Resolve
  73. </a>
  74. </td>
  75. </tr>
  76. </tbody>
  77. </table>
  78. </div>
  79. <view-report v-if="modals.viewReport" sector="admin" />
  80. <edit-song v-if="modals.editSong" song-type="songs" />
  81. </div>
  82. </template>
  83. <script>
  84. import ReportInfoItem from "@/components/ReportInfoItem.vue";
  85. import { mapState, mapActions, mapGetters } from "vuex";
  86. import { defineAsyncComponent } from "vue";
  87. import Toast from "toasters";
  88. import ws from "@/ws";
  89. export default {
  90. components: {
  91. ViewReport: defineAsyncComponent(() =>
  92. import("@/components/modals/ViewReport.vue")
  93. ),
  94. EditSong: defineAsyncComponent(() =>
  95. import("@/components/modals/EditSong/index.vue")
  96. ),
  97. ReportInfoItem
  98. },
  99. data() {
  100. return {
  101. reports: []
  102. };
  103. },
  104. computed: {
  105. ...mapState("modalVisibility", {
  106. modals: state => state.modals
  107. }),
  108. ...mapGetters({
  109. socket: "websockets/getSocket"
  110. })
  111. },
  112. mounted() {
  113. if (this.socket.readyState === 1) this.init();
  114. ws.onConnect(() => this.init());
  115. this.socket.dispatch("reports.index", res => {
  116. if (res.status === "success") this.reports = res.data.reports;
  117. });
  118. this.socket.on("event:admin.report.resolved", res => {
  119. this.reports = this.reports.filter(
  120. report => report._id !== res.data.reportId
  121. );
  122. });
  123. this.socket.on("event:admin.report.created", res =>
  124. this.reports.unshift(res.data.report)
  125. );
  126. // if (this.$route.query.id) {
  127. // this.socket.dispatch(
  128. // "reports.findOne",
  129. // this.$route.query.id,
  130. // res => {
  131. // if (res.status === "success") this.view(res.data.report);
  132. // else new Toast("Report with that ID not found");
  133. // }
  134. // );
  135. // }
  136. },
  137. methods: {
  138. init() {
  139. this.socket.dispatch("apis.joinAdminRoom", "reports", () => {});
  140. },
  141. getCategories(issues) {
  142. const categories = [];
  143. issues.forEach(issue => {
  144. if (categories.indexOf(issue.category) === -1)
  145. categories.push(issue.category);
  146. });
  147. return categories;
  148. },
  149. view(reportId) {
  150. this.viewReport(reportId);
  151. this.openModal("viewReport");
  152. },
  153. resolve(reportId) {
  154. return this.resolveReport(reportId)
  155. .then(res => {
  156. if (res.status === "success" && this.modals.viewReport)
  157. this.closeModal("viewReport");
  158. })
  159. .catch(err => new Toast(err.message));
  160. },
  161. ...mapActions("modalVisibility", ["openModal", "closeModal"]),
  162. ...mapActions("admin/reports", ["resolveReport"]),
  163. ...mapActions("modals/viewReport", ["viewReport"])
  164. }
  165. };
  166. </script>
  167. <style lang="scss" scoped>
  168. .night-mode {
  169. .table {
  170. color: var(--light-grey-2);
  171. background-color: var(--dark-grey-3);
  172. thead tr {
  173. background: var(--dark-grey-3);
  174. td {
  175. color: var(--white);
  176. }
  177. }
  178. tbody tr:hover {
  179. background-color: var(--dark-grey-4) !important;
  180. }
  181. tbody tr:nth-child(even) {
  182. background-color: var(--dark-grey-2);
  183. }
  184. strong {
  185. color: var(--light-grey-2);
  186. }
  187. }
  188. }
  189. #options-column {
  190. a:not(:last-of-type) {
  191. margin-right: 5px;
  192. }
  193. }
  194. #categories-column {
  195. text-transform: capitalize;
  196. }
  197. td {
  198. word-wrap: break-word;
  199. max-width: 10vw;
  200. vertical-align: middle;
  201. }
  202. li {
  203. list-style: inside;
  204. }
  205. </style>