(front) Albums: link to artist/albums + Play count

Improve ngIf part
Use a script in ELS query to sort on avg play count
This commit is contained in:
2021-01-19 18:46:51 +01:00
parent 57e1c18a7f
commit fb620f582f
2 changed files with 29 additions and 7 deletions

View File

@@ -14,7 +14,16 @@ export class ElsAlbumService extends ElsService {
'Avg Bit Rate': {
'order': 'asc'
}
} ],
}, {
'_script' : {
'type' : 'number',
'script' : {
'lang': 'painless',
'source': 'doc[\'Play Count\'].value / doc[\'Track Count\'].value'
},
'order' : 'desc'
}
} ],
'size': ElsService.DEFAULT_SIZE
}