39 lines
1.4 KiB
HTML
39 lines
1.4 KiB
HTML
<div class="generic-page">
|
|
<div class="fill-title">
|
|
<div [className]="covers ? 'description-area description-area-cover' : 'description-area description-area-no-cover'">
|
|
<div class="shadow-text title">
|
|
{{name}}
|
|
</div>
|
|
<div class="description" *ngIf="description">
|
|
{{description}}
|
|
</div>
|
|
<div class="button-area">
|
|
<button class="circular-button" (click)="playAll($event)" type="submit">
|
|
<i class="material-icons">play_arrow</i>
|
|
</button>
|
|
<button class="circular-button" (click)="playShuffle($event)" type="submit">
|
|
<i class="material-icons">shuffle</i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="cover-area">
|
|
<div class="cover" *ngIf="covers" >
|
|
<img src="{{covers[0]}}"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="fill-content colomn_single" *ngIf="artists">
|
|
<div class="clear"></div>
|
|
<div class="title">Artist<span *ngIf="artists.length > 1">s</span>: <app-entry placeholder="Search..." (changeValue)="onSearch($event)"></app-entry></div>
|
|
<div *ngFor="let data of artists" class="item-list" (click)="onSelectArtist($event, data.id)" (auxclick)="onSelectArtist($event, data.id)">
|
|
<app-element-season
|
|
[element]="data"
|
|
countSubType="Album"
|
|
[countSubTypeCallBack]="countAlbum"
|
|
countSubType2="Track"
|
|
[countSubType2CallBack]="countTrack"
|
|
></app-element-season>
|
|
</div>
|
|
</div>
|
|
<div class="clear-end"></div>
|
|
</div> |