Mercurial > hg > ugly-duckling
annotate src/app/analysis-item/analysis-item.component.html @ 308:2cc5e1c39ba5
Use multiple line layers for tracks shape.
Currently the highlight layer is disabled; it'll take a bit more work to
restore this.
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Fri, 12 May 2017 09:48:35 +0100 |
parents | 2d7da410ba46 |
children | d17d5038b11a |
rev | line source |
---|---|
dev@170 | 1 <md-card> |
dev@170 | 2 <md-card-header> |
dev@231 | 3 <md-card-title>{{item.title}}</md-card-title> |
dev@231 | 4 <md-card-subtitle>{{item.description}}</md-card-subtitle> |
dev@170 | 5 </md-card-header> |
dev@170 | 6 <md-card-content> |
dev@236 | 7 <ng-template [ngIf]="isLoading()"> |
dev@231 | 8 <ugly-progress-bar |
dev@224 | 9 [isDeterminate]="true" |
dev@231 | 10 [progress]="item.progress" |
dev@231 | 11 ></ugly-progress-bar> |
dev@236 | 12 </ng-template> |
dev@236 | 13 <ng-template [ngIf]="!isLoading()"> |
dev@236 | 14 <ugly-waveform |
dev@224 | 15 [timeline]="timeline" |
dev@231 | 16 [trackIdPrefix]=" item.id || item.title" |
dev@231 | 17 [isSubscribedToAudioService]="isActive && item.isRoot" |
dev@231 | 18 [isSubscribedToExtractionService]="isActive && !item.isRoot" |
dev@224 | 19 [isOneShotExtractor]="true" |
dev@224 | 20 [isSeeking]="isActive" |
dev@285 | 21 [width]="contentWidth" |
dev@236 | 22 ></ugly-waveform> |
dev@236 | 23 </ng-template> |
dev@170 | 24 </md-card-content> |
dev@170 | 25 </md-card> |