Implemented no albums view and improved indexing of file content directly within an artist.

Every KotoArtist now has a dedicated KotoPlaylist that is dynamically generated during KotoArtist initialization and contains references to all KotoTracks.

Fixed weird parsing error with some track names that had single quote (ew) and made changes so various parts of the UX would not freak out when we didn't have an album associated with a track.
This commit is contained in:
Joshua Strobl 2021-07-06 13:06:20 +03:00
parent 2bf5aa9388
commit 34ca201121
19 changed files with 948 additions and 530 deletions

View file

@ -0,0 +1,14 @@
.artist-view {
.no-albums-view { // No Albums
.no-albums-view-header { // Header for artist when we have no albums
.cover-art-button { // Button to play all artist tracks
margin-right: 40px;
}
& > label { // Artist Name
font-weight: 800;
font-size: 10ex;
}
}
}
}