123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432 |
- <template>
- <div class="reports-tab tabs-container">
- <div class="tab-selection">
- <button
- class="button is-default"
- ref="sort-by-report-tab"
- :class="{ selected: tab === 'sort-by-report' }"
- @click="showTab('sort-by-report')"
- >
- Sort by Report
- </button>
- <button
- class="button is-default"
- ref="sort-by-category-tab"
- :class="{ selected: tab === 'sort-by-category' }"
- @click="showTab('sort-by-category')"
- >
- Sort by Category
- </button>
- </div>
- <div class="tab" v-if="tab === 'sort-by-category'">
- <div class="report-items" v-if="reports.length > 0">
- <div
- class="report-item"
- v-for="(issues, category) in sortedByCategory"
- :key="category"
- >
- <div class="report-item-header universal-item">
- <i
- class="material-icons"
- :content="category"
- v-tippy="{ theme: 'info' }"
- >
- {{ icons[category] }}
- </i>
- <p>{{ category }} Issues</p>
- </div>
- <div class="report-sub-items">
- <div
- class="report-sub-item report-sub-item-unresolved"
- :class="[
- 'report',
- issue.resolved
- ? 'report-sub-item-resolved'
- : 'report-sub-item-unresolved'
- ]"
- v-for="(issue, issueIndex) in issues"
- :key="issueIndex"
- >
- <i
- class="material-icons duration-icon report-sub-item-left-icon"
- :content="issue.category"
- v-tippy
- >
- {{ icons[category] }}
- </i>
- <p class="report-sub-item-info">
- <span class="report-sub-item-title">
- {{ issue.title }}
- </span>
- <span
- class="report-sub-item-description"
- v-if="issue.description"
- >
- {{ issue.description }}
- </span>
- </p>
- <div
- class="report-sub-item-actions universal-item-actions"
- >
- <i
- class="material-icons resolve-icon"
- content="Resolve"
- v-tippy
- v-if="!issue.resolved"
- @click="
- toggleIssue(issue.reportId, issue._id)
- "
- >
- done
- </i>
- <i
- class="material-icons unresolve-icon"
- content="Unresolve"
- v-tippy
- v-else
- @click="
- toggleIssue(issue.reportId, issue._id)
- "
- >
- remove
- </i>
- </div>
- </div>
- </div>
- </div>
- </div>
- <p class="no-reports" v-else>There are no reports for this song.</p>
- </div>
- <div class="tab" v-if="tab === 'sort-by-report'">
- <div class="report-items" v-if="reports.length > 0">
- <div
- class="report-item"
- v-for="report in reports"
- :key="report._id"
- >
- <report-info-item
- :created-at="report.createdAt"
- :created-by="report.createdBy"
- >
- <template #actions>
- <i
- class="material-icons resolve-icon"
- content="Resolve all"
- v-tippy
- @click="resolve(report._id)"
- >
- done_all
- </i>
- </template>
- </report-info-item>
- <div class="report-sub-items">
- <div
- class="report-sub-item report-sub-item-unresolved"
- :class="[
- 'report',
- issue.resolved
- ? 'report-sub-item-resolved'
- : 'report-sub-item-unresolved'
- ]"
- v-for="(issue, issueIndex) in report.issues"
- :key="issueIndex"
- >
- <i
- class="material-icons duration-icon report-sub-item-left-icon"
- :content="issue.category"
- v-tippy
- >
- {{ icons[issue.category] }}
- </i>
- <p class="report-sub-item-info">
- <span class="report-sub-item-title">
- {{ issue.title }}
- </span>
- <span
- class="report-sub-item-description"
- v-if="issue.description"
- >
- {{ issue.description }}
- </span>
- </p>
- <div
- class="report-sub-item-actions universal-item-actions"
- >
- <i
- class="material-icons resolve-icon"
- content="Resolve"
- v-tippy
- v-if="!issue.resolved"
- @click="toggleIssue(report._id, issue._id)"
- >
- done
- </i>
- <i
- class="material-icons unresolve-icon"
- content="Unresolve"
- v-tippy
- v-else
- @click="toggleIssue(report._id, issue._id)"
- >
- remove
- </i>
- </div>
- </div>
- </div>
- </div>
- </div>
- <p class="no-reports" v-else>There are no reports for this song.</p>
- </div>
- </div>
- </template>
- <script>
- import ReportInfoItem from "@/components/ReportInfoItem.vue";
- import { mapState, mapGetters, mapActions } from "vuex";
- import Toast from "toasters";
- export default {
- components: { ReportInfoItem },
- data() {
- return {
- tab: "sort-by-report",
- icons: {
- duration: "timer",
- video: "tv",
- thumbnail: "image",
- artists: "record_voice_over",
- title: "title",
- custom: "lightbulb"
- }
- };
- },
- computed: {
- ...mapState("modals/editSong", {
- reports: state => state.reports
- }),
- ...mapGetters({
- socket: "websockets/getSocket"
- }),
- sortedByCategory() {
- const categories = {};
- this.reports.forEach(report =>
- report.issues.forEach(issue => {
- if (categories[issue.category])
- categories[issue.category].push({
- ...issue,
- reportId: report._id
- });
- else
- categories[issue.category] = [
- { ...issue, reportId: report._id }
- ];
- })
- );
- return categories;
- }
- },
- mounted() {
- this.socket.on(
- "event:admin.report.created",
- res => this.reports.unshift(res.data.report),
- { modal: "editSong" }
- );
- this.socket.on(
- "event:admin.report.resolved",
- res => this.resolveReport(res.data.reportId),
- { modal: "editSong" }
- );
- this.socket.on(
- "event:admin.report.issue.toggled",
- res => {
- console.log("being toggled twice?");
- this.reports.forEach((report, index) => {
- if (report._id === res.data.reportId) {
- const issue = this.reports[index].issues.find(
- issue => issue._id.toString() === res.data.issueId
- );
- issue.resolved = !issue.resolved;
- }
- });
- },
- { modal: "editSong" }
- );
- },
- methods: {
- showTab(tab) {
- this.$refs[`${tab}-tab`].scrollIntoView();
- this.tab = tab;
- },
- resolve(reportId) {
- this.socket.dispatch(
- "reports.resolve",
- reportId,
- res => new Toast(res.message)
- );
- },
- toggleIssue(reportId, issueId) {
- this.socket.dispatch(
- "reports.toggleIssue",
- reportId,
- issueId,
- res => {
- if (res.status !== "success") new Toast(res.message);
- }
- );
- },
- ...mapActions("modals/editSong", ["resolveReport"]),
- ...mapActions("modalVisibility", ["closeModal"])
- }
- };
- </script>
- <style lang="scss" scoped>
- .night-mode {
- .report-items .report-item {
- background-color: var(--dark-grey-3) !important;
- }
- .report-items .report-item .report-item-header {
- background-color: var(--dark-grey-2) !important;
- }
- .label,
- p,
- strong {
- color: var(--light-grey-2);
- }
- }
- .tabs-container {
- .tab-selection {
- display: flex;
- overflow-x: auto;
- .button {
- border-radius: 0;
- border: 0;
- text-transform: uppercase;
- font-size: 14px;
- color: var(--dark-grey-3);
- background-color: var(--light-grey-2);
- flex-grow: 1;
- height: 32px;
- &:not(:first-of-type) {
- margin-left: 5px;
- }
- }
- .selected {
- background-color: var(--primary-color) !important;
- color: var(--white) !important;
- font-weight: 600;
- }
- }
- .tab {
- padding: 15px 0;
- border-radius: 0;
- }
- }
- .no-reports {
- text-align: center;
- }
- .report-items {
- .report-item {
- background-color: var(--white);
- border: 0.5px solid var(--primary-color);
- border-radius: 5px;
- padding: 8px;
- &:not(:first-of-type) {
- margin-bottom: 16px;
- }
- .report-item-header {
- justify-content: center;
- text-transform: capitalize;
- i {
- margin-right: 5px;
- }
- }
- .report-sub-items {
- .report-sub-item {
- border: 0.5px solid var(--black);
- margin-top: -1px;
- line-height: 24px;
- display: flex;
- padding: 4px;
- display: flex;
- &:first-child {
- border-radius: 3px 3px 0 0;
- }
- &:last-child {
- border-radius: 0 0 3px 3px;
- }
- &.report-sub-item-resolved {
- .report-sub-item-description,
- .report-sub-item-title {
- text-decoration: line-through;
- }
- }
- .report-sub-item-left-icon {
- margin-right: 8px;
- margin-top: auto;
- margin-bottom: auto;
- }
- .report-sub-item-info {
- flex: 1;
- display: flex;
- flex-direction: column;
- .report-sub-item-title {
- font-size: 14px;
- }
- .report-sub-item-description {
- font-size: 12px;
- line-height: 16px;
- }
- }
- .report-sub-item-actions {
- height: 24px;
- margin-left: 8px;
- margin-top: auto;
- margin-bottom: auto;
- }
- }
- }
- .resolve-icon {
- color: var(--green);
- cursor: pointer;
- }
- .unresolve-icon {
- color: var(--red);
- cursor: pointer;
- }
- }
- }
- </style>
|