|
|
|
@ -17,16 +17,23 @@
|
|
|
|
|
<top-banner [background]="tv.background" [available]="tv.available" [title]="tv.title"
|
|
|
|
|
[releaseDate]="tv.firstAired" [tagline]="tv.certification"></top-banner>
|
|
|
|
|
<div class="social-icons-container">
|
|
|
|
|
<social-icons
|
|
|
|
|
[homepage]="tv.homepage"
|
|
|
|
|
[tvdbId]="tv.id"
|
|
|
|
|
<social-icons
|
|
|
|
|
[homepage]="tv.homepage"
|
|
|
|
|
[tvdbId]="tv.id"
|
|
|
|
|
[hasTrailer]="tv.trailer"
|
|
|
|
|
(openTrailer)="openDialog()"
|
|
|
|
|
[imdbId]="tv.imdbId"
|
|
|
|
|
(openTrailer)="openDialog()"
|
|
|
|
|
[imdbId]="tv.imdbId"
|
|
|
|
|
[available]="tv.available || tv.partlyAvailable"
|
|
|
|
|
[plexUrl]="tv.plexUrl"
|
|
|
|
|
[embyUrl]="tv.embyUrl"
|
|
|
|
|
[jellyfinUrl]="tv.jellyfinUrl">
|
|
|
|
|
[plexUrl]="tv.plexUrl"
|
|
|
|
|
[embyUrl]="tv.embyUrl"
|
|
|
|
|
[jellyfinUrl]="tv.jellyfinUrl"
|
|
|
|
|
[isAdmin]="isAdmin"
|
|
|
|
|
[canRequestOnBehalf]="!showRequest"
|
|
|
|
|
[canShowAdvanced]="showAdvanced && showRequest"
|
|
|
|
|
[type]="requestType"
|
|
|
|
|
(onRequestBehalf)="openRequestOnBehalf()"
|
|
|
|
|
(onAdvancedOptions)="openAdvancedOptions()"
|
|
|
|
|
>
|
|
|
|
|
</social-icons>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
@ -55,23 +62,6 @@
|
|
|
|
|
'Requests.ReportIssue' | translate }}</button>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
<!-- Setting/Configuration admin area -->
|
|
|
|
|
<div class="col-12 col-lg-1 col-xl-1 media-row content-end">
|
|
|
|
|
<button *ngIf="isAdmin" mat-icon-button [matMenuTriggerFor]="menu">
|
|
|
|
|
<mat-icon>settings</mat-icon>
|
|
|
|
|
</button>
|
|
|
|
|
<mat-menu #menu="matMenu">
|
|
|
|
|
<button mat-menu-item (click)="openRequestOnBehalf()" [disabled]="fullyAvailable">
|
|
|
|
|
<mat-icon>supervised_user_circle</mat-icon>
|
|
|
|
|
<span>{{'MediaDetails.RequestOnBehalf' | translate}}</span>
|
|
|
|
|
</button>
|
|
|
|
|
<button mat-menu-item [disabled]="!showAdvanced || !showRequest"
|
|
|
|
|
(click)="openAdvancedOptions()">
|
|
|
|
|
<mat-icon>movie_filter</mat-icon>
|
|
|
|
|
<span>{{'MediaDetails.SonarrConfiguration' | translate}}</span>
|
|
|
|
|
</button>
|
|
|
|
|
</mat-menu>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|