mirror of https://github.com/Ombi-app/Ombi
parent
b570d904bf
commit
c18efc5a3a
@ -0,0 +1,61 @@
|
|||||||
|
<div>
|
||||||
|
<div *ngIf="tv.status">
|
||||||
|
<strong>Status:</strong>
|
||||||
|
<div>
|
||||||
|
{{tv.status}}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<strong>First Aired:</strong>
|
||||||
|
<div>
|
||||||
|
{{tv.firstAired | date: 'mediumDate'}}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<strong>Status:</strong>
|
||||||
|
<div>
|
||||||
|
{{tv.status}}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<strong>Runtime:</strong>
|
||||||
|
<div>
|
||||||
|
{{tv.runtime}} Minutes
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div *ngIf="tv.rating">
|
||||||
|
<strong>Rating:</strong>
|
||||||
|
<div>
|
||||||
|
{{tv.rating}} / 10
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div *ngIf="tv.network">
|
||||||
|
<strong>Network:</strong>
|
||||||
|
<div>
|
||||||
|
{{tv.network.name}}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div *ngIf="tv.genre">
|
||||||
|
<strong>Genres:</strong>
|
||||||
|
<div>
|
||||||
|
<span *ngFor="let genre of tv.genre">
|
||||||
|
{{genre}} |
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<div *ngIf="seasonCount">
|
||||||
|
<strong>Seasons:</strong>
|
||||||
|
<div>
|
||||||
|
{{seasonCount}}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div *ngIf="totalEpisodes">
|
||||||
|
<strong>Episodes:</strong>
|
||||||
|
<div>
|
||||||
|
{{totalEpisodes}}
|
||||||
|
</div>
|
||||||
|
</div>
|
@ -0,0 +1,12 @@
|
|||||||
|
import { Component, ViewEncapsulation, Input } from "@angular/core";
|
||||||
|
import { ISearchTvResultV2 } from "../../../interfaces/ISearchTvResultV2";
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
templateUrl: "./tv-information-panel.component.html",
|
||||||
|
styleUrls: ["../../media-details.component.scss"],
|
||||||
|
selector: "tv-information-panel",
|
||||||
|
encapsulation: ViewEncapsulation.None
|
||||||
|
})
|
||||||
|
export class TvInformationPanelComponent {
|
||||||
|
@Input() public tv: ISearchTvResultV2;
|
||||||
|
}
|
Loading…
Reference in new issue