]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/+admin/moderation/video-abuse-list/video-abuse-list.component.html
Move abuse-list details into its own component
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / moderation / video-abuse-list / video-abuse-list.component.html
index bf73f916981b593b8ec42d7ab2200534345e9b9b..2e7b60e2f708ff93636ad251c2a757ea9bd2a886 100644 (file)
   <ng-template pTemplate="rowexpansion" let-videoAbuse>
       <tr>
         <td class="expand-cell" colspan="6">
-          <div class="d-flex moderation-expanded">
-            <!-- report left part (report details) -->
-            <div class="col-8">
-
-              <!-- report metadata -->
-              <div class="d-flex">
-                <span class="col-3 moderation-expanded-label" i18n>Reporter</span>
-                <span class="col-9 moderation-expanded-text">
-                  <a [routerLink]="[ '/admin/moderation/video-abuses/list' ]" [queryParams]="{ 'search': 'reporter:&quot;' + videoAbuse.reporterAccount.displayName + '&quot;' }" class="chip">
-                    <img
-                      class="avatar"
-                      [src]="videoAbuse.reporterAccount.avatar.path"
-                      (error)="switchToDefaultAvatar($event)"
-                      alt="Avatar"
-                    >
-                    <div>
-                      <span class="text-muted">{{ createByString(videoAbuse.reporterAccount) }}</span>
-                    </div>
-                  </a>
-                  <a [routerLink]="[ '/admin/moderation/video-abuses/list' ]" [queryParams]="{ 'search': 'reportee:&quot;' + videoAbuse.reporterAccount.displayName + '&quot;' }" class="ml-auto text-muted video-details-links" i18n>
-                    {videoAbuse.countReportsForReporter, plural, =1 {1 report} other {{{ videoAbuse.countReportsForReporter }} reports}}<span class="ml-1 glyphicon glyphicon-flag"></span>
-                  </a>
-                </span>
-              </div>
-
-              <div class="d-flex">
-                <span class="col-3 moderation-expanded-label" i18n>Reportee</span>
-                <span class="col-9 moderation-expanded-text">
-                  <div class="chip">
-                    <img
-                      class="avatar"
-                      [src]="videoAbuse.video.channel.ownerAccount?.avatar.path"
-                      (error)="switchToDefaultAvatar($event)"
-                      alt="Avatar"
-                    >
-                    <div>
-                      <span class="text-muted">{{ videoAbuse.video.channel.ownerAccount ? createByString(videoAbuse.video.channel.ownerAccount) : '' }}</span>
-                    </div>
-                  </div>
-                  <a [routerLink]="[ '/admin/moderation/video-abuses/list' ]" [queryParams]="{ 'search': 'reportee:&quot;' +videoAbuse.video.channel.ownerAccount.displayName + '&quot;' }" class="ml-auto text-muted video-details-links" i18n>
-                    {videoAbuse.countReportsForReportee, plural, =1 {1 report} other {{{ videoAbuse.countReportsForReportee }} reports}}<span class="ml-1 glyphicon glyphicon-flag"></span>
-                  </a>
-                </span>
-              </div>
-
-              <div class="d-flex">
-                <span class="col-3 moderation-expanded-label" i18n>Updated</span>
-                <time class="col-9 moderation-expanded-text video-details-date-updated">{{ videoAbuse.updatedAt | date: 'medium' }}</time>
-              </div>
-
-              <!-- report text -->
-              <div class="mt-3 d-flex">
-                <span class="col-3 moderation-expanded-label" i18n>Report #{{ videoAbuse.id }}</span>
-                <span class="col-9 moderation-expanded-text" [innerHTML]="videoAbuse.reasonHtml"></span>
-              </div>
-
-              <div class="mt-3 d-flex" *ngIf="videoAbuse.moderationComment">
-                <span class="col-3 moderation-expanded-label" i18n>Note</span>
-                <span class="col-9 moderation-expanded-text" [innerHTML]="videoAbuse.moderationCommentHtml"></span>
-              </div>
-
-            </div>
-
-            <!-- report right part (video details) -->
-            <div class="col-4">
-              <div class="screenratio">
-                <div *ngIf="videoAbuse.video.deleted || videoAbuse.video.blacklisted">
-                  <span i18n *ngIf="videoAbuse.video.deleted">The video was deleted</span>
-                  <span i18n *ngIf="!videoAbuse.video.deleted">The video was blacklisted</span>
-                </div>
-                <div *ngIf="!videoAbuse.video.deleted && !videoAbuse.video.blacklisted" [innerHTML]="videoAbuse.embedHtml"></div>
-              </div>
-            </div>
-          </div>
+          <my-video-abuse-details [videoAbuse]="videoAbuse"></my-video-abuse-details>
         </td>
       </tr>
   </ng-template>